/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0098A3;
    --secondary-color: #00393D;
    --dark-bg: #000000;
    --darker-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --light-bg: #0f0f0f;
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --white: #ffffff;
    --gradient: linear-gradient(90deg, #0098A3, #009BA6A1, #00393D, #009BA6A1, #0098A3);
    --teal-primary: #0098A3;
    --teal-secondary: #009BA6;
    --dark-teal: #00393D;
    --bg-primary: #0a0e27;
            --bg-secondary: #151b3d;
            --accent-cyan: #00f5ff;
            --accent-purple: #a855f7;
            --accent-pink: #ec4899;
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --border-color: rgba(168, 85, 247, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    background: var(--dark-bg);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgb(95 100 100 / 20%);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    margin: 0 0.6rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #a6b6b7;
}




.btn-quote {
    /* background: var(--gradient); */
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;

}

.btn-quote i {
    margin-right: 7px;
}

.btn-quote:hover {

    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.animated-gradient-btn {
    position: relative;
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    overflow: hidden;
    text-decoration: none;
    z-index: 1;
}

.animated-gradient-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #0098A3, #009BA6A1, #00393D, #009BA6A1, #0098A3);
    background-size: 400% 100%;
    z-index: -1;
    animation: gradientMove 8s ease-in-out infinite;
    border-radius: 5px;
}

.animated-gradient-btn:hover::before {
    animation-duration: 4s;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.animated-gradient-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            #0098A3,
            #009BA6A1,
            #00393D,
            #009BA6A1,
            #0098A3,
            transparent);
    z-index: -1;
    animation: gradientFlow 6s linear infinite;
}

@keyframes gradientFlow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.animated-gradient-btn i {

    margin-right: 7px;

}

.animated-gradient-btn {
    background: linear-gradient(90deg, #0098A3, #009BA6A1, #00393D, #009BA6A1, #0098A3);
    background-size: 400% 100%;
    animation: gradientMove 8s ease-in-out infinite;
    border: none;
    color: white;

    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.animated-gradient-btn:hover {

    box-shadow: 0 5px 15px rgba(0, 155, 166, 0.4);
}


/* Hero Section */
.hero_section {
    background: #000000;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}




.container {
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    padding-right: 30px;
}

.hero-title {
    font-size: 39px;

    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 28px;
    color: #b8b8b8;
    margin-bottom: 32px;
    /* text-align: justify; */
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}





/* Contact Form Wrapper */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.form-header {
    margin-bottom: 18px;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Custom Form Inputs */
.custom-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    padding: 10px 18px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #00bcd4;
    box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.15);
    color: #fff;
    outline: none;
}

/* Phone Input Wrapper */
.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.phone-input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: #00bcd4;
    box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.15);
}

.flag-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

.country-code {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 5px;
    font-weight: 500;
}

.phone-input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 0;
}

.phone-input:focus {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0px;
}

.btn-submit:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00bcd4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-description {
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .hero_section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .form-title {
        font-size: 1.1rem;
    }


}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .form-title {
        font-size: 1rem;
    }

    .custom-input {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.contact-form-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

.contact-form-wrapper {
    animation-delay: 0.2s;
}

.iti__country-list {

    background-color: #2a2727;

}

.single_slider {
    transform-style: preserve-3d;
    /* 3D transforms preserve karein */
}

.single_slider .owl-stage-outer {
    overflow: hidden;
    perspective: 2000px;
}

.single_slider .owl-stage {
    transform-style: preserve-3d;
}

.single_slider .owl-item {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Active item - front position */
.single_slider .owl-item.active {
    transform: translateZ(0) scale(1);
    opacity: 1;
    z-index: 10;
}

/* Items going out to the left */
.single_slider .owl-item.active~.owl-item {
    transform: translateX(100%) translateZ(-200px) scale(0.8);
    opacity: 0;
}

/* Items coming from the right */
.single_slider .owl-item:not(.active) {
    transform: translateX(-100%) translateZ(-200px) scale(0.8);
    opacity: 0;
}

/* Clone items ko bhi handle karein */
.single_slider .owl-item.cloned {
    transform: translateZ(-200px) scale(0.8);
    opacity: 0;
}



.single_slider .item {




    text-align: center;
    margin: 10px;
}

.single_slider .item img {
    max-width: 100%;

    object-fit: cover;
    border-radius: 8px;

}

.single_slider .item h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.single_slider .item p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Owl Carousel Custom Styling */
.single_slider .owl-nav,
.single_slider .owl-dots {
    margin-top: 30px;
    display: none;
}

.owl-theme .owl-nav [class*='owl-'] {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 20px;
    margin: 5px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #555;
}

.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    background: #ccc;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #333;
}

/* Counter Section Styles */
.counter_section {
    background-color: #000000;
    padding: 50px 0px;
    display: flex;
    align-items: center;
}

.counter-item {
    padding: 0px;
}

.counter-number {
    font-size: 60px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
}

.counter-label {
    font-size: 1.125rem;
    color: #ffffff;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.count_link {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.count_link span {
    font-size: 50px;
    font-weight: 600;
}

.brand_section {
    background-color: #000000;
    padding: 40px 0;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
}

/* Main Heading */
.brand-main-heading {
    font-size: 45px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0px;
    line-height: 1.2;
    text-align: center;
    /* letter-spacing: -0.5px; */
}

/* Feature Container */
.brand-feature {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 20px 0;
}

.brand-feature svg {
    width: 40px;
}

/* Feature Icon */
.feature-icon {

    width: 60px;
    height: 60px;

}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

/* Feature Content */
.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.promote_development {
    background-color: #000000;
    padding: 50px 0;
    min-height: 100vh;
}

/* Section Heading */
.section-heading {
    font-size: 45px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 22px;
    line-height: 1.2;
    /* letter-spacing: -0.5px; */
}

.section-description {
    font-size: 14px;
    color: #ffffff;
    line-height: 26px;
    /* max-width: 1100px; */
    margin: 0 auto;
    opacity: 0.95;
}

.project-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.project-info p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.circle_slider .item {
    display: flex;
    justify-content: center;
    align-items: center;
}





@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}




.project-carousel .owl-dots,
.project-carousel .owl-nav {
    display: none;

}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.project-card.animated {
    animation: fadeInUp 0.6s ease forwards;
}



.industries_serve {
    position: relative;
    width: 100%;
    height: 100vh;

    overflow: hidden;
}

/*.industries_section {*/
/*    background-image: url(../images/bg_circle.png);*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
   


/*}*/

.industries_serve {
    margin: 25px 0px;
    margin-bottom: 0px;
}

.industries_serve .industry-card {
    position: absolute;
    background-color: #000;
    border: 2px solid #333;
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industries_serve .industry-card:hover {
    border-color: #666;
    transform: scale(1.05);
}

.industries_serve .industry-card i {
    font-size: 28px;
    color: #fff;
}

.industries_serve .industry-card span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

/* Dotted Connection Lines */
.industries_serve svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.industries_serve svg line {
    stroke: #444;
    stroke-width: 2;
    stroke-dasharray: 8, 8;
}

/* Individual Card Positions */
.industries_serve .ecommerce {
    top: 5%;
    left: 10%;
}

.industries_serve .real-estate {
    top: 15%;
    left: 42%;
}

.industries_serve .events {
    top: 12%;
    right: 10%;
}

.industries_serve .transport {
    top: 28%;
    left: 22%;
}

.industries_serve .qsr {
    top: 50%;
    left: 33%;
}

.industries_serve .finance {
    top: 40%;
    left: 52%;
}

.industries_serve .retail {
    top: 26%;
    right: 24%;
}

.industries_serve .tour-travel {
    top: 48%;
    left: 3%;
}

.industries_serve .on-demand {
    top: 64%;
    left: 60%;
}

.industries_serve .gaming {
    top: 52%;
    right: 8%;
}

.industries_serve .healthcare {
    top: 74%;
    left: 10%;
}

.industries_serve .education {
    bottom: 2%;
    right: 13%;
}

.insustires {
    font-size: 45px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 70px;
}


.client_partner {
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(90deg, transparent, #0098A3, #009BA6A1, #00777f, #009BA6A1, #0098A3, transparent);
    position: relative;
}

.client_partner .section-title {
    text-align: center;
    color: #fff;
    font-size: 44px;
    font-weight: 400;
    margin-bottom: 25px;
    /* letter-spacing: 0.5px; */
}

.client_partner .partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client_partner .partner-logo:hover {
    transform: scale(1.1);
}

.client_partner .partner-logo img {
    /* max-width: 100%; */


    padding: 15px;
    width: 100%;
    /* object-fit: inherit; */
}

/* Individual Logo Sizes */
/* .client_partner .logo-palmolive img {
            max-width: 180px;
        }

        .client_partner .logo-unilever img {
            max-width: 120px;
        }

        .client_partner .logo-kohler img {
            max-width: 200px;
        }

        .client_partner .logo-nestle img {
            max-width: 140px;
        }

        .client_partner .logo-dabur img {
            max-width: 180px;
        }

        .client_partner .logo-cerelac img {
            max-width: 160px;
        } */



.price_portfolio {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.price_portfolio .pricing-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 2px solid #2a2a2a;
    border-radius: 20px;
    padding: 40px 10px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.price_portfolio .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0098a3, #00d4ff);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.price_portfolio .pricing-card:hover {

    border-color: #0098a3;
    box-shadow: 0 20px 60px rgba(0, 152, 163, 0.3);
}

.price_portfolio .pricing-card:hover::before {
    opacity: 1;
}

.price_portfolio .card-header {
    margin-bottom: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2a2a;
}

.price_portfolio .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0098a3, #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.price_portfolio .card-icon i {
    font-size: 24px;
    color: #fff;
}

.price_portfolio .card-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price_portfolio .card-title i {
    font-size: 20px;
}

.price_portfolio .card-description {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.price_portfolio .expert-section {
    margin: 0px 0;
}

.price_portfolio .expert-title {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    text-align: center;
}

.price_portfolio .select-btn {
    width: 100%;
    padding: 10px 30px;
    background: transparent;
    color: #fff;
    border: 2px solid #0098a3;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: table;
    text-align: center;
    margin: auto;
    justify-content: center;
}

.price_portfolio .select-btn:hover {
    background: linear-gradient(135deg, #0098a3, #00d4ff);
    border-color: #00d4ff;
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.price_portfolio .divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
    margin: 18px 0;
}

.price_portfolio .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price_portfolio .features-list li {
    color: #ccc;
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.price_portfolio .features-list li i {
    color: #00d4ff;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.price_portfolio .features-list li:last-child {
    margin-bottom: 0;
}

/* Featured Card */
.price_portfolio .featured-card {
    border-color: #0098a3;
    background: linear-gradient(145deg, #1f2937, #111827);
}

.price_portfolio .featured-card::before {
    opacity: 1;
}

.contact_us .section-heading {
    font-size: 40px;
}

.contact_us {
    padding: 50px 0px;
}

.faq_link {
    width: 100%;
    padding: 50px 0;
    background-color: #000;
}

.faq_link .section-title {
    text-align: center;
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.faq_link .title-divider {
    /* width: 100px; */
    height: 1px;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    margin: 0 auto 40px;
}



.faq_link .faq-item {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq_link .faq-item:hover {
    border-color: #0098a3;
    box-shadow: 0 5px 20px rgba(0, 152, 163, 0.2);
}

.faq_link .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.faq_link .faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0098a3, #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq_link .faq-item:hover .faq-question::before {
    opacity: 1;
}

.faq_link .faq-question-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    /* text ko ek line me rakhe */
    overflow: hidden;
    /* extra text hide kare */
    text-overflow: ellipsis;
    /* ... show kare */
    /* padding-right: 20px; */
    /* flex: 1; */
}

.faq_link .faq-question .number {
    color: #0098a3;
    font-weight: 600;
    margin-right: 1px;
}

.faq_link .faq-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #0098a3, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq_link .faq-icon i {
    color: #fff;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.faq_link .faq-item.active .faq-icon {
    background: linear-gradient(135deg, #00d4ff, #0098a3);
    transform: rotate(180deg);
}

.faq_link .faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq_link .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(0, 152, 163, 0.05);
}

.faq_link .faq-item.active .faq-answer {
    max-height: 500px;
    border-top: 1px solid #2a2a2a;
}

.faq_link .faq-answer-content {
    padding: 25px 30px;
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
}

.faq_link .faq-item.active .faq-question {
    background: rgba(0, 152, 163, 0.1);
}

/* Two Column Layout */
.faq_link .faq-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

 .footer_link {
            width: 100%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
        }
 

        .footer_link .footer-main {
            padding-bottom: 0px;
            border-bottom: 1px solid #2a2a2a;
        }

        /* Get In Touch Section */
        .footer_link .contact-info-section {
            margin-bottom: 40px;
        }

        .footer_link .section-heading {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 12px;
        }

        .footer_link .section-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #ffffff, #ffffff);
        }

        .footer_link .contact-item {
            margin-bottom: 25px;
        }

        .footer_link .contact-label {
            color: #888;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer_link .contact-value {
            color: #fff;
            font-size: 18px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer_link .contact-value:hover {
            color: #00d4ff;
            transform: translateX(5px);
        }

        .footer_link .address-text {
            color: #fff;
            font-size: 16px;
            line-height: 1.6;
        }

        /* Social Media Section */
        .footer_link .social-section {
            margin-top: 35px;
        }

        .footer_link .social-heading {
            color: #888;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer_link .social-icons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .footer_link .social-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
            border: 1px solid #2a2a2a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .footer_link .social-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: linear-gradient(135deg, #0098a3, #00d4ff);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
            z-index: 0;
        }

        .footer_link .social-icon:hover::before {
            width: 100%;
            height: 100%;
        }

        .footer_link .social-icon i {
            position: relative;
            z-index: 1;
        }

        .footer_link .social-icon:hover {
            border-color: #00d4ff;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
        }

        /* Quick Links Section */
        .footer_link .quick-links-section h3 {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 12px;
        }

        .footer_link .quick-links-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #ffffff, #ffffff);
        }

        .footer_link .quick-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer_link .quick-links li {
            margin-bottom: 15px;
        }

        .footer_link .quick-links a {
            color: #aaa;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 20px;
        }

        .footer_link .quick-links a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ffffff, #00d4ff);
            transition: width 0.3s ease;
        }

        .footer_link .quick-links a:hover {
            color: #00d4ff;
            padding-left: 25px;
        }

        .footer_link .quick-links a:hover::before {
            width: 15px;
        }

        /* Contact Form Section */
        .footer_link .contact-form-section h3 {
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 12px;
        }

        .footer_link .contact-form-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #ffffff, #ffffff);
        }

        .footer_link .contact-form .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #2a2a2a;
            border-radius: 8px;
            color: #fff;
            padding: 12px 18px;
            font-size: 14px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .footer_link .contact-form .form-control:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: #0098a3;
            box-shadow: 0 0 15px rgba(0, 152, 163, 0.2);
            outline: none;
        }

        .footer_link .contact-form .form-control::placeholder {
            color: #666;
        }

        .footer_link .contact-form textarea.form-control {
            resize: none;
            min-height: 100px;
        }

        .footer_link .submit-btn {
            width: 100%;
            padding: 14px 30px;
            /* background: linear-gradient(135deg, #0098a3, #00d4ff); */
            border: none;
            border-radius: 50px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .footer_link .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.5s ease;
        }

        .footer_link .submit-btn:hover::before {
            width: 300%;
            height: 300%;
        }

        .footer_link .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
        }

        /* Footer Bottom */
        .footer_link .footer-bottom {
            padding: 12px 0;
            text-align: center;
        }

        .footer_link .copyright-text {
            color: #888;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .footer_link .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer_link .footer-links a {
            color: #aaa;
            font-size: 13px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer_link .footer-links a:hover {
            color: #00d4ff;
        }

        .footer_link .footer-links span {
            color: #555;
        }
        
        
         /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: float 20s ease-in-out infinite;
        }

        .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--accent-cyan), transparent);
            top: -10%;
            left: -10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--accent-purple), transparent);
            top: 50%;
            right: -10%;
            animation-delay: 5s;
        }

        .orb-3 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, var(--accent-pink), transparent);
            bottom: -10%;
            left: 30%;
            animation-delay: 10s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(30px, -30px) scale(1.1);
            }

            50% {
                transform: translate(-20px, 20px) scale(0.9);
            }

            75% {
                transform: translate(20px, 30px) scale(1.05);
            }
        }

        /* Grid pattern overlay */
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
            pointer-events: none;
        }

        .industries_wrap {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease-out;
        }

        .section-subtitle {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

       .section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

        .section-description {
            font-size: 18px;
            color: var(--text-secondary);
           
            margin: 0 auto;
            line-height: 1.6;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 30px;
        }

.industry-card {
    background: rgb(0 150 161 / 17%);
    border: 1px solid rgb(255 255 255 / 39%);
    border-radius: 16px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 1;
    transform: translateY(30px);
}

        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(0, 245, 255, 0.1),
                    rgba(168, 85, 247, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .industry-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg,
                    transparent,
                    rgba(255, 255, 255, 0.05),
                    transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .industry-card:hover {
            /*transform: translateY(-8px);*/
            border-color: var(--accent-cyan);
            box-shadow:
                0 20px 60px rgba(0, 245, 255, 0.2),
                0 0 40px rgba(168, 85, 247, 0.1);
        }

        .industry-card:hover::before {
            opacity: 1;
        }

        .industry-card:hover::after {
            left: 100%;
        }

.industry-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #0098a2, #c8e1e3d1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

        .industry-card:hover .industry-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 24px rgba(0, 245, 255, 0.4);
        }

        .industry-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .industry-card:hover .industry-name {
            color: var(--accent-cyan);
        }

        /* Staggered animation for cards */
        .industry-card.animate {
            animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        

        /* Decorative elements */
        .deco-line {
            position: absolute;
            width: 2px;
            height: 100px;
            background: linear-gradient(180deg, transparent, var(--accent-cyan), transparent);
            opacity: 0.3;
            animation: pulse 3s ease-in-out infinite;
        }

        .deco-line-1 {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .deco-line-2 {
            top: 60%;
            right: 15%;
            animation-delay: 1s;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.3;
                transform: scaleY(1);
            }

            50% {
                opacity: 0.6;
                transform: scaleY(1.2);
            }
        }


 /* Fixed Call Now Button */
      .call_now {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(94deg, #00919b, #ad38dd);
    color: var(--text-primary);
    padding: 12px 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 32px rgba(0, 245, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

        .call_now::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .call_now:hover::before {
            width: 300px;
            height: 300px;
        }

        .call_now:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 48px rgba(0, 245, 255, 0.5);
        }

        .call-icon-wrapper {
            position: relative;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: iconPulse 2s ease-in-out infinite;
        }

        .call-icon-wrapper::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            animation: ripple 2s ease-out infinite;
        }

        .call-icon-wrapper::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            animation: ripple 2s ease-out infinite 1s;
        }

        .call-icon-wrapper i {
            font-size: 18px;
            color: var(--text-primary);
            z-index: 1;
            animation: shake 3s ease-in-out infinite;
        }
        
        @keyframes iconPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }

            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        @keyframes shake {

            0%,
            100% {
                transform: rotate(0deg);
            }

            10%,
            30%,
            50%,
            70%,
            90% {
                transform: rotate(-10deg);
            }

            20%,
            40%,
            60%,
            80% {
                transform: rotate(10deg);
            }
        }

/* Responsive Design */

@media (max-width: 1200px) {
    .brand-main-heading {
        font-size: 3rem;
        margin-bottom: 50px;
    }

    .feature-title {
        font-size: 1.375rem;
    }

    .section-heading {
        font-size: 2.5rem;
    }

    .project-card {
        height: 350px;
    }

    .industries_serve .industry-card {
        padding: 15px 20px;
    }

    .industries_serve .industry-card i {
        font-size: 28px;
    }

    .industries_serve .industry-card span {
        font-size: 14px;
    }

    .client_partner .section-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .price_portfolio {
        padding: 60px 0;
    }

    .price_portfolio .card-title {
        font-size: 22px;
    }

    .price_portfolio .expert-title {
        font-size: 28px;
    }

    .faq_link .section-title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .counter-number {
        font-size: 3rem;
    }
      .industries_section {
        background-image: none;
    }
    .price_portfolio .pricing-card{

        height: auto;
    }
.navbar .animated-gradient-btn{
    display: none;
}
    .counter-label {
        font-size: 1rem;
    }

    .counter_section {
        padding: 60px 0;
    }

    .brand-main-heading {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .brand_section {
        padding: 80px 0;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

    .feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-description {
        font-size: 0.95rem;
    }

    .promote_development {
        padding: 80px 0;
    }

    .section-heading {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 1rem;
    }

    .project-card {
        height: 320px;
    }

    .project-info h3 {
        font-size: 1.5rem;
    }

    .owl-carousel .owl-nav button {
        width: 45px;
        height: 45px;
        font-size: 20px !important;
    }

    .client_partner .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .client_partner .logo-palmolive img {
        max-width: 150px;
    }

    .client_partner .logo-unilever img {
        max-width: 100px;
    }

    .client_partner .logo-kohler img {
        max-width: 170px;
    }

    .client_partner .logo-nestle img {
        max-width: 120px;
    }

    .client_partner .logo-dabur img {
        max-width: 150px;
    }

    .client_partner .logo-cerelac img {
        max-width: 130px;
    }

    .price_portfolio {
        padding: 50px 0;
    }

    .price_portfolio .pricing-card {
        padding: 35px 25px;
        margin-bottom: 30px;
    }

    .price_portfolio .card-title {
        font-size: 20px;
    }

    .price_portfolio .expert-title {
        font-size: 26px;
    }

    .faq_link {
        padding: 60px 0;
    }

    .faq_link .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .faq_link .faq-columns {
        gap: 15px;
    }

    .faq_link .faq-question {
        padding: 20px 25px;
    }

    .faq_link .faq-answer-content {
        padding: 20px 25px;
    }
    .footer_link {
                padding: 60px 0 0;
            }

            .footer_link .footer-main {
                padding-bottom: 0px;
            }

            .footer_link .contact-info-section,
            .footer_link .quick-links-section,
            .footer_link .contact-form-section {
                margin-bottom: 40px;
            }
}

@media (max-width: 767px) {
    .counter-number {
        font-size: 2.5rem;
    }
    .count_link span {
    font-size: 24px;
    font-weight: 600;
}

    .counter-label {
        font-size: 0.95rem;
    }

   .counter_section {
    padding: 33px 0;
    padding-bottom: 0;
}

    .counter-item {
        padding: 0px;
    }

    .brand-main-heading {
        font-size: 2rem;
        margin-bottom: 35px;
    }

   .brand_section {
    padding: 50px 0;
    padding-bottom: 0;
}
    .brand-feature {
        gap: 15px;
        padding: 15px 0;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-title {
        font-size: 1.125rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .promote_development {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 1.875rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .project-card {
        height: 280px;
        margin-bottom: 20px;
    }

    .project-overlay {
        padding: 20px;
    }

    .project-info h3 {
        font-size: 1.25rem;
    }

    .project-info p {
        font-size: 0.9rem;
    }

    .owl-carousel .owl-nav {
        display: none;
    }

    .modal-close {
        font-size: 40px;
        right: 20px;
    }

    .industries_serve {
        height: auto;
        padding: 40px 20px;
    }

    .industries_serve .industry-card {
        position: relative !important;
        margin: 15px auto;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
    }

    .industries_serve svg {
        display: none;
    }

    .client_partner {
        padding: 40px 0;
    }

    .client_partner .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .client_partner .partner-logo {
        padding: 15px;
    }

    .client_partner .logo-palmolive img {
        max-width: 130px;
    }

    .client_partner .logo-unilever img {
        max-width: 85px;
    }

    .client_partner .logo-kohler img {
        max-width: 150px;
    }

    .client_partner .logo-nestle img {
        max-width: 100px;
    }

    .client_partner .logo-dabur img {
        max-width: 130px;
    }

    .client_partner .logo-cerelac img {
        max-width: 110px;
    }

    .price_portfolio {
        padding: 40px 0;
    }

    .price_portfolio .pricing-card {
        padding: 30px 20px;
    }

    .price_portfolio .card-title {
        font-size: 18px;
    }

    .price_portfolio .expert-title {
        font-size: 24px;
    }

    .price_portfolio .select-btn {
        padding: 12px 25px;
        font-size: 15px;
    }

    .price_portfolio .features-list li {
        font-size: 13px;
    }

    .faq_link {
        padding: 50px 0;
    }

    .faq_link .section-title {
        font-size: 32px;
    }

    .faq_link .faq-columns {
        grid-template-columns: 1fr;
    }

    .faq_link .faq-question {
        padding: 18px 20px;
    }

    .faq_link .faq-question-text {
        font-size: 15px;
    }

    .faq_link .faq-answer-content {
        padding: 18px 20px;
        font-size: 14px;
    }

    .faq_link .faq-icon {
        width: 30px;
        height: 30px;
    }

    .faq_link .faq-icon i {
        font-size: 16px;
    }
    .footer_link {
                padding: 50px 0 0;
            }

            .footer_link .section-heading,
            .footer_link .quick-links-section h3,
            .footer_link .contact-form-section h3 {
                font-size: 14px;
            }

            .footer_link .contact-value {
                font-size: 16px;
            }

            .footer_link .social-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
               .industries_wrap {
                padding: 60px 20px;
            }

            .section-title {
                font-size: 36px;
            }

            .section-description {
                font-size: 16px;
            }

            .industries-grid {
    grid-template-columns: repeat(auto-fill, minmax(177px, 1fr));
    gap: 16px;
}

            .industry-card {
                padding: 24px 20px;
            }
}

@media (max-width: 575px) {
    .counter-number {
        font-size: 2rem;
    }

    .counter-label {
        font-size: 0.875rem;
    }

    .brand-main-heading {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .brand_section {
        padding: 50px 0;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }

    .section-heading {
        font-size: 1.625rem;
    }

    .project-card {
        height: 250px;
    }

    .client_partner .section-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .client_partner .partner-logo {
        padding: 10px;
    }

    .client_partner .logo-palmolive img,
    .client_partner .logo-kohler img,
    .client_partner .logo-dabur img {
        max-width: 110px;
    }

    .client_partner .logo-unilever img,
    .client_partner .logo-nestle img,
    .client_partner .logo-cerelac img {
        max-width: 90px;
    }

    .price_portfolio .card-title {
        font-size: 16px;
    }

    .price_portfolio .expert-title {
        font-size: 22px;
    }

    .faq_link .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq_link .faq-question {
        padding: 15px;
    }

    .faq_link .faq-question-text {
        font-size: 14px;
    }

    .faq_link .faq-answer-content {
        padding: 15px;
        font-size: 13px;
    }
     .footer_link .footer-links {
                flex-direction: column;
                gap: 10px;
            }

            .footer_link .footer-links span {
                display: none;
            }
}