* {
    margin: 0;
    padding: 0px;
}


html {
    overflow-x: hidden;
}

body {
    background-color: #fff;
    color: var(--primary-text-color);
}

html,
body {
    overflow-x: hidden;
    /* Prevents horizontal scrolling globally */
}



@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-color: red; */
    /* overflow: hidden; */
}


:root {

    --primary-text-color: #FE5A0E;
    --secondary-text-color: #000;
    --ternary-text-color: #FFFF;
    --secondary-lighttext-color: #262626;
    --light-bg-color: #f6f3ef;


    --primary-bg-color: #FE5A0E;
    /* --primary-bg-color: #19272B; */
    --secondary-bg-color: #262626;
    /* --secondary-bg-color: #263037; */
    --ternary-bg-color: #FFFF;



    /* --primary-font-family: "Libre Caslon Text", serif; */
    --primary-font-family: "Poppins", sans-serif;
    --secondary-font-family: "Rubik", sans-serif;

}

.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-icons .icon {
    width: 50px;
    height: 50px;
    background-color: #25D366;
    /* WhatsApp green */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 22px; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.2s ease;
}


.floating-icons img {
    width: 50px;
    height: 50px;
}

.floating-icons .icon:hover {
    transform: scale(1.1);
}

hr {
    margin: 0px !important;
    color: var(--secondary-text-color);
}


h1 {
    font-family: var(--primary-font-family);
    font-weight: 400;
    font-size: 62px;
    line-height: 70px;
    /* margin-bottom: 0px !important; */
    color: var(--primary-text-color);

}

.service-heading {
    font-family: var(--primary-font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 36px;
    color: var(--secondary-text-color);
}


h2 {
    font-family: var(--primary-font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 0 !important;
    color: var(--secondary-text-color);
    position: relative;
    display: flex;
    /* Flex will allow the line next to text */
    align-items: baseline;
    /* Vertically center the line with the text */
    gap: 10px;
    /* Space between text and line */
}

h2::after {
    align-items: baseline;
    content: '';
    /* flex: 1; */
    width: 50px;
    /* Makes the line expand to available space */
    height: 3px;
    background-color: #262626;
}


h3 {
    font-family: var(--primary-font-family);
    font-weight: 500;
    font-size: 28px;
    line-height: 38px;
    /* margin-bottom: 15px; */
    color: var(--secondary-text-color);
}

.span-color-h2 {
    color: var(--primary-text-color);
    font-family: var(--primary-font-family);
    font-weight: 400;
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 0px !important;
}

.span-color-h3 {
    color: var(--primary-text-color);
    font-family: var(--primary-font-family);
    font-weight: 500;
    font-size: 32px;
    line-height: 42px;
}

h4 {
    font-family: var(--primary-font-family);
    font-weight: 500;
    font-size: 25px;
    line-height: 35px;
    /* margin-bottom: 15px; */
    color: var(--primary-text-color);
}

h5 {
    font-size: 20px;
    line-height: 30px;
    color: #272727;
    font-weight: 600;
}

h6 {
    font-family: var(--secondary-font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-text-color);
}


p {
    font-family: var(--secondary-font-family) !important;
    font-weight: 400;
    color: #555555;
    /* color: var(--secondary-text-color); */
    font-size: 18px;
    line-height: 24px;
    text-align: justify;
    /* margin-bottom: 15px; */
}

span {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}



.links {
    color: var(--primary-text-color);
}

li {
    font-size: 16px;
    line-height: 28px;
    /* margin-bottom: 15px; */
    color: var(--secondary-text-color);
    font-family: var(--primary-font-family);
}

a {
    text-decoration: none !important;
    color: var(--secondary-text-color);
    font-family: var(--secondary-font-family);

}

.primary-button {
    background-color: var(--primary-bg-color);
    color: var(--ternary-text-color);
    font-family: var(--primary-font-family);
    font-size: 15px;
    padding: 6px 20px 7px 20px;
    text-align: center;
    border: 1px solid #fff;
    /* box-shadow: 0 6px 40px rgba(255, 255, 255, 0.08), 0 12px 70px rgba(0, 0, 0, 0.8); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.secondary-button {
    background-color: var(--primary-bg-color);
    color: var(--ternary-text-color);
    font-family: var(--primary-font-family);
    font-size: 15px;
    padding: 11px 13px;
    border-radius: 20px;
    /* font-weight: 800; */
    text-align: center;
    border: 2px solid #fff;
}



.primary-button:hover {
    background-color: var(--main-secondary-button-bgcolor);
    color: var(--secondary-text-color);
    color: #fff;
    transition: 0.7s;

}


.secondary-button:hover {
    border: none;
    border: 1px solid var(--secondary-bg-color);
    color: var(--ternary-text-color);
    background-color: var(--secondary-bg-color);
    transition: 0.7s;
}

.view-all-btn {
    font-size: 16px;
    padding: 10px 18px;
    border: 2px solid #fff;
    color: var(--secondary-text-color);
    border-radius: 7px;
}

.view-all-btn :hover {
    background-color: var(--main-secondary-button-bgcolor);
    color: var(--secondary-text-color);
    transition: 0.7s;
}

.addtocart {
    border: 1px solid var(--main-primary-button-bgcolor);
    border-radius: 30px;
    padding: 8px;
    color: var(--main-primary-button-bgcolor);
}


.display-flex {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}


.flex-column-start {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
}

.flex-column-end {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: end;
}

.flex-column-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flex-column-center-start {

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.section-spacing {
    padding-bottom: 100px;
}

.navbar {
    padding-top: 30px !important;
}


header {
    /* background-color: #171d2e; */

    /* background-color: var(--secondary-bg-color); */
}

.hero-heading {
    color: #fff !important;
}

.hero-description {
    color: #fff !important;
    text-align: center;
}

.glass-header {
    background: rgba(10, 8, 50, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 998 !important;
    transition: all 0.3s ease-in-out;
}

.glass-header.sticky {
    background: #262626;
    /* Darker when sticky */
    backdrop-filter: blur(30px);
    opacity: 0.9;
}


.nabvar-header-full {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    /* background-color:red !important;  */
    box-shadow: 0 6px 40px rgba(255, 255, 255, 0.08), 0 12px 70px rgba(0, 0, 0, 0.8);
    /* background-color: var(--secondary-bg-color); */
}

.nav-link {
    color: var(--secondary-text-color) !important;
    /* color: var(--ternary-bg-color); */
}

.fa-check {
    font-size: 15px;
    line-height: 15px;
}

.hero-slider-section {
    margin-top: -300px;
}

.swiper-cover {
    width: 100vw;
    height: 300px;
    /* perspective: 1200px; */
}

.swiper-slide-cover {
    display: flex;
    /* align-items:  */
    /* make sure children stretch */
    /* justify-content: center; */
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding-right: 20px;
    /* border-radius: 20px; */
    border-right: 1px solid var(--secondary-text-color);
}

.swiper-slide-cover a {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-slide-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
    border-radius: 20px;
}

.announcements-border-height {
    height: 400px;
    /* adjust as needed */
    position: relative;
}

.scroll-wrapper {
    display: flex;
    flex-direction: column;
    animation: scrollUp 20s linear infinite;
}

.scroll-content {
    display: flex;
    flex-direction: column;
}

@keyframes scrollUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

.marque-section {
    background-color: #f2f3f5 !important;
}

.marquee-row {
    border-bottom: 1px solid #eee;
}

.marquee-text {
    /* padding: 10px; */
    font-size: 16px;
    color: var(--secondary-lighttext-color);
}

.announcements-border {
    /* border: 1px solid var(--secondary-text-color); */
}

.announcements-border-height {
    background-color: var(--ternary-bg-color);
    border-radius: 20px;
    height: 400px;
}

.section-counter {
    padding-top: 50px;
    padding-bottom: 50px;
}


.img-border {
    border-bottom: 4px solid var(--primary-bg-color) !important;
    /* border-width: 60% !important; */
}

.counter-box {
    text-align: center;
    padding: 10px;
    flex: 1;
    /* min-width: 200px; */
}

.counter-icon {
    font-size: 40px;
    /* color: yellow; */
    margin-bottom: 5px;
}

.counter-number {
    font-size: 60px;
    color: var(--primary-text-color) !important;
    /* font-weight: bold; */
}

.counter-label {
    font-size: 14px;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.img-section-spacing {
    margin-top: 97px;
    height: 50vh;
    width: 100%;
}

.container-spacing {
    margin-bottom: 20px;
}


.card-shadow {
    border-radius: 20px;
    box-shadow: 0 6px 40px rgba(255, 255, 255, 0.08), 0 12px 70px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px 10px;
    /* background-color: #fff; */
}




.subsidy-guru-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fff;
}

.our-service-heading {
    padding: 30px 0px;
    color: var(--ternary-text-color);
}

.hero-section-spacing {
    margin-top: 60px;
}

.hero-section {
    /* background-color: var(--primary-bg-color); */
    z-index: 10;
    height: 700px;

    overflow: hidden;
}

.hero-container {
    padding-top: 50px;
}

.marketing_strategy {
    background-color: var(--primary-bg-color);
}



.meet_our_clients {
    /* margin-top: 150px; */
    /* padding-top: 150px; */
    background-color: var(--light-bg-color);
}


.marquee-heading-container {
    padding: 10px 0px;
}



.glass-card {
    background: rgba(255, 255, 255, 0.08);
    /* More transparent */
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    transition: all 0.3s ease-in-out;
    /* overflow: hidden; */
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    /* Slightly brighter on hover */
    transform: scale(1.03);
    box-shadow: 0 10px 40px 0 rgba(31, 38, 135, 0.3);
}


.service-button {}

.service-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    /* height:500px; */
}

.service-card:hover {
    transform: translateY(-5px);
}

.client-col {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.client-content {
    position: relative;
    background-color: var(--ternary-bg-color);
    /* orange section */
    text-align: center;
    height: 250px;
    padding: 60px 20px 20px;
    /* space for the circle */
    color: var(--seondary-text-color);
    margin: -50px 10px 0 10px;
    /* cleaner shorthand */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.client-content h3 {
    color: var(--ternary-text-color) !important;
    transition: color 0.3s ease;
}

.client-content p {
    color: #555555;
    /* color: var(--secondary-text-color); */
    transition: color 0.3s ease;
    text-align: left;
    font-family: var(--secondary-font-family);
}

.service-card:hover .client-content {
    background-color: var(--primary-bg-color);
}

.service-card:hover .client-content-icon-circle {
    background-color: #fff !important;
}


.service-card:hover .client-content h5,
.service-card:hover .client-content p {
    color: var(--ternary-text-color) !important;
    /* black text on hover */
}

.client-content-icon-circle {
    position: absolute;
    top: -50px;
    /* circle overlapping position */
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
    overflow: hidden;
}

.service-card:hover .client-content-icon-circle {
    background-color: var(--primary-bg-color);
    /* change circle color on hover */
}

.client-content-icon-circle img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}


.core-values {
    margin-top: -50px;
    /* margin-bottom: 80px; */
}


.about-col {
    position: relative;
    overflow: hidden;
    height: 200px;
    background-color: #fff !important;
    transition: all 0.5s ease-in-out;
    color: var(--secondary-text-color);
}


.about-col:not(:last-child) {
    border-right: 2px solid gray;
}

/* Overlay slides IN on hover */
.about-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    /* Hide initially */
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg-color);
    /* background-color: #fff !important; */
    /* or #263037 */
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.about-col:hover::before {
    left: 0;
}

/* Content on top of overlay */
.about-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    transition: color 0.5s ease-in-out;
    color: gray;
    padding: 20px 3px;
}

.about-col:hover .about-content {
    color: var(--ternary-bg-color) !important;
}

.about-col:hover .about-col-heading,
.about-col-subheading {
    color: var(--ternary-text-color) !important;
}

.about-col:hover .about-col-subheading {
    color: var(--ternary-text-color) !important;
}

.about-col-subheading {
    color: #000 !important;
}


.testimonial-section {
    background-color: var(--ternary-bg-color);
}

.swiper-wrapper-testimonials {
    height: auto !important;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    /* border: 3px solid #007bff; */
}

.rating {
    font-size: 1.2rem;
    color: gold;
}

.custom-nav-btn {
    color: var(--ternary-text-color);
    /* background: rgba(255, 255, 255, 0.8); */
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev {
    /* left: -10px; */
}

.swiper-button-next {
    /* right: -10px; */
}

.swiper-pagination-bullet {
    background: #000;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #007bff;
    opacity: 1;
}

.footer-section {
    background-color: var(--secondary-bg-color);
}

.footer-section li {
    font-size: 13px;
}

.footer-link,
.footer-li {
    color: #fff;
    font-family: var(--secondary-font-family);
}

.order-2 {
    order: 3 !important;
}

.nabvar-header-full {
    padding: 5px 32px !important;
}




.cart-description {
    padding: 20px;
    background-color: var(--ternary-bg-color);
    border-radius: 10px;
}

.cart-summary {
    padding: 20px;
    background-color: var(--ternary-bg-color);
    border-radius: 10px;
}



.accordion {
    /* background-color: #000 !important; */
    /* border: none !important; */
}

.accordion-header {
    color: var(--secondary-text-color);
    /* background-color: #000 !important; */
    /* border: none !important; */
}

.accordion-item {
    /* background-color: #000 !important; */
    border: none !important;
    padding: 20px !important;
    border-bottom: 1px solid #717171 !important;
    border-radius: 20px !important;

}

.accordion-header button {
    background-color: var(--secondary-bg-color) !important;
}


.form-control {
    border-radius: 0px !important;
}

.container-padding {
    padding-bottom: 20px;
    padding-top: 50px;
}


@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0;
    }
}


.video-height {
    height: 290px;
}


.accordion-section {
    width: 100%;
    min-height: 60vh;
    padding-top: 60px;
    overflow: hidden;
    background-color: var(--secondary-bg-color);
    /* background-color: #262626; */
    /* background-color: #343A40; */

}




.accordion-horizontal {
    display: flex;
    flex-direction: row;
    /* height: 70vh; */
    overflow: hidden;
    background-color: var(--secondary-bg-color) !important;
    /* background-color: #262626 !important; */
}



.accordion-item-horizontal {
    flex: 1;
    overflow: hidden;
    transition: all 0.5s ease;
    background-color: var(--secondary-bg-color) !important;
    border-right: 1px solid #2e3c41;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.accordion-item-horizontal:last-child {
    border-right: none;
}

.accordion-item-horizontal.active {
    flex: 3;
}

.accordion-title-horizontal {
    writing-mode: vertical-rl;
    text-align: center;
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    color: var(--ternary-bg-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
}

.accordion-item-horizontal.active .accordion-title-horizontal {
    display: none;
}

.accordion-content-horizontal {
    display: none;
    padding: 2rem;
    text-align: left;
}

.accordion-item-horizontal.active .accordion-content-horizontal {
    display: block;
}

.accordion-content-horizontal h3 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ternary-text-color);
}

.accordion-content-horizontal p {
    font-size: 16px;
    line-height: 24px;
    font-family: var(--secondary-font-family);
    margin-bottom: 2rem;
    color: var(--ternary-text-color);
}

.accordion-content-horizontal .btn {
    background-color: #444;
    color: var(--ternary-text-color);
    border-radius: 25px;
    padding: 10px 20px;
    border: none;
}

.accordion-content-horizontal img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 1rem;
}

/* ---------- MOBILE VIEW ---------- */
@media (max-width: 768px) {
    .accordion-horizontal {
        flex-direction: column;
        height: auto;

    }

    .faq-section {
        padding-top: 0px !important;
    }

    .service-heading {
        margin-bottom: 20px;
    }

    .accordion-item-horizontal {
        border-right: none;
        border-bottom: 1px solid #2e3c41;
        flex: none;
        height: auto;
        background-color: var(--secondary-text-color) !important;
    }

    .accordion-title-horizontal {
        writing-mode: initial;
        transform: none;
        position: static;
        padding: 1rem;
        font-size: 1.25rem;
        text-align: left;
        width: 100%;
        background-color: var(--secondary-text-color) !important;
        border-bottom: 1px solid #2e3c41;
    }

    .accordion-content-horizontal {
        padding: 1rem;
    }

    .accordion-item-horizontal.active .accordion-title-horizontal {
        display: block;
        font-weight: bold;
        background-color: var(--secondary-text-color);
    }

    .text-correction {
        display: block;
    }
}





.footer-input::placeholder {
    color: #fff;
}

.footer-input {
    color: var(--ternary-text-color) !important;
    /* Change text color inside input */
    /* border:none !important; */
}



/* ✅ Important: Prevent image cropping */
.accordion-content-horizontal img {
    max-width: 100%;
    height: auto;
    display: block;

    border-radius: 10px;
}

.about-col:hover .about-icon {
    color: var(--ternary-text-color) !important;
}



/* end login form  */

@media (max-width: 768px) {

    /* Navigation and Layout */
    .custom-nav-btn {
        padding: 6px;
    }

    .swiper-button-prev {
        left: 0;
    }

    .swiper-button-next {
        right: 0;
    }

    .order-1 {
        order: 1 !important;
    }

    .order-2 {
        order: 2 !important;
    }

    .order-3 {
        order: 3 !important;
    }

    .responsive_navbar {
        width: 100vw !important;
    }

    #responsive_navbar {
        display: block !important;
    }

    #desktopnavbar {
        display: none !important;
    }

    .hideOnMobile {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .loginbtn {
        position: absolute;
        top: 10px;
        right: 70px;
    }

    /* Typography */
    h2 {
        font-size: 24px;
        line-height: 30px;
    }

    h3 {
        font-size: 22px;
        line-height: 28px;
    }

    .span-color-h2 {
        font-size: 24px !important;
    }

    .span-color-h3 {
        font-size: 22px !important;
    }

    /* Hero Section */
    .hero-heading {
        font-size: 48px !important;
    }

    .hero-service-image {
        width: 100% !important;
        height: 50% !important;
    }

    .hero-container {
        padding-top: 50px;
    }

    .hero-top {
        height: 700px !important;
        margin-top: -142px !important;
    }

    .hero-section {
        height: 50vh;
    }

    .hand-image {
        top: 100px !important;
        left: 50% !important;
        transform: translateX(-50%) scale(0.7) !important;
        height: auto !important;
        width: 80% !important;
    }

    /* Spacing & Padding */
    .section-spacing {
        padding-bottom: 30px !important;
    }

    .container-padding {
        padding-bottom: 0px !important;
        padding-top: 0px !important;
    }

    .section-counter {
        padding-top: 0px !important;
    }

    .subsidy-guru-section {
        padding-bottom: 0px !important;
    }

    .accordion-section {
        padding-top: 70px !important;
    }

    .footercontactpadding {
        padding: 0px 15px !important;
    }

    .singlecardrightpadding {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Image & Cards */
    .expect-img {
        width: 100%;
        height: 450px !important;
    }

    .card-image {
        height: auto !important;
    }

    /* Buttons */
    .secondary_btn,
    .primary_button {
        font-size: 14px;
        padding: 14px 18px;
    }

    /* Layout Helpers */
    .homesection {}

    .second_section_home {}

    .flexdirectioncolumn {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .flexgrow {
        flex-basis: 50% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .flexbutton {
        flex-direction: column;
        gap: 10px;
    }

    /* Visibility */
    #single_page_hide_img {
        display: none;
    }

    #our_best_seller {}

    .headersidebar {
        width: 100%;
    }

    .about-col-subheading {
        /* text-align:  !important; */
    }

    .about-col:hover.about-icon {
        color: var(--ternary-text-color) !important;
    }

    .abouthideimg {
        display: none !important;
    }

    .img-mob-border {
        border: none !important;
    }

    .service-funding-heading {
        font-size: 80px !important;
    }

    .hero-slider-section {
        margin-top: -100px !important;
    }
}




@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: center;
    }
}



.service-funding-card {
    /* padding: 10px; */
    border: 1px solid #eaeff2;
    /* background: var(--ternary-bg-color); */
    height: 250px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;

    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    /* background: #ffffff; */
    /* background: linear-gradient(90deg, rgba(245, 245, 245, 1) 0%, rgba(227, 251, 255, 1) 77%, rgba(204, 235, 255, 1) 100%); */

    /* background: linear-gradient(280deg, rgba(254, 90, 14, 1) 0%, rgba(255, 255, 255, 1) 74%); */
    /* background: radial-gradient(circle, rgba(254, 90, 14, 0.2) 50%, rgba(255, 255, 255, 1) 74%); */
    background: linear-gradient(280deg, rgba(254, 90, 14, 0.2) 50%, rgba(255, 255, 255, 1) 74%);


}

.service-funding-subheading {
    color: var(--primary-text-color);
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
}


.service-funding-heading {
    font-weight: 700;
    font-size: 90px;
    line-height: 90px;
    background: linear-gradient(90deg, #f80503 0%, #ff7d09 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* For Firefox */
}


.service-funding-text {
    text-align: left;
    font-weight: 500 !important;
}

.service-funding-img {
    font-size: 128px;
    line-height: 128px;
}

.service-funding-card-footer {
    padding: 5px 5px;
    /* position: absolute; */
    width: 100%;
    bottom: 0px;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}



.service-funding-card-footer img {
    width: 30px;
    height: 30px;
}


/* From Uiverse.io by adamgiebl */
.service-funding-btn {
    position: relative;
    font-family: inherit;
    font-weight: 400;
    font-family: var(--primary-font-family);
    font-size: 18px !important;
    cursor: pointer;
    border: 1px solid #fff;
    padding: 10px 23px;
    color: var(--ternary-text-color);
    background-color: var(--primary-bg-color);
    overflow: hidden;
    transition: color 0.4s ease;
}

.service-funding-btn span {
    position: relative;
    /* Keep text above pseudo-element */
    z-index: 2;
    font-size: 17px;
}

.service-funding-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: var(--secondary-bg-color);
    transform: skew(30deg) translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
    z-index: 1;
}

.service-funding-btn:hover {
    color: #fff !important;
    /* Force text to white */
    border: 1px solid #fff;
}

.service-funding-btn:hover::before {
    transform: skew(30deg) translateX(0);
}

.service-funding-btn:active {
    transform: scale(0.95);
}



/* 
.service-funding-btn {
    background-color: var(--primary-bg-color);
    color: #fff;
    font-size: 15px;
    padding: 10px 25px;
    /* border-radius: 10px; */
/* text-align: center;
border: none;
} */

.startup-card {
    border: 1px solid #E5E7E8;
    background: var(--ternary-bg-color);
    /* background: linear-gradient(90deg, rgba(235, 235, 245, 1) 0%, rgba(155, 186, 169, 1) 50%, rgba(181, 172, 114, 1) 100%); */
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    height: 400px;
    justify-content: space-between;
}

.startup-card p {
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

}

.startup-card-img img {
    width: 120px;
    height: 120px;
}

.contact-startup-card-img img {
    width: 100%;
    height: 100%;
    background-color: lightgray;
}

.startup-card-heading {
    font-size: 24px;
    line-height: 35px;
    color: var(--primary-text-color);
    font-weight: 600;
}

.startup-card-text {
    font-size: 18px;
    line-height: 25px;
}

.startup-card-btn {
    background-color: var(--primary-bg-color);
    color: #fff;
    font-size: 15px;
    padding: 12px 12px;
    border-radius: 10px;
    border: none;
    text-align: center;
    display: block;

}

.testimonials-section {
    background-color: var(--secondary-bg-color);
    padding: 80px 30px;
    color: var(--ternary-bg-color);
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.section-title span {
    color: var(--primary-text-color);
    font-style: italic;
}

.testimonial-card {
    max-width: 30%;
    height: 250px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: left;
}

/* .testimonial-text {
    margin-bottom: 80px;
    color: var(--ternary-text-color);
} */


.testimonial-text {
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ternary-text-color);
    padding: 20px 30px;
    text-align: left;
    /* Add spacing so quotes don't overlap text */
}

.testimonial-text::before,
.testimonial-text::after {
    position: absolute;
    font-size: 32px;
    color: #ff4c00;
    /* Quote color */
    font-weight: bold;
    font-family: serif;
    /* Gives a more elegant quote look */
}

.testimonial-text::before {
    content: "“";
    /* Opening quote */
    top: 0;
    left: 0;
}

.testimonial-text::after {
    content: "”";
    /* Closing quote */
    bottom: 0;
    right: 0;
}



.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-footer h4 {
    font-size: 22px;
    line-height: 22px;
    font-weight: 600;
}

.testimonial-footer p {
    font-size: 16px;
    line-height: 28px;
    color: var(--primary-text-color);
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ff4c00;
    object-fit: cover;
}

.testimonial-footer h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}



.testimonial-footer span {
    font-size: 14px;
    color: #fff;
}

.swiper-pagination-bullet {
    background: var(--primary-bg-color) !important;
}



.why-choose-us {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
        url('your-background-image.jpg') center/cover no-repeat;
    color: var(--ternary-text-color);
    padding: 80px 0 130px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--ternary-text-color);

}

.section-title span {
    color: var(--primary-text-color);
    font-style: italic;
}

.description {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ternary-text-color);
}

.progress-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
}


.progress-item span {
    min-width: 120px;
    font-size: 16px;
    line-height: 27px;
    color: #fff;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--ternary-bg-color);
    margin: 0 10px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar .progress {
    height: 100%;
    background: var(--primary-bg-color);
}

.percentage {
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 30px;
}

.stat-box {
    /* text-align: center; */
    padding: 30px 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.stat-box:nth-child(1) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box:nth-child(4) {
    /* No borders needed */
}

.stat-box .icon {
    margin-bottom: 10px;
}

.stat-box .icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* makes icon white if it's dark */
}

.stat-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-text-color);
    margin-bottom: 5px;
}

.stat-box p {
    color: var(--ternary-text-color);
    font-size: 16px;
}

.bottom-boxes {
    display: flex;
    justify-content: center;
    gap: 0px;
    /* space between boxes */
}

.bottom-boxes .col-md-3 {
    padding: 0;
    /* remove Bootstrap column padding */
}

.bottom-boxes .box {
    min-height: 300px;
    flex: 1;
    display: flex;
    flex-direction: column;
    /* make content inside horizontal */
    align-items: center;
    /* vertically center image & text */
    gap: 10px;
    text-align: center;
    /* space between icon and text */
    padding: 55px 20px;
    background: var(--ternary-bg-color);
    color: var(--secondary-text-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    /* optional: smooth corners */
    transition: all 0.3s ease;
}

.bottom-boxes .box:hover {
    transform: translateY(-5px);
}

.bottom-boxes .highlighted {
    background: var(--primary-bg-color);
    color: var(--ternary-text-color);
}

.bottom-boxes .highlighted h4 {

    color: var(--ternary-text-color);
}

.bottom-boxes .highlighted p {
    color: var(--ternary-text-color);
}

.bottom-boxes .dark {
    background: var(--secondary-bg-color);
    color: var(--ternary-text-color);
}

.dark p,
h3 {
    color: var(--ternary-text-color);
}

.bottom-boxes .icon {
    font-size: 48px;
    flex-shrink: 0;
    /* prevents icon from shrinking */
}

.bottom-boxes h4 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
}

.bottom-boxes p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
}

/* Left Panel */
.modal-left {
    background-color: #004c8c;
    padding: 20px;
    color: #fff;
}

/* City Card Style */
.city-card {
    background: #fff;
    color: #000;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* Customize modal content */
.custom-modal-content {
    border-radius: 10px;
    overflow: hidden;
}

/* Close button style override */
.custom-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
}



.hero-top {
    height: 650px !important;
    width: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    color: white;
    text-align: center;
    padding-top: 80px;
    background-color: #262626 !important;
}

.swiper-pagination-bullet {
    background: #333;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #007bff;
}

.span-text {
    font-size: 62px;
    line-height: 70px;
    background: linear-gradient(90deg, #f80503 0%, #ff7d09 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* for WebKit browsers */
    background-clip: text;
    /* for modern browsers */
}

.span-text-h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    background: linear-gradient(90deg, #f80503 0%, #ff7d09 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* for WebKit browsers */
    background-clip: text;
    /* for modern browsers */
}

.why-choose-us-box {
    position: absolute;
    bottom: -200px;
}


.faq-section {
    width: 100%;
    padding: 70px 0;
    /* background: #0c3c6a; */
}

.faq-container {
    background-color: rgb(246, 246, 246);
    padding: 20px;
}

.faq-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-text-color);
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    /* background: #ccb892; */
    /* color: var(--primary-text-color); */
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    text-align: left;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    font-family: var(--primary-font-family);
}

.faq-question:hover {
    /* background: #bda578; */
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f8f8f8;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 15px 0;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* adjust based on content */
}

.faq-item.faq-item.active .faq-question {
    color: var(--primary-text-color);
}

.faq-item.active .faq-icon {
    content: "-";
    transform: rotate(0deg);
    /* Show minus when open */
}


.star-rating {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 18px;
    color: #ccc;
    /* Default (empty) star color */
}

.star.filled {
    color: #ff4c00;
    /* Filled star color */
}

.text-correction {
    display: block;
}

/* Add space between the symbol and the text */

/*Hero Slider Section
Ashish Rawal Changes*/

.hero-slider-container {
    max-width: 1140px;
    margin: auto;
}

/* ---------------------------------------------------  ------------------------------------------------------------------- */
/* ---------------------------------------------------HOME PAGE  ------------------------------------------------------------------- */
/* ---------------------------------------------------  ------------------------------------------------------------------- */

/* HOW WE WORK SECTION CSS */
/* Section */
.fms-section {
    padding: 80px 0;
    background: #f6f3ef;
}

/* Header */
.fms-header .small-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
}

.fms-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--main-primary-button-bgcolor);
    margin-bottom: 40px;
}

/* Layout */
.fms-layout {
    display: flex;
    gap: 40px;
}

/* LEFT SIDE */
.fms-side {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}


.side-card {
    display: flex;
    align-items: stretch;
    /* important → full height tag */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;

    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.10);
    transition: all .25s ease;
}

.side-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.side-card .tag {
    background: var(--primary-bg-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 90px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0 14px;
    /* only left-right padding */
    border-right: 3px solid rgba(255, 255, 255, 0.25);
}

.side-card p {
    margin: 0;
    padding: 16px 18px;
    font-size: 14px;
}

/* STEPS GRID */
.fms-steps {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step-card h5 {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-text-color);
}

.step-box {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
    transition: all 0.25s ease;
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

.step-box p {
    border-bottom: 1px solid #ccc;
    padding: 6px 0;
    margin: 0;
    font-size: 13px;
}

.step-box p:last-child {
    border: none;
}

/* Responsive */
@media(max-width:992px) {
    .fms-layout {
        flex-direction: column;
    }

    .fms-side {
        width: 100%;
    }

    .fms-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .fms-steps {
        grid-template-columns: 1fr;
    }
}