/*=============================================
                THEME VARIABLES
=============================================*/
:root {
    --primary: #002d5b;
    --primary-dark: #001a36;
    --primary-light: #1a4a7a;
    --primary-soft: #e6ecf3;
    --primary-very-light: #f0f5fa;
    --primary-rgb: 0, 45, 91;
    --black: #000000;
    --black-light: #333333;
    --gray-dark: #666666;
    --gray: #999999;
    --gray-light: #cccccc;
    --gray-soft: #e6e6e6;
    --white: #ffffff;
    --white-dark: #f5f5f5;
    --shadow-sm: 0 4px 20px rgba(0,45,91,0.08);
    --shadow-md: 0 10px 30px rgba(0,45,91,0.12);
    --shadow-lg: 0 20px 40px rgba(0,45,91,0.16);
    --shadow-hover: 0 30px 50px rgba(0,45,91,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

/*=============================================
                GLOBAL STYLES
=============================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--black-light);
    line-height: 1.6;
    font-size: 16px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-very-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
    border: 3px solid var(--primary-very-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

::selection {
    background: var(--primary);
    color: var(--white);
}

/*=============================================
                TYPOGRAPHY
=============================================*/
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

.display-5 {
    font-size: 3rem;
}

.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-primary-soft { background: var(--primary-soft) !important; }
.bg-primary-light { background: var(--primary-very-light) !important; }
.bg-black { background: var(--black) !important; }
.bg-white { background: var(--white) !important; }
.text-white { color: var(--white) !important; }
.text-black { color: var(--black) !important; }
.text-gray { color: var(--gray-dark) !important; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/*=============================================
                BUTTONS
=============================================*/
.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.4);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.3);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--primary-soft);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.1);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--black-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/*=============================================
                TOP BAR
=============================================*/
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 3px solid var(--primary-dark);
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    color: var(--white);
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-bar-right span {
    margin-right: 20px;
}

.top-bar-right i {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: var(--white);
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/*=============================================
                NAVBAR
=============================================*/
.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 1030;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 5px 10px rgba(var(--primary-rgb), 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--gray-dark);
    letter-spacing: 1px;
}

.nav-link {
    color: var(--black-light) ;
    font-weight: 500;
    padding: 8px 15px !important;
    border-radius: 30px;
    transition: var(--transition);
}

.nav-link i {
    color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary) !important;
    background: var(--primary-soft);
}

.nav-link:hover i {
    transform: scale(1.1);
}

.nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-soft);
    font-weight: 600;
}

.nav-link.active i {
    color: var(--primary);
}

/*=============================================
                OFF-CANVAS
=============================================*/
.offcanvas {
    background: var(--primary);
    color: var(--white);
    border-left: none;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
}

.offcanvas-header .logo-text {
    color: var(--white);
    font-size: 1.3rem;
}

.offcanvas-body {
    padding: 20px;
}

.offcanvas-body .nav-link {
    color: rgba(255,255,255,0.9) !important ;
    padding: 12px 15px !important;
    border-radius: 10px;
    margin-bottom: 5px;
    border: 1px solid rgba(255,255,255,0.1);
}

.offcanvas-body .nav-link i {
    color: var(--white);
    width: 25px;
}

.offcanvas-body .nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

/*=============================================
                HERO SLIDER
=============================================*/
.hero-slider {
    overflow: hidden;
    border-radius: 40px;
    position: relative;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: auto;
}

.hero-slider .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.hero-slider .carousel-caption {
    bottom: 100px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-slider .carousel-caption h3 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-slider .carousel-caption p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
}

.hero-slider .carousel-indicators button.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/*=============================================
                HERO CONTENT
=============================================*/
.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-section {
    background: transparent;
    padding: 30px !important;
}

.hero-section .badge {
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
    background: var(--primary);
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--white);
}

.hover-card {
    transition: var(--transition);
    border-radius: 20px !important;
    cursor: pointer;
    border: 1px solid var(--gray-light) !important;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary) !important;
}

.hover-card:hover .icon-box {
    background: var(--primary-dark) !important;
    transform: scale(1.1) rotate(5deg);
}

/*=============================================
                STICKY FORM
=============================================*/
.sticky-form-wrapper {
    position: sticky;
    top: 120px;
    z-index: 1020;
}

.form-container {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.form-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.form-container h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-align: center;
}

.form-container p {
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 25px;
}

.form-control, .form-select {
    border: 2px solid var(--gray-soft);
    border-radius: 15px;
    padding: 12px 18px;
    transition: var(--transition);
    background: var(--white-dark);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.15);
    background: var(--white);
}

.input-group-text {
    background: var(--white-dark);
    border: 2px solid var(--gray-soft);
    border-right: none;
    border-radius: 15px 0 0 15px;
    color: var(--primary);
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 15px 15px 0;
}

.phone-input {
    width: 100%;
    padding-left: 90px !important;
    height: 50px;
}

.btn-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 15px;
    padding: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
}

/*=============================================
                FULL WIDTH SECTIONS
=============================================*/
.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 100px 0;
    overflow: hidden;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/*=============================================
                SECTION TITLES
=============================================*/
.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 8px 25px;
    border-radius: 50px;
    margin-bottom: 15px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: block;
    width: 100%;
}

.section-title span {
    color: var(--primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 4px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.8;
    display: block;
    clear: both;
}

/*=============================================
                ABOUT SECTION
=============================================*/
.about-full {
    background: var(--primary-very-light);
    position: relative;
}

.about-image-grid {
    position: relative;
    /* padding: 20px; */
}

.about-image-main {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 5s;
}

.about-image-main:hover img {
    transform: scale(1.1);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border-left: 5px solid var(--primary);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
    color: var(--gray-dark);
}
@media (max-width: 768px) {

    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: 15px;
        padding: 12px 20px;
        border-radius: 15px;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }

    .experience-badge .text {
        font-size: 0.85rem;
    }

}
.about-image-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 30px;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 40px;
}

.about-quote {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--primary);
    font-style: italic;
    border-left: 5px solid var(--primary);
    padding-left: 30px;
    margin: 30px 0;
    position: relative;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.about-text {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*=============================================
                ENROLL SECTION
=============================================*/
.enroll-full {
    background: var(--primary);
    color: var(--black);
}

.enroll-full .section-title {
    color: var(--white);
}

.enroll-full .section-subtitle {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.enroll-card-modern {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.enroll-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.3);
}

.enroll-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.enroll-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.enroll-card-modern:hover .enroll-image img {
    transform: scale(1.1);
}

.enroll-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 2;
}

.enroll-content {
    padding: 30px 20px;
    text-align: center;
}

.enroll-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.enroll-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/*=============================================
                PRINCIPAL SECTION
=============================================*/
.principal-full {
    background: var(--white);
}

.principal-modern {
    display: flex;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
}

/* .principal-image-wrapper {
    flex: 1;
    min-width: 400px;
    position: relative;
    overflow: hidden;
} */

.principal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 5s;
}

.principal-image-wrapper .principal-image {
    border-radius: 30px;
}

.principal-quote-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principal-quote-overlay i {
    font-size: 2rem;
    color: var(--white);
    transform: rotate(180deg);
}

/* .principal-content {
    flex: 1;
    min-width: 400px;
    padding: 0px;
} */

.principal-main-quote {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 30px;
    font-style: italic;
}

.principal-text {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 40px;
}

.principal-signature {
    text-align: right;
    border-top: 2px dashed var(--primary-soft);
    padding-top: 30px;
}

.signature-img {
    height: 60px;
    margin-bottom: 10px;
    filter: brightness(0) invert(0.2);
}

.principal-signature h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.principal-signature p {
    color: var(--gray-dark);
    font-size: 1rem;
}

/*=============================================
                OFFERINGS SECTION
=============================================*/
.offerings-full {
    background: var(--primary-very-light);
}

.offering-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.offering-image {
    /* height: 200px; */
    overflow: hidden;
}

.offering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.offering-card:hover .offering-image img {
    transform: scale(1.05);
}

.offering-content {
    padding: 25px 20px;
    text-align: center;
}

.offering-content h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.offering-content p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/*=============================================
                LEARNING SECTION
=============================================*/
.learning-full {
    background: var(--primary-soft);
}

.learning-card {
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
}

.learning-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.learning-image {
    /* height: 300px; */
    position: relative;
    overflow: hidden;
}

.learning-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.learning-card:hover .learning-image img {
    transform: scale(1.05);
}

.learning-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.learning-content {
    padding: 40px;
}

.learning-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.learning-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 1rem;
}

/*=============================================
                INFRASTRUCTURE SECTION
=============================================*/
.infrastructure-full {
    background: var(--white);
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.infrastructure-item {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-light);
}

.infrastructure-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.infrastructure-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.infrastructure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.infrastructure-item:hover .infrastructure-image img {
    transform: scale(1.1);
}

.infrastructure-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.infrastructure-content {
    padding: 25px;
}

.infrastructure-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.infrastructure-content p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/*=============================================
                CLUBS SECTION
=============================================*/
.clubs-full {
    background: var(--primary-very-light);
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.club-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.club-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.club-image {
    height: 200px;
    overflow: hidden;
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.club-card:hover .club-image img {
    transform: scale(1.1);
}

.club-content {
    padding: 20px;
    text-align: center;
}

.club-content h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.club-content p {
    color: var(--gray-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

/*=============================================
                POPUP FORM
=============================================*/
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s;
}

.popup-overlay.show {
    display: flex;
    opacity: 1;
    animation: popIn 0.4s;
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.popup-form-modern {
    background: var(--white);
    padding: 50px;
    border-radius: 50px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-hover);
    border: 3px solid var(--primary);
}

.popup-form-modern::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: transparent;
    border: 2px solid var(--primary-light);
    border-radius: 60px;
    z-index: -1;
    opacity: 0.3;
}

.popup-form-modern h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
}

.popup-form-modern p {
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 30px;
}

.popup-close-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary-soft);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.popup-close-modern:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.popup-form-modern .form-control,
.popup-form-modern .form-select {
    background: var(--white-dark);
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    padding: 15px 20px;
    color: var(--black-light);
}

.popup-form-modern .form-control:focus,
.popup-form-modern .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
    background: var(--white);
}

.popup-form-modern .btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 15px;
    padding: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    color: var(--white);
}

.popup-form-modern .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.3);
}

.popup-timer {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/*=============================================
                FOOTER
=============================================*/
.footer {
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
    padding-top: 0;
}

.footer-wave {
    position: relative;
    top: -1px;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: auto;
    fill: var(--primary-dark);
}

.footer-about {
    padding-right: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
    font-family: var(--font-secondary);
}

.footer-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

.footer-links h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--white);
    opacity: 0.5;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links ul li a i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--white);
    opacity: 0.5;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links ul li a:hover i {
    opacity: 1;
}

.footer-contact h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--white);
    opacity: 0.5;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--white);
    font-size: 1.2rem;
    margin-top: 3px;
    opacity: 0.7;
}

.contact-item p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}

.newsletter h6 {
    color: var(--white);
    margin-bottom: 10px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--white);
    padding: 12px 15px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255,255,255,0.2);
    border-color: var(--white);
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 0 20px;
    background: var(--white);
    color: var(--primary);
    border: none;
}

.newsletter-form .btn:hover {
    background: var(--primary-soft);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/*=============================================
                BACK TO TOP
=============================================*/
.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

/*=============================================
                ICON ONLY WHATSAPP & CALL
=============================================*/
.icon-only {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.icon-only a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.icon-only a i {
    font-size: 30px;
    color: var(--white);
}

.icon-only-wa {
    background: var(--primary);
}

.icon-only-call {
    background: var(--primary-dark);
}

.icon-only a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

/*=============================================
                MODALS
=============================================*/
.modal-content {
    border: none;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-soft);
}

.modal-icon {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.modal .btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
}

.modal .btn-primary:hover {
    background: var(--primary-dark);
}

/*=============================================
                RESPONSIVE STYLES
=============================================*/

/* Large devices (desktops, 992px and up) */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-image-main img {
        height: 400px;
    }
    
    .principal-main-quote {
        font-size: 1.8rem;
    }
    
    .display-5 {
        font-size: 2.5rem;
    }
}

/* Medium devices (tablets, 768px to 991px) */
@media (max-width: 991px) {
    .sticky-form-wrapper {
        position: static;
        margin-top: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .principal-modern {
        flex-direction: column;
    }
    
    /* .principal-image-wrapper {
        min-width: auto;
        height: 500px;
    } */
    
    .principal-content {
        min-width: auto;
        padding: 40px;
    }
    
    .infrastructure-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .about-image-small {
        width: 150px;
        height: 150px;
        bottom: -20px;
        right: -20px;
    }
}

/* Small devices (landscape phones, 576px to 768px) */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .hero-slider {
        margin-top: 0 !important;
    }
    
    /* .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        height: 400px;
    } */
    
    .hero-slider .carousel-caption {
        bottom: 50px;
    }
    
    .hero-slider .carousel-caption h3 {
        font-size: 1.8rem;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 1rem;
    }
    
    .full-width-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    
    .about-image-main img {
        height: 300px;
    }
    
    .about-image-small {
        display: none;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .about-content {
        padding: 0px;
    }
    
    .about-quote {
        font-size: 0.8rem;
        padding: 20px;
    }
    
    .principal-main-quote {
        font-size: 1.4rem;
    }
    
    /* .learning-image {
        height: 250px;
    } */
    
    .learning-content {
        padding: 30px;
    }
    
    .learning-content h3 {
        font-size: 1.6rem;
    }
    
    .learning-badge {
        font-size: 0.95rem;
        padding: 8px 20px;
        bottom: 20px;
        left: 20px;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .footer-bottom-links {
        text-align: left;
        margin-top: 10px;
    }
    
    .footer-bottom-links a {
        margin-left: 0;
        margin-right: 20px;
    }
}

/* Extra small devices (phones, 600px and down) */
@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
    
    h1, .h1 {
        font-size: 2rem !important;
    }
    
    h2, .h2 {
        font-size: 1.75rem !important;
    }
    
    h3, .h3 {
        font-size: 1.35rem !important;
    }
    
    h4, .h4 {
        font-size: 1.2rem !important;
    }
    
    h5, .h5 {
        font-size: 1.1rem !important;
    }
    
    h6, .h6 {
        font-size: 1rem !important;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .section-title-wrapper {
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        padding: 6px 16px;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 1rem !important;
        line-height: 1.8;
        padding: 0 15px;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -12px;
    }
    
    .section-description {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 20px;
        margin-top: 25px;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .hero-slider .carousel-caption {
        bottom: 30px;
        padding: 0 15px;
    }
    
    .hero-slider .carousel-caption h3 {
        font-size: 1.4rem !important;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .hero-section {
        padding: 15px !important;
    }
    
    .hero-section .badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .form-container h3 {
        font-size: 1.4rem;
    }
    
    .form-container p {
        font-size: 0.9rem;
    }
    
    .form-control, .form-select {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 12px;
        font-size: 1rem;
    }
    
    .about-text {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .principal-content {
        padding: 30px 20px;
    }
    
    .principal-main-quote {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .principal-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .signature-img {
        height: 40px;
    }
    
    .principal-signature h4 {
        font-size: 1.3rem;
    }
    
    .infrastructure-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .infrastructure-image {
        height: 200px;
    }
    
    .infrastructure-tag {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .clubs-grid {
        grid-template-columns: 1fr;
    }
    
    .offering-content h3,
    .infrastructure-content h3,
    .club-content h3,
    .enroll-content h3 {
        font-size: 1.2rem;
    }
    
    .offering-content p,
    .infrastructure-content p,
    .club-content p,
    .enroll-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .learning-content {
        padding: 25px 20px;
    }
    
    .learning-content h3 {
        font-size: 1.4rem;
    }
    
    .popup-form-modern {
        padding: 40px 20px 30px;
        border-radius: 30px;
    }
    
    .popup-form-modern h3 {
        font-size: 1.6rem;
    }
    
    .popup-form-modern p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .popup-close-modern {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
        font-size: 1rem;
    }
    
    .popup-timer {
        font-size: 0.8rem;
        bottom: 15px;
        right: 15px;
    }
    
    .footer-about {
        padding-right: 0;
    }
    
    .footer-logo h4 {
        font-size: 1.3rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-links h5,
    .footer-contact h5 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-links ul li a {
        font-size: 0.9rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .newsletter-form .form-control {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        text-align: center;
    }
    
    .footer-bottom-links a {
        font-size: 0.85rem;
        margin: 0 10px;
    }
    
    .icon-only {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .icon-only a {
        width: 50px;
        height: 50px;
    }
    
    .icon-only a i {
        font-size: 24px;
    }
    
    .back-to-top {
        bottom: 90px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .modal-content {
        border-radius: 20px;
    }
    
    .modal-body h5 {
        font-size: 1.2rem;
    }
    
    .modal-body p {
        font-size: 0.9rem;
    }
    
    .modal .btn-primary {
        padding: 8px 25px;
        font-size: 0.95rem;
    }
}

/* Very small devices (phones, 360px and down) */
@media (max-width: 360px) {
    .section-title {
        font-size: 0.5rem !important;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    .hero-slider{
        margin-top: 0px !important;
    }
    .hero-slider .carousel-caption h3 {
        font-size: 1.2rem !important;
    }
    
    .form-container h3 {
        font-size: 1.3rem;
    }
    
    .principal-main-quote {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .footer-logo h4 {
        font-size: 1.2rem;
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .icon-only a {
        width: 45px;
        height: 45px;
    }
    
    .icon-only a i {
        font-size: 22px;
    }
}

/* Small devices (601px to 768px) */
@media (min-width: 601px) and (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .hero-slider .carousel-caption h3 {
        font-size: 1.8rem;
    }
    
    .principal-main-quote {
        font-size: 1.4rem;
    }
}

/* Landscape orientation */
@media (max-width: 900px) and (orientation: landscape) {
    .hero-slider .carousel,
    .hero-slider .carousel-inner,
    .hero-slider .carousel-item {
        height: 400px;
    }
    
    .popup-overlay.show {
        align-items: flex-start;
        padding: 20px;
    }
    
    .popup-form-modern {
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .icon-only {
        bottom: 10px;
        right: 10px;
    }
}

/* Touch targets improvement */
@media (max-width: 768px) {
    
    input, 
    select, 
    textarea, 
    button {
        font-size: 16px !important;
    }
    
    .row > [class*="col-"] {
        margin-bottom: 20px;
    }
    
    .row > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
    
    .card, 
    .offering-card, 
    .infrastructure-item, 
    .club-card, 
    .enroll-card-modern,
    .learning-card {
        margin-bottom: 20px;
    }
}

/* Print styles */
@media print {
    .top-bar,
    .navbar,
    .footer,
    .icon-only,
    .back-to-top,
    .popup-overlay,
    .sticky-form-wrapper {
        display: none !important;
    }
}

.social-links a{
    color: white;
    font-size: 20px;
}
.iti {
  width: 100% !important;
}

/* Amma's Vision Section - Using Theme Colors */
.amma-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-very-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.amma-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.amma-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Image Styles */
.amma-image-wrapper {
    position: relative;
    padding: 20px;
}

.amma-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 3;
    transition: var(--transition);
    border: 5px solid var(--white);
}

.amma-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    border-radius: 30px;
    z-index: 1;
    animation: glowPulse 3s infinite;
}

.image-decoration-1 {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--primary-light);
    border-left: 3px solid var(--primary-light);
    border-radius: 30px 0 0 0;
    z-index: 4;
    opacity: 0.5;
}

.image-decoration-2 {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    border-bottom: 3px solid var(--primary-light);
    border-right: 3px solid var(--primary-light);
    border-radius: 0 0 30px 0;
    z-index: 4;
    opacity: 0.5;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.3; }
}

/* Content Styles */
.amma-content {
    padding-left: 20px;
}

.amma-title {
    margin-bottom: 20px;
}

.title-light {
    display: block;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 1px;
    font-family: var(--font-secondary);
}

.title-bold {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    font-family: var(--font-secondary);
}

.amma-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gray-dark);
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid var(--primary);
    font-family: var(--font-primary);
}

/* Type Boxes */
.type-box {
    background: var(--white);
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--gray-soft);
}

.type-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.education-living {
    border-top: 4px solid var(--primary);
}

.education-life {
    border-top: 4px solid var(--primary-light);
}

.type-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.type-icon i {
    font-size: 24px;
    color: var(--primary);
}

.type-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black-light);
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.type-box p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.5;
    margin: 0;
    font-family: var(--font-primary);
}

/* What Amma Says */
.amma-speaks {
    margin: 30px 0;
    background: var(--primary-very-light);
    padding: 20px;
    border-radius: 20px;
}

.speaks-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-family: var(--font-secondary);
}

.amma-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amma-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--black-light);
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--font-primary);
}

.amma-list li i {
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Practical Approach */
.practical-approach {
    margin: 30px 0;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.approach-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-family: var(--font-secondary);
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--black-light);
    font-size: 1rem;
    font-family: var(--font-primary);
}

.approach-list li i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Simple Truth */
.simple-truth {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--primary);
    padding: 20px;
    border-radius: 50px;
    color: var(--white);
    margin-top: 30px;
    box-shadow: var(--shadow-md);
}

.truth-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.truth-text {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-family: var(--font-primary);
}

.truth-text strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .amma-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .title-bold {
        font-size: 2rem;
    }
    
    .amma-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .amma-section {
        padding: 60px 0;
    }
    
    .title-bold {
        font-size: 1.8rem;
    }
    
    .amma-quote {
        font-size: 1.1rem;
    }
    
    .type-box {
        margin-bottom: 15px;
    }
    
    .simple-truth {
        flex-direction: column;
        text-align: center;
        border-radius: 30px;
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .title-light {
        font-size: 1.1rem;
    }
    
    .title-bold {
        font-size: 1.5rem;
    }
    
    .amma-quote {
        font-size: 1rem;
    }
    
    .amma-list li,
    .approach-list li {
        font-size: 0.9rem;
    }
    
    .simple-truth {
        padding: 20px;
    }
}