

        :root {
            --navy: #0f1a2e;
            --navy-light: #1a2d4a;
            --gold: #e6a817;
            --gold-dark: #c48f12;
            --white: #ffffff;
            --gray-100: #f5f7fa;
            --gray-400: #9ca3af;
            --gray-600: #4b5563;
            --shadow-card: 0 10px 40px -10px rgba(15, 26, 46, 0.15);
            --shadow-elevated: 0 25px 50px -12px rgba(15, 26, 46, 0.25);
        }

   

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

     
/* Section Styles */
        .section {
            padding: 80px 0;
        }

        @media (min-width: 768px) {
            .section {
                padding: 100px 0;
            }
        }

        @media (min-width: 1024px) {
            .section {
                padding: 120px 0;
            }
        }

        .section-title {
            font-size: 2rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (min-width: 1024px) {
            .section-title {
                font-size: 3rem;
            }
        }

        .text-body {
            font-size: 1rem;
            color: var(--gray-600);
            line-height: 1.8;
        }

        @media (min-width: 768px) {
            .text-body {
                font-size: 1.125rem;
            }
        }

        /* Number Badge */
        .number-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gold);
            color: var(--navy);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.125rem;
            flex-shrink: 0;
        }

        /* Grid Pattern SVG */
        .grid-pattern {
            position: absolute;
            opacity: 0.3;
        }

        .grid-pattern-gold {
            color: var(--gold);
        }

        .grid-pattern-navy {
            color: var(--navy);
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            background: var(--white);
            overflow: hidden;
        }

        .about-wrapper {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .about-wrapper {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }

        .about-image-block {
            position: relative;
        }

        .about-main-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-elevated);
        }

        .about-main-image img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        @media (min-width: 768px) {
            .about-main-image img {
                height: 400px;
            }
        }

        .about-main-image .grid-pattern {
            top: -24px;
            left: -24px;
            width: 96px;
            height: 96px;
        }

        .about-secondary-image {
            position: absolute;
            bottom: -32px;
            right: -16px;
            width: 180px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-elevated);
            border: 4px solid var(--white);
        }

        @media (min-width: 768px) {
            .about-secondary-image {
                width: 240px;
                right: 32px;
            }
        }

        .about-secondary-image img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        @media (min-width: 768px) {
            .about-secondary-image img {
                height: 240px;
            }
        }

        .about-secondary-image .grid-pattern {
            bottom: -16px;
            right: -16px;
            width: 64px;
            height: 64px;
        }

        .about-logo-badge {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--navy);
            padding: 16px;
            border-radius: 50%;
            box-shadow: var(--shadow-elevated);
        }

        .about-logo-badge img {
            width: 64px;
            height: 64px;
            object-fit: contain;
        }

        .about-content p {
            margin-bottom: 1rem;
            
        }

        .about-content p:last-child {
            margin-bottom: 0;
        }

        /* ===== COMMITMENT SECTION ===== */
        .commitment-section {
            background: var(--gray-100);
        }

        .commitment-wrapper {
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .commitment-wrapper {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }

        .commitment-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-elevated);
        }

        .commitment-image img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        @media (min-width: 768px) {
            .commitment-image img {
                height: 500px;
            }
        }

        .commitment-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 26, 46, 0.3), transparent);
        }

        .commitment-subtitle {
            font-size: 1rem;
            color: var(--gray-600);
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .commitment-subtitle {
                font-size: 1.125rem;
            }
        }

        .commitment-items {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .commitment-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .commitment-item p {
            color: var(--navy);
        }

        .commitment-item strong {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .commitment-item span {
            color: var(--gray-600);
        }

        /* ===== VISION SECTION ===== */
        .vision-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .vision-bg {
            display: none;
        }

        @media (min-width: 1024px) {
            .vision-bg {
                display: block;
                position: absolute;
                top: 0;
                right: 0;
                width: 50%;
                height: 100%;
                background: var(--navy);
                clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
            }
        }

        .vision-wrapper {
            position: relative;
            z-index: 10;
            display: grid;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .vision-wrapper {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }

        .vision-content {
            padding-right: 0;
        }

        @media (min-width: 1024px) {
            .vision-content {
                padding-right: 2rem;
            }
        }

        .vision-content .section-title {
            margin-bottom: 2rem;
        }

        .vision-text {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .vision-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-elevated);
            position: relative;
        }

        .vision-image img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        @media (min-width: 768px) {
            .vision-image img {
                height: 450px;
            }
        }

        .vision-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent, rgba(15, 26, 46, 0.4));
        }

        /* ===== MISSION SECTION ===== */
        .mission-section {
            background: var(--navy);
            color: var(--white);
        }

        .mission-top {
            display: grid;
            gap: 3rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        @media (min-width: 1024px) {
            .mission-top {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }

        .mission-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-elevated);
            position: relative;
        }

        .mission-image img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        @media (min-width: 768px) {
            .mission-image img {
                height: 320px;
            }
        }

        .mission-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(15, 26, 46, 0.5), transparent);
        }

        .mission-content .section-title {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .mission-content p {
            font-size: 20px;
            opacity: 0.9;
            line-height: 1.8;
        }

        .mission-points {
            display: grid;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .mission-points {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .mission-point {
            background: var(--white);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: var(--shadow-card);
        }

        .mission-point .number-badge {
            margin-bottom: 1rem;
        }

        .mission-point h4 {
            font-size: 20px;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .mission-point p {
            /*font-size: 0.875rem;*/
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .animate-fade-in-left {
            animation: fadeInLeft 0.6s ease-out forwards;
        }

        .animate-fade-in-right {
            animation: fadeInRight 0.6s ease-out forwards;
        }




  /* Button */
.quote-btn {
    padding: 12px 30px;
    background: #3da764;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.quote-btn:hover {
    background: #3da764;
}

/* Overlay */
.form-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Form Box */
.form-box {
    background: #fff;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
}

.form-box h2 {
    margin-bottom: 15px;
    text-align: center;
}

/* Inputs */
.form-box input,
.form-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-box textarea {
    resize: none;
    height: 100px;
}

/* Submit Button */
.form-box button {
    width: 100%;
    padding: 12px;
    background: #3da764;
    color: #fff;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .form-box {
        padding: 20px;
    }
}