/* Body ke liye basic setup */
/* ===== Safe Horizontal Scroll Fix ===== */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    /* Horizontal scroll hide kare */
}

/* Ensure rogue elements cannot cause overflow */
* {
    max-width: 100vw;
    /* Viewport width se zyada na jaye */
    box-sizing: border-box;
}



/* ================= NAVBAR BASE ================= */
.custom-navbar {
    transition: all 0.3s ease-in-out;
    background: transparent;
    padding: 0.8rem 2rem;
    box-shadow: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #fff;

}

.navbar-collapse {
    font-family: Mona Sans, -apple-system, BlinkMacSystemFont, sans-serif;

}

.navbar-collapse .navbar-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.navbar-collapse .nav-link {
    letter-spacing: 0.9px;
    word-spacing: 2px;
    text-transform: none;
    font-size: 1rem;
    /* fluid size */
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.navbar-collapse .nav-link:hover {
    color: #0d6edf;
}

.custom-navbar .btn-build {
    background: transparent;
    color: #fff !important;
    border: 1px solid #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    transition: all 0.3s;
    margin-left: auto;
    flex-shrink: 0;
}

.custom-navbar .btn-build:hover {
    background: #0d6edf;
    color: #fff !important;
    border-color: #0d6edf;
}


/* ================= HOVER / SCROLL STATE ================= */
.custom-navbar.prominent {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 2rem;
    /* same padding, no height increase */
}


.custom-navbar.prominent .nav-link {
    color: #000;
}

.custom-navbar.prominent .btn-build {
    background: #0d6edf;
    color: #fff !important;
    border: 1px solid #0d6edf;
}

.custom-navbar.prominent .default-logo {
    display: none;
    opacity: 0;
}

.custom-navbar.prominent .scroll-logo {
    opacity: 1;
    z-index: 3;
    display: block;
}

.logo {
    height: 30px;
    width: auto;
    position: absolute;
    margin-top: 0.5vh;
    left: -10px;
    transition: opacity 0.3s ease;
}

.default-logo {
    opacity: 1;
    z-index: 2;
}

.scroll-logo {
    opacity: 0;
    z-index: 1;

}

.btn-careers {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.45rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar:hover .btn-careers:hover {
    background: #0d6edf;
    color: #ffffff;
    border-color: #0d6edf;
}

.navbar:hover .btn-careers {
    background: #f9f9fc;
    color: #0d6edf;
    border-color: #0d6edf;
}

.navbar:hover .btn-signin {
    color: #0d6edf;

}

.navbar:hover .btn-grow {
    border: 1px solid #0d6edf;
    color: #0d6edf;

}

.navbar:hover .btn-grow:hover {
    background: #0d6edf;
    color: #ffffff;
    border-color: #0d6edf;
}

/* Grow With Us Button */
.btn-grow {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.45rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-grow:hover {
    transform: scale(1.05);
}

/* Sign In Button */
.btn-signin {
    background: transparent;
    color: #fff;
    font-size: 1rem;
    border: none;
    padding: none !important;
    ;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-signin:hover {
    background: transparent;
    color: #0d6edf;
}

/* Scroll effect: all buttons */
.navbar.scrolled .btn-careers {
    background: #ffffff;
    color: #0d6edf;
    border: 1px solid #0d6edf;
}

.navbar.scrolled .btn-careers:hover {
    background: #0d6edf;
    color: #ffffff;
    border: 2px solid #0d6edf;
}

.navbar.scrolled .btn-grow {
    background: #ffffff;
    color: #0d6edf;
    border: 1px solid #0d6edf;
}

.navbar.scrolled .btn-grow:hover {
    background: #0d6edf;
    color: #ffffff;
    border: 2px solid #0d6edf;
}

.navbar.scrolled .btn-signin {
    background: transparent;
    color: #0d6edf;

}


/* MOBILE: simplify mega-menus into center-aligned simple lists */
@media (max-width: 991px) {

    /* make collapse full-width + center */
    .navbar-collapse {
        background: #ffffff;

        padding: 1rem;
        color: #000;
        text-align: center;
    }

    /* stack nav items and center them */
    .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        align-items: center;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-weight: 600;
        color: #0e0e0e !important;
        text-align: center;
        cursor: pointer;
    }

    /* hide original large dropdown menus completely on mobile */
    .navbar-nav .dropdown-menu {
        display: none !important;
        visibility: hidden !important;
        height: 0;
        overflow: hidden;
    }

    /* mobile-submenu (created by JS) */
    .mobile-submenu {
        display: none;
        list-style: none;
        padding: 6px 0 12px;
        margin: 0;
        width: 100%;
    }

    .mobile-submenu .mobile-sub-item {
        width: 100%;
        padding: 0 1rem;
    }

    .mobile-submenu .mobile-sub-link {
        display: block;
        padding: 10px 0;
        text-decoration: none;
        color: #0a0a0a;
        font-weight: 600;
        width: 100%;
    }

    .mobile-submenu .mobile-sub-link:hover {
        text-decoration: underline;
    }

    /* visual separator between links */
    .mobile-submenu .mobile-sub-item+.mobile-sub-item {
        border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    /* ensure CTA buttons center on mobile */
    .navbar .btn,
    .btn-build,
    .btn-animated {
        display: block;
        margin: 10px auto;
    }
}

/* Custom Hamburger */
.custom-toggler {
    border: none;
    background: transparent;
    padding: 8px;
    outline: none;
}

.custom-toggler .toggler-icon {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    /* hamburger bar color */
    border-radius: 3px;
    transition: all 0.4s ease;
    transform-origin: center;
}

/* When menu is open (aria-expanded = true) → cross animation */
.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Default Hamburger */
.custom-toggler .toggler-icon {
    background-color: #fff;
    /* default white */
}

/* On hover → bars blue */
.custom-toggler:hover .toggler-icon {
    background-color: #007bff;
    /* Bootstrap blue */
}

/* When navbar is scrolled → bars blue */
.navbar.scrolled .custom-toggler .toggler-icon {
    background-color: #007bff;
}

/* Prevent any background on active/focus/hover */
.custom-toggler:focus,
.custom-toggler:active,
.custom-toggler:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ================= DROPDOWN ================= */
.mega-menu {
    min-width: 80%;
    left: 55%;
    transform: translateX(-50%);
    border-radius: 3px;
    transition: all 0.3s ease;
    background-color: #fff !important;
    /* pure white background */
    color: #000;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* soft shadow instead of grey box */
    padding: 1rem;
}

.mega-menu a {
    color: #000 !important;
    /* black text */
    text-decoration: none;
    display: block;
    padding: 6px 12px;
    /* spacing for neat look */
    transition: color 0.3s ease;
    background: transparent !important;
    /* remove grey hover background */
}



.company-box {
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    display: inline-block;
    /* Box content ke size ke according */
    min-width: 180px;
    /* Thoda fix min-width so it looks balanced */
}

.company-box a {
    display: block;
    padding: 6px 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.company-box a:hover {
    background: #0d6efd !important;
    color: #fff !important;
    padding-left: 15px;
}

/* Dropdown Hire Now button style */
.dropdown .odoo-dev-btn-gradient {
    color: #17181a;
    /* initial text color */
    background-color: white;
    /* initial background */
    border: 1px solid #434547;
    /* initial border */
    transition: all 0.3s ease;
    margin-top: 2vh;
}

.dropdown .odoo-dev-btn-gradient:hover {
    color: #fff !important;
    /* text white on hover */
    background-color: #0d6edf !important;
    /* blue background */

}

/*
.divider {
    height: 100%;
    border-radius: 2px;
}
.company-box {
    background: #ffffff;
    border-radius: 6px;
    padding: 5px;
    display: inline-block;
    min-width: 560px;
}

.company-box a {
    display: block;
    padding: 6px 4px;
    margin-bottom: 5px;
    max-width: 25vh;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.company-box a:hover {
    background: #0d6efd !important;
    color: #fffbfb !important;
    padding-left: 15px;
    max-width: 25vh;
}

.btn-ceo-glow {
    background: linear-gradient(45deg, #0d6efd, #6610f2);
    border-radius: 10px;
    border-color: white!important;
    color: white!important;

}

.btn-ceo-glow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.6);
    background: linear-gradient(45deg, #6610f2, #0d6efd);

}

.ceo-card {
    background: black;
    border: 1px solid rgba(93, 90, 90, 0.3);
    color: #fffcfc;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.4s ease-in-out;
    margin-left: 2vh;
    margin-top: 2vh;
    max-width: 1200px;
}

.ceo-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
} */
/* On hover → show arrow */


[id] {
    scroll-margin-top: 90px;
}

/* ===============================
   Expertise Dropdown
================================= */
.expertise-link {
    display: block;
    position: relative;
    padding: 5px 4px;
    border-radius: 10px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    background: transparent;
    transition: all 0.3s ease;
}

.expertise-link .title {
    font-weight: 500;
    font-size: 1rem;
}

.expertise-link .desc {
    font-size: 0.8rem;
    color: #1f1e1e;
    display: block;
    margin-top: 2px;
    max-width: 500px;
}

/* Hover Effects */
.expertise-link:hover {
    padding-left: 20px;
}

.expertise-dropdown .expertise-link:hover {
    background-color: #0d6edf !important;
    color: #fff !important;
}

.expertise-dropdown .expertise-link:hover .title,
.expertise-dropdown .expertise-link:hover .desc {
    color: #fff !important;
}

/* Divider */
.expertise-dropdown .divider {
    width: 1px;
    background: #ccc;
    height: 100%;
}

/* Headings */
.expertise-heading {
    margin-bottom: 20px;
}


/* ===============================
   Logos Grid & Logo Box
================================= */

/* Logos Grid */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(1fr);
    /* 4 logos in a row */
    gap: 8px;
}

/* Logo Box */
.logo-box {
    position: relative;
    width: 250px;
    /* same width for all */
    height: 60px;
    /* same height for all */
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #eee;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Background Blur */
.logo-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6e8293, #0c0d0e, #6e8293);
    filter: brightness(0.7);
    z-index: 0;
    transition: all 0.3s ease;
}

/* Hover effect: lift + shadow */
.logo-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.logo-box:hover::before {
    filter: brightness(0.9);
    transform: scale(1.05);
}

/* Logos inside boxes — larger and balanced */
.logo-box img {
    width: 100%;
    height: 100%;
    max-width: 260px;
    /* bigger size */
    max-height: 200px;
    /* taller height */
    object-fit: contain;
    /* keeps the original proportions */
    display: block;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .logo-box {
        width: 200px;
        /* bigger on mobile too */
        height: 100px;
    }

    .logo-box img {
        max-width: 180px;
        max-height: 90px;
    }
}


/* Hire Links */
.hire-link {
    display: block;
    position: relative;
    padding: 5px 4px;
    border-radius: 10px;
    text-decoration: none;
    color: #111;
    transition: all 0.3s ease;
    /* includes transform */
}

.hire-link .title {
    font-weight: 480;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    /* smooth title color */
}

.hire-link .desc {
    font-size: 1rem;
    color: #444;
    display: block;
    margin-top: 2px;
    max-width: 800px;
    transition: color 0.3s ease;
    /* smooth desc color */
}

/* Hover Like Company & Expertise */
.hire-link:hover {
    background: #0d6edf !important;
    /* dark blue bg */
    transform: translateX(6px);
    /* smooth move forward */

}

.hire-link:hover .title,
.hire-link:hover .desc {
    color: #fff !important;
    /* both white */
}


/* Portal Links */
.portal-links li {
    margin-bottom: 6px;
}


.portal-link {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    color: #111;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portal-links li a.portal-link:hover {
    background: #0d6edf !important;
    color: #fff !important;
    transform: translateX(6px);
}

/* Divider height auto */
.divider {
    height: 100%;
}

/* Grid right side ke liye pehle se hi fine hai */
.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 0;
    /* extra margin hata diya kyunki ab row mai hai */
}

/* All Clients button style */
.btn-clients-unique {
    color: #393c3e;
    /* initial text color */
    background-color: white;
    /* initial bg */
    border: 1px solid #404245;
    /* initial border */
    padding: 2.2rem 2.2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;

}

.btn-clients-unique:hover {
    color: #fff !important;
    /* text white on hover */
    background-color: #0d6efd !important;
    /* blue background */
    border: none !important;

}

/* Clients Dropdown Container */
.clients-section {
    background: #fff;
    /* dropdown background white */
    border-radius: 12px;
    padding: 20px !important;
    color: #000;
    /* default text black */
    display: none;
    /* hover JS will show */
}

/* Inner box */
.clients-inner-box {
    width: 100%;
}


/* Description + Heading */
.btn-clients-uniquents-info h5 {
    color: #000;
    /* heading black */
    font-size: 1rem;
    font-weight: 500;

}

.clients-info p {
    color: #000;
    /* description black */
    font-size: 1rem;

}

/* Button centralized */
.col-md-3.text-md-end {
    display: flex;
    justify-content: center;
    /* center horizontally */
    align-items: center;
    /* center vertically */
}

.client-box {
    background: linear-gradient(135deg, #404d58, #0c0d0e, #404d58);
    border-radius: 0;
    /* blocks attach */
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.client-box:hover {
    background: linear-gradient(135deg, #404d58, #0c0d0e, #404d58);
    transform: scale(1.05);
}

.client-logo {
    max-height: 50px;
    object-fit: contain;

}

/* Hover behavior like Hire Team */
.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

.clients-section:hover {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .client-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .client-logo {
        max-height: 35px;
    }
}

/* Solutions Dropdown Custom Styling */
.solutions-dropdown .dropdown-menu {
    min-width: 850px;
    max-width: 950px;
    left: 50% !important;
    transform: translateX(-50%);
    border: 0;
    padding: 0;
}

.solutions-dropdown .dropdown-menu .row {
    margin: 0;
}

.solutions-dropdown .col-md-6 {
    padding: 0;
    height: 100%;
}

.solutions-dropdown .left-box {
    padding: 2rem;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solutions-dropdown .left-box h5 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.solutions-dropdown .left-box p {
    margin-bottom: 1.5rem;
}

.solutions-dropdown .right-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image fills same height as left box */
    display: block;
}

.solutions-dropdown .dropdown-menu {
    background: #f8f9fa;
}

/* ================ CONTACT BUTTON =============== */
.contact-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 9px 20px;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #0d6edf;
    color: #fff;
    transform: scale(1.07);
}

/*================= */
.slide1-hero-img {
    max-height: 750px;
    width: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.slide1-hero-caption {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    text-align: left;


}

/* Heading and Text */
.slide1-heading {
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
}

.slide1-subtext {
    font-size: 1.1rem;
    color: #e5e5e5;
}

.slide1-btn-contact {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: #0d6edf;
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.slide1-btn-contact:hover {
    background: #0d6edf;
}

/* Services */
.slide1-services-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
}

.slide1-services-line {
    border-top: 3px solid #8a8a8a;
    width: 120vh;
    margin-bottom: 1rem;
}

.slide1-service-box {
    border-radius: 8px;
    margin-top: 1vh;
    text-align: center;
    transition: 0.3s;
}

.slide1-services-box {
    border-radius: 8px;
    margin-top: -2vh;
    text-align: center;
    transition: 0.3s;
}

.slide1-service-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

/* CEO Card */
.slide1-ceo-card {
    background: #ffffff;
    color: #000;
    border-radius: 0;
    /* padding: 1.2rem 1.5rem; */
    max-width: 420px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e5e5;
}

.slide1-service-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Quote styling */
.slide1-ceo-quote {
    font-style: italic;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
    border-left: 4px solid #0d6efd;
    padding-left: 0.75rem;
}

/* Image style */
.slide1-ceo-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #0d6efd;
}

/* Name + Title */
.slide1-ceo-name {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

.slide1-ceo-title {
    font-size: 0.85rem;
    color: #555;
}

/* Button */
.slide1-ceo-btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.55rem 1.2rem;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

.slide1-ceo-btn:hover {
    background: #0b5ed7;
}



.hero-caption p {
    font-size: 1.2rem;
    color: #f1f1f1;

}

/* Hero carousel full screen behind navbar */
#heroCarousel {
    position: absolute;
    /* instead of relative */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

#heroCarousel .carousel-item {
    height: 100vh;
}

#heroCarousel .carousel-item img {
    height: 140vh;
    width: 100%;
    object-fit: cover;

}


.btn-contact {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #0d6edf;
    color: #fff;
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}





.company-logo {
    max-width: 120px;

    max-height: 80px;
    object-fit: contain;

}

.hero-caption {
    top: 80%;
    left: 5%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 100%;
    z-index: 1000;

}

.hero-caption h1,
.hero-caption p {
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

/* ============================= */
/* Footer Styling                */
/* ============================= */
.footer {
    background: linear-gradient(135deg, #404d58, #0c0d0e, #404d58);
    color: #ddd;
    padding: 70px 0 30px;
    font-family: Mona Sans, -apple-system, BlinkMacSystemFont, sans-serif;
    margin-right: -4vh;
}

.footer h5,
.footer h6 {
    font-weight: 600;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer a {
    color: #bbb;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}

.footer a:hover {
    color: #0d6edf;
}

/* Logo Section */
.footer-logo img {
    max-width: 220px;
    /* logo ka size bara kar diya */
    height: auto;
    display: block;
    margin-bottom: 25px;
}

/* Contact Info */
.footer-contact p {
    margin: 8px 0;
    font-size: 15px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    font-size: 18px;
    color: #3885b8;
    /* icons ko highlight kiya */
}

/* Subscribe (What's New) */
.footer-logo img {
    max-width: 180px;
    /* logo size zyada */
    height: auto;
    display: block;
    margin-bottom: 20px;
    /* logo aur what's new ke beech gap */
}

.subscribe-box {
    margin-top: 10px;
    text-align: left;
}

.subscribe-box h5 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 8px;
}

.subscribe-box p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 12px;
}

.subscribe-box form {
    display: flex;
    align-items: center;
}

.subscribe-box input {
    border-radius: 5px;
    padding: 10px 15px;
    border: none;
    outline: none;
    margin-right: 8px;
    width: 70%;
    max-width: 250px;
}

.subscribe-box button {
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    background: #0d6efd;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.subscribe-box button:hover {
    background: #0d6efd;
}

/* Footer Social Icon Hover Colors */
.footer .social-icons a[href*="linkedin"]:hover {
    color: #ffffff !important;
    /* LinkedIn blue */
    border-color: #ffffff !important;
    background-color: #0A66C2 !important;
}

.footer .social-icons a[href*="instagram"]:hover {
    color: #ffffff !important;
    /* Instagram pink */
    border-color: #ffffff !important;
    background-color: #cf48a0 !important;
}

.footer .social-icons a[href*="facebook"]:hover {
    color: #ffffff !important;
    /* Facebook blue */
    border-color: #ffffff !important;
    background-color: #0A66C2 !important;
}

.footer .social-icons a[href*="wa.me"]:hover {
    color: #fefffe !important;
    /* WhatsApp green */
    border-color: #ffffff !important;
    background-color: #25D366 !important;
}


.contact-info {
    margin-right: 50%;
}



.footer .social-icons a:hover {
    background: #0d6edf;
    border-color: #121b20 !important;
    color: #ddd3d3;

}

/* Footer column headings & lists alignment */
.footer .col-md-2 {
    text-align: left;
    margin-left: 1vh;
    /* sab headings aur list left aligned */
}

.footer .col-md-2 h5 {
    margin-left: 0;
    /* heading ko bilkul left se start karo */
}

.footer .col-md-2 ul {
    padding-left: 0;
    /* default ul padding remove */
    list-style: none;
    /* bullets remove */
}

.footer .col-md-2 ul li {
    margin-bottom: 8px;
    /* spacing between list items */
}



.impact-area {
    background: #fff;
    color: #e6f7ff;
    overflow: hidden;
    position: relative;
    padding: 20px 40px;
    margin-top: 0 !important;
}

.sect-title {
    margin-left: 5vh;
    font-weight: 700;
    font-size: 2.2rem;
}

/* Slider container */
.impact-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    /* Fix hover cutoff */
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 40px 20px;
    flex-wrap: nowrap;
    /* force single row */
}

.impact-slider::-webkit-scrollbar {
    display: none;
}

.impact-card {
    background: linear-gradient(160deg, #0b1e39, #112a4d);
    border-radius: 14px;
    padding: 35px 15px;
    min-width: 260px;
    flex: 0 0 19%;
    /* approx 5 cards in row on large screens */
    text-align: center;
    border: 1px solid rgba(0, 230, 255, 0.1);
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 340px;
    /* uniform height */
}

.impact-card:hover {
    border-color: #d8ddde;
    box-shadow: 0 0 25px #00e6ff80;
    transform: translateY(-6px) scale(1.03);
    z-index: 2;
}

.impact-icon {
    font-size: 2.2rem;
    margin-bottom: 3px;
    color: #d8ddde;
}

.impact-card h4 {
    color: #fff;
    font-size: 1.1rem;
    min-height: 40px;
}

.impact-card p {
    font-size: 0.9rem;
    color: #c8e6ff;
    flex-grow: 1;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.impact-link {
    color: #d8ddde;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.impact-link:hover {
    color: #d8ddde;
    text-decoration: underline;
}

/* Responsive Modifications */
@media (max-width: 1200px) {

    /* large screens */
    .impact-card {
        flex: 0 0 22%;
        /* adjust to fit 4-5 cards */
        height: 340px;
    }
}

@media (max-width: 992px) {

    /* medium screens */
    .impact-card {
        flex: 0 0 45%;
        height: 320px;
    }
}

@media (max-width: 768px) {

    /* small screens */
    .impact-slider {
        flex-wrap: nowrap;
        /* keep horizontal scroll */
        gap: 15px;
    }

    .impact-card {
        flex: 0 0 85%;
        height: 310px;
    }
}

@media (max-width: 576px) {

    /* extra small */
    .impact-card {
        flex: 0 0 95%;
        height: 300px;
    }
}

/*====================
 growth background
    ===================*/

.growth-section {
    background: radial-gradient(circle at top left, #031023, #001F54, #000);
    /* dark professional background */
    color: #fff;
    padding: 100px 50px;
    font-family: "Poppins", sans-serif;
}

/* Flex container for left/right */
.growth-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 40px auto;
    margin-right: 5vh;
    padding-top: 3vh;
}

/* Left column */
.growth-left {
    flex: 1 1 45%;
    text-align: left;
    padding-left: 0px;
    margin-right: 10vh;
    color: #ffffff;
    margin: 0vh;
}

.growth-left h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;

    padding-left: 0px;
}

.growth-left p {
    font-size: 1rem;
    margin-bottom: 25px;
}

.highlight {
    color: #5e9fff;
    font-weight: 600;
}

/* Button */
.btn-primary {
    background: rgb(46, 102, 224);
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(13, 103, 221, 0.4);
}

.growth-right {
    margin-top: 60px;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e2e6e9;
}

.prefix {
    font-size: 2rem;
    font-weight: bold;
    color: #e1e9f1;
}

.suffix {
    font-size: 2rem;
    font-weight: bold;
    color: #dfe1e4;
    margin-left: 5px;
}

.stat-detail {
    font-size: 1rem;
    color: #f5f2f2;
    margin-top: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stat Item */
.stat-item {

    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Grey line above each stat */
.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120px;
    height: 4px;
    width: 0;
    /* animation se fill hoga */
    background: #ccc;
    /* grey line */
    animation: growLine 4s ease forwards;
}

/* Animation for the line */
@keyframes growLine {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ============= Responsive Breakpoints ============= */

/* Small devices (phones) */
@media (max-width: 575.98px) {
    .growth-section {
        padding: 40px 20px;
    }

    .growth-left h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .growth-left p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .growth-right {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }

    .stat-item {
        flex: 1 1 100%;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Medium devices (tablets/ipads) */
@media (min-width: 576px) and (max-width: 991.98px) {
    .growth-section {
        padding: 60px 30px;
    }

    .growth-left h2 {
        font-size: 2.3rem;
    }

    .growth-left p {
        font-size: 1rem;
        max-width: 90%;
    }

    .growth-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .stat-item {
        flex: unset;
    }
}

/* Medium devices (tablets/ipads) */
@media (min-width: 576px) and (max-width: 991.98px) {
    .growth-section {
        padding: 60px 25px;
    }

    .growth-left h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .growth-left p {
        font-size: 1rem;
        max-width: 95%;
        margin-bottom: 20px;
    }

    /* Stats aligned in 2 columns grid */
    .growth-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row */
        gap: 15px 20px;
        /* row-gap col-gap */
        margin-top: 35px;
    }

    .stat-item {
        flex: unset;
        padding: 12px 10px;
        /* kam padding */
        text-align: left;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .stat-detail {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

/* ================= VIDEO SECTION ================= */
.video-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

/* Background video */
.video-section .item-video video.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark overlay */
.video-section .item-video .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

/* Content (text + button) */
.video-section .item-video .video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
    z-index: 10;
}

/* Heading */
.video-section .video-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Paragraph */
.video-section .video-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Button */
.video-section .video-btn {
    display: inline-block;
    background: #1d49d8;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.video-section .video-btn:hover {
    background: #0851bf;
    transform: translateY(-2px);
}

/* 🔹 Responsive Queries */
@media (max-width: 992px) {
    .video-section .video-content h1 {
        font-size: 2.2rem;
    }

    .video-section .video-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .video-section {
        height: 70vh;
    }

    .video-section .video-content h1 {
        font-size: 1.6rem;
    }

    .video-section .video-content p {
        font-size: 1rem;
    }

    .video-section .video-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}


/* ==============================
           BUTTON STYLING
       ============================== */
.btn-trans-anim {
    /* background: transparent; */
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-trans-anim:hover {
    background: #1b45ccd0;
    color: #fff;
    transform: scale(1.05);
}

footer {
    background: #1e2a41;
    color: #fff;
    padding: 20px;
    text-align: center;
}



/*============ image navbar=============*/
/* Dropdown menu styling */
.dropdown-menu {
    background-color: rgba(101, 110, 122, 0.95);
    /* same as navbar hover */
    border: none;
    border-radius: 8px;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover effect for dropdown items */
.dropdown-menu .dropdown-item:hover {
    background-color: #416c97;
    /* same hover blue as nav link */
    color: #fff !important;
    border-radius: 4px;
}

/* Card hover effect */
.card:hover {
    background-color: transparent;
    /* dark bg */
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Text inside card turns white on hover */
.card:hover h3,
.card:hover h4,
.card:hover p,
.card:hover span {
    color: black !important;
}

/* Dropdown wrapper */
.custom-dropdown {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    background: rgba(101, 110, 122, 0.95);
    /* dark transparent */
    border-radius: 4px;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Content inside dropdown */
.dropdown-content {
    color: #fff;
    position: relative;
}

.dropdown-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.dropdown-text {
    font-size: 1.15rem;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 20px;
}

/* Parent card ko relative karo */
.dropdown-menu .row .col-md-8 {
    position: relative;
}

.custom-btn {
    background: rgba(19, 108, 224, 0.95);
    color: #fff !important;
    border: #fff;
    border-radius: 4px;
    padding: 6px 16px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.custom-btn {
    border: 1px solid rgba(247, 241, 241, 0.35);
}

.custom-btn:hover {
    border-color: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.18);
}

.custom-btn:hover {
    background: #5d7e9c;
    transform: translateY(-2px);
}

.small-img {
    display: block;
    /* force next line */
    max-width: 250px;
    /* apni marzi ka size */
    height: auto;
    /* ratio maintain */
}

.content-img {
    display: block;
    /* force next line */
    max-width: 250px;
    /* apni marzi ka size */
    height: 180px;
    /* ratio maintain */
}


/* ===== Industry Section Title ===== */
.industry-section-title {
    text-align: left;
    margin-bottom: 30px;
    margin-left: 4%;
    font-family: "Montserrat", sans-serif;
    font-weight: 650;
    font-size: 36px;
}

/* ===== Cards Container ===== */
.industry-cards-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    /* horizontal scroll */
    scroll-behavior: smooth;
    padding-left: 0;
    padding-right: 5%;
    height: 600px;
    scroll-snap-type: x mandatory;
    /* snap cards for mobile */
    margin-left: 8vh;
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
    cursor: default;
}

/* Hide scrollbar */
.industry-cards-container::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .industry-cards-container {
        display: flex;
        gap: 20px;
        overflow-x: scroll;
        scroll-behavior: smooth;
        cursor: grab;
        padding-left: 20px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .industry-cards-container::-webkit-scrollbar {
        display: none;
    }


    /* Each card has fixed width to guarantee horizontal overflow */
    .industry-card {
        flex: 0 0 200px;
        min-width: 200px;
        height: 80vh;
        transition: flex 0.6s ease;
    }

    /* Hover / active effect */
    .industry-card:hover,
    .industry-card.active {
        flex: 0 0 200px;
        /* expand card on hover */
    }
}

.industry-cards-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
    position: relative;
}

/* Hide scrollbar for clean look */
.industry-cards-container::-webkit-scrollbar {
    display: none;
}

/* Modern pill button */
.btn-pill {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    border-radius: 5px;
    /* full round */
    background: rgba(30, 58, 138, 0.3);
    /* semi-transparent blue */
    color: #fefeff;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid rgba(30, 58, 138, 0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    /* soft glass effect */
}

/* Hover effect */
.btn-pill:hover {
    background: #1e3a8a;
    /* solid blue */
    color: #fff;
    box-shadow: 0 0 12px rgba(30, 58, 138, 0.8);
    transform: scale(1.05);
}

/* Arrow Buttons */
.industry-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(236, 236, 236, 0.3);
    /* semi-transparent blue */
    color: #1e3a8a;
    border: 1px solid rgba(30, 58, 138, 0.5);
    font-size: 1.5rem;
    border-radius: 999px;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    /* soft glass effect */
}

/* Hover Effect */
.industry-arrow:hover {
    background: #dadada;
    /* solid blue on hover */
    color: #1e3a8a;
    /* white icon */
    box-shadow: 0 0 15px rgba(30, 58, 138, 0.7);
    /* glowing effect */
    transform: translateY(-50%) scale(1.1);
    /* slight zoom */
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .industry-arrow {
        font-size: 1.1rem;
        padding: 8px 10px;
    }
}


/* For smaller screens */
@media (max-width: 768px) {
    .industry-arrow {
        font-size: 1.2rem;
        padding: 8px 10px;
    }

    .left-arrow {
        left: 10px;
    }

    .right-arrow {
        right: 10px;
    }
}

@keyframes fadeInArrow {
    from {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

.industry-arrow {
    animation: fadeInArrow 0.6s ease-in-out both;
}

/* ===== Individual Cards ===== */
.industry-card {
    flex: 0 0 180px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    transition: flex 0.6s ease;
}

/* Hover / Active card */
.industry-card:hover,
.industry-card.active {
    flex: 0 0 400px;
}

/* Background blur using ::before */
.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    transform: scale(1.1);
    transition: filter 5s ease, transform 5s ease;
    z-index: 1;
}

.industry-card:hover::before,
.industry-card.active::before {
    filter: blur(0);
    transform: scale(1);
}

/* Card Title */
.industry-card-title {
    position: static;
    bottom: 3%;
    left: 10%;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: left top;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    transition: opacity 0.4s ease;
    z-index: 2;
    margin: 10%;
}

.industry-card:hover .industry-card-title,
.industry-card.active .industry-card-title {
    opacity: 0;
}

/* Card Content */
.industry-card-content {
    position: absolute;
    top: 70%;
    left: 40%;
    transform: translate(-50%, -50%);
    background: rgba(77, 75, 75, 0.185);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    width: 90%;
    max-width: 320px;
    text-align: bottom;
    opacity: 0;
    transition: opacity 3s ease, transform 3s ease;
    z-index: 2;
    margin-left: 3vh;

}

.industry-card:hover .industry-card-content,
.industry-card.active .industry-card-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.industry-card-content h3 {
    margin-bottom: 10px;
}

/* Button inside card */
.industry-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 8px 16px;
    background: #0a5da1;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.industry-btn:hover {
    color: #929497;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .industry-cards-container {
        flex-wrap: nowrap;
        height: 500px;
        justify-content: flex-start;
        padding-left: 5%;
        padding-right: 5%;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: 2vh;
    }

    .industry-card {
        flex: 0 0 90%;
        scroll-snap-align: center;
        max-width: none;
        height: 450px;
        margin-right: 10px;
    }

    .industry-card:hover {
        flex: 0 0 90%;
        /* no hover expand on mobile */
    }

    .industry-card-title {
        transform: none;
        font-size: 20px;
        margin: 10px;
        position: relative;
    }

    /* Navigation buttons */
    .slider-controls {
        display: flex !important;
        position: absolute;
        bottom: 7px;
        left: 50%;
        transform: translateX(-50%);
        gap: 10px;
        z-index: 10;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: #0d6edf;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
    }
}

/* Hide buttons on larger screens */
@media (min-width: 769px) {
    .slider-controls {
        display: none !important;
    }
}

/* ===== Large Screens ===== */
@media (min-width: 1600px) {
    .industry-card {
        flex: 0 0 250px;
    }

    .industry-card.active {
        flex: 0 0 450px;
    }

    /* Hide last card */
    .industry-cards-container .industry-card:last-child {
        display: none;
    }
}


/* ======contact us====== */
.numdesk-contact {
    background: radial-gradient(circle at top left, #031023, #001F54, #000);
    color: #ffffff;
    padding: 100px 60px;
    /* Top/Bottom padding (increase/decrease here) */
    padding-top: 5vh;
}

/* Left Side Content */
.numdesk-contact h2 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 3rem;
}

.numdesk-contact .bg-dark {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 20px;
    border-radius: 12px;
}

.numdesk-contact a {
    color: #5997f5;
    transition: color 0.3s ease;
}

.numdesk-contact a:hover {
    color: #0d6edf;
}

.numdesk-contract-title {
    font-size: 4rem !important;
}

/* Form Inputs */
.numdesk-contact .form-control,
.numdesk-contact .form-select {
    background: transparent !important;
    border: none;
    border-bottom: 1px solid #0d6edf;
    border-radius: 6px;
    color: #ffffff;
    padding: 12px 8px;
    font-size: 1.5rem;
}

.numdesk-contact .form-control:focus,
.numdesk-contact .form-select:focus {
    box-shadow: none;
    border-bottom: 2px solid #0d6edf;
}

/* Placeholder */
.numdesk-contact ::placeholder {
    color: #a1becf !important;
    opacity: 0.8;
}

/* Checkbox */
.numdesk-contact input[type="checkbox"] {
    accent-color: #0d0d0d;
    transform: scale(1.2);
}

/* Button */
.numdesk-contact .btn {
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 6px;
}

.numdesk-contact .btn:hover {
    background: #0d6edf;
    color: #ffffff;
}

/* Dropdown options ko black background aur white text dena */
.numdesk-contact .form-select option {
    background-color: #f7f3f3;
    color: #070707;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .numdesk-contact {
        padding: 50px 15px;
        /* Reduce padding on small screens */
    }

    .numdesk-contact h2 {
        font-size: 2rem;
        text-align: center;
    }

    .numdesk-contact .bg-dark {
        text-align: center;
    }
}

.brand-brick-showcase {
    background: linear-gradient(135deg, #404d58, #0c0d0e, #404d58);
    padding: 50px 0;
}

.brand-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Flex brick row */
.brand-brick-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Each column: responsive brick layout */
.brand-brick-col {
    flex: 0 0 50%;
    /* 2 per row on small screens */
    max-width: 50%;
}

@media (min-width: 576px) {
    .brand-brick-col {
        flex: 0 0 33.333%;
        /* 3 per row on sm screens */
        max-width: 33.333%;
    }
}

@media (min-width: 768px) {
    .brand-brick-col {
        flex: 0 0 16.6667%;
        /* 6 per row on md+ screens */
        max-width: 16.6667%;
    }
}

/* Logo card */
.brand-brick-card {
    background-color: rgba(181, 182, 183, 0.1);
    padding: 15px;
    /* slightly smaller */
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    /* slightly smaller */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.brand-brick-card img {
    max-height: 50px;
    /* slightly smaller */
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-brick-card:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: rgba(255, 255, 255, 0.05);
}

.brand-brick-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Button */
.btn-all-brands {
    display: inline-block;
    padding: 10px 25px;
    color: #fff;
    background-color: #1e90ff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-all-brands:hover {
    background-color: #0c61d1;
}


/* ==================================================BUILD WITH US======================================== */

.btn-primary-card {
    display: inline-block;
    padding: 12px 22px;
    background: #0d6edf;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary-card:hover {
    background: #037cdf;
    transform: scale(1.05);
}


/* ================= Clients Section ================= */
.trusted-clients {
    background: linear-gradient(135deg, #404d58, #0c0d0e, #404d58);
}

.trusted-logo-box {
    background-color: rgba(181, 182, 183, 0.1) !important;
    /* yahan sahi likhna hai */
    border-radius: 16px;
    padding: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.trusted-logo-box img {
    max-height: 20px;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.trusted-logo-box:hover {
    background-color: #002046;
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
    filter: grayscale(0%);
}


/* ===========verified section =========== */
/* Reviewers Section */
.reviewers-section {
    padding-bottom: 80px;
    /* space to prevent overlap */
}

.reviewers-title {
    margin-bottom: 3rem;
}

/* Reviewer Boxes */
.reviewer-box {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 35vh;
    /* fixed min-height */
}

.reviewer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Reviewer Content */
.reviewer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Reviewer Text */
.reviewer-rating {
    margin-bottom: 10px;
}

.reviewer-text {
    margin-bottom: 5px;
}

.reviewer-position {
    font-size: 0.85rem;
    color: #6c757d;
}

/* ===========================================CARRERS================================================= */
/* Hero Section */
.num-hero {
    position: relative;
    width: 100%;
    height: 120vh;
    /* Full viewport height */
    overflow: hidden;
    margin-top: -15vh;
}

/* Video Wrapper */
.num-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Background Video */
.num-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure video covers container */
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Overlay */
.num-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* Semi-transparent overlay */
    z-index: 2;
    /* Overlay sits above video */
}

/* Content */
.num-hero-content {
    position: relative;
    z-index: 3;
    /* Content above overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
}

/* Responsive text */
.num-hero-title {
    font-size: 3rem;
    color: #fff;
}

.num-hero-subtitle {
    font-size: 1.5rem;
    color: #e0e0e0;
}

/* Apply Button */
.num-hero-btn {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.num-hero-btn:hover {
    background: #0d6efd;
    border: none;
}

/* Social Icons */
.num-hero-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.num-hero-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    transition: 0.3s;
}

.num-hero-social-icon:hover {
    background: #0d6efd;
    color: #fff;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .num-hero-title {
        font-size: 2rem;
    }

    .num-hero-subtitle {
        font-size: 1.2rem;
    }

    .num-hero-btn {
        padding: 8px 18px;
    }

    .num-hero-social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}


/* ==========technology=========== */
.about-section {
    background: radial-gradient(circle at top left, #031023, #001F54, #000);
    position: relative;
    /* keeps relative for sticky */
    display: flex;
    flex-wrap: wrap;
    color: #f5f5f5;
}

.left-side {
    padding-right: 30px;
    margin-left: 12vh !important;
    margin-top: 5vh;
    position: sticky;
    top: 80px;
    /* adjust according to navbar height */
    align-self: flex-start;
}

.right-side {
    flex: 1;
    /* take remaining space */
    margin-left: 0;
    /* no extra margin needed */
    padding: 0;
}

.right-side .info-box {
    background: #1e144f;
    border: none;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    /* ensures flex-fill works */
}

.right-side .icon {
    font-size: 4rem;
    color: rgb(255, 255, 255);
    display: block;
    margin-bottom: 10px;
}

.tech-content {
    size: 1rem;
}

.tech-h1 {
    size: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


/* =======vacancies======= */
/* Filter Buttons */
.vacancies-filter-btn {
    min-width: 150px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border-color: #cecdcd;
    transition: all 0.3s ease;
}

.vacancies-filter-btn:hover,
.vacancies-filter-btn.active {
    background-color: #0d6efd;
    color: #fff;
}

/* Vacancy Card */
.vacancy-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 100%;
}

.vacancy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #f3f8ff;
}

/* Smooth fade animation */
#vacancies-card-container {
    transition: opacity 0.4s ease;
}

/* ======benefits============== */
.employee-perks-section {
    background: #fff;
    padding: 80px 20px;
    /* section ko bara kar diya */
}

.employee-perk-item .employee-perk-icon {
    font-size: 1.3rem;
    color: #0d6efd;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.employee-perks-img {
    max-width: 90%;
    margin-top: 5vh;
}




/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    background: radial-gradient(circle at top left, #031023, #001F54, #000);
}

.why-choose h2 {
    font-weight: 700;
    font-size: 2.2rem;
    color: #a4a4a4;
}

.why-choose .highlight {
    color: #fafcff;
    /* Bootstrap primary blue */
    font-weight: 600;
}

/* Grid layout */
.pin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/* Card styling */
.pin-card {
    position: relative;
    background: #fff;
    padding: 2rem;
    /* thoda zyada space */
    border-radius: 15px;
    width: 100%;
    max-width: 350px;
    /* width bada kiya */
    min-height: 250px;
    /* height set kiya */
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.pin-card:nth-child(even) {
    transform: rotate(2deg);
}

.pin-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* Pin circle */
/* Pin on top of card */
.pin {
    position: absolute;
    top: -10px;
    /* card ke upar */
    left: 50%;
    /* horizontal center */
    transform: translateX(-50%);
    /* center align */
    width: 20px;
    height: 20px;
    background-color: #064db7;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.pin::after {
    content: '';
    position: absolute;
    top: 20px;
    /* stick starts below the pin */
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background-color: #064db7;
}


/* Card headings and text */
.pin-card h5 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pin-card p {
    font-size: 1rem;
    color: #555;
    margin-top: 2vh;
    line-height: 1.5;

}


/* servcess cards*/

.services-slider {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
}

.services-slider h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #efe9e9;
}

.services-slider input {
    display: none;
}

.cards-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay p {
    font-size: 2rem;
    margin-top: 6vh;
}

.overlay h3 {
    font-size: 1rem;
    margin-top: 7vh;
}

.card {
    position: absolute;
    width: 360px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
    cursor: pointer;
    opacity: 0.5;
    filter: blur(5px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.card .overlay {
    width: 100%;
    padding: 60px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;

    text-align: center;
}

.overlay h3 {
    margin-top: 15vh;
    font-size: 25px;
}

.overlay p {
    font-size: 15px;
    margin-top: 3vh;
}

/* Default positioning */
.card {
    left: 50%;
    transform: translateX(-50%) scale(0.7);
}

.services-slider .overlay {
    color: #fff !important;
    /* text white */
}

.services-slider .overlay h3,
.services-slider .overlay p {
    color: #fff !important;
    /* headings aur paragraphs bhi white */
}

/* Center card */
#c1:checked~.cards-wrapper .card-1,
#c2:checked~.cards-wrapper .card-2,
#c3:checked~.cards-wrapper .card-3,
#c4:checked~.cards-wrapper .card-4,
#c5:checked~.cards-wrapper .card-5,
#c6:checked~.cards-wrapper .card-6,
#c7:checked~.cards-wrapper .card-7,
#c8:checked~.cards-wrapper .card-8 {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    filter: blur(0);
    z-index: 10;
}

/* Right side - near */
#c1:checked~.cards-wrapper .card-2,
#c2:checked~.cards-wrapper .card-3,
#c3:checked~.cards-wrapper .card-4,
#c4:checked~.cards-wrapper .card-5,
#c5:checked~.cards-wrapper .card-6,
#c6:checked~.cards-wrapper .card-7,
#c7:checked~.cards-wrapper .card-8,
#c8:checked~.cards-wrapper .card-1 {
    transform: translateX(calc(-50% + 280px)) scale(0.85);
    opacity: 0.8;
    filter: blur(3px);
    z-index: 5;
}

/* Right side - far */
#c1:checked~.cards-wrapper .card-3,
#c2:checked~.cards-wrapper .card-4,
#c3:checked~.cards-wrapper .card-5,
#c4:checked~.cards-wrapper .card-6,
#c5:checked~.cards-wrapper .card-7,
#c6:checked~.cards-wrapper .card-8,
#c7:checked~.cards-wrapper .card-1,
#c8:checked~.cards-wrapper .card-2 {
    transform: translateX(calc(-50% + 550px)) scale(0.7);
    opacity: 0.5;
    filter: blur(5px);
    z-index: 1;
}

/* Left side - near */
#c1:checked~.cards-wrapper .card-8,
#c2:checked~.cards-wrapper .card-1,
#c3:checked~.cards-wrapper .card-2,
#c4:checked~.cards-wrapper .card-3,
#c5:checked~.cards-wrapper .card-4,
#c6:checked~.cards-wrapper .card-5,
#c7:checked~.cards-wrapper .card-6,
#c8:checked~.cards-wrapper .card-7 {
    transform: translateX(calc(-50% - 280px)) scale(0.85);
    opacity: 0.8;
    filter: blur(3px);
    z-index: 5;
}

/* Left side - far */
#c1:checked~.cards-wrapper .card-7,
#c2:checked~.cards-wrapper .card-8,
#c3:checked~.cards-wrapper .card-1,
#c4:checked~.cards-wrapper .card-2,
#c5:checked~.cards-wrapper .card-3,
#c6:checked~.cards-wrapper .card-4,
#c7:checked~.cards-wrapper .card-5,
#c8:checked~.cards-wrapper .card-6 {
    transform: translateX(calc(-50% - 550px)) scale(0.7);
    opacity: 0.5;
    filter: blur(5px);
    z-index: 1;
}



/* Role Buttons Hover */
.role-btn:hover {
    background-color: #0d6edf !important;
    border-color: #0d6edf !important;
    color: white;
}

/* CTA Button Gradient */
.btn-gradient {
    background: #0d6edf;
    border: #fff;
    color: #fff;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.btn-gradient:hover {
    transform: scale(1.05);
    background: #0d6edf;
    border: #fff;
    color: #fff;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

/* Responsive */
@media(max-width:768px) {
    .moving-title {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }
}

/* Base style */
.resources-section {
    min-height: 100vh;
}

/* Medium screens <= 1528px */
@media (max-width: 1528px) {
    .resources-section {
        min-height: 120vh;
    }
}

/* Ultra large screens >= 1800px */
@media (min-width: 1800px) {
    .resources-section {
        min-height: 95vh;
    }
}




/* Section background and padding */
.unique-client-logos-section {
    background: linear-gradient(135deg, #404d58, #0c0d0e, #404d58);
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Section title */
.unique-logos-title {
    font-size: 2rem;
    font-weight: 600;
}

/* Logo box */
.unique-client-logo-box {
    background-color: rgba(181, 182, 183, 0.1);
    padding: 20px;
    border-radius: 10px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

/* Logo image */
.unique-client-logo-img {
    max-height: 60px;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect */
.unique-client-logo-box:hover {
    transform: translateY(-8px) scale(1.05);
}

.unique-client-logo-box:hover .unique-client-logo-img {
    filter: grayscale(0%);
    transform: scale(1.1);
}


.collab-section {
    background: #002046;
}

.collab-form-card {
    max-width: 100%;
}

.collab-input,
.collab-select,
.collab-textarea {
    border-radius: 8px;
    padding: 10px 12px;
}


.collab-form .row>div {
    margin-bottom: 8px;
}

.collab-select[multiple] {
    height: auto;
    min-height: 120px;
}

.select2-container--default .select2-selection--multiple {
    border-radius: 8px;
    min-height: 44px;
    padding: 10px;
    border: 1px solid #ced4da;

}

.select2-container .select2-selection--multiple {
    background-color: #f8f9fa;
    border: 1px solid #ccc;
    border-radius: 8px;
    min-height: 42px;
    padding: 10px 12px;
}


/* Floating Circles Background */
.floating-circles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-circles .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: floatAnim 10s infinite ease-in-out;
}

.floating-circles .circle:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.floating-circles .circle:nth-child(2) {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 20%;
    animation-delay: 3s;
}

.floating-circles .circle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 5%;
    animation-delay: 5s;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
}

/* Floating Image Animation */
@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Animated Button Hover */
.animate-btn {
    transition: all 0.3s ease-in-out;
}

.animate-btn:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .floating-circles .circle {
        opacity: 0.3;
    }

    .floating-img {
        width: 90% !important;
    }
}

.collab-input,
.collab-select,
.collab-textarea {
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.collab-input:focus,
.collab-select:focus,
.collab-textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

.collab-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
}


.moving-title {
    animation: slideDown 1.5s ease-in-out;
}

.btn-gradient {
    background: #0d6efd;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: #0d6efd;
    transform: translateY(-3px);
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===================== EXPERT CONSULTANTS SECTION ===================== */
.expert-consultants-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.expert-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e1e1e;
    position: relative;
    display: inline-block;
}

/* ===================== CONSULTANT CARD ===================== */
.expert-consultant-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid #e9e9e9;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);

}


/* ===================== MOVING CIRCLE ===================== */
.expert-consultant-card::before {
    content: "";
    position: absolute;
    width: 130%;
    /* smaller width */
    height: 130%;
    /* smaller height */
    top: -15%;
    /* adjust position so it stays centered */
    left: -15%;
    background: radial-gradient(circle, rgba(13, 59, 85, 0.18) 0%, transparent 70%);
    animation: expertWaveMotion 6s linear infinite;
    transform: rotate(0deg);
    z-index: 0;
    opacity: 1;
    border-radius: 30%;
    /* keep it circular */
}


@keyframes expertWaveMotion {
    0% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* ===================== CONTENT ABOVE CIRCLE ===================== */
.expert-consultant-card>* {
    position: relative;
    z-index: 1;
}

/* ===================== HOVER EFFECT ===================== */
.expert-consultant-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 163, 255, 0.2);
}

.expert-consultant-card:hover::before {
    opacity: 0.9;
}


/* ===================== ICON EFFECT ===================== */
.expert-consultant-icon i {
    display: block;
    color: radial-gradient(circle at top left, #031023, #001F54, #000);
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: drop-shadow(0 0 4px rgba(0, 163, 255, 0.3));
}

.expert-consultant-card:hover .expert-consultant-icon i {
    transform: scale(1.1) rotate(4deg);
    filter: drop-shadow(0 0 10px rgba(0, 163, 255, 0.6));
}

/* ===================== TEXT ===================== */
.expert-consultant-card h5 {
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.expert-consultant-card:hover h5 {
    color: rgb(64, 93, 167);
    text-shadow: 0 0 8px rgba(0, 163, 255, 0.4);
}

.expert-consultant-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}



/* Section Background */
.consult-animated-section {
    background: linear-gradient(135deg, #404d58, #0c0d0e, #404d58);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Icon Boxes */
.consult-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    color: #00e0ff;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 224, 255, 0.2);
}

/* Neon Hover Glow */
.consult-item:hover {
    color: #00eaff;
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.7), 0 0 40px rgba(0, 224, 255, 0.5);

}

.consult-item i:hover {

    transform: rotate(15deg) scale(1.2);
}

/* Floating Animation */
.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Row Layout */
.consult-row {
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .consult-item {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
}


/* ===================== ERP UNIVERSE SECTION ===================== */
.erp-universe-section {
    background: #ffffff;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.erp-universe-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b2f75;
    /* deep blue */
    letter-spacing: 1px;
}

.erp-universe-subtitle {
    color: #555;
    font-size: 1.1rem;
}

/* ===================== CARDS ===================== */
.erp-universe-row {
    margin-top: 2rem;
}

.erp-planet {
    width: 130px;
    height: 130px;
    border-radius: 15px;
    background: linear-gradient(145deg, #0c2253, #08245f);
    border: 2px solid rgba(15, 60, 150, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 6px 18px rgba(15, 60, 150, 0.15);
    cursor: pointer;
    animation: float 4s ease-in-out infinite;
    margin-top: 5vh;
}

.erp-planet:nth-child(2n) {
    animation-delay: 1s;
}

.erp-planet:nth-child(3n) {
    animation-delay: 2s;
}

.erp-planet i {
    font-size: 2rem;
    color: #eeeeee;
    margin-bottom: 8px;
    transition: all 0.4s ease;
}

.erp-planet p {
    margin: 0;
    color: #dbdcdd;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.erp-planet:hover {
    transform: translateY(-10px) scale(1.07);
    background: linear-gradient(145deg, #041d62, #052363);
    box-shadow: 0 0 25px rgba(0, 64, 255, 0.25);
}

.erp-planet:hover i {
    color: #dee0e4;
}

/* ===================== FLOAT ANIMATION ===================== */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ===================== BUTTON ===================== */
.erp-universe-btn {
    display: inline-block;
    padding: 10px 15px;
    color: #fafafa;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.4s ease;
    background: #0d6edf;
}

.erp-universe-btn:hover {
    background: #0d6edf;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(11, 47, 117, 0.4);
    transform: scale(1.05);
}


.consulting-section {
    background: #010b26;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.main-title {
    color: #303132;
    font-size: 2.5rem;
    font-weight: 700;
}


/* ////crm ///////*/

.business-hero-section {
    position: relative;
    height: 107vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.business-hero-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.business-hero-section .container {
    z-index: 2;
}

.trusted-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #404d58, #0c0d0e, #404d58);
    z-index: 2;
    max-height: 15vh;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
}

.trusted-bar h2 {
    font-size: 1.25rem;
    margin-left: 20vh;
    color: #fff;
}

.trusted-logo {
    max-width: 170px;
    margin-right: 40vh;
}

/* Responsive (mobile view) */
@media (max-width: 767px) {
    .trusted-bar {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .trusted-bar h2 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .trusted-logo {
        margin-top: 5px;
    }
}


@media (min-width: 1528px) and (max-width: 1800px) {
    .business-hero-section {
        height: 109vh;
        background-position: center top;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-lead {
        font-size: 1.25rem;
    }
}

.btn-outline-light:hover {
    background-color: #0d6edf;
    color: white;
    border-color: #0d6edf;
    transition: 0.3s;
}

.platform-card {
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border: none;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    /* default gradient */
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.plati {
    margin-left: 13vh;
}

/* image clean and centered */
.platform-card img {
    max-width: 100px;
    max-height: 90px;
    object-fit: contain;
    margin-bottom: 8px;
}

/* hover animation */
.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* 💎 Unique beautiful colors for each card */
.platform-card:nth-child(1) {
    background: linear-gradient(135deg, #a518a0, #a25ca2);
    /* violet-blue */
}

.platform-card:nth-child(2) {
    background: linear-gradient(135deg, #3154c5, #0072ff);
    /* light blue */
}

.platform-card:nth-child(3) {
    background: linear-gradient(135deg, #a297e8, #d2abff);
    /* orange-gold */
}

.platform-card:nth-child(4) {
    background: linear-gradient(135deg, #11ac4f, #c8fadb);
    /* teal-green */
}

.platform-card:nth-child(5) {
    background: linear-gradient(135deg, #7b3771, #8c448d);
    /* pink-orange */
}

/* Responsive */
@media (max-width: 768px) {
    .platform-card {
        width: 120px;
        height: 120px;
    }

    .platform-card img {
        max-width: 70px;
        max-height: 50px;
    }
}

.plate {
    margin-top: 15vh;
}




/* =========================
   TOOLS & SOLUTIONS SECTION
========================= */
.tools-solutions-section {
    background: radial-gradient(circle at top left, #031023, #001F54, #000);
    position: relative;
    overflow: hidden;
}

/* Headings and text */
.tools-solutions-section h2 {
    color: #ffffff;
    letter-spacing: 1px;
}

.tools-solutions-section p {
    color: #d0d8f0;
}

/* =========================
   TOOL CARD STYLING
========================= */
.tool-card {
    background: #1b2a49;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.tool-card i {
    color: #b0b0b0;
    /* Grey icons */
    transition: all 0.4s ease;
}

/* Hover Effects */
.tool-card:hover {
    transform: translateY(-8px);
    border-color: #00bfff;
    box-shadow: 0 0 20px #00bfff, 0 0 40px rgba(0, 191, 255, 0.5);
}

.tool-card:hover i {
    color: #00bfff;
    text-shadow: 0 0 8px #00bfff, 0 0 15px rgba(0, 191, 255, 0.6);
}

/* Optional smooth glow animation */
@keyframes neonPulse {

    0%,
    100% {
        box-shadow: 0 0 15px #00bfff, 0 0 30px rgba(0, 191, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 25px #00bfff, 0 0 50px rgba(0, 191, 255, 0.8);
    }
}

.tool-card:hover {
    animation: neonPulse 1.8s infinite alternate;
}




/* ================================
   QUESTIONS ABOUT DATA SECTION
================================ */
.data-questions-section {
    background: #ffff;
    position: relative;
    overflow: hidden;
    color: #e3e9ff;
}

.data-questions-section h2 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.data-questions-section p {
    color: #b9c2db;
}

/* ================================
   QUESTION CARDS
================================ */
.question-card {
    background: #1b2a49;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.question-card h4,
.question-card h5 {
    color: #ffffff;
}

.question-card p {
    color: #d0d6e4;
}

/* ICON STYLE */
.question-card i {
    color: #b0b0b0;
    /* neutral grey */
    transition: all 0.4s ease;
}

/* ================================
   HOVER EFFECT
================================ */
.question-card:hover {
    transform: translateY(-8px);
    border-color: #00bfff;
    box-shadow: 0 0 20px #00bfff, 0 0 40px rgba(0, 191, 255, 0.4);
    animation: glowPulse 1.5s infinite alternate;
}

.question-card:hover i {
    color: #00bfff;
    text-shadow: 0 0 10px #00bfff, 0 0 25px rgba(0, 191, 255, 0.8);
}

/* Subtle glowing animation */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 15px #00bfff, 0 0 30px rgba(0, 191, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 25px #00bfff, 0 0 50px rgba(0, 191, 255, 0.7);
    }
}

/* ================================
   RESPONSIVE ADJUSTMENTS
================================ */
@media (max-width: 992px) {
    .question-card {
        margin-bottom: 20px;
    }
}


/* =======================about us========= */
/* Fullscreen Video Section */
.mega-video-section {
    position: relative;
    width: 100%;
    height: 120vh;
    /* full screen height */
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-top: -15vh;
}

.mega-video-element {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* cover full area without black bars */
    transform: translate(-50%, -50%);
}


.about-highlight {
    color: #9ba2ba;
    /* bright/orange for 'About' */
}

.numdesk-highlight {
    color: #133e69;
    /* dark blue for 'NumDesk' */
    font-weight: 700;
}

.l-cards {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============ */

/* Full-width card adjustments */
.c-card.full-width {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 400px;
}

.c-card.full-width .c-card__description {
    width: 40%;
    padding: 40px;
}

.c-card.full-width .c-card__figure {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 15px;
    overflow: hidden;
    position: relative;
}

.c-card.full-width .c-card__figure img {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
    margin: 10px;
    transition: transform 0.3s ease;
}

.c-card.full-width .c-card__figure img:hover {
    transform: scale(1.1);
}

.c-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
    margin-top: 20px;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    background-color: #002046;
    border: 1px solid var(--color-dark);
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.c-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.c-card__colorbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background-color: #0047ab;
    /* Left side color */
    transition: background-color 0.3s ease;
}

.c-card__description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    z-index: 1;
    /* Make sure it's above the color bar */
    background-color: #e4e9f1;

    .c-card__tagline {
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .c-card__title {
        font-size: 36px;
        margin: 10px 0;
    }

    .c-card__excerpt {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .c-card__cta {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 24px;
        /* slightly reduced for medium spacing */
    }

    .c-card__cta a {
        display: inline-block;
        padding: 10px 20px;
        /* medium size */
        font-size: 15px;
        font-weight: 600;
        border-radius: 12px;
        /* cute rounded corners */
        border: 1px solid #0047ab;
        background-color: #fff;
        color: #0047ab;
        text-decoration: none;
        transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        /* subtle depth */
    }

    .c-card__cta a:hover {
        transform: translateY(-4px) scale(1.05);
        /* smooth pop effect */
        background-color: #0047ab;
        color: #fff;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        border-color: #0047ab;
    }


    .c-card__figure {
        position: relative;
        overflow: hidden;

        img {
            position: absolute;
            width: 100%;
            height: 150%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
    }

    .c-card:hover .c-card__figure img {
        transform: scale(1.05);
    }
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
    /* Smooth zoom */
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* Overlay hidden by default */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

/* Show overlay only on hover */
.gallery-card:hover .overlay {
    opacity: 1;
}

.overlay-title,
.overlay-sub {
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
    /* Delay for smoothness */
}

.gallery-card:hover .overlay-title,
.gallery-card:hover .overlay-sub {
    opacity: 1;
}

.overlay-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.overlay-sub {
    font-size: 0.95rem;
}


/* =========solutions======= */

/* TECH CARDS */
.solutions-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solutions-card img {
    max-width: 70px;
    margin-bottom: 15px;
}

.solutions-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.solutions-desc {
    font-size: 14px;
    color: #666;
    flex-grow: 1;
}

.solutions-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ============ Hero Work Section ============ */
.hero-work-section {
    color: #fff;
    overflow: hidden;
    height: 100vh;
    margin-top: -22vh;
}

/* Heading + Hero Logos */
.work-section-title {
    font-size: 5rem;
    font-weight: 600;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30vh;
}

/* Hero logos wrapper */
.work-hero-logo {
    position: relative;
    display: inline-block;
    width: 250px;
    height: 100px;

}

/* 🔹 Responsive Media Queries */

/* Tablets */
@media (max-width: 992px) {
    .work-section-title {
        font-size: 2rem;
    }

    .bottom-logos {
        gap: 25px;
    }

    .bottom-logos img {
        max-height: 50px;
    }


}

/* Mobiles */
@media (max-width: 576px) {
    .hero-work-section {
        padding: 80px 20px;
    }

    .work-section-title {
        font-size: 1.6rem;
    }

    .work-hero-logo img {
        max-height: 30px;
        margin: 3px;
    }

    .bottom-logos {
        gap: 15px;
    }

    .bottom-logos img {
        max-height: 40px;
    }
}

/* ============ Bottom Scrolling Logos Section ============ */
.partners-logos-section {
    width: 100%;
    background-color: #012141;
    overflow: hidden;
    border-top: 2px solid #012141;
    border-bottom: 2px solid #012141;
    box-sizing: border-box;

}

.bottom-logos-wrapper {
    width: 100%;
    overflow: hidden;

}

.bottom-logos {
    display: flex;
    gap: 60px;
    align-items: center;
    white-space: nowrap;
    animation: scrollLogos 20s linear infinite;
}

.bottom-logos img {
    max-height: 70px;
    opacity: 0.8;
    transition: transform 0.3s;
}

.bottom-logos img:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Smooth infinite scroll */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* half width because logos are duplicated */
}


/* ===== UNIQUE CLIENT SECTION (Clean & Centered) ===== */
.unique-clients-section {
    background: linear-gradient(180deg, #f8f9fa, #e9ecef);
    color: #212529;
    padding: 60px 0;
}

/* Title */
.unique-clients-section h2 {
    font-weight: 700;
    color: #101010;
    margin-bottom: 40px;
}

/* Filter Bar Styling */
.filter-bar select,
.filter-bar input {
    background-color: #fff;
    color: #212529;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.filter-bar select:focus,
.filter-bar input:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.4);
}

/* ===== Client Card Styling ===== */
.unique-client-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    text-align: center;
    padding: 25px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.unique-client-card:hover {
    transform: translateY(-6px);
    border-color: #196eed;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

/* Logo - centered */
.client-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px auto;
}

/* Company Name - centered */
.client-name {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-left: 5vh;
    margin-bottom: 6px;
}

/* Description */
.client-desc {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
}

/* Show More Button */
#showMoreBtn {
    background-color: #0d6efd;
    border: none;
    color: #fff;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#showMoreBtn:hover {
    background-color: #0b5ed7;
    transform: scale(1.05);
}

/* Hidden Cards */
.hidden {
    display: none !important;
}


/* Utility */
.vcard a {
    color: inherit;
}

.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 991px) {
    .unique-client-card {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .unique-client-card {
        height: auto;
        padding: 10px;
    }

    .client-logo {
        max-width: 80px;
    }
}


.partner-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    background-color: #ffffff;
}

.partner-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}


.partner-logo {
    max-height: 80px;
    object-fit: contain;
    filter: invert(1);
    /* Invert if logo is white */
}

.animate-partner-card {
    transition: all 0.5s ease;
}

/* ==========blogs========== */

.writing-bg-section {
    background: url('../images/blog.jpg') center center/cover no-repeat;
    min-height: 120vh;
    margin-top: -15vh;
    width: 350vh;
    /* poori viewport width */
    position: relative;
    margin-left: -2vh;
}

.text-blue {
    color: #212a6dff;
    /* tum apna brand blue yahan de sakte ho */
}

/* Heading */
.blog-heading {
    text-align: center;
    margin-bottom: 30px;
}

/* Blog List Grid */
.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 10vh;
    padding: 20px;
}

/* Blog Detail Section */
.blog-detail {
    display: none;
    margin-top: 20px;
}

.blog-detail img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

/* Similar Blogs Grid */
.similar-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Back Button */
.back-btn-wrap {
    margin-top: 20px;
    margin-bottom: 5vh;
    margin-left: 5vh;

}



.blog-card h3,
.similar-card strong {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

.blog-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

button {
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    background: #0d6edf;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #0d6edf;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-btn {
    background: #0052cc;

}

.back-btn:hover {
    background: #0052cc;
}

.blog-card,
.similar-card {
    display: flex;
    flex-direction: column;
    /* stack content vertically */
}

.blog-card-content,
.similar-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* take available height */
}

.blog-card-content .btn,
.similar-card-content .btn {
    margin-top: auto;
    /* bottom pe fix */
    width: 120px;
    /* fixed width */
    align-self: center;
    /* center me rakho */
}

.blog-card-content h5,
.blog-card-content p,
.similar-card-content strong {
    flex-grow: 0;
    /* normal text above */
}

.blog-card-content .btn,
.similar-card-content .btn {
    margin-top: auto;
    /* button hamesha bottom pe chala jayega */
}


.blog-card img,
.similar-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: .5rem .5rem 0 0;
}

.blog-card,
.similar-card {
    border: 1px solid #dee2e6;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    transition: transform .2s;
    background: #fff;
}

.blog-card:hover,
.similar-card:hover {
    transform: translateY(-4px);
}

.blog-card-content,
.similar-card-content {
    padding: 1rem;
}

#blog-detail img {
    max-height: 400px;
    object-fit: cover;
    border-radius: .5rem;
    width: 320vh;
}

.apply-section {
    position: relative;
    height: 140vh;
    /* Full screen height */
    overflow: hidden;
    margin-top: -15vh;
    /* Top spacing */
}

.apply-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.apply-overlay {
    position: relative;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent dark overlay */
}

.scalable-hero {

    background-image: url('../images/cards.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85vh;
    margin-top: -15vh;
    color: var(--txt);
}

.scalable-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    /* dark overlay */
    z-index: 0;
}

.scalable-inner {
    position: relative;
    /* sits above overlay */
    z-index: 1;
    text-align: center;
    max-width: 980px;
    padding: 3rem 1.25rem;
    color: #fff;
}

/* ===== Customer Satisfaction Hero Section ===== */
.cs-hero {
    position: relative;
    background: url("../images/cardsc.jpg") no-repeat center center/cover;
    color: #fff;
    text-align: center;
    height: 85vh;
    margin-top: -15vh;

    display: flex;
    align-items: center;
    /* Vertical Center */
    justify-content: center;
    /* Horizontal Center */
}

.cs-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* Dark overlay */
}

.cs-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cs-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cs-content p {
    font-size: 1.25rem;
    line-height: 1.7;
}

.dd-hero {
    position: relative;
    background: url("../images/solution.jpg") no-repeat center center/cover;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: -15vh;
}

.dd-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* Dark overlay */
}

.dd-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.dd-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.dd-content p {
    font-size: 1.3rem;
    line-height: 1.7;
}

.feature-box:hover {
    transform: translateY(-5px);
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.foundation {
    font-size: 18px;
}

.btn-blue-team {
    display: inline-block;
    background-color: #0d6edf;
    /* blue background */
    color: #fff;
    /* white text */
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    max-width: 40vh;
    text-align: center;
    transition: none;
    /* no change on hover */
    margin-left: 7vh;
}

.btn-blue-team:hover {
    background-color: #0d6edf;
    /* same blue */
    color: #fff;
    /* text remains white */
    box-shadow: 0 0 15px rgba(26, 78, 208, 0.5);
    /* subtle glow */
}

/* ===================== ENGINEERS SECTION ===================== */
.engineers-boxes {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.engineers-boxes h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e1e1e;
    position: relative;
    display: inline-block;
}

/* ===================== ENGINEER BOX ===================== */
.engineer-box {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid #e9e9e9;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}



.engineer-box::before {
    content: "";
    position: absolute;
    width: 130%;
    /* smaller width */
    height: 130%;
    /* smaller height */
    top: -15%;
    /* adjust position so it stays centered */
    left: -15%;
    background: radial-gradient(circle, rgba(13, 59, 85, 0.18) 0%, transparent 70%);
    animation: expertWaveMotion 6s linear infinite;
    transform: rotate(0deg);
    z-index: 0;
    opacity: 1;
    border-radius: 30%;
    /* keep it circular */
}


@keyframes expertwaveMotion {
    0% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.engineer-box>* {
    position: relative;
    z-index: 1;
}

/* ===================== HOVER EFFECT ===================== */
.engineer-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 163, 255, 0.2);
}

.engineer-box:hover::before {
    background: radial-gradient(circle, rgba(13, 59, 85, 0.18) 0%, transparent 70%);
    opacity: 0.9;
}

/* ===================== ICON EFFECT ===================== */
.engineer-icon img {
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: drop-shadow(0 0 4px rgba(0, 163, 255, 0.3));
}

.engineer-box:hover .engineer-icon img {
    transform: scale(1.1) rotate(4deg);
    filter: drop-shadow(0 0 10px rgba(0, 163, 255, 0.6));
}

/* ===================== TEXT ===================== */
.engineer-box h5 {
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.engineer-box:hover h5 {
    color: rgb(64, 93, 167);
    text-shadow: 0 0 8px rgba(0, 163, 255, 0.4);
}

.engineer-box p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}




.text-purple {
    color: #6f42c1;
}

.dev-animated-section {
    background: linear-gradient(135deg, #404d58, #0c0d0e, #404d58);
    overflow: hidden;
}

.dev-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    /* hide scrollbar for Firefox */
}

.dev-row::-webkit-scrollbar {
    display: none;
    /* hide scrollbar for Chrome/Safari */
}

.dev-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    width: 100px;
    height: 100px;
    min-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
}

.dev-item i {
    font-size: 2rem;
    color: #00d4ff;
    transition: transform 0.4s ease, color 0.4s ease;
}

/* Hover Effects */
.dev-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    color: #00eaff;
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.7), 0 0 40px rgba(0, 224, 255, 0.5);
}


.dev-item:hover i {
    transform: rotate(15deg) scale(1.2);
    color: #fff;
}

/* Floating Animation */
@keyframes floaty {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.dev-item:nth-child(odd) {
    animation: floaty 4s ease-in-out infinite;
}

.dev-item:nth-child(even) {
    animation: floaty 5s ease-in-out infinite reverse;
}

/* Responsive Design */
@media (max-width: 992px) {
    .dev-row {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .dev-item {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .dev-item i {
        font-size: 1.5rem;
    }
}


/* ===== HERO SECTION ===== */
.odoo-dev-hero-section {
    position: relative;
    height: 107vh;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    margin-top: -15vh;
}

/* Control width of heading and paragraph for all screens */
.odoo-dev-hero-section .odoo-dev-hero-title,
.odoo-dev-hero-section .lead {
    max-width: 700px;
    /* keeps consistent text width */
    width: 100%;
    text-align: left;
    margin-left: 0;
}

/* For very large screens */
@media (min-width: 1528px) and (max-width: 1800px) {

    .odoo-dev-hero-section .odoo-dev-hero-title,
    .odoo-dev-hero-section .lead {
        max-width: 950px !important;
    }
}

/* For medium screens */
@media (max-width: 992px) {

    .odoo-dev-hero-section .odoo-dev-hero-title,
    .odoo-dev-hero-section .lead {
        max-width: 600px;
    }
}

/* For mobile screens */
@media (max-width: 767px) {

    .odoo-dev-hero-section .odoo-dev-hero-title,
    .odoo-dev-hero-section .lead {
        max-width: 100%;
        text-align: center;
    }
}

.odoo-dev-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.odoo-dev-hero-title {

    font-size: 2rem;
    line-height: 1.3;
    max-width: 800px;
}

.odoo-dev-btn-gradient {
    background: #06de;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.odoo-dev-btn-gradient:hover {
    transform: scale(1.05);
    background: #06de;
    border: none !important;
}



/* ===== FULL-WIDTH LOGO STRIP ===== */
.odoo-dev-logos-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    overflow: hidden;
    padding: 10px 0;
    z-index: 3;
    background: linear-gradient(135deg, #404d58, #0c0d0e, #404d58);
}

.odoo-dev-logos {
    display: flex;
    gap: 80px;
    animation: odoo-dev-scrollLeft 28s linear infinite;
    white-space: nowrap;
}

.odoo-dev-logos img {
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.odoo-dev-logos img:hover {
    transform: scale(1.1);
}

/* Animation */
@keyframes odoo-dev-scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}




/* ============================= */
/* ✅ MOBILE VIEW (max-width: 767px) */
/* ============================= */
@media (max-width: 767px) {
    .odoo-dev-hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: left;
        height: 100vh;
        padding: 20px;
        background-position: center top;
    }

    .odoo-dev-hero-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .odoo-dev-role-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .odoo-dev-btn-gradient {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .odoo-dev-logos {
        gap: 40px;
    }

    .odoo-dev-logos img {
        height: 30px;
    }
}


/* ========================================== */
/* ✅ LARGE SCREENS (1528px to 1800px) */
/* ========================================== */
@media (min-width: 1528px) and (max-width: 1800px) {
    .odoo-dev-hero-section {
        height: 110vh;
        background-position: center top;
    }

    .odoo-dev-hero-title {
        font-size: 3rem;
        max-width: 600px;
    }

    .odoo-dev-logos img {
        height: 60px;
    }

    .odoo-dev-btn-gradient {
        font-size: 1.1rem;
        padding: 12px 28px;
    }
}

/* === Empowering Your Business Section === */
/* ===================== CONSULTING SECTION ===================== */
.consulting-section {
    background-color: #f8f9fc;
}

/* Consulting Cards */
.consulting-card {
    background: linear-gradient(135deg, #001f3f, #003366);
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.consulting-card i {
    color: #a0a0a0;
    /* grey icons */
    transition: all 0.3s ease;
}

.consulting-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.4);
}

.consulting-card:hover i {
    color: #00bfff;
    transform: scale(1.2);
}

.consulting-card h6 {
    font-weight: 600;
    color: #ffffff;
}

.consulting-card p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.intelligent-systems-hero {
    position: relative;
    height: 115vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-position: center;
    background-size: cover;
    color: #fff;
}

/* Overlay */
.intelligent-systems-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
}

/* Content Container */
.intelligent-systems-hero .container {
    z-index: 2;
}

/* Trusted Users Bar */
.trusted-users-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #404d58, #0c0d0e, #404d58);
    z-index: 2;
    max-height: 15vh;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
}

/* Trusted Text */
.trusted-users-bar .trusted-text {
    font-size: 1.25rem;
    margin-left: 20vh;
    color: #fff;
}

/* Trusted Image */
.trusted-users-bar .trusted-image {
    max-width: 170px;
    margin-right: 40vh;
}

/* Responsive (mobile view) */
@media (max-width: 767px) {
    .trusted-users-bar {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .trusted-users-bar .trusted-text {
        font-size: 1rem;
        margin-bottom: 8px;
        margin-left: 0;
    }

    .trusted-users-bar .trusted-image {
        margin-top: 5px;
        margin-right: 0;
    }
}

/* Large screens */
@media (min-width: 1528px) and (max-width: 1800px) {
    .intelligent-systems-hero {
        height: 115vh;
        background-position: center top;
    }

    .hero-heading {
        font-size: 3rem;
    }

    .hero-subtext {
        font-size: 1.25rem;
    }
}

.success-journey {
    background: radial-gradient(circle at top left, #031023, #001F54, #000);
    color: #fff;
    padding: 50px 20px;
    font-family: "Poppins", sans-serif;
}

/* Left section */
.success-left {
    text-align: left;
    color: #ffffff;
}

.success-left h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.success-left p {
    font-size: 1rem;
    margin-bottom: 25px;
}

.emphasis {
    color: #5e9fff;
    font-weight: 600;
}

/* Button */
.btn-action {
    background: rgb(46, 102, 224);
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-action:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(13, 103, 221, 0.4);
}

/* Right section */
.success-right {
    margin-top: 60px;
}

/* Metrics */
.metric {
    text-align: left;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.metric::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120px;
    height: 4px;
    width: 0;
    background: #ccc;
    animation: growLine 4s ease forwards;
}

@keyframes growLine {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.metric-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e2e6e9;
}

.metric-symbol {
    font-size: 2rem;
    font-weight: bold;
    color: #dfe1e4;
    margin-left: 5px;
}

.metric-label {
    font-size: 1rem;
    color: #f5f2f2;
    margin-top: 8px;
}

/* Responsive adjustments */
@media (max-width: 575.98px) {
    .success-journey {
        padding: 40px 20px;
    }

    .success-left h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .success-left p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .success-right {
        margin-top: 30px;
    }

    .metric-value {
        font-size: 2rem;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .success-journey {
        padding: 60px 30px;
    }

    .success-left h2 {
        font-size: 2.3rem;
    }

    .success-left p {
        font-size: 1rem;
        max-width: 90%;
    }

    .success-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .metric-value {
        font-size: 2rem;
    }

    .metric-label {
        font-size: 0.9rem;
    }
}


.tech-showcase-royal {
    background: linear-gradient(180deg, #051937, #0b274f);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0;
}

/* Heading */
.tech-heading {
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

/* Cards */
.tech-card-pro {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px 10px;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-card-pro img {
    max-width: 45px;
    height: 45px;
    margin-bottom: 8px;
    transition: transform 0.4s ease;
}

.tech-card-pro h6 {
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
}

.tech-card-pro:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
}

.tech-card-pro:hover img {
    transform: scale(1.1);
}

/* Glow */
.tech-glow {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(circle at center, rgba(0, 194, 255, 0.25), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.tech-card-pro:hover .tech-glow {
    opacity: 1;
}

/* Responsive Grid Control */
@media (min-width: 1400px) {
    .tech-showcase-royal .col-xl-1-8 {
        flex: 0 0 12.5%;
        max-width: 12.5%;
        /* 8 per row */
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .tech-showcase-royal .col-lg-1-10 {
        flex: 0 0 16.66%;
        max-width: 16.66%;
        /* 6 per row */
    }
}

@media (max-width: 991px) {
    .tech-card-pro {
        height: 100px;
    }

    .tech-card-pro img {
        max-width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .tech-showcase-royal {
        padding: 50px 0;
    }

    .tech-heading {
        font-size: 1.8rem;
    }
}


/* All Clients Button */
.btn-all-clients {
    display: inline-block;
    padding: 10px 30px;
    background: #064db7;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 114, 255, 0.4);
}

.btn-all-clients:hover {

    box-shadow: 0 0 20px rgba(0, 198, 255, 0.6);
    transform: translateY(-3px);
}

/* ===== What We Deliver Cards ===== */
.deliver-card {
    background: linear-gradient(135deg, #001F3F, #003366);
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.deliver-card:hover {
    background: linear-gradient(135deg, #0047AB, #0052CC);
    /* Royal blue gradient */
    transform: translateY(-8px);
    /* Slight lift effect */
    box-shadow: 0 8px 20px rgba(0, 71, 171, 0.4);
    /* Blue glow */
}

.deliver-card i {
    color: #b0c4de;
    /* soft steel blue icon color */
    transition: color 0.3s ease;
}

.deliver-card:hover i {
    color: #fff;
    /* icon turns white on hover */
}

/* White themed mega menu */
.mega-menu-white {
    width: 650px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.3s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown link styles */
.mega-menu-white .dropdown-link {
    display: block;
    padding: 8px 0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mega-menu-white .dropdown-link:hover {
    color: #1e90ff;
    padding-left: 6px;
}

/* Right side info card */
.info-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.03);
}

/* Floating soft blur animation */
.floating-shape {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 250%;
    height: 250%;
    background: linear-gradient(135deg, #404d58, #0c0d0e, #404d58);
    animation: floatShape 8s linear infinite;
    z-index: 0;
}

@keyframes floatShape {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.info-card h5,
.info-card p,
.info-card a {
    position: relative;
    z-index: 1;
}

/* Button hover */
.info-card a:hover {
    background: #1e90ff;
    color: #fff;
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.4);
}
