        /* Base Styles */
        :root {
            --primary-color: #204173;
            --secondary-color: #00aae5;
            --accent-color: #e74c3c;
            --text-color: #333;
            --light-text: #f8f8f8;
            --background-light: #f8f8f8;
            --white: #ffffff;
            --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 3.5rem;
        }
        
        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
        }
        
        p {
            margin-bottom: 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--secondary-color);
            color: var(--white);
            border: none;
            border-radius: var(--border-radius);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 170, 229, 0.3);
        }
        
        .btn:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            margin-left: 20px;
        }
        
        .logo img {
            max-width: 100px;
            height: auto;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--text-color);
            font-family: 'Montserrat', sans-serif;
            font-weight: 400; /* Lighter font weight */
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
            font-size: 0.9rem;
        }
        
        .nav-menu a:hover {
            color: var(--accent-color);
        }
        
        .nav-menu a.active {
            color: var(--accent-color);
        }
        
        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-color);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        /* Hero Section */
        .hero {
            height: 80vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
            margin-top: 70px;
        }
        
        .swiper {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .swiper-slide {
            position: relative;
        }
        
        .swiper-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
        }
        
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* Wiping Color Effect */
        .color-wipe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: linear-gradient(90deg, rgba(32, 65, 115, 0.7), rgba(0, 170, 229, 0.7), rgba(231, 76, 60, 0.7));
            background-size: 300% 100%;
            animation: colorWipe 9s infinite;
            mix-blend-mode: overlay;
        }
        
        @keyframes colorWipe {
            0% {
                background-position: 0% 0%;
            }
            33% {
                background-position: 100% 0%;
            }
            66% {
                background-position: 200% 0%;
            }
            100% {
                background-position: 300% 0%;
            }
        }
        
        /* About Message Section */
        .about-message {
            background: var(--background-light);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .main-image {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            z-index: 2;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .ring {
            position: absolute;
            border-radius: 50%;
            border: 2px solid var(--secondary-color);
            animation: pulse 1.5s infinite alternate;
        }
        
        .ring-1 {
            width: 450px;
            height: 450px;
            animation-delay: 0s;
        }
        
        .ring-2 {
            width: 500px;
            height: 500px;
            animation-delay: 0.5s;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.7;
            }
            100% {
                transform: scale(1.1);
                opacity: 0.3;
            }
        }
        
        /* Approach Section */
        .approach {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('Imgs/team-members/1.jpeg');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
        }
        
        .approach h2::after {
            background: var(--white);
        }
        
        .approach-container {
            display: flex;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .mission, .vision {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: var(--border-radius);
            backdrop-filter: blur(10px);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(20px);
        }
        
        .mission.visible {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.8s ease;
        }
        
        .vision.visible {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.8s ease;
        }
        
        .mission:hover, .vision:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .mission h3, .vision h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        /* Values Section */
        .values {
            background: #f0f7ff;
            padding: 100px 0;
            position: relative;
        }
        
        .values::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('Imgs/team-members/1.jpeg') center/cover fixed;
            opacity: 0.05;
            z-index: 0;
        }
        
        .values .container {
            position: relative;
            z-index: 1;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .value-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: left;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(20px);
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--secondary-color);
        }
        
        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(32, 65, 115, 0.03), rgba(0, 170, 229, 0.03));
            z-index: 0;
        }
        
        .value-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .value-card:nth-child(1),
        .value-card:nth-child(3),
        .value-card:nth-child(5),
        .value-card:nth-child(7) {
            transition-delay: 0.2s;
        }
        
        .value-card:nth-child(2),
        .value-card:nth-child(4),
        .value-card:nth-child(6),
        .value-card:nth-child(8) {
            transition-delay: 0.4s;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .value-card h4 {
            margin-bottom: 15px;
            color: var(--primary-color);
            text-align: center;
        }
        
        .value-card p {
            text-align: left;
            line-height: 1.6;
        }
        
        /* Challenges Section */
        .challenges {
            background: var(--white);
            padding: 80px 0;
        }
        
        .challenges-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .challenge-card {
            background: var(--white);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-left: 5px solid var(--secondary-color);
        }
        
        .challenge-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(32, 65, 115, 0.03), rgba(0, 170, 229, 0.03));
            z-index: 0;
        }
        
        .challenge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .challenge-card h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .challenge-card p {
            position: relative;
            z-index: 1;
        }
        
        /* Policy Section */
        .policy {
            text-align: center;
            background: var(--background-light);
            padding: 80px 0;
        }
        
        .policy-content {
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        .policy h2::after {
            background: var(--secondary-color);
        }
        
        .policy-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .policy-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .policy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--secondary-color);
            transform: scaleX(0);
            transition: var(--transition);
        }
        
        .policy-card:hover::before {
            transform: scaleX(1);
        }
        
        .policy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .policy-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .policy-card h4 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Team Section */
        .team {
            background: var(--background-light);
        }
        
        .team-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .team-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .team-grid {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .team-member {
            flex: 0 0 33.333%;
            padding: 0 15px;
            text-align: center;
        }
        
        .member-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 0 0 30px 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        
        .member-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(32, 65, 115, 0.05), rgba(0, 170, 229, 0.05));
            z-index: 0;
        }
        
        .member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .member-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .member-card:hover .member-image img {
            transform: scale(1.05);
        }
        
        .member-info {
            position: relative;
            z-index: 1;
            padding: 20px;
        }
        
        .member-info h4 {
            margin-bottom: 5px;
            color: var(--primary-color);
        }
        
        .member-info p {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        
        .team-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }
        
        .team-nav button {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .team-nav button:hover {
            background: var(--secondary-color);
            transform: scale(1.1);
        }
        
        /* Team Member Image Wiping Effect */
        .member-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            background: linear-gradient(90deg, rgba(32, 65, 115, 0.3), rgba(0, 170, 229, 0.3), rgba(231, 76, 60, 0.3));
            background-size: 300% 100%;
            animation: colorWipe 6s infinite;
            mix-blend-mode: overlay;
            opacity: 0;
            transition: var(--transition);
        }
        
        .member-card:hover .member-image::before {
            opacity: 1;
        }
        
        /* Modern Team Modal */
        .team-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .modal-content {
            background: var(--white);
            border-radius: var(--border-radius);
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalFadeIn 0.3s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.3);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
            color: white;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .close-modal:hover {
            background: rgba(0, 0, 0, 0.5);
            transform: scale(1.1);
        }
        
        .modal-body {
            display: flex;
            padding: 40px;
            gap: 40px;
        }
        
        .modal-image {
            flex: 0 0 280px;
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .modal-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: linear-gradient(90deg, rgba(32, 65, 115, 0.3), rgba(0, 170, 229, 0.3), rgba(231, 76, 60, 0.3));
            background-size: 300% 100%;
            animation: colorWipe 6s infinite;
            mix-blend-mode: overlay;
        }
        
        .modal-info {
            flex: 1;
        }
        
        .modal-info h3 {
            color: var(--primary-color);
            margin-bottom: 5px;
            font-size: 1.8rem;
        }
        
        .modal-info .position {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: 500;
            font-size: 1.1rem;
        }
        
        .modal-info .bio {
            margin-bottom: 25px;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        
        .modal-info .details {
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .modal-section {
            margin-bottom: 25px;
            padding: 20px;
            background: rgba(32, 65, 115, 0.05);
            border-radius: var(--border-radius);
            border-left: 4px solid var(--secondary-color);
        }
        
        .modal-section h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .modal-section p {
            margin-bottom: 0;
        }
        
        .modal-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .modal-actions .btn {
            flex: 1;
            text-align: center;
            padding: 12px 20px;
        }
        
        .btn-whatsapp {
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .btn-whatsapp:hover {
            background: #1ebe5d;
        }
        
        /* Partners Section */
        .partners {
            text-align: center;
            background: var(--background-light);
        }
        
        .partners-slider {
            position: relative;
            overflow: hidden;
            padding: 0 60px;
        }
        
        .partner-logos {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .partner-logo {
            flex: 0 0 33.333%;
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .partner-logo-text {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: var(--primary-color);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.1rem;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .partner-logo:hover .partner-logo-text {
            background: var(--secondary-color);
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            color: var(--white);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
        }
        
        .slider-nav:hover {
            background: var(--secondary-color);
            transform: translateY(-50%) scale(1.1);
        }
        
        .slider-nav.prev {
            left: 0;
        }
        
        .slider-nav.next {
            right: 0;
        }
        
        /* Footer */
        .footer {
            background: #000000;
            color: var(--light-text);
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--light-text);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        
        .footer-links i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--light-text);
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        .developer-link {
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .developer-link:hover {
            text-decoration: underline;
        }
        
        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        /* WhatsApp Button Styles */
        .whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: green;
            color: rgb(255, 255, 255);
            padding: 15px;
            border-radius: 50%;
            font-size: 30px;
            text-align: center;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            z-index: 1000;
            border: none;
        }

        .whatsapp-btn i {
            color: white;
        }

        .whatsapp-btn:hover {
            background-color: #1ebe5d;
        }

        /* Ring animation around the button */
        @keyframes ring-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-btn {
            animation: ring-pulse 2s infinite;
        }

        /* Modal styles */
        .whatsapp-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            justify-content: center;
            align-items: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .whatsapp-modal-content {
            background-color: white;
            border-radius: 20px;
            width: 90%;
            max-width: 380px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modal-appear 0.3s ease-out;
        }

        @keyframes modal-appear {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Top layer - Green gradient */
        .modal-top-layer {
            background: linear-gradient(135deg, #25D366, #128C7E);
            padding: 30px 25px 25px 25px;
            text-align: center;
            position: relative;
        }

        /* Close button */
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.3);
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            font-size: 18px;
            cursor: pointer;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .close-modal:hover {
            background: rgba(0, 0, 0, 0.5);
        }

        /* WhatsApp icon in modal with animation */
        .modal-whatsapp-icon {
            font-size: 48px;
            color: white;
            margin-bottom: 15px;
            animation: icon-pulse 2s infinite;
        }

        @keyframes icon-pulse {
            0% {
                transform: scale(1);
                text-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
            }
            50% {
                transform: scale(1.1);
                text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
            }
            100% {
                transform: scale(1);
                text-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
            }
        }

        .modal-title {
            color: white;
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 8px 0;
        }

        .modal-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            margin: 0;
            line-height: 1.4;
        }

        /* Bottom layer - White */
        .modal-bottom-layer {
            padding: 25px;
        }

        .contact-info {
            text-align: center;
            margin-bottom: 25px;
        }

        .phone-number {
            font-size: 18px;
            font-weight: 600;
            color: #25D366;
            margin: 0 0 5px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .response-time {
            font-size: 14px;
            color: #666;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .modal-buttons {
            display: flex;
            gap: 12px;
        }

        .btn-modal {
            flex: 1;
            padding: 14px 14px;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-secondary {
            background-color: #f0f0f0;
            color: #333;
            border: 1px solid #e0e0e0;
        }

        .btn-secondary:hover {
            background-color: #e5e5e5;
        }

        .btn-primary {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            border: none;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #1ebe5d, #0d7a68);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .zoom-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .zoom-in.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .team-member {
                flex: 0 0 50%;
            }
            
            .values-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .partner-logo {
                flex: 0 0 50%;
            }
        }
        
        @media (max-width: 1024px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .challenges-container {
                grid-template-columns: 1fr;
            }
            
            .policy-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .modal-body {
                flex-direction: column;
            }
            
            .modal-image {
                margin-right: 0;
                margin-bottom: 20px;
                text-align: center;
                flex: 0 0 auto;
            }
            
            .modal-image img {
                max-width: 250px;
            }
            
            .partner-logo {
                flex: 0 0 50%;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero {
                height: 60vh;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: var(--white);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .approach-container {
                flex-direction: column;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .team-member {
                flex: 0 0 100%;
            }
            
            .policy-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-btn {
                width: 50px;
                height: 50px;
                font-size: 18px;
                bottom: 15px;
                right: 15px;
            }
            
            .modal-body {
                padding: 25px;
            }
            
            .partner-logo {
                flex: 0 0 100%;
            }
            
            .partners-slider {
                padding: 0 40px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .main-image {
                width: 300px;
                height: 300px;
            }
            
            .ring-1 {
                width: 350px;
                height: 350px;
            }
            
            .ring-2 {
                width: 400px;
                height: 400px;
            }
            
            .modal-body {
                padding: 20px;
            }
            
            .modal-actions {
                flex-direction: column;
            }
            
            .partner-logo-text {
                width: 120px;
                height: 120px;
                font-size: 1rem;
            }
        }
    

/* Additional CSS for the new elements */
.btn-website {
    background-color: #2c5aa0;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-website:hover {
    background-color: #1e3d6f;
}

.company-link {
    margin-top: 10px;
    font-style: italic;
    color: #555;
}

.modal-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
