
/* --- Portfolio Hero Section --- */
.portfolio-hero-dark {
    position: relative;
    
    background: linear-gradient(135deg, #82ade1 0%, #d0d4d4 50%, #4f69a4 100%);
    padding: 120px 0 90px; 
    overflow: hidden;
    color: #000000;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Badge Pill */
.badge-wrapper {
    margin-bottom: 25px;
}

.hero-pill {
    background: rgba(25, 25, 25, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0 88 148); 
    backdrop-filter: blur(5px);
    display: inline-block;
}

/* Main Title */
.hero-title {
    font-size: 66px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}


.text-gradient {
    background: linear-gradient(to right, rgb(0 88 148), #15a0d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: rgba(29, 23, 23, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Glassmorphism Stat Cards --- */
.glass-card {
    background: rgba(90, 90, 197, 0.112); 
    border: 1px solid rgba(130, 191, 241, 0.1); 
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    backdrop-filter: blur(10px); /* The blur effect */
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-10px); 
    border-color: rgba(4, 34, 204, 0.5); 
    background: rgba(154, 192, 231, 0.08);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #2e4ba2; 
    margin-bottom: 5px;
    font-family: 'Nunito', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: rgba(24, 23, 23, 0.8);
    font-weight: 500;
}

/* --- Ambient Glow Effects (Optional for depth) --- */
.glow-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
}

.glow-left {
    background: #3774c9;
    top: -100px;
    left: -100px;
}

.glow-right {
    background: #4178d0;
    bottom: -100px;
    right: -100px;
}
/* Add this to your CSS file */
.portfolio-hero-dark .container {
    position: relative;
    z-index: 2; 
}

.glow-effect {
   
    z-index: 0; 
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .portfolio-hero-dark {
        padding: 140px 0 60px;
        min-height: auto;
    }
    .hero-title {
        font-size: 40px;
    }
    .glass-card {
        padding: 30px 15px;
    }
    .stat-number {
        font-size: 32px;
    }
}

/* =========================================
   6. PORTFOLIO FILTERS & PROJECTS
   ========================================= */

.portfolio-projects-section {
    background-color: #ffffff; 
    padding: 60px 0 60px;
    position: relative;
}

/* --- Filter Container --- */
.filters-wrapper {
    background: #fff;
    border: 1px solid rgb(10 168 223);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.filter-label {
    color: #686868;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

/* --- Filter Pills --- */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    background: rgb(255 255 255 / 51%);
    color: #304e76;
    border: 1px solid rgba(105, 105, 105, 0.47);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
}

/* .filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #000;
    transform: translateY(-2px);
} */
/* Update this specific section in your CSS */

.filter-btn:hover {
    
    background: #0bace3; 
    
    color: #fff; 
    

    border-color: #0bace3;
    
    transform: translateY(-2px);
    
   
    box-shadow: 0 4px 10px rgba(11, 172, 227, 0.4);
}
/* Active State (Teal Gradient) */
.filter-btn.active {
    background: linear-gradient(135deg, #0bace3 0%, #0066a1 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgb(138 174 194 / 68%);
}

/* --- Project Cards --- */
.project-card {
    background: #1e293b; 
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(56, 189, 248, 0.3);
}

/* Image Area */
.project-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    object-position: top center;
}

.project-card:hover .project-img {
    transform: scale(1.05); 
}

/* Badge on Image */
.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgb(0 106 166); /* Teal bg */
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 2;
    box-shadow: 0 4px 15px rgb(59 100 123 / 87%);
}

/* Content Area */
.project-body {
    padding: 30px;
}

.project-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    padding-right: 15px;
}

.project-link-icon {
    color: #38bdf8; 
    font-size: 20px;
    transition: transform 0.3s ease;
}

.project-link-icon:hover {
    color: #fff;
    transform: rotate(45deg);
}

.project-desc {
    color: #94a3b8; 
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .filters-wrapper {
        padding: 20px;
    }
    
    .filter-pills {
        flex-wrap: nowrap;
        overflow-x: auto; 
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        white-space: nowrap; 
    }
    
    .project-img-wrapper {
        height: 220px;
    }
    
    .project-title {
        font-size: 18px;
    }
}

/* =========================================
   PAGINATION STYLING (Responsive & Interactive)
   ========================================= */

.pagination-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.pagination-container {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap; 
    justify-content: center;
}

.page-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    
    /* Dark Navy Background */
    background-color: #1e293b; 
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #94a3b8;
    
    /* Typography */
    font-weight: 700;
    font-size: 16px;
    
    /* Interaction Properties */
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
    outline: none;
    user-select: none; 
    position: relative;
}


/* Hover Effect (Desktop) */
@media (hover: hover) {
    .page-btn:hover {
        background-color: #334155;
        color: #fff;
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px); 
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); 
    }
}

/* Click/Active Effect (Press Down) */
.page-btn:active {
    transform: translateY(0); 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background-color: #1e293b; 
}

/* ACTIVE PAGE (Teal/Green) */
.page-btn.active {
    background-color: #033b8e; 
    color: #fff;
    border-color: #2b50be;
    box-shadow: 0 4px 15px rgba(74, 137, 200, 0.853); 
    transform: none;
    pointer-events: none; 
}

/* DISABLED STATE */
.page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #0f172a; 
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    transform: none;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
    .pagination-wrapper {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .pagination-container {
        gap: 8px; 
    }

    .page-btn {
        width: 38px;  
        height: 38px;
        font-size: 14px; 
        border-radius: 6px;
    }
}

/* Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .page-btn {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}
/* Ensure hidden items don't take up space */
.project-item[style*="display: none"] {
    display: none !important;
}

/* =========================================
   CTA SECTION STYLING
   ========================================= */

.cta-section-dark {
    position: relative;
    background: radial-gradient(circle at center, var(--primary-color) 0%, #001f3f 100%);
    padding: 100px 0;
    overflow: hidden;
    color: #fff;
}

/* Reusing/Tweaking badge style */
.partner-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e1e6ee;
}

.text-muted-light {
    color: #cbd5e1; 
    font-size: 19px;
    line-height: 1.6;
    max-width: 550px;
}

/* --- Feature Points --- */
.feat-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 88, 174, 0.2); 
    color:rgb(235, 239, 243);
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.feature-item {
    font-weight: 600;
    font-size: 15px;
    cursor: default;
}

/* Hover effect for features */
.feature-item:hover .feat-icon {
    background:rgb(1, 78, 129);
    color: #fff;
    transform: scale(1.1);
}

/* --- White Glow Button --- */
.btn-white-glow {
    background-color: #fff;
    color: #0f172a; /* Dark text */
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    display: inline-block;
    text-decoration: none;
}

.btn-white-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background-color: #f8fafc;
    color: #0f172a;
}

/* --- Right Side Illustration Area --- */
.illustration-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-wrapper img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
}

/* Subtle floating animation for the main image */
.floating-anim {
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- Floating Stat Card --- */
.floating-stat-card {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background-color: #10b981; 
    padding: 25px 35px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #fff;
    z-index: 2;
    animation: floatUpDown 5s ease-in-out infinite reverse; 
}

.stat-count {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-text {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.9;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .cta-section-dark {
        padding: 70px 0;
    }

    .cta-content-wrapper {
        margin-top: 40px; 
    }
    
    .text-muted-light {
        margin: 0 auto 25px auto; 
    }

    /* Adjust floating card position on smaller screens */
    .floating-stat-card {
        bottom: -20px;
        right: 0;
        padding: 20px 25px;
        transform: scale(0.9);
    }
    .stat-count {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    /* Center features vertically on very small screens */
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px !important;
    }

    
    .floating-stat-card {
        bottom: -10px;
        right: -10px;
        transform: scale(0.8);
    }
}



/* Mega Menu Item Wrapper */
.mega-menu-item {
    margin-bottom: 20px;
}

.megaMenuItemInner {
    width: 100%;
    padding: 10px 12px;
    background: #e4f0ff; 
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}


.menu-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--font-color-style2);
}

/* Link Lists */
.mega-menu-item ul {
    padding: 0;
    margin: 0;
    padding-left: 10px;
}

.mega-menu-item ul li {
    list-style: none;
    font-size: 14px;
    padding: 3px 0;
}

.mega-menu-item ul li a {
    text-decoration: none;
    color: #555 !important;
    font-weight: 500;
    display: block;
    transition: all 0.2s ease;
}

.mega-menu-item ul li a:hover {
    color: var(--primary-color) !important;
    padding-left: 4px;
}


/* =========================================
   MOBILE LAYOUT & MEGA MENU LOGIC (Max-Width 991px)
   ========================================= */

@media (max-width: 991px) {
    
  
    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: #fff;
        display: none; 
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 15px;
        margin: 0;
    }

    .mega-menu.show {
        display: block !important;
        animation: slideDown 0.3s ease;
    }

    /* Mobile Mega Menu Items */
    .mega-menu-item {
        margin-bottom: 10px;
        text-align: left; 
        border-bottom: 1px solid #f9f9f9;
        padding-bottom: 10px;
    }
    
    .mega-menu-item:last-child { border-bottom: none; }

    .megaMenuItemInner {
        background: #d7e8fce7; 
        margin-bottom: 8px;
        padding: 10px;
        border-radius: 6px;
        display: flex;
        align-items: center;
    }

    /* 4. Center Buttons Logic */
    .header-buttons {
        order: 3; 
        width: 100%;
        display: flex !important;
        justify-content: center; 
        align-items: center;
        margin-top: 15px;
        margin-bottom: 10px;
        gap: 15px; 
    }

    .header-buttons .btn {
        padding: 8px 30px;
        font-size: 14px;
        flex: 0 1 auto; 
        min-width: 130px;
        text-align: center;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   PORTFOLIO EXTRA SECTIONS
   ========================================= */

/* --- 1. Spotlight Section --- */
.ps-spotlight-wrapper {
    padding: 40px 0;
    background-color: #fff;
}

.ps-subtitle {
    color: var(--primary-color, #005894);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(0, 88, 148, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

/* Glassy Card for Case Study */
.ps-case-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* Image Styling */
.ps-img-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.ps-img-box img {
    width: 100%;
    height:310px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ps-img-box:hover img {
    transform: scale(1.05);
}

.ps-floating-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Content Styling */
.ps-content {
    padding: 20px 0 20px 20px;
}

.ps-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-family: "Nunito", sans-serif;
    text-align: left;
}

.ps-desc {
    font-size: 12px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    text-align: left;

}
.page-head-sec p{
    font-size: 15px;
}

.service {
    margin-right: 50px;
}

/* Tech Tags */
.ps-tags-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.ps-tag {
    background: #f3f3f3;
    color: #555;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ps-tag:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Result Box */
.ps-result-box {
    background: rgba(0, 88, 148, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
}

.ps-result-icon {
    font-size: 32px;
    color: var(--primary-color);
}

.ps-result-box h4 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 24px;
}

.ps-result-box span {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
}

/* --- 2. Impact Section --- */
.ps-impact-wrapper {
    background-color: #fafafa;
}

.ps-impact-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease;
    height: 100%;
}

.ps-impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: var(--primary-color);
}

.ps-icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background: #eef4ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all 0.3s ease;
}

.ps-impact-card:hover .ps-icon-circle {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(360deg);
}

.ps-impact-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.ps-impact-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .ps-content {
        padding: 30px 0 0 0;
        text-align: center;
    }
    .ps-tags-group, .ps-result-box .d-flex {
        justify-content: center;
    }
    .ps-result-box {
        border-left: none;
        border-top: 4px solid var(--primary-color);
        border-radius: 0 0 10px 10px;
    }
}

/* =========================================
   AMBIENT MESH WAVE STYLES
   ========================================= */

.mesh-trusted-section {
    position: relative;
    /* Added extra padding bottom to account for the wave height */
    padding: 60px 0 100px 0; 
    background-color: #f8faff; 
    overflow: hidden; 
    margin-bottom: 0; 
}

/* --- 1. Animated Background Blobs --- */
.mesh-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.6; 
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px); /* Soft diffuse glow */
    animation: meshFloat 10s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

/* Brand Blue Blob (Top Left) */
.blob-1 {
    width: 500px; height: 500px;
    background: rgba(13, 110, 253, 0.12); 
    top: -150px; left: -150px;
}

/* Cyan/Teal Blob (Bottom Right) */
.blob-2 {
    width: 400px; height: 400px;
    background: rgba(16, 185, 129, 0.12);
    bottom: -50px; right: -100px;
    animation-delay: -5s;
}

/* Purple Highlight (Center) */
.blob-3 {
    width: 350px; height: 350px;
    background: rgba(139, 92, 246, 0.08);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: meshPulse 8s infinite alternate;
}

/* --- 2. Typography --- */
.mesh-heading {
    position: relative;
    z-index: 2;
}

.mesh-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #94a3b8;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.mesh-title {
    font-size: 40px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
    margin: 0 0 25px 0;
    font-family: "Nunito", sans-serif;
}

.mesh-title span {
    background: -webkit-linear-gradient(45deg, #0d6efd, #0847a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Decorative Gradient Line */
.mesh-line {
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, #0d6efd, #0847a5);
    border-radius: 10px;
    margin: 0 auto; /* Centered on mobile */
}

@media (min-width: 992px) {
    .mesh-line { margin: 0; } /* Left align on desktop */
}

/* --- 3. Glass Slider --- */
.mesh-marquee {
    position: relative;
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 45px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    
    /* Fade Masks */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.mesh-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: meshScroll 40s linear infinite;
    align-items: center;
}

.mesh-item i {
    font-size: 50px;
    color: #94a3b8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mesh-item i:hover {
    color: #0f172a;
    transform: scale(1.15);
    filter: drop-shadow(0 5px 15px rgba(13, 110, 253, 0.2));
}


/* --- Animations --- */
@keyframes meshScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes meshFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 20px) scale(1.1); }
}

@keyframes meshPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .mesh-trusted-section {
        padding: 80px 0 120px 0; /* Adjust padding for mobile */
    }
    
    .mesh-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .mesh-title {
        font-size: 32px;
    }
    
    .mesh-marquee {
        padding: 30px 0;
    }
    
    .mesh-track {
        gap: 40px;
    }
    
    .mesh-item i {
        font-size: 40px;
    }
    
    .mesh-wave-bottom svg {
        height: 60px; /* Smaller wave on mobile */
    }
}




/* --- Final CTA Box --- */
.hire-cta-box {
    background: #eaeeff; /* Your Light Blue Theme */
    border-radius: 40px;
    padding: 50px;
    border: 1px solid #d4dcff;
    position: relative;
    box-shadow: 0 20px 60px rgba(13, 110, 253, 0.08);
}
.hire-cta-box h3 {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}
.hire-cta-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Trust Icons at bottom */
.trust-icons {
    margin-top: 20px;
    font-size: 14px;
    color: #475569;
    font-weight: 600;
}
.trust-icons span {
    display: inline-block;
    margin: 5px 0;
}

/* --- Mobile Responsive --- */
@media (max-width: 991px) {
    .hire-cta-box { padding: 30px 20px; }
    .domain-grid { justify-content: center; }
    .hire-content { text-align: center; }
}

