* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        .nav-container {
            position: fixed;
            background-color: white;
            color: #000;
            top: 0;
            left: 0;
            right: 0;
            backdrop-filter: blur(0px);
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-text{
            font-family: 'Belleza', sans-serif;
            margin-right: 3rem;
            letter-spacing: 3px;
        }

        h4{
            font-family: 'Belleza', sans-serif;
        }

        /* After scrolling */
        .nav-container.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav-container .logo,
        .nav-container .nav-links a {
                       color: #1a1147;

        }

        .nav-container.dark-text .logo,
        .nav-container.dark-text .nav-links a {
            color: #333;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            height: 70px;
            max-width: 1200px;
            margin: 0 auto;
            color: #000;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.5rem;
            font-weight: bold;
            color: #2d1b69;
            text-decoration: none;
            transition: transform 0.3s ease;
            height: 100%;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .logo-icon img {
            height: 100%;
            max-height: 50px;
            width: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
           color: #1a1147;

        }

        .nav-links a:hover {
            color: #667eea;
            background: rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #667eea;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        .dropdown {
            position: relative;
        }

         /* Multilevel Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.2);
            z-index: 1000;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            position: relative;
        }

        .dropdown-item > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
            color: #333 !important;
            text-decoration: none;
            transition: all 0.2s ease;
            border-radius: 0;
            font-weight: 600;
        }

        .dropdown-item:first-child > a {
            border-radius: 12px 12px 0 0;
        }

        .dropdown-item:last-child > a {
            border-radius: 0 0 12px 12px;
        }

        .dropdown-item:only-child > a {
            border-radius: 12px;
        }

        .dropdown-item > a:hover {
            background: #667eea;
            color: white !important;
            transform: translateX(5px);
        }

        .dropdown-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        /* Submenu Styles */
        .submenu {
            position: absolute;
            top: 0;
            left: 100%;
            background: white;
            min-width: 220px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.2);
            z-index: 1001;
        }

        .dropdown-item:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .submenu a {
            display: block;
            padding: 10px 20px;
            color: #333 !important;
            text-decoration: none;
            transition: all 0.2s ease;
            font-weight: 500;
            border-left: 3px solid transparent;
        }

        .submenu a:first-child {
            border-radius: 12px 12px 0 0;
        }

        .submenu a:last-child {
            border-radius: 0 0 12px 12px;
        }

        .submenu a:only-child {
            border-radius: 12px;
        }

        .submenu a:hover {
            background: #f8f9ff;
            color: #667eea !important;
            border-left-color: #667eea;
            transform: translateX(5px);
        }




        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            font-weight: 700;
            opacity: 0;
            animation: slideUp 1s ease 0.5s forwards;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: slideUp 1s ease 0.7s forwards;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0;
            animation: slideUp 1s ease 0.9s forwards;
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .employee-reviews {
            background: #fafafa;
            padding: 10rem 4%;
            text-align: center;
        }

        .reviews-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #333;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .review-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.12);
        }

        .review-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }

        .review-card p {
            font-size: 1rem;
            color: #555;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .review-card h4 {
            font-size: 1rem;
            font-weight: bold;
            color: #667eea;
        }

        /* Carousel */
        .carousel-title {
            font-size: 3rem;
            text-align: center;
            color: #333;
            background: #f5f5f5;
            padding: 1rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .carousel {
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            background: #f5f5f5;
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.6s ease-in-out;
            height: 100%;
            width: 100%;
        }

        .carousel-item {
            min-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            padding: 40px;
            box-sizing: border-box;
            text-align: center;
        }

        .carousel img {
            width: 600px;
            height: 600px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .review-text {
            max-width: 800px;
        }

        .review-text p {
            font-size: 1.7rem;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #333;
        }

        .review-text h4 {
            font-size: 1.1rem;
            font-weight: bold;
            color: #555;
        }

        .controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }

        .arrow {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(6px);
            color: #333;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            font-weight: bold;
            pointer-events: auto;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .arrow:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
            color: #000;
        }

        /* Footer */
        
        /* Mobile Responsive Design */
        @media (max-width: 992px) {
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .carousel-item {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
            }

            .carousel img {
                width: 350px;
                height: 350px;
            }

            .review-text p {
                font-size: 1.2rem;
            }
        }


    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .carousel img {
        width: 250px;
        height: 250px;
    }

    .review-text p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .controls {
        padding: 0 10px;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .social-icons {
        justify-content: center;
    }


@media (max-width: 480px) {

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .carousel img {
        width: 200px;
        height: 200px;
    }

    .review-text p {
        font-size: 0.9rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}   
