* {
            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;
        }
        .nav-container{
            background-color: white;
        }

        .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;
        }

        .Intro {
            background-image: linear-gradient(to right, rgba(9, 3, 39, 0.9) 50%, rgba(6, 5, 9, 0.2) 100%), 
                      url('../photos/sample.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 150px 10%; 
            min-height: 80vh;
            text-align: left;
            color: white;
        }
        .Intro h2{
            background-color: #0E77B7;
            max-width: fit-content;
            padding: 5px 15px;
            font-size: 20px;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        .Intro h1{
            font-size: 60px;
            margin-bottom: 20px;
            max-width: 600px;
        }
        .Intro p{
            font-size: 20px;
            max-width: 600px;
        }
        .intro-buttons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }
        .btn-outline {
            background-color: #090327;
            color: white;
            padding: 15px 30px;
            font-size: 18px;
            border-radius: 5px;
            margin-top: 30px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .btn-outline:hover{
            background-color: #0E77B7;
            color: white;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
            transform: scale(1.05);
        }
        .features-bar {
            display: flex;
            background-color: #090327; 
            padding: 30px 5%;
            border-radius: 10px;
            margin: -50px 5% 20px;
            position: relative;
            z-index: 10;
            color: white;
            border-color: #0E77B7; 
        }

        .feature-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1); /* Thin divider */
}

/* Remove the divider from the last item */
.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #0E77B7; /* Blue accent color for icons */
}

.feature-text h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-text p {
    font-size: 14   px;
    line-height: 1.4;
    color: #cccccc; /* Slightly dimmed for better hierarchy */
}
.about-cold-calling {
    padding: 80px 10%;
    background-color: #fff;
}

.content-wrapper {
    display: flex;
    align-items: center; /* Aligns text and image vertically */
    gap: 50px; /* Space between text and image */
}

.text-side {
    flex: 1;
}

.accent-line {
    width: 40px;
    height: 4px;
    background-color: #0E77B7; /* Blue color from your theme */
    margin-bottom: 20px;
}

.text-side h1 {
    font-size: 50px;
    color: #090327; /* Dark navy */
    line-height: 1.2;
    margin-bottom: 30px;
}

.text-side p {
    font-size: 25px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.image-side {
    flex: 1;
}

.services-image {
    width: 100%;
    max-width: 550px;
    border-radius: 15px; /* Creates the rounded corners in the photo */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Adds a subtle professional lift */
    display: block;
}

.industries-section {
    padding: 80px 10%;
    background-color: #f9f9fb;
    text-align: center;

}

.section-header h2 {
    color: #090327;
    font-size: 32px;
    margin-bottom: 30px;
}

.header-line {
    width: 50px;
    height: 3px;
    background-color: #0E77B7;
    margin: 0 auto 40px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    gap: 20px;
}

.industry-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #f0f4f8; /* Light blueish background for icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.industry-card h3 {
    font-size: 16px;
    color: #090327;
    transition: all 0.4s ease;
}

/* --- HOVER EFFECT --- */
.industry-card:hover {
    background-color: #090327; /* Changes to your specific dark color */
    transform: translateY(-5px); /* Subtle lift effect */
}

.industry-card:hover h3 {
    color: white; /* Text turns white */
}

.industry-card:hover .icon-circle {
    background-color: rgba(255, 255, 255, 0.1); /* Circle becomes subtle */
    filter: brightness(0) invert(1); /* This inverts the icon color to white */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .industries-grid { grid-template-columns: 1fr; }
}
/* Responsive Styles */
@media (max-width: 768px) {
    .Intro {
        /* Reduce padding and center text for mobile */
        padding: 100px 5% 60px; 
        text-align: center;
        min-height: auto; /* Allow the section to grow with content */
        /* Change gradient to bottom-to-top so text is readable over the image */
        background-image: linear-gradient(to top, rgba(9, 3, 39, 0.95) 40%, rgba(9, 3, 39, 0.4) 100%), 
                          url('../photos/sample.png');
    }

    .Intro h1 {
        font-size: 36px; /* Smaller heading for mobile */
        max-width: 100%;
        margin: 0 auto 20px;
    }

    .Intro h2 {
        margin: 0 auto 15px; /* Centers the "Cold Calling" tag */
        font-size: 16px;
    }

    .Intro p {
        font-size: 18px;
        max-width: 100%;
    }

    .intro-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        gap: 10px;
        margin-top: 25px;
    }

    .btn-outline {
        width: 100%; /* Full width buttons for easier tapping */
        max-width: 280px;
        margin-top: 0; /* Removing the extra top margin from your base code */
        padding: 12px 20px;
    }
}

/* Very Small Devices (Phones) */
@media (max-width: 480px) {
    .Intro h1 {
        font-size: 28px;
    }
    
    .Intro {
        padding-top: 80px;
    }
}

/* Responsive: Stack them on top of each other on mobile */
@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .accent-line {
        margin: 0 auto 20px;
    }
}



/* Responsive adjustment for phones */
@media (max-width: 768px) {
    .features-bar {
        flex-direction: column;
        margin: 20px 5%;
    }
    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
    }
}


        .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%;
        gap: 30px;
    }
    .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: 768px) {
    .serve {
        max-width: 100%;
        margin: 20px 0;
    }
    .serve h2 {
        padding: 15px 20px; /* reduce padding for smaller screens */
        font-size: 18px;
    }
    .serve img {
        width: 40px;
        height: 40px;
        left: 10px; 
    }
    .box {
        flex-direction: column;
    }
}
@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;
            }
}