* {
    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: rgb(0, 0, 0);
}

.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;
}

/* Contact Section */
.contact-section {
    margin-top: 80px;
}

.contact-hero {
    background: url('contact-hero.jpg') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #2d1b69 0%, #1a1147 100%);
}

.contact-hero h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.contact-container {
    max-width: 1100px;
    margin: -60px auto 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 40px;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #2d1b69;
}

.info-item {
    margin-bottom: 15px;
}

.info-item h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.info-item p {
    color: #555;
    font-size: 0.95rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    gap: 15px;
}

.form-group input {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
textarea:focus {
    border-color: #667eea;
}

textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    min-height: 120px;
    resize: vertical;
}

button {
    background: #2d1b69;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
    font-weight: 600;
}

button:hover {
    background: #667eea;
}

.map-container {
    margin-top: 30px;
}

.map-container iframe {
    border-radius: 12px;
    width: 100%;
    height: 400px;
}


/* Footer */
.footer {
    background-color: #06054F;
    color: white;
    padding: 60px 5% 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    margin-top: 50px;
}

.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 */
/* 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;
    }
    .navbar{
        max-width: 360px;
        
    }
    .logo{
        margin-left: 0;
    }

    .nav-links.show {
        display: flex;
    }
    .logo-text{
        font-size: 20px;
    }

    .nav-links a {
        padding: 1rem;
        text-align: center;
        color: #333;
    }

        .mobile-menu {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
            padding: 5px;
        }


    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}
 @media (max-width: 768px) {
            .mobile-nav-menu {
                background: white;
                text-align: left;
                padding: 1rem 0;
            }

            .mobile-nav-link,
            .mobile-dropdown-toggle {
                display: block;
                color: #333 !important; 
                padding: 1rem 1.5rem;
                font-weight: 600;
            }

            /* Dropdown items inside mobile */
            .mobile-dropdown-content {
                background: white;
                border-top: 1px solid #ddd;
            }

            .mobile-dropdown-content a {
                color: #333 !important;
                padding: 0.75rem 2rem;
                display: block;
            }
}


/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
        
    .nav-links {
        display: none;
    }
    .mobile-menu {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        color: rgb(0, 0, 0);
        z-index: 1100;
    }

    .mobile-nav-menu {
        background: white;
        text-align: left;
        padding: 1rem 0;
    }

    .mobile-nav-link,
    .mobile-dropdown-toggle {
        display: block;
        color: #333 !important; 
        padding: 1rem 1.5rem;
        font-weight: 600;
    }

    /* Dropdown items inside mobile */
    .mobile-dropdown-content {
        background: white;
        border-top: 1px solid #ddd;
    }

    .mobile-dropdown-content a {
        color: #333 !important;
        padding: 0.75rem 2rem;
        display: block;
    }
    @media (max-width: 768px) {
        .footer-links a {
          word-break: break-all;
          overflow-wrap: anywhere;    
          white-space: normal;        
          background: none !important; 
          display: inline-block;
        }
      }
      @media (max-width: 480px) {
        .title{
            display: flex;
            align-items: center;
        }
        .title b {
            width: auto;
            margin: 10px;
            font-size: 35px;
        }
        .content p{
            width: auto;
            font-size: 15px;
            margin: 10px;
        }
        .What{
            margin: 0;
            width: 350px;
        }
        .box{
            display: flex;
            flex-direction: column;
        }
        .box p{
            width: 380px;
        }
        .box h2{
            font-size: 25px;
            width: 380px;
        }
        .ideal{
            margin: 20px;
        }
        .industries p{
            margin-left: 120px;
            font-size: 20px;
        }
        .footer-section p{
            width: 250px ;
            margin-left: 50px  ;
        }
        .footer-links a{
            width: 295px;
        }
        .footer-bottom p{
            font-size: 12px;   
            padding: 12px 8px; 
        }
    }
}
/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-container {
        display: flex;
        flex-direction: column;
        align-items: center;   /* center content horizontally */
        text-align: center;    /* center text */
    }

    .contact-form form {
        width: 100%;           /* take full width */
        max-width: 350px;      /* keep it neat */
        margin: 0 auto;        /* center in container */
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;           /* stretch fields */
        margin: 5px 0;         /* spacing between fields */
    }
}

