/********** Template CSS **********/
:root {
    --primary: #2124B1;
    --secondary: #4777F5;
    --light: #F7FAFF;
    --dark: #1D1D27;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


.footer a {
    text-decoration: none;
}



/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: var(--dark) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 112px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        /* position: absolute; */
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--secondary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
}




/* ===============================
   HERO MODEL IMAGE (HOME PAGE ONLY)
   BOTTOM FADE EFFECT - NO BORDER VISIBLE
================================= */

.hero-header {
    position: relative;
    overflow: hidden;
    padding-bottom: 200px;
}

/* MAIN IMAGE WITH STRONG BOTTOM FADE */
.hero-model-img {
    position: absolute;
    right: 8%;
    top: 35%;
    transform: translateY(-50%);
    max-width: 32%;
    width: 32%;
    z-index: 10;
    
    /* STRONG BOTTOM FADE - No border visible */
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,1) 70%,   /* 70% tak solid */
        rgba(0,0,0,0.8) 80%, /* 80% tak 80% visible */
        rgba(0,0,0,0.4) 90%, /* 90% tak 40% visible */
        rgba(0,0,0,0) 100%   /* 100% tak fully transparent */
    );
    mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,1) 70%,
        rgba(0,0,0,0.8) 80%,
        rgba(0,0,0,0.4) 90%,
        rgba(0,0,0,0) 100%
    );
    
    /* Shadow for depth */
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

/* Large desktop (1400px+) - Even stronger fade */
@media (min-width: 1400px) {
    .hero-model-img {
        max-width: 35%;
        width: 35%;
        right: 5%;
        top: 32%;
        
        /* Extra strong fade for large screens */
        -webkit-mask-image: linear-gradient(to bottom, 
            rgba(0,0,0,1) 0%, 
            rgba(0,0,0,1) 65%,
            rgba(0,0,0,0.7) 75%,
            rgba(0,0,0,0.3) 85%,
            rgba(0,0,0,0) 95%  /* 95% pe hi fully transparent */
        );
        mask-image: linear-gradient(to bottom, 
            rgba(0,0,0,1) 0%, 
            rgba(0,0,0,1) 65%,
            rgba(0,0,0,0.7) 75%,
            rgba(0,0,0,0.3) 85%,
            rgba(0,0,0,0) 95%
        );
    }
}

/* Medium desktop (992px to 1399px) */
@media (min-width: 992px) and (max-width: 1399px) {
    .hero-model-img {
        max-width: 30%;
        width: 30%;
        right: 8%;
        top: 35%;
        
        -webkit-mask-image: linear-gradient(to bottom, 
            rgba(0,0,0,1) 0%, 
            rgba(0,0,0,1) 72%,
            rgba(0,0,0,0.8) 82%,
            rgba(0,0,0,0.4) 92%,
            rgba(0,0,0,0) 100%
        );
        mask-image: linear-gradient(to bottom, 
            rgba(0,0,0,1) 0%, 
            rgba(0,0,0,1) 72%,
            rgba(0,0,0,0.8) 82%,
            rgba(0,0,0,0.4) 92%,
            rgba(0,0,0,0) 100%
        );
    }
}

/* Tablet (768px to 991px) - Keep some fade but less */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-model-img {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        max-width: 55%;
        width: 55%;
        display: block;
        margin: 40px auto 0;
        
        /* Tablet par medium fade */
        -webkit-mask-image: linear-gradient(to bottom, 
            rgba(0,0,0,1) 0%, 
            rgba(0,0,0,1) 80%,
            rgba(0,0,0,0.6) 90%,
            rgba(0,0,0,0) 100%
        );
        mask-image: linear-gradient(to bottom, 
            rgba(0,0,0,1) 0%, 
            rgba(0,0,0,1) 80%,
            rgba(0,0,0,0.6) 90%,
            rgba(0,0,0,0) 100%
        );
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    }
}

/* MOBILE - No fade or very light fade */
@media (max-width: 767px) {
    .hero-model-img {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        width: 100%;
        display: block;
        margin: 40px auto 0;
        
        /* Mobile par very light fade ya none */
        -webkit-mask-image: linear-gradient(to bottom, 
            rgba(0,0,0,1) 0%, 
            rgba(0,0,0,1) 90%,
            rgba(0,0,0,0.8) 95%,
            rgba(0,0,0,0) 100%
        );
        mask-image: linear-gradient(to bottom, 
            rgba(0,0,0,1) 0%, 
            rgba(0,0,0,1) 90%,
            rgba(0,0,0,0.8) 95%,
            rgba(0,0,0,0) 100%
        );
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    }
}

/* EXTRA STRONG FADE VERSION (agar aur fade chahiye) */
.hero-model-img.extra-fade {
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,1) 60%,   /* 60% tak hi solid */
        rgba(0,0,0,0.6) 70%, /* 70% pe 60% visible */
        rgba(0,0,0,0.2) 80%, /* 80% pe 20% visible */
        rgba(0,0,0,0) 90%    /* 90% pe fully transparent */
    );
    mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,1) 60%,
        rgba(0,0,0,0.6) 70%,
        rgba(0,0,0,0.2) 80%,
        rgba(0,0,0,0) 90%
    );
}

/* COMPLETE BOTTOM FADE (border bilkul nahi dikhega) */
.hero-model-img.complete-fade {
    -webkit-mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,1) 50%,   /* 50% tak solid */
        rgba(0,0,0,0.5) 65%, /* 65% pe 50% visible */
        rgba(0,0,0,0.1) 80%, /* 80% pe 10% visible */
        rgba(0,0,0,0) 90%    /* 90% pe fully transparent */
    );
    mask-image: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,1) 50%,
        rgba(0,0,0,0.5) 65%,
        rgba(0,0,0,0.1) 80%,
        rgba(0,0,0,0) 90%
    );
}









/* our companies  */



/*** Clients Section ***/
.bg-light {
    background-color: #F7FAFF !important; /* Your off-white color */
}

.client-item {
    margin-bottom: 20px;
}

.client-logo-container {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px 20px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 66, 177, 0.1);
}

.client-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(33, 66, 177, 0.15);
    border-color: rgba(33, 66, 177, 0.2);
}

.client-logo {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* REMOVE grayscale filter and lower opacity */
    filter: none; /* Changed from: filter: grayscale(100%); */
    opacity: 1; /* Changed from: opacity: 0.8; */
    transition: all 0.3s ease;
}

/* Optional: Agar aap chahte hain ki hover pr thoda effect aaye */
.client-logo-container:hover .client-logo {
    /* REMOVE grayscale transition */
    filter: none; /* Changed from: filter: grayscale(0%); */
    opacity: 1; /* Already 1, so no change needed */
    
    /* Optional: Agar aap thoda brightness increase karna chahte hain hover pr */
    /* brightness(1.1) thoda bright karega */
    filter: brightness(1.05);
}

.load-more-clients {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
    padding: 10px 30px;
    font-weight: 500;
}

.load-more-clients:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 66, 177, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .client-logo-container {
        height: 160px;
        padding: 25px 15px;
    }
    
    .client-logo {
        max-height: 110px;
    }
}

@media (max-width: 767.98px) {
    .client-logo-container {
        height: 140px;
        padding: 20px 15px;
    }
    
    .client-logo {
        max-height: 100px;
    }
}

@media (max-width: 575.98px) {
    .client-logo-container {
        height: 130px;
        padding: 15px 10px;
    }
    
    .client-logo {
        max-height: 90px;
    }
}














/* our company logos section ends  */






/*about section */



.about-section {
    padding: 100px 20px;
    background: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.about-image img {
    width: 100%;
    max-width: 520px;
}

/* CONTENT */
.about-content {
    max-width: 520px;
}

.about-tag {
    color: #ff8a1f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 40px;
    color: #2d2d4f;
    margin-bottom: 25px;
}

.about-content h3 {
    font-size: 22px;
    color: #2d2d4f;
    line-height: 1.4;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* BUTTON */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    background: #f7941d;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: #e07e0f;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
    }

    .about-image img {
        max-width: 420px;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 32px;
    }

    .about-content h3 {
        font-size: 18px;
    }
}
















/*service start */










.services {
    padding: 80px 20px;
    background: #fff7f4;
}

.services-header {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.services-header h2 {
    font-size: 36px;
    color: #2d2d4f;
    margin-bottom: 10px;
}

.services-header p {
    color: #555;
    font-size: 16px;
}

.services-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 12px;
    overflow: hidden;
}

.service-card {
    padding: 40px 30px;
    color: #fff;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-card a {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.service-card a:hover {
    background: #fff;
    color: #000;
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon i {
    font-size: 20px;
}

/* COLORS (same as screenshot) */
.seo { background: #f7941d; }
.ads { background: #6c6494; }
.social { background: #eb4c4c; }
.content { background: #1c6f9c; }
.local { background: #8a4de8; }
.lead { background: #2346b8; }

.webdev {
    background: #0fb9b1;
}

.crm {
    background: #f368e0;
}

.erp {
    background: #576574;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        text-align: center;
    }

    .icon {
        margin: 0 auto 20px;
    }
}







/*service end */









/*Why Take Our Services Section*/


.why-section {
    padding: 100px 20px;
    background: #f7faff;
}

.why-container {
    max-width: 1200px;
    margin: auto;
}

.why-header {
    margin-bottom: 60px;
}

.why-tag {
    color: #ff8a1f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.why-header h2 {
    font-size: 42px;
    color: #2d2d4f;
    line-height: 1.2;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.why-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.why-icon {
    width: 55px;
    height: 55px;
    background: #f7941d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
    color: #fff;
    font-size: 22px;
}

.why-card h3 {
    font-size: 18px;
    color: #2d2d4f;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-header h2 {
        font-size: 32px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        text-align: center;
    }

    .why-icon {
        margin: 0 auto 20px;
    }
}






/*Why Take Our Services Section end */

















  
    /* ═══════════════════════════════════════════════════
       NUMBERS / STATS SECTION
    ═══════════════════════════════════════════════════ */
    .numbers-section {
        position: relative;
        background: #F7FAFF;
        padding: 100px 40px 130px;
        overflow: hidden;
        font-family: 'Roboto', sans-serif;
    }
    .numbers-bg-dots {
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, #c5cfe8 1.5px, transparent 1.5px);
        background-size: 28px 28px;
        opacity: 0.55;
        pointer-events: none;
        z-index: 0;
    }
    .numbers-inner {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        min-height: 560px;
    }
    .numbers-heading {
        font-family: 'Roboto', sans-serif;
        font-weight: 900;
        font-size: clamp(30px, 3.5vw, 50px);
        color: #1D1D27;
        line-height: 1.1;
        letter-spacing: -1px;
        flex-shrink: 0;
    }
    .numbers-heading span   { color: #1D1D27; display: block; }
    .numbers-heading--right { text-align: right; }
    .numbers-left  { flex: 0 0 auto; }
    .numbers-right { flex: 0 0 auto; }

    .numbers-center {
        position: relative;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 400px;
    }
    .img-tilt {
        position: absolute;
        width: 205px;
        height: 270px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(33,36,177,0.18);
        transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
        cursor: pointer;
    }
    .img-tilt img {
        width: 100%; height: 100%;
        object-fit: cover; display: block;
        transition: transform 0.5s ease;
    }
    .img-tilt--left  { transform: rotate(-6deg) translateX(-32px); z-index: 2; }
    .img-tilt--right { transform: rotate(5deg)  translateX(32px);  z-index: 1; }
    .img-tilt--left:hover  { transform: rotate(4deg)  translateX(-20px) scale(1.06); box-shadow: 0 30px 60px rgba(33,36,177,0.28); z-index: 10; }
    .img-tilt--right:hover { transform: rotate(-4deg) translateX(20px)  scale(1.06); box-shadow: 0 30px 60px rgba(33,36,177,0.28); z-index: 10; }
    .img-tilt:hover img { transform: scale(1.08); }

    /* Stat cards — fixed width so 100% card never stretches */
    .stat-card {
        position: absolute;
        background: #fff;
        border-radius: 14px;
        padding: 16px 18px;
        box-shadow: 0 6px 24px rgba(33,36,177,0.10);
        width: 160px;
        z-index: 5;
        cursor: default;
        will-change: transform;
        transition: box-shadow 0.3s ease;
    }
    .stat-card.is-hovered {
        box-shadow: 0 18px 40px rgba(33,36,177,0.24);
    }
    .stat-val {
        font-family: 'Roboto', sans-serif;
        font-weight: 900;
        font-size: 34px;
        color: #2124B1;
        line-height: 1;
        margin-bottom: 6px;
        letter-spacing: -0.5px;
    }
    .stat-lbl { font-size: 12.5px; color: #555; line-height: 1.55; }
    .stat-dot  { display: inline-block; width: 10px; height: 10px; background: #2124B1; border-radius: 50%; margin-top: 8px; }

    /* Desktop positions */
    .stat-card--tl { top: 10px;  left: -10px; }
    .stat-card--tc { top: -30px; left: 50%; transform: translateX(-50%); }
    .stat-card--tr { top: 10px;  right: -10px; }
    .stat-card--bl { bottom: 30px; left: 10%; }
    .stat-card--br { bottom: 30px; right: 10%; }

    /* Mobile */
    @media (max-width: 991px) {
        .numbers-section { padding: 60px 24px 80px; }
        .numbers-inner { flex-direction: column; align-items: stretch; min-height: auto; }
        .numbers-mobile-headings { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
        .numbers-heading--right  { text-align: right; }
        .numbers-center  { height: 280px; margin: 36px auto; width: 100%; }
        .img-tilt        { width: 155px; height: 205px; }
        .stat-card       { position: static !important; transform: none !important; width: 100%; }
        .numbers-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 10px; }
        .numbers-stats-grid .stat-card--tc { grid-column: 1 / -1; }
    }
    @media (max-width: 480px) {
        .img-tilt        { width: 130px; height: 172px; }
        .stat-val        { font-size: 26px; }
        .numbers-heading { font-size: 26px; }
    }
   





















/*** Recent Projects Slider Section ***/

/* Main container */
.projects-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Track that holds all project slides */
.projects-slider-track {
    display: flex;
    animation: slideProjects 60s linear infinite;
    width: max-content;
    gap: 30px;
    padding: 10px 20px;
}

/* Individual project slide */
.project-slide {
    flex: 0 0 auto;
    width: 350px;
}

/* Project card styling */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    height: 100%;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Image container */
.project-image-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

/* Video specific styles */
.video-project .project-img {
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-play-btn {
    width: 70px;
    height: 70px;
    background: rgba(33, 66, 177, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(33, 66, 177, 0.3);
}

.video-play-btn i {
    margin-left: 5px;
}

.video-label {
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.video-indicator {
    color: white;
    font-size: 13px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.video-player-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background: #000;
}

.project-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay effect for image cards */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(33, 66, 177, 0.9) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    z-index: 2;
}

/* Video project overlay specific */
.video-project .project-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(33, 66, 177, 0.85) 100%);
}

/* Content inside overlay */
.project-content {
    transform: translateY(20px);
    transition: all 0.4s ease;
    width: 100%;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.project-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.project-title {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.project-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Hover Effects */
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(33, 66, 177, 0.2);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-content {
    transform: translateY(0);
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

/* Video specific hover effects */
.video-project:hover .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.video-project:hover .video-play-btn {
    transform: scale(1.1);
    background: rgba(33, 66, 177, 1);
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.video-modal-player {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    background: #000;
}

.video-modal-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-modal-info {
    padding: 25px;
    background: #fff;
}

.video-modal-info h3 {
    color: var(--dark);
    font-size: 24px;
    margin-bottom: 10px;
}

.video-modal-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Pause animation on container hover */
.projects-slider-container:hover .projects-slider-track {
    animation-play-state: paused;
}

/* Animation for sliding */
@keyframes slideProjects {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Gradient overlays for smoother edges */
.projects-slider-container::before,
.projects-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.projects-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #F7FAFF, transparent);
}

.projects-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #F7FAFF, transparent);
}

/* Responsive Design */

/* For tablets */
@media (max-width: 1199.98px) {
    .project-slide {
        width: 320px;
    }
    
    .project-image-container {
        height: 320px;
    }
    
    .projects-slider-track {
        gap: 25px;
        animation-duration: 50s;
    }
    
    .video-modal-content {
        max-width: 900px;
    }
}

@media (max-width: 991.98px) {
    .project-slide {
        width: 300px;
    }
    
    .project-image-container {
        height: 300px;
    }
    
    .projects-slider-track {
        gap: 20px;
        animation-duration: 45s;
    }
    
    .projects-slider-container::before,
    .projects-slider-container::after {
        width: 100px;
    }
    
    .video-modal-content {
        max-width: 800px;
    }
    
    .video-modal-info {
        padding: 20px;
    }
    
    .video-modal-info h3 {
        font-size: 22px;
    }
}

/* For mobile */
@media (max-width: 767.98px) {
    .project-slide {
        width: 280px;
    }
    
    .project-image-container {
        height: 280px;
    }
    
    .projects-slider-track {
        gap: 15px;
        animation-duration: 40s;
        padding: 10px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .projects-slider-container::before,
    .projects-slider-container::after {
        width: 50px;
    }
    
    .video-modal-content {
        width: 95%;
        border-radius: 15px;
    }
    
    .video-modal-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
        width: 35px;
        height: 35px;
    }
}

/* For small mobile */
@media (max-width: 575.98px) {
    .project-slide {
        width: 260px;
    }
    
    .project-image-container {
        height: 260px;
    }
    
    .projects-slider-track {
        gap: 12px;
        animation-duration: 35s;
    }
    
    .project-overlay {
        padding: 20px;
    }
    
    .project-title {
        font-size: 16px;
    }
    
    .project-desc {
        font-size: 13px;
    }
    
    .video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .video-label {
        font-size: 12px;
    }
    
    .projects-slider-container::before,
    .projects-slider-container::after {
        width: 30px;
    }
    
    .video-modal-content {
        border-radius: 10px;
    }
    
    .video-modal-info {
        padding: 15px;
    }
    
    .video-modal-info h3 {
        font-size: 18px;
    }
    
    .video-modal-info p {
        font-size: 14px;
    }
}

/* For very small screens */
@media (max-width: 375px) {
    .project-slide {
        width: 240px;
    }
    
    .project-image-container {
        height: 240px;
    }
    
    .video-modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 30px;
        height: 30px;
    }
}








/*** Sliding Clients Logo Section ***/

/* Main container */
.sliding-clients-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Track that holds all logos */
.sliding-track {
    display: flex;
    animation: slideLeft 30s linear infinite;
    width: max-content;
    gap: 40px;
    padding: 10px 0;
}

/* Individual logo container */
.sliding-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(33, 66, 177, 0.1);
    transition: all 0.3s ease;
}

.sliding-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 66, 177, 0.15);
    border-color: rgba(33, 66, 177, 0.2);
}

/* Logo images */
.sliding-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Animation for sliding */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause state */
.sliding-track.paused {
    animation-play-state: paused;
}

/* Responsive Design */

/* For tablets */
@media (max-width: 991.98px) {
    .sliding-logo {
        width: 160px;
        height: 90px;
        padding: 12px;
    }
    
    .sliding-logo img {
        max-height: 65px;
    }
    
    .sliding-track {
        gap: 30px;
        animation-duration: 25s;
    }
}

/* For mobile */
@media (max-width: 767.98px) {
    .sliding-logo {
        width: 140px;
        height: 80px;
        padding: 10px;
    }
    
    .sliding-logo img {
        max-height: 60px;
    }
    
    .sliding-track {
        gap: 25px;
        animation-duration: 20s;
    }
}

/* For small mobile */
@media (max-width: 575.98px) {
    .sliding-logo {
        width: 120px;
        height: 70px;
        padding: 8px;
    }
    
    .sliding-logo img {
        max-height: 50px;
    }
    
    .sliding-track {
        gap: 20px;
        animation-duration: 15s;
    }
}

/* REMOVE HOVER SPEED EFFECT - Yeh line comment ya delete karein */
/* .sliding-clients-container:hover .sliding-track {
    animation-duration: 40s;
} */

/* Gradient overlays for smoother edges (optional) */
.sliding-clients-container::before,
.sliding-clients-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.sliding-clients-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.sliding-clients-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* For mobile, remove gradient overlays */
@media (max-width: 767.98px) {
    .sliding-clients-container::before,
    .sliding-clients-container::after {
        width: 50px;
    }
}

@media (max-width: 575.98px) {
    .sliding-clients-container::before,
    .sliding-clients-container::after {
        width: 30px;
    }
}







/*** Hero Header ***/
.hero-header {
    background:
        url(../img/bg-dot.png),
        url(../img/bg-dot.png),
        url(../img/bg-round.png),
        url(../img/bg-tree.png),
        url(../img/bg-bottom-hero.png);
    background-position:
        10px 10px,
        bottom 190px right 10px,
        left 55% top -1px,
        left 45% bottom -1px,
        center bottom -1px;
    background-repeat: no-repeat;
    background-size:
        auto,
        auto,
        auto,
        auto,
        100% auto;
}




/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}


/*** Service ***/
.service-item {
    position: relative;
    height: 350px;
    padding: 30px 25px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/icon-shape-primary.png) center center no-repeat;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--primary);
    background: url(../img/icon-shape-white.png);
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--light);
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: #DDDDDD;
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Project Portfolio ***/
.portfolio-overlay {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    background: var(--primary);
    transition: .5s;
    z-index: 1;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item .btn {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/icon-shape-white.png) center center no-repeat;
    border: none;
    transition: .5s;
    opacity: 0;
    z-index: 2;
}

.portfolio-item:hover .btn {
    opacity: 1;
    transition-delay: .15s;
}


/*** Footer ***/
.footer {
    background: url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
   padding: 12px 0;  
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}






/* MSME newsletter badge */

.msme-badge-news {
    position: absolute;
    right: 10px;
    top: 72px;         
}

/* IMPORTANT FIX */
.msme-badge-news img {
    width: 115px;

    background: white;   
    padding: 0;              
    border-radius: 0;          
    box-shadow: none;          

    display: block;
}


@media (max-width:768px){

    .msme-badge-news{
        position: static;
        margin-top: 14px;
        text-align: center;
    }
}

