

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: #eda91a;
    font-size:18px;
    font-weight:500;
    text-decoration: none;
    transition: 0.3s;
}

.text_color {
    color: #eda91a;
}

  li > a:hover {
        border-radius:10px;
        color:black;
        padding:10px;
         background:linear-gradient(135deg, var(--warning-color) 0%, var(--success-color)100%);
        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: #004211;
}





/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Buttons */


/*--------------------------------------------------------------
# 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: linear-gradient(135deg, var(--warning-color) 0%, var(--success-color) 100%);
        height: 130vh;
        z-index: -11;
        top: 120px
    }
}

@media(min-width:1025px) {
    .bg-absolute {
        background: linear-gradient(135deg, var(--warning-color) 0%, var(--success-color) 100%);
        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: #004211;
    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: var(--green);
        color: white;
    }

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

.category-box:hover .category-icon {
    color: white;
}

.btn-primary {
    background: var(--green);
    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*/




/*Boutique_Education section  END*/

:root {
    --primary-color: #6f42c1;
    --secondary-color: #0d6efd;
    --accent-color: #e83e8c;
    --success-color: #004211;
    --warning-color: #eda91a;
}

/*Boutique_Education section  END*/


/*Tailoring section  END*/
.hero-section {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-color) 100%);
    color: white;
    padding: 70px 0;
    border-radius: 0 0 30px 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="white" stroke="white" stroke-width="2"/></svg>');
        background-size: 50px;
    }

.logo {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.address {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.btn-enroll {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-enroll:hover {
        background-color: #ff4da6;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.course-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
    height: 100%;
    border-top: 4px solid var(--success-color);
    background: linear-gradient(to bottom, white 80%, #f8f6ff 100%);
}

    .course-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

.course-icon {
    font-size: 2.8rem;
    color: var(--warning-color);
    margin-bottom: 15px;
}

.course-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 10px;
}

.course-duration {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    background-color: #f0e6ff;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        border-radius: 2px;
    }

.chairman-section {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-color) 100%);
    color: white;
    padding: 60px 0;
    border-radius: 15px;
    margin: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .chairman-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><circle cx="50" cy="50" r="40" fill="white"/></svg>');
        background-size: 80px;
    }

.chairman-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.chairman-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.features-section {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
    padding: 80px 0;

    border-radius: 15px;
    margin: 50px 0;
}

.feature-item {
    background-color:#fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

    .feature-item:hover {
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(to right, #f8f6ff, #f0e6ff);
    border-radius: 15px;
    margin: 50px 0;
}



.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 12px;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .social-icons a:hover {
        color: var(--accent-color);
        transform: translateY(-3px);
    }



.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--warning-color) 0%, var(--success-color) 100%);
    color: white;
    border-radius: 15px;
    margin: 50px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .chairman-name {
        font-size: 2rem;
    }
}
/*Tailoring section  END*/


.quote-section {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-color) 100%);
    color: white;
    padding: 80px 0;
    border-radius: 20px;
    margin: 60px 0;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.quote-text {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.quote-author {
    font-size: 1.3rem;
    font-weight: 600;
}

/*Gurukul section  END*/


:root {
    --primary-color: #2e7d32;
    --secondary-color: #4caf50;
    --accent-color: #ff9800;
    --light-color: #f1f8e9;
    --dark-color: #1b5e20;
}

.gurukul-section {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .gurukul-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.03"><path d="M20,20 Q50,5 80,20 Q95,50 80,80 Q50,95 20,80 Q5,50 20,20 Z" fill="%232e7d32" stroke="%232e7d32" stroke-width="2"/></svg>');
        background-size: 120px;
    }

.gurukul-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
}

    .gurukul-title::before {
        content: '??';
        margin-right: 15px;
        font-size: 2.5rem;
    }

.university-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.gurukul-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #444;
}

.highlight-text {
    background: linear-gradient(120deg, var(--accent-color) 0%, var(--accent-color) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    transition: background-size 0.25s ease-in;
    font-weight: 600;
}

.tagline-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    border-left: 5px solid var(--accent-color);
}

.tagline-main {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    text-align: center;
}

.tagline-sub {
    font-size: 1.3rem;
    color: var(--primary-color);
    text-align: center;
    font-style: italic;
    margin-bottom: 30px;
}

.tagline-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tagline-option {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

    .tagline-option:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-color: var(--accent-color);
    }

    .tagline-option.active {
        border-color: var(--primary-color);
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.tagline-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.value-pill {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
        background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    }

.illustration-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .gurukul-title {
        font-size: 2.2rem;
    }

    .tagline-main {
        font-size: 1.8rem;
    }

    .tagline-sub {
        font-size: 1.1rem;
    }

    .gurukul-description {
        font-size: 1.1rem;
    }
}

/*Gurukul section  END*/