 :root {
            --primary-blue: #62bece;
            --secondary-blue: #48a6c5;
            --light-blue: #dbeafe;
            --dark-gray: #1f2937;
            --medium-gray: #6b7280;
            --light-gray: #f3f4f6;
        }
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-gray);
            overflow-x: hidden;
            line-height: 1.7;
        }

        html {
            scroll-behavior: smooth;
        }


        

        /* Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--primary-blue) !important;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.5px;
        }

        .navbar-logo {
            height: 40px;
            width: auto;
        }

        .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 600;
            margin: 0 10px;
            transition: color 0.3s ease;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
        }

        .nav-link:hover {
            color: var(--secondary-blue) !important;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background-image: url('https://images.unsplash.com/photo-1554224154-22dec7ec8818?w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,rgba(73, 140, 222, 0.85) 0%, rgba(64, 230, 227, 0.75) 100%);
        
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 30px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
            letter-spacing: -1px;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }

        @keyframes heroTextGlow {
            0%, 100% { text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 30px rgba(255,255,255,0.3); }
            50% { text-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 50px rgba(255,255,255,0.5); }
        }

        .hero h1 {
            animation: fadeInUp 1s ease, heroTextGlow 3s ease-in-out infinite;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .cta-button {
            background: white;
            color: var(--primary-blue);
            padding: 18px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 35px rgba(0,0,0,0.4);
            color: var(--primary-blue);
        }

        /* Section Styles */
        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 50px;
            text-align: center;
            letter-spacing: -0.5px;
            position: relative;
            display: block;
            width: 100%;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-blue), var(--primary-blue));
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--medium-gray);
            text-align: center;
            margin-bottom: 50px;
            font-weight: 400;
            line-height: 1.6;
        }

        /* Who We Are */
        .who-we-are {
            background: var(--light-gray);
        }

        .who-we-are h3 {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 25px;
        }

        .who-we-are p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        .ceo-image {
            width: 100%;
            max-width: 400px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .ceo-image:hover {
            transform: scale(1.05);
        }

        /* Mission & Vision */
        .mission-vision-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }

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

        .mission-vision-card h3 {
            color: var(--primary-blue);
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .mission-vision-card p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--dark-gray);
        }

        /* Values Section */
        .values {
            background: var(--light-blue);
        }

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

        .value-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .value-icon {
            font-size: 3rem;
            color: var(--secondary-blue);
            margin-bottom: 20px;
        }

        .value-card h4 {
            color: var(--primary-blue);
            font-size: 1.6rem;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .value-card p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--medium-gray);
        }

        /* Services Section */
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

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

        .service-icon {
            font-size: 3rem;
            color: var(--secondary-blue);
            margin-bottom: 20px;
        }

        .service-card h4 {
            color: var(--primary-blue);
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .service-card p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--medium-gray);
            flex-grow: 1;
        }

        .service-button {
            background: radial-gradient(circle,rgba(96, 192, 224, 1) 0%, rgba(148, 187, 233, 1) 100%);
            color: white;
            padding: 12px 35px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            margin-top: auto;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
        }

        .service-button:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.05);
        }

        /* Contact Section */
        .contact {
            background: var(--light-gray);
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .form-control {
            border: 2px solid var(--light-blue);
            padding: 12px;
            margin-bottom: 20px;
            border-radius: 8px;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--secondary-blue);
            box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
        }

        .submit-button {
           background: radial-gradient(circle,rgba(96, 192, 224, 1) 0%, rgba(148, 187, 233, 1) 100%);
            color: white;
            padding: 14px 45px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .submit-button:hover {
            background: var(--primary-blue);
            transform: translateY(-2px);
        }

        .contact-info {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--secondary-blue);
            margin-right: 15px;
            width: 30px;
        }

        .map-container {
            margin-top: 30px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: white;
            padding: 40px 0 20px;
        }

        .footer-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--secondary-blue);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
            letter-spacing: -0.5px;
        }

        .footer-logo-img {
            height: 35px;
            width: auto;
        }

        @media (min-width: 768px) {
            .footer-logo {
                justify-content: flex-start;
            }
        }

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

        .social-icons a:hover {
            color: var(--secondary-blue);
        }

        .nextsite-link {
        color: var(--primary-blue);
        text-decoration: underline;
        transition: color 0.3s ease, text-decoration 0.3s ease;
        }

        .nextsite-link:hover {
        color: var(--primary-blue); /* or use #005baa if you didn’t define this variable */
        text-decoration: none;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .slide-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .slide-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

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

            .ceo-image {
                margin-bottom: 30px;
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            animation: fadeIn 0.3s ease;
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: white;
            margin: auto;
            padding: 0;
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            max-height: 85vh;
            overflow: hidden;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.4s ease;
            position: relative;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(50px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: white;
            padding: 25px 30px;
            border-radius: 20px 20px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h3 {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .modal-close {
            color: white;
            font-size: 2rem;
            font-weight: 300;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 30px;
            overflow-y: auto;
            max-height: calc(85vh - 100px);
        }

        .modal-body h4 {
            color: var(--primary-blue);
            font-size: 1.3rem;
            margin-top: 20px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .modal-body h4:first-child {
            margin-top: 0;
        }

        .modal-body ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .modal-body li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            line-height: 1.6;
            color: var(--dark-gray);
        }

        .modal-body li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-blue);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .modal-footer {
            padding: 20px 30px;
            background: var(--light-gray);
            border-radius: 0 0 20px 20px;
            text-align: center;
        }

        .modal-contact-btn {
            background: var(--secondary-blue);
            color: white;
            padding: 12px 35px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-contact-btn:hover {
           background: radial-gradient(circle,rgba(96, 192, 224, 1) 0%, rgba(148, 187, 233, 1) 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }