

h1 {
    font-size: clamp(1.7rem,5rem,3.4rem);
    font-weight: bold;
    font-optical-sizing: auto;
    font-style: normal;
}


:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Nunito", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #eda91a; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #1bbd36; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #444444; /* The default color of the main navmenu links */
    --nav-hover-color: #1bbd36; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1bbd36; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

:root {
    --green: #004211;
    --yellow: #eda91a;
    --accent: #13b4a3;
    --light: #f8f9fa;
    --dark: #343a40;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f7f7f7;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

.accent-background {
    --background-color: #1bbd36;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #2ae149;
    --contrast-color: #ffffff;
}


.background-success {
    background-color: var(--green)
}




/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

.a_color {
    color:  white;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.text_color {
    color: #eda91a;
}

a:hover {
    color: #FFD700;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

h5 {
    font-size: clamp(1rem, 2vw, 1.5rem);
}

h6 {
    font-size: clamp(0.875rem, 1.5vw, 1.25rem);
}


/*Navbar section*/

.navbar, .footer, .content_box {
    background-color: #000000e0;
}





/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
}

    .hero .carousel {
        width: 100%;
        min-height: calc(40vh - 75px);
        padding: 0;
        margin: 0;
       /* position: relative;*/
    }

    .hero img {
        /*position: absolute;*/
        inset: 0;
        display: block;
        width: 100%;
        height:  auto;
        object-fit: cover;
        z-index: 1;
        object-position: 0% 0%;
    }

@media(min-width:478px) {
    .hero .carousel {
        width: 100%;
        min-height: calc(70vh - 75px);
        padding: 0;
        margin: 0;
        /*position: relative;*/
    }
}

@media(min-width:778px) {
    .hero .carousel {
        width: 100%;
        min-height: calc(95vh - 75px);
        padding: 0;
        margin: 0;
       /* position: relative;*/
    }

    .hero img {
        /*position: absolute;*/
        inset: 0;
        display: block;
        width: 100%;
        height:  auto;
        object-fit: cover;
        z-index: 1;
        object-position: 0% 0%;
    }
}



.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}


.hero .carousel-control-prev {
    justify-content: start;
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    background: #ffffff;
    border-radius: 50px;
    color: var(--contrast-color);
    transition: 0.3s;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    transition: 0.3s;
    opacity: 0.5;
}

    .hero .carousel-control-prev:focus,
    .hero .carousel-control-next:focus {
        opacity: 0.5;
    }

    .hero .carousel-control-prev:hover,
    .hero .carousel-control-next:hover {
        opacity: 0.9;
    }

        .hero .carousel-control-prev:hover .carousel-control-next-icon,
        .hero .carousel-control-prev:hover .carousel-control-prev-icon,
        .hero .carousel-control-next:hover .carousel-control-next-icon,
        .hero .carousel-control-next:hover .carousel-control-prev-icon {
            background: var(--accent-color);
            color: var(--default-color);
        }

.hero .carousel-indicators li {
    cursor: pointer;
    background: var(--default-color);
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

    .hero .carousel-indicators li.active {
        opacity: 1;
        background: var(--accent-color);
    }

/*--------------------------------------------------------------
# Hero Section   END
--------------------------------------------------------------*/


.img-design {
}

    .img-design:hover {
        transform: translateY(-10px) scale(1.05);
        transition: .2s ease-in-out;
        border-radius: 10px;
        box-shadow: 0 4px 8px 0 #eda91a, 0 6px 20px 0 #eda91a;
    }

.text-box-design {
    box-shadow: 8px 8px 0 #eda91a;
}


.btn-hover {
    background-color: var(--green);
    border: 2px #eda91a solid
}

    .btn-hover:hover {
        transform: translate3d(-50deg);
        background-color: #eda91a
    }



/*Job services section*/


.bg-absolute {
    background-color: #5c5adb;
    height: 270vh;
    z-index: -11;
    top: 120px
}

@media(min-width:576px) {
    .bg-absolute {
        background-color: #5c5adb;
        height: 130vh;
        z-index: -11;
        top: 120px
    }
}

@media(min-width:1025px) {
    .bg-absolute {
        background-color: #5c5adb;
        height: 150vh;
        z-index: -11;
        top: 120px
    }
}





.job-services-section {
    padding: 40px 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--accent);
    }

.job-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
    background: white;
    height: 100%;
}

    .job-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    }

.job-card-header {
    background: #23487d;
    color: white;
    padding: 15px 20px;
}

.job-card-body {
    padding: 20px;
}

.job-tag {
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

.category-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
}

    .category-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
        background: #f8fbff;
         
    }

.category-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--accent);
}

 

.btn-primary {
    background: #0d6efd;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
}

    .btn-primary:hover {
        background: var(--yellow);
    }
/*Job services section  END*/




/*Education services section  END*/
.course-card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

    .course-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .icon-container i {
        font-size: 30px;
        color: white;
    }

.benefit-item {
    padding: 15px;
    border-radius: 8px;
    background-color: var(--secondary);
    margin-bottom: 15px;
}
/*Education services section  END*/
/*Job services section  END*/
:root {
    --primary: #004211;
    --secondary: #f8f9fa;
    --accent: #ff6b6b;
}



.job-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .icon-container i {
        font-size: 30px;
        color: white;
    }

.benefit-item {
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--primary);
    }

.center-title:after {
    left: 50%;
    transform: translateX(-50%);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}
/*Job services section  END*/
/*Online Exam section  END*/
:root {
    --primary: #3a6ea5;
    --secondary: #f8f9fa;
    --accent: #ff6b6b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
}

.onlineExam-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .icon-container i {
        font-size: 30px;
        color: white;
    }

.benefit-item {
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--primary);
    }

.center-title:after {
    left: 50%;
    transform: translateX(-50%);
}



.exam-type {
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 20px;
}
/*Online Exam section  END*/


/*Home Tuition section  END*/
:root {
    --primary: #3a6ea5;
    --secondary: #f8f9fa;
    --accent: #ff6b6b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
}

.home-tuition-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1577896851231-70ef18881754?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .icon-container i {
        font-size: 30px;
        color: white;
    }

.benefit-item {
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--primary);
    }

.center-title:after {
    left: 50%;
    transform: translateX(-50%);
}



.subject-card {
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 20px;
}

.tutor-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

    .tutor-card:hover {
        transform: translateY(-5px);
    }

.tutor-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary);
}
/*Home Tuition section  END*/

/*About section  END*/
:root {
    --secondary: #f8f9fa;
    --accent: #ff6b6b;
}


.about-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    margin-bottom: 40px;
    text-align: center;
}

.mission-vision-card {
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

    .mission-vision-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .icon-container i {
        font-size: 36px;
        color: white;
    }

.benefit-item {
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--primary);
    }



.mission-list {
    list-style-type: none;
    padding-left: 0;
}

    .mission-list li {
        padding-left: 30px;
        position: relative;
        margin-bottom: 15px;
    }

        .mission-list li:before {
            content: '?';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

.stats-container {
    text-align: center;
    padding: 30px 15px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--green);
    margin-bottom: 0;
}

.stats-label {
    font-size: 1rem;
    color: #666;
}

.value-card {
    padding: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.3s;
}

    .value-card:hover {
        transform: translateY(-5px);
    }
/*About section  END*/



/*TermCondition section  END*/




.termCondition-section-title {
    border-left: 4px solid #0d6efd;
    padding-left: 15px;
    margin: 25px 0 15px;
}

.content-card {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border: none;
    margin-bottom: 2rem;
}

.privacy-highlight .condition-highlight {
    background-color: #f8f9fa;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
}

/*TermCondition section  END*/
/*Privacy And Policy section  END*/




.privacy-section-title {
    border-left: 4px solid #198754;
    padding-left: 15px;
    margin: 25px 0 15px;
}



.privacy-icon {
    font-size: 1.2rem;
    margin-right: 8px;
    color: #198754;
}
/*Privacy And Policy section  END*/


