* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --body: #0F1F1F;
    --black: #000;
    --white: #fff;
    --theme: #3B131D;
    --theme-2: #EF8B2D;
    --theme-3: #1A2843;
    --header: #141519;
    --text: #27282C;
    --border: #49515b4d;
    --bg: #F0F4F5;
    --bg-2: #004F44;
    --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.enroll_now_btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: capitalize;
    text-align: center;
    border-radius: 30px;
    background: var(--theme);
    font-family: "Poppins", sans-serif;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 10px 30px;
    letter-spacing: -0.18px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: auto;

}


.enroll_now_btn i {
    margin-left: 10px;
    transition: all 0.4s ease-in-out;
    width: 34px;
    height: 34px;
    line-height: 44px;
    border-radius: 50%;
    background-color: var(--theme-2);
    /* Secondary color */
    color: var(--header);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.enroll_now_btn::before {
    content: "";
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: var(--theme-2);
    /* Hover background */
    z-index: -1;
    transition: all 0.4s ease-out;
    border-radius: inherit;
}

.enroll_now_btn:hover {
    color: var(--header);
    box-shadow: none;
}

.enroll_now_btn:hover::before {
    width: 100%;
}

.enroll_now_btn:hover i {
    background-color: var(--theme);
    color: var(--white);
}

.logo .header-logo2 img {
    height: 100px;
}

.logo .header-logo img {
    height: 100px;
}

.footer-logo img {
    height: 120px !important;
}


.social_icons {
    position: fixed;
    bottom: 100px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.social_icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 10%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}



/* Individual Brand Colors */
.social_icons a[title="YouTube"] {
    background-color: red;
}

.social_icons a[title="Gmail"] {
    background-color: #D44638;
}

.social_icons a[title="WhatsApp"] {
    background-color: #25D366;
}

.social_icons a[title="Facebook"] {
    background-color: #1877F2;
}

.social_icons a[title="Instagram"] {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* Hover Effect */
.social_icons a:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}


.theme-bg {
    background: linear-gradient(-45deg, #1A2843, #1e3c72, #0062bd, #4ca1af);

    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Gradient Animation */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.featured_videos_bg {
    background-color: var(--theme-3) !important;
}

/* COURSE OFFERS SECTION */

.new_courses_bg {
    background-color: var(--theme-2);
}

/* SAME HEIGHT FIX */
.course-row>div {
    display: flex;
    margin-top: 20px;
}

/* CARD */
.course-card {
    background: var(--white);
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border);
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.18);
}

/* TEXT */
.course-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-3);
    margin-bottom: 8px;
}

.course-card p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 6px;
}

.course-card .price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--theme);
    margin: 10px 0;
}

.course-card .note {
    font-size: 13px;
    color: var(--theme-2);
}

/* ENQUIRY TEXT */
.enquiry-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-3);
    margin: 15px 0 12px;
}

/* BUTTONS */
.card-btns {
    display: flex;
    gap: 12px;
}

.card-btns .btn {
    flex: 1;
    padding: 10px 0;
    font-size: 14px;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.call-btn {
    background: red;
}

.call-btn:hover {
    background: rgb(57, 57, 226);
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #09e65a !important;
}