/* =========================
GLOBAL RESET + BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}
.arrow {
    font-size: 40px;
    color: #0852c1;
    cursor: pointer;
    position: absolute;
    top: 40%;
    z-index: 2;
}

.left-arrow {
    left: -20px;
}

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

.arrow:hover {
    color: #1e90ff;
    transform: scale(1.1);
    transition: 0.2s;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* =========================HEADER========================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #051030;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #0852c1;
}

.main-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    margin: 0 auto;
}

.main-header .header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-header .header-left .logo img {
    width: 200px;
    object-fit: cover;
}

.main-header .header-left .logo-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.main-header .header-center {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-header .header-center a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: 0.2s;
    font-weight: 400;
}

.main-header .header-center a:hover {
    color: #ffffff;
}

.main-header .dropdown-menu {
    background: #001f4d;
    border: none;
    margin-top: 10px;
}

.main-header .dropdown-item {
    color: #c8d6e5;
    font-size: 13px;
}

.main-header .dropdown-item:hover {
    background: none;
    color: #fff;
}

.main-header .header-right .search-box {
    display: flex;
    align-items: center;
    border: 2px solid #1e90ff;
    border-radius: 30px;
    padding: 5px 12px;
    height: 36px;
    background: transparent;
    box-shadow: 0 0 10px #1e90ff;
}

.main-header .header-right .search-box input {
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 13px;
    width: 190px;
}

.main-header .header-right .search-box input::placeholder {
    color: #8aa4c1;
}
.main-header .header-right .search-box i {
    color: #fff;
    font-size: 14px;
    margin-left: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .main-header {
        padding-left: 0;
    }
    .main-header .header-inner {
        padding: 0 20px;
    }
    .main-header .header-right .search-box input {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .main-header .header-center {
        display: none;
    }
    .main-header .hamburger {
        display: flex;
    }
    .main-header .header-right .search-box input {
        width: 80px;
    }
    .main-header .header-right .search-box {
        display: none;
    }
}
@media (max-width: 600px) {
    .main-header .header-right .search-box {
        display: none;
    }
    .mobile-menu .search-box {
        display: flex;
        margin: 20px;
        padding: 10px;
        /* width: 100%; */
        background: #1e2845;
        border-radius: 21px;
        color: white;
        position: relative !important;
        z-index: 10000 !important;
        pointer-events: auto !important;
    }
    .mobile-menu .fa-solid,
    .fas {
        margin: auto 10px !important;
    }
    .mobile-menu .search-box input {
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        position: relative !important;
        z-index: 10001 !important;
        pointer-events: auto !important;
        color: rgb(247, 242, 242) !important;
        user-select: text !important;
    }
}
/* HAMBURGER BUTTON */
.main-header .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 40px;
    background: rgba(30, 144, 255, 0.1);
    border: 2px solid #1e90ff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.4);
}

.main-header .hamburger:hover {
    box-shadow: 0 0 15px #1e90ff;
    background: rgba(30, 144, 255, 0.2);
}

.main-header .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

.main-header .mobile-menu {
    display: none;
    flex-direction: column;
    background: #051030;
    border-top: 2px solid #0852c1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header .mobile-menu a {
    padding: 18px 25px;
    color: #c8d6e5;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(8, 82, 193, 0.3);
    transition: 0.3s;
}

.main-header .mobile-menu a:hover {
    background: rgba(30, 144, 255, 0.1);
    color: #fff;
    padding-left: 35px; /* Subtle slide effect on hover */
}
.mobile-menu .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    display: none !important; /* Force hide initially */
    background: rgba(255, 255, 255, 0.05) !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.mobile-menu .dropdown:hover > .dropdown-menu,
.mobile-menu .dropdown-menu.show {
    /* display: block !important; */
    transform: none !important;
}

.mobile-menu .dropdown .dropdown-toggle {
    display: block; /* Poori width lene ke liye */
    padding: 18px 25px; /* Same padding jo baki links ki hai */
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(8, 82, 193, 0.3);
}
.mobile-menu .dropdown:hover .dropdown-menu {
    display: block !important;
}

/* 3. Dropdown Items ki Width aur Padding fix */
.mobile-menu .dropdown-item {
    display: block !important;
    width: 100% !important;
    padding: 18px 40px !important; /* Baki links jaisi height, lekin thoda right indented */
    color: #c8d6e5 !important;
    border-bottom: 1px solid rgba(8, 82, 193, 0.1) !important;
    background: transparent !important;
}

/* 4. Dropdown Item Hover Effect */
.mobile-menu .dropdown-item:hover {
    background: rgba(30, 144, 255, 0.1) !important;
    color: #fff !important;
    padding-left: 50px !important; /* Subtle slide effect */
}

/* Arrow (caret) ko right side par lane ke liye */
.mobile-menu .dropdown-toggle::after {
    float: right;
    margin-top: 8px;
}
/* ANIMATED X STATE */
.main-header .hamburger.open {
    background: #1e90ff; /* Solid blue when open */
}

.main-header .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.main-header .hamburger.open span:nth-child(2) {
    opacity: 0;
}

.main-header .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* RESPONSIVE TRIGGER */
@media (max-width: 768px) {
    .main-header .hamburger {
        display: flex;
    }
    .main-header .mobile-menu.open {
        display: flex;
        max-height: 500px;
    }
}
/* =========================HERO========================= */
.hero-section {
    background-image: url("../images/version1/welcome/hero.jpeg");
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    align-items: center;
    position: relative;
    color: #ffffff;
}

.hero-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-section .container .hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 100px;
    margin-bottom: 130px;
}
.hero-section .container .hero-main .hero-content .hero-heading {
    font-size: 65px;
    font-weight: 700;
    margin: -20px 0px;
    line-height: 1.1;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.6);
}

.hero-section .container .hero-main .hero-content .hero-subheading {
    font-size: 65px;
    font-weight: 500;
    margin: 40px 0 25px 0;
    text-shadow: 4px 4px 4px rgb(0, 0, 0, 0.6);
}

.hero-section .container .hero-main .hero-content .hero-text {
    font-size: 35px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 737px;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.hero-section .container .hero-main .hero-content .hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-section .container .hero-main .hero-content .hero-buttons a {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    font-size: 25px;
    transition: 0.3s ease;
}

.hero-section .container .hero-main .hero-content .hero-buttons .btn-green {
    background: radial-gradient(circle, #34d786 0%, #29aa6a 100%);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.hero-section .container .hero-main .hero-content .hero-buttons .btn-blue {
    background: radial-gradient(circle, #254bb2 0%, #10204c 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Right Graphic */
.hero-section .container .hero-main .hero-graphic {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-end;
}

.hero-section .container .hero-main .hero-graphic img {
    max-width: 650px;
    height: auto;
}
.border-top {
    border-top: 3px solid #0852c1 !important;
    width: 100%;
    height: 3px;
}
.hero-section .container .hero-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 120px;
    padding: 15px 0px;
}

.hero-section .container .hero-stats .stat-box {
    display: flex;
    align-items: center;
    padding: 0px 20px;
    gap: 15px;
}
.stat-box:not(:last-child) {
    border-right: 3px solid #103276;
    height: 80%;
}
.border-right {
    border-right: 5px solid white !important;
}

.hero-section .container .hero-stats .stat-box .stat-icon {
    width: 100px;
    height: 100px;
}

.hero-section .container .hero-stats .stat-box .stat-info .count {
    display: block;
    font-size: 55px;
    font-weight: 800;
    line-height: 1;
}

.hero-section .container .hero-stats .stat-box .stat-info .label {
    font-size: 20px;
    text-transform: capitalize;
    color: white;
}
@media (max-width: 992px) {
    .hero-section .container .hero-main {
        flex-direction: column;
        padding-top: 80px;
        gap: 30px;
        text-align: center;
    }
    .hero-section .container .hero-main .hero-content {
        flex: unset;
        width: 100%;
    }
    .hero-section .container .hero-main .hero-graphic {
        flex: unset;
        width: 100%;
        justify-content: center;
    }
    .hero-section .container .hero-main .hero-graphic img {
        max-width: 100%;
    }
    .hero-section .container .hero-main .hero-content .hero-buttons {
        justify-content: center;
    }
    .hero-section .container .hero-stats {
        gap: 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-image: url("/app-assets/images/version1/welcome/hero_mobile.jpeg");
        background-size: cover;
        background-position: center;
    }
    .hero-section .container .hero-main .hero-content .hero-heading {
        font-size: 30px;
    }
    .hero-section .container .hero-main .hero-content .hero-subheading {
        font-size: 26px;
    }
    .hero-section .container .hero-main .hero-content .hero-text {
        font-size: 16px;
    }
    .hero-section .container .hero-stats {
        gap: 25px;
        padding: 30px 0;
    }
    .hero-section .container .hero-stats .stat-box .stat-icon {
        width: 60px;
        height: 60px;
    }
    .hero-section .container .hero-stats .stat-box .stat-info .count {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .hero-section .container .hero-main .hero-content .hero-heading {
        font-size: 30px;
    }
    .hero-section .container .hero-main .hero-content .hero-subheading {
        font-size: 30px;
    }
    .hero-section .container .hero-main .hero-content .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: auto;
    }
    .hero-section .border-top {
        margin-top: -80px;
    }
    .hero-section .container .hero-main .hero-content .hero-buttons a {
        width: 100%;
        text-align: center;
    }
    .stat-box {
        border-right: none !important;
    }
    .hero-section .container .hero-stats {
        /* flex-direction: column; */
        align-items: center;
        gap: 20px;
        margin: auto;
    }
}

/* =========================
LOGO + CARDS
========================= */
.logo-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #ffffff; /* Clean white background */
}

.logo-cards .container {
    max-width: 1200px;
    width: 100%;
    padding: 80px 20px 50px;
    text-align: center;
}

/* ================= HEADING ================= */
.logo-cards {
    background-color: #f5f5fc;
}
.logo-cards .section-title {
    font-weight: 700;
    font-size: 40px;
    padding: 0 20px;
    margin-bottom: 50px;
    font-family: "Roboto", sans-serif;
    color: #000000;
    position: relative;
    display: inline-block;
}

.logo-cards .section-title::before,
.logo-cards .section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: clamp(50px, 15vw, 140px);
    height: 3px;
    background: linear-gradient(to right, transparent, #ccc);
}

.logo-cards .section-title::before {
    right: 100%;
    margin-right: 15px;
    width: 30%;
}
.logo-cards .section-title::after {
    left: 100%;
    margin-left: 15px;
    width: 30%;
    background: linear-gradient(to left, transparent, #ccc);
}

/* ================= LOGOS ================= */
.logo-cards .logo-row {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
}

.logo-cards .logo-row:first-of-type {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.logo-cards .logo-row:first-of-type::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
}

.logo-cards .logo-img {
    width: auto;
    object-fit: contain;
    padding: 0 15px;
    border-right: 1px solid;
    border-image: linear-gradient(to bottom, transparent, #e0e0e0, transparent)
        1;
}
.logo-border-top {
    border-top: 2px solid #cdd3dd;
    margin: 5px 0px;
}
.logo-cards .logo-row .logo-img:last-child {
    border-right: none;
}

/* ================= CAROUSEL ================= */
.logo-cards .carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    overflow: hidden;
    padding: 0 56px;
}

.logo-cards .custom-carousel-viewport {
    overflow: hidden;
    width: 100%;
}
.services-marketing-dashboard .custom-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.logo-cards .custom-carousel-track {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    will-change: transform;
    transition: transform 0.5s ease-in-out;
}
.services-marketing-dashboard .custom-carousel-track {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    will-change: transform;
    transition: transform 0.5s ease-in-out;
}

.logo-cards .custom-carousel-slide {
    flex: 0 0 calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
    background: #ffffff;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    text-align: left;
}
.services-marketing-dashboard .custom-carousel-slide {
    flex: 0 0 calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    border-radius: 20px;
    border: none;
    overflow: hidden;
    text-align: left;
}
.logo-cards .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
.services-marketing-dashboard .arrow{
     position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.logo-cards .service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.logo-cards .service-card .card-body {
    padding: 20px;
}

.logo-cards .service-card .card-title {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.logo-cards .service-card .card-text {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: #666666;
    line-height: 1.4;
}

/* Arrow Navigation */
.logo-cards .carousel-container .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    cursor: pointer;
    font-size: 50px;
    color: #3b82f6;
    transition: 0.2s;
    border: none;
    background-color: #f5f5fc;
}

.logo-cards .left-arrow {
    left: 8px;
    border: none !important;
}
.logo-cards .right-arrow {
    right: 8px;
    border: none !important;
}
.custom-carousel-arrow,
.custom-carousel-arrow:focus,
.custom-carousel-arrow:active {
    outline: none !important;
    box-shadow: none !important;
    border: none;
}

.logo-cards .carousel-container .arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

/* Pagination Dots */
.logo-cards .pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.logo-cards .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    /* transition: 0.3s; */
}

.logo-cards .dot.active {
    background-color: #3b82f6;
    width: 25px;
    border-radius: 10px;
}

/* ================= INSANE RESPONSIVENESS ================= */

/* Tablet View: 2 Cards */
@media (max-width: 1024px) {
    .logo-cards .custom-carousel-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    .services-marketing-dashboard .custom-carousel-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    .logo-cards .logo-row {
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* Mobile View: 1 Card + Stacked Logos */
@media (max-width: 600px) {
    .logo-cards .carousel-container {
        padding: 0 42px;
    }

    .logo-cards .custom-carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .services-marketing-dashboard .custom-carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
 
    .logo-cards .carousel-container .arrow {
        font-size: 22px;
    }
     .services-marketing-dashboard .arrow {
        font-size: 22px;
    }
    .logo-cards .section-title::before,
    .logo-cards .section-title::after {
        display: none;
    }
    .logo-row {
        flex-wrap: wrap !important;
        justify-content: space-around !important;
    }

    .logo-row .logo-img {
        flex: 0 0 calc(50% - 20px) !important;
        max-width: calc(50% - 20px) !important;
        margin-bottom: 20px !important;
        object-fit: contain;
    }

    .logo-border-top {
        border-top: none;
    }
}

/*=============================
SECTION 03
================================*/
/* Parent Container */
.services-marketing-dashboard {
    background-image: url("/app-assets/images/version1/welcome/section03-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
}

/* Titles with Fading Lines */
.services-marketing-dashboard .dashboard-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}
.services-marketing-dashboard .dashboard-title-line::before,
.services-marketing-dashboard .dashboard-title-line::after {
    content: "";
    height: 3px;
    flex: 1;
    max-width: 150px;
}

.services-marketing-dashboard .dashboard-title-line::before {
    background: linear-gradient(90deg, transparent, #2b59ff);
}

.services-marketing-dashboard .dashboard-title-line::after {
    background: linear-gradient(90deg, #2b59ff, transparent);
}

.services-marketing-dashboard .dashboard-title-line .main-heading {
    padding: 0 25px;
    font-weight: 700;
    text-align: center;
    font-size: 40px;
    white-space: nowrap;
}
.services-marketing-dashboard .carousel-section {
    position: relative;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-marketing-dashboard .carousel-viewport {
    overflow: hidden;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

/* 2. Track jo move karega (Sliding Layer) */
.services-marketing-dashboard .carousel-track {
    display: flex;
    gap: 20px;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth movement */
    flex-wrap: nowrap;
    will-change: transform;
}

/* 3. Service Card (3 per line logic) */
.services-marketing-dashboard .service-card {
    position: relative;
    overflow: hidden;
    background-color: #191d60;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 36px 15px;
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    min-height: 320px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: #ffffff;
}
.services-marketing-dashboard .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #2b59ff;
    font-size: 28px;
    cursor: pointer;
    z-index: 20;
    outline: none !important;
    box-shadow: none !important;
}

.services-marketing-dashboard .left-arrow {
    left: -40px;
}
.services-marketing-dashboard .right-arrow {
    right: -40px;
}

@media (max-width: 992px) {
    .services-marketing-dashboard .service-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .services-marketing-dashboard .arrow {
        font-size: 22px;
    }
}
@media (max-width: 768px) {
    .services-marketing-dashboard .arrow {
        display: block !important;
        z-index: 999;
        font-size: 20px;
    }

    .services-marketing-dashboard .left-arrow {
        left: 10px;
    }

    .services-marketing-dashboard .right-arrow {
        right: 10px;
    }
    .services-marketing-dashboard .pagination-dots{
        margin-bottom: 10px;
    }
    .hero-section .border-top{
        display: none;
    }
    .hero-section .container .hero-main{
        margin-bottom: 10px !important;
    }
}
.services-marketing-dashboard .service-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0%;
}

.services-marketing-dashboard .service-card .card-header .card-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #ffffff;
}
.card-title .card-header {
    padding: 0% !important;
}
.services-marketing-dashboard .service-card .card-header .brand-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
}

.services-marketing-dashboard .service-card .rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.services-marketing-dashboard .service-card .rating-row .stars {
    color: #ffcc00;
    font-size: 2rem;
    letter-spacing: -3px;
}

.services-marketing-dashboard .service-card .card-description {
    font-size: 22px;
    font-weight: 600;
    color: white;
    line-height: 1.5;
    margin: 0;
}

.services-marketing-dashboard .service-card .action-button {
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.services-marketing-dashboard .service-card .shimmer-overlay {
    position: absolute;
    bottom: -10px;
    right: -10px;
    height: 270px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    opacity: 0.9;
    z-index: -1;
}

.services-marketing-dashboard .service-card.card-red .action-button {
    background-color: #e53935;
    width: 75%;
}
.services-marketing-dashboard .service-card.card-blue .action-button {
    background-color: #2962ff;
    width: 75%;
}
.services-marketing-dashboard .service-card.card-green .action-button {
    background-color: #2e7d32;
    width: 75%;
}
/* HOVER */
.services-marketing-dashboard .service-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    border-color: rgba(255, 255, 255, 0.3);
}
/* ARROWS */
.services-marketing-dashboard .carousel-viewport .arrow {
    font-size: 28px;
    color: #4a7fff;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 2;
    padding: 10px;
    transition: color 0.2s;
}
.services-marketing-dashboard .carousel-viewport .arrow:hover {
    color: #ffffff;
}
/* PAGINATION DOTS */
.services-marketing-dashboard .pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}
.services-marketing-dashboard .pagination-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}
.services-marketing-dashboard .benefits-section {
    margin-top: 60px;
}
.services-marketing-dashboard .pagination-dots .dot.active {
    background-color: #ffffff;
    width: 25px;
    border-radius: 10px;
}
.services-marketing-dashboard .section-separator {
    width: 80%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    margin: 30px auto 0;
}

/* Fixed Benefits Grid */
.services-marketing-dashboard .benefits-section .benefits-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.feature-card-row.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.feature-card-row [class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.services-marketing-dashboard .benefits-grid .benefit-item {
    background: #192973;
    border: 1px solid #1a26bd;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    width: 330px;
    box-shadow: 8px 8px 30px 0px rgba(0, 0, 0, 0.6) !important;
    height: 290px;
}

.services-marketing-dashboard .benefit-item .benefit-icon {
    width: 122px;
    height: 122px;
    margin-bottom: 15px;
}

.services-marketing-dashboard .benefit-item .benefit-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    padding: 0px 30px;
    color: white;
}

.services-marketing-dashboard .benefit-item .benefit-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}
.services-marketing-dashboard .service-card .card-header,
.services-marketing-dashboard .service-card .rating-row,
.services-marketing-dashboard .service-card .card-description,
.services-marketing-dashboard .service-card .action-button {
    position: relative;
    z-index: 1;
}
@media (max-width: 992px) {
    .services-marketing-dashboard .carousel-viewport .carousel-track {
        gap: 15px;
    }
    .services-marketing-dashboard .service-card {
        max-width: 280px;
        min-width: 240px;
        margin: 0px auto;
    }
}
@media (max-width: 768px) {
    .services-marketing-dashboard {
        padding: 20px 0;
    }

    .services-marketing-dashboard .carousel-section {
        padding: 0;
        width: 100%;
        overflow: hidden;
    }

    .services-marketing-dashboard .carousel-viewport {
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .services-marketing-dashboard .carousel-track {
        display: flex;
        justify-content: flex-start !important;
        gap: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services-marketing-dashboard .benefits-section {
        width: 100% !important;
        padding: 40px 15px !important;
        box-sizing: border-box;
        overflow: hidden;
    }

    .services-marketing-dashboard .benefits-section .benefits-grid {
        display: flex !important;
        flex-direction: column !important; /* Ek ke niche ek cards */
        align-items: center !important; /* Cards ko horizontal center karein */
        justify-content: center !important;
        width: 100% !important;
        gap: 20px !important;
        margin: 0 auto !important;
    }

    /* 3. Card ki width aur text alignment */
    .services-marketing-dashboard .benefits-grid .benefit-item {
        width: 100% !important;
        max-width: 350px;
        height: auto !important;
        padding: 25px 20px !important;
        box-sizing: border-box;
        margin: 0 auto !important; /* Center alignment check */
        text-align: center;
    }
    .services-marketing-dashboard .benefit-item .benefit-icon {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto 15px auto !important;
    }

    .services-marketing-dashboard .benefit-item .benefit-title {
        font-size: 20px !important;
        padding: 0 !important;
        line-height: 1.2;
    }

    .services-marketing-dashboard .benefit-item .benefit-subtitle {
        font-size: 14px !important;
    }
    .custom-carousel-arrow {
        display: block !important;
    }
}


/*=========================
GROWTH PROCESS
===========================*/
/* =========================
   SECTION WITH BG (DESKTOP DEFAULT)
========================= */
.growth-section {
    width: 100%;
    height: 450px;
    background-image: url("/app-assets/images/version1/welcome/growth.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-color: #050b2d;
    position: relative;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

/* TITLE */
.growth-section .growth-title {
    position: absolute;
    top: 15px;
    left: 32%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    padding: 10px;
}

/* STEP BASE */
.growth-section .step {
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
}

/* CIRCLE */
.growth-section .step .circle.blue {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-size: 40px;
    font-weight: 700;
}
.growth-section .step .circle.purple {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-size: 40px;
    font-weight: 700;
}
.growth-section .step .circle.green {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-size: 40px;
    font-weight: 700;
}
.growth-section .step .circle.blue h5,
.growth-section .step .circle.green h5,
.growth-section .step .circle.purple h5 {
    font-size: 30px;
    font-weight: 700;
    color: white;
}

/* COLORS */
.growth-section .step .circle.blue {
    background: #2f6bff;
}
.growth-section .step .circle.green {
    background: #22c55e;
}
.growth-section .step .circle.purple {
    background: #a855f7;
}

/* STEP TOP */
.growth-section .step .step-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}

/* TEXT */
.growth-section .step h5 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
}

.growth-section .step p {
    font-size: 20px;
    font-weight: 600;
    margin: -80px;
    opacity: 0.85;
    margin-left: 60px;
    display: inline-block;
    text-align: left;
}

/* DESKTOP POSITIONS */
.growth-section .step-1 {
    left: 25%;
    bottom: 200px;
}

.growth-section .step-2 {
    left: 50%;
    bottom: 200px;
}

.growth-section .step-3 {
    left: 70%;
    bottom: 200px;
}

/* =========================
   TABLET (SAFE RANGE ONLY)
========================= */
@media (min-width: 577px) and (max-width: 768px) {
    .growth-section {
        height: auto;
        padding: 60px 20px;
        background-size: cover;
    }
    .growth-section .step {
        width: unset !important;
    }

    .growth-section .growth-title {
        position: static;
        transform: none;
        text-align: center;
        font-size: 28px;
        margin-bottom: 40px;
    }

    .growth-section > div {
        display: flex;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }
}

/* =========================
   MOBILE (FULL REDESIGN)
========================= */
@media (max-width: 576px) {
    .growth-section {
        background: url("images/Gemini_Generated_Image_62dbek62dbek62db.png")
            no-repeat center center;
        background-size: cover;
        height: auto;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .growth-section .growth-title {
        position: static;
        transform: none;
        text-align: center;
        font-size: 24px;
        margin-bottom: 30px;
    }

    .growth-section .step {
        position: static;
        transform: none;
        width: unset;
        padding: 15px;
        border-radius: 12px;
        text-align: left;
    }

    .growth-section .step .step-top {
        justify-content: center;
    }

    .growth-section .step h5 {
        font-size: 24px;
        width: -webkit-fill-available;
    }

    .growth-section .step p {
        font-size: 15px;
    }

    .growth-section .step-1,
    .growth-section .step-2,
    .growth-section .step-3 {
        left: unset;
        bottom: unset;
    }
    .growth-section .step .circle.blue {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 24px;
    }
    .growth-section .step .circle.purple {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 24px;
    }
    .growth-section .step .circle.green {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 24px;
    }
    .logo-cards .section-title {
        font-size: 26px;
    }
    .logo-cards .section-title .logo-img {
        width: 50%;
    }
}
/* =========================
reviews section
========================= */
.business-showcase-container {
    padding: 80px 0;
    font-family: "Poppins", sans-serif;
    background-image: url("/app-assets/images/version1/welcome/mid.png");
    background-size: cover;
    background-position: center;
}

/* Header & Lines */
.business-showcase-container .showcase-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.business-showcase-container .showcase-header .showcase-title-badge {
    background: radial-gradient(circle, #254bb2 0%, #10204c 100%);
    border: 1px solid #0852c1;
    backdrop-filter: blur(10px);
    padding: 12px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
    z-index: 2;
}

.business-showcase-container .showcase-header .accent-fading-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(
        to right,
        rgba(8, 82, 193, 0),
        rgba(8, 82, 193, 1)
    );
    width: 120px;
}

.business-showcase-container .showcase-header .line-flipped {
    background: linear-gradient(
        to left,
        rgba(8, 82, 193, 0),
        rgba(8, 82, 193, 1)
    );
    width: 120px;
}

/* Feature Images with Shadow and Radius */
.business-showcase-container .feature-card-row .feature-card-image {
    width: 100%;
    border-radius: 21px;
    box-shadow: 8px 8px 30px 0px rgba(0, 0, 0, 0.6);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.business-showcase-container .feature-card-row .feature-card-image:hover {
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(8, 82, 193, 0.4);
    margin: auto;
}

/* Divider */
.business-showcase-container .showcase-divider {
    height: 3px;
    background: #0852c1;
    opacity: 0.6;
    margin: 70px 0;
}

/* Testimonial Section */
.business-showcase-container .testimonial-heading {
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
}

.business-showcase-container .testimonial-slider .client-testimonial-card {
    background: rgba(13, 22, 63, 0.6);
    border: 1px solid #081362;
    backdrop-filter: blur(12px);
    padding: 50px;
    margin: 10px auto 40px;
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.business-showcase-container .testimonial-slider .client-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
}

.business-showcase-container .testimonial-slider .client-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #ffffff;
}

.business-showcase-container .testimonial-slider .client-signature {
    text-align: right;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Bootstrap Indicator Override */
.business-showcase-container
    .testimonial-slider
    .carousel-indicators
    [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
@media (max-width: 576px) {
    .growth-section {
        background-image: url("../images/version1/welcome/Growth_mobile.jpeg");
        background-size: cover;
        height: auto;
        padding: 50px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0%;
    }
}
@media (max-width: 576px) {
    .business-showcase-container .feature-card-image {
        margin-bottom: 20px;
    }

    .business-showcase-container .feature-card-row {
        margin-bottom: 30px;
    }
}
/* Responsive Scaling */
@media (max-width: 992px) {
    .business-showcase-container .testimonial-slider .client-testimonial-card {
        max-width: 95%;
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .business-showcase-container {
        padding: 50px 0;
    }
    .business-showcase-container .testimonial-slider .client-testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
        height: 300px;
    }
    .business-showcase-container .testimonial-slider .client-signature {
        text-align: center;
    }
    .business-showcase-container .showcase-header .accent-fading-line {
        width: 40px;
    }
    .business-showcase-container .testimonial-heading {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .business-showcase-container .showcase-header .showcase-title-badge {
        font-size: 1rem;
        padding: 10px 20px;
        text-align: center;
    }
    .business-showcase-container .testimonial-slider .client-avatar-img {
        width: 80px;
        height: 80px;
    }
    .business-showcase-container .testimonial-slider .client-quote {
        font-size: 0.95rem;
    }
    .business-showcase-container .showcase-header .accent-fading-line {
        display: none;
    }
}
/* =========================
FOOTER
========================= */
.footer {
    background-image: url("../images/version1/welcome/footer.png");
    background-size: cover; /*use contain instead of cover for complete image */
    padding: 60px 0px 30px 0px;
    border-top: 3px solid #0852c1;
    max-width: 1920px;
    height: auto;
    margin: auto;
}
.icon-img {
    width: 16px;
    height: 16px;
    margin-right: 8px; /* 👈 sirf yahan se space ayegi */
    vertical-align: middle; /* 👈 line me align */
}
.footer .container {
    max-width: 1140px; /* keeps center spacing like screenshot */
}
.footer-logo-img {
    width: 40px; /* Adjust size as needed */
    /* height: 40px; Keep it square */
    border-radius: 50%; /* Makes it circular */
    object-fit: cover; /* Ensures image scales nicely */
}

.footer-logo {
    font-weight: bold;
    color: #fff; /* Or your footer text color */
}
.footer h5 {
    color: #fff;
    margin-bottom: 20px;
}
.footer .f-info {
    font-size: 12px;
    font-weight: 400;
}
.footer p,
.footer a {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.footer .footer-last,
.footer a {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.contact-info i {
    margin-right: 10px;
}

.social-icons img {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: #1e90ff;
    color: #fff;
    margin-right: 8px;
}

/* Glass effect */
.contact-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-form h5 {
    font-size: 20px;
    font-weight: 600;
}
.contact-form input,
.contact-form textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #7991b2;
    margin-bottom: 10px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #7991b2;
}

.btn-send {
    background: #00c853;
    color: #fff;
    border: none;
    width: 100%;
    padding: 10px;
}

.btn-send:hover {
    background: #00a844;
}

/* Responsive */
@media (max-width: 991px) {
    .footer {
        text-align: center;
        padding: 40px 0;
    }
    .footer .social-icons {
        margin-top: 15px;
        justify-content: center;
        display: flex;
    }
    .footer a {
        display: inline-block;
        margin: 4px 8px;
    }
    .footer .contact-info p {
        display: inline-block;
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .footer-img {
        margin: auto;
    }
    .footer .col-lg-3,
    .footer .col-lg-2,
    .footer .col-lg-4 {
        margin-bottom: 30px;
    }
    .footer .contact-form {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 30px 0;
    }
    .footer h5 {
        font-size: 16px;
    }
    .footer .contact-form input,
    .footer .contact-form textarea {
        font-size: 13px;
    }
    .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 13px;
    }
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 45px;
    }
    .hero-subheading {
        font-size: 35px;
    }

    .service-card,
    .services .card {
        flex: 0 0 calc(50% - 10px);
    }

    .features {
        flex-wrap: wrap;
    }

    .feature {
        flex: 0 0 calc(50% - 10px);
    }

    .steps {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .header-center {
        display: none;
    }

    .service-card,
    .services .card {
        flex: 0 0 100%;
    }

    .feature {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .services-marketing-dashboard .dashboard-title-line .main-heading {
        white-space: normal !important;
        font-size: 26px !important;
    }

    .benefits-section .main-heading {
        font-size: 26px !important;
    }
    .services-marketing-dashboard .dashboard-title-line::before {
        display: none;
    }
    .services-marketing-dashboard .dashboard-title-line::after {
        display: none;
    }
}
