* {
    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;
                background-color: white;

}

.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;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-direction: column;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    pointer-events: none;
    
}  
.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 */
@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;
}
.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;
    }
}

    

/* 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);
}



/*Body*/

.Credit{
display: flex;
flex-direction: column;
margin-top: 100px
}
.Credit p{
font-size: 20px;
font-weight: 500;

}
.title{
margin-bottom: 50px;
font-size: 30px;
color: #06054F;
}
.content p{
width: 1000px;
font-size: 20px;
}
    .What{
        margin-top: 100px;
        margin-right: 1000px;
        background-color:#1a1147;
        width: 550px;
        height: 75px;
        color: white;
        display: flex;
        justify-content: center;
        margin-bottom: 100px;
        display: flex;
        align-items: center;
        font-size: 30px;
    }
.Can{
font-size: 20px;
display: flex;
flex-direction: row;

}
.Can p{
transform: translateX(-180px);
font-size: 25px;
}

.industries {
transform: translateX(-100px);
font-size: 20px;
margin-bottom: 50px;
}
.box {
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 100px;
margin-top: 50px;
align-items: center;
justify-content: center;
text-align: center;
width:100%;
}
.box p {
font-size: 16px;

}
.box h2{
color: white;
font-size: 25px;

}

.box1, .box3{
color: white;
background-color: #1a1147;
 height: 300px;
 width: 600px;
 display: flex;
 justify-content: center;
 align-items: center;
 text-align: center;
 flex-direction: column;
}

.box2, .box4 {
background-color: #0E77B7;
height: 300px;
width: 600px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
flex-direction: column;
color: white    ;
}
.btnChat {
    background-color: #06054F;
    color: white; 
    font-size: 20px;
    width: 200px;
    height: 50px;
    border-radius: 5px;
    margin-bottom: 100px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease; 
}

.btnChat:hover {
    background-color: #0E77B7;
    color: white; 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}
.ideal{
color: #06054F;
display: flex;
align-items: center;
justify-content: center;
font-size: 35px;
margin-bottom: 20px;
}
.Services {
display: flex;
align-items: center;
justify-content: center;
align-content: center;
flex-wrap: wrap;

}
.serve {
position: relative;
display: inline-block; /* shrink to content */
margin: 40px; /* just for spacing */
max-width: 300px;
}
.serve:hover {
background-color: #0E77B7; 
color: white; 
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
transform: scale(1.05); 
cursor: pointer;
background-color: #06054F;
}


.serve h2 {
background-color: #EDE7E7;
padding: 15px 40px 15px 70px; /* extra left padding for icon space */
font-size: 22px;
font-weight: 600;
color: #06054F;
box-shadow: 0 3px 6px rgba(0,0,0,0.2);
border-radius: 4px;
display: inline-block;
z-index: 1;
}
.serve h2:hover{
background-color: #06054F;
color: white;
}


.serve img {
position: absolute;
left: 10px;   
top: 50%;
transform: translateY(-50%);
width: 50px;   
height: 50px;
z-index: 2;  
transition: all 0.3s ease;
}
.serve:hover img {
transform: scale(1.2) rotate(5deg); /* ✅ zoom + little tilt */
filter: brightness(1.2); /* ✅ slightly brighter */
}

@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;  

}
@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: 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;
    }
}