* {
            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;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 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: white;
        }

        .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;
        }

        .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;
        }

        .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);
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
            padding: 5px;
        }

        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-nav-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-menu {
            position: fixed;
            top: 70px;
            right: -320px;
            width: 300px;
            height: calc(100vh - 70px);
            background: white;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 1001;
            overflow-y: auto;
        }

        .mobile-nav-menu.show {
            right: 0;
        }

        .mobile-nav-item {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-nav-item:last-child {
            border-bottom: none;
        }

        .mobile-nav-link {
            display: block;
            padding: 1rem 1.5rem;
            color: #333 !important;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .mobile-nav-link:hover {
            background: #f8f9ff;
            color: #667eea;
        }

        /* Mobile Multilevel Dropdown */
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 1rem 1.5rem;
            background: none;
            border: none;
            color: #333 !important;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: left;
        }

        .mobile-dropdown-toggle:hover {
            background: #f0f2ff;
            color: #667eea;
        }

        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #f8f9ff;
        }

        .mobile-dropdown.open .mobile-dropdown-content {
            max-height: 800px;
        }

        .mobile-submenu-item {
            border-top: 1px solid #e0e4ff;
        }

        .mobile-submenu-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0.8rem 2.5rem;
            background: none;
            border: none;
            color: #555;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: left;
        }

        .mobile-submenu-toggle:hover {
            background: #667eea;
            color: white;
        }

        .mobile-submenu-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: white;
        }

        .mobile-submenu.open .mobile-submenu-content {
            max-height: 400px;
        }

        .mobile-submenu-content a {
            display: block;
            padding: 0.7rem 3.5rem;
            color: #555;
            text-decoration: none;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
            font-weight: 500;
        }

        .mobile-submenu-content a:hover {
            background: #f0f2ff;
            color: #667eea;
            border-left-color: #667eea;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(#06054F);
            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('photos/ReviewBack.jpg');
            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.9;
            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);
            }
        }

    /* Employees Reviews Section */
    .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-title {
            font-size: 3rem;
            text-align: center;
            color: #333;
            background: #f5f5f5;
            padding: 1rem;
            margin-top: 2rem;
            margin-bottom: 1rem; /* space below the title */
        }


        .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: 400px;
        height: 400px;
        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 */
    .controls {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        pointer-events: none; /* allow clicks only on buttons */
    }

    .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; /* re-enable click */
        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 */
        .footer {
            background: linear-gradient(135deg, #2d1b69 0%, #1a1147 100%);
            color: white;
            padding: 60px 5% 20px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.5;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            position: relative;
            z-index: 2;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #fff;
            position: relative;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #667eea;
            border-radius: 1px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }

        .footer-links a:hover {
            color: #667eea;
            padding-left: 10px;
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover::before {
            opacity: 1;
            left: -15px;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-icons a:hover {
            background: #667eea;
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }

        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7); /* keeps rights reserved text */
            position: relative;
            z-index: 2;
            font-size: 0.9rem; /* keep text readable */
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center; /* centers logo above text */
            gap: 12px;
            margin-bottom: 1rem;
        }

        .footer-logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .footer-logo-icon img {
            height: 125px;  
            width: auto;
            display: block;
        }
                

        /* 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;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    /* Navbar */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: rgb(255, 255, 255);
        flex-direction: column;
        width: 220px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        border-radius: 12px;
        overflow: hidden;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        text-align: center;
        color: #333;
    }

            .mobile-menu {
                position: absolute;
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
                display: block;
                color: rgb(0, 0, 0);
                z-index: 1100;
            }

    /* Hero Section */
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Reviews Section */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Carousel */
    .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;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Very small phones */
@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;
    }
}

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }