:root {
    /* Primary Brand Colors - Green Based */
    --primary: #89c53b;
    --primary-dark: #1b5e1e;
    --primary-light: rgba(137, 197, 59, 0.15);
    --primary-gradient: linear-gradient(135deg, #89c53b, #7db334, #6ea22d);

    /* Text Colors */
    --text-dark: #1b1f23;
    --text-sub: #89c53b;
    /* Subheadings */
    --text-mid: #495057;
    --text-light: #6c757d;

    /* Background Colors */
    --bg-body: #f4fdf5;
    --bg-hero: linear-gradient(120deg, #eafbe9 0%, #f4fdf5 100%);
    --bg-card: #ffffff;
    --bg-form: #f8fcf8;

    /* Borders */
    --border-light: #e0f1e1;
    --border-mid: #cce7cd;
    --divider-color: rgba(27, 94, 30, 0.1);

    /* Shadows */
    --shadow-primary: 0 10px 25px rgba(137, 197, 59, 0.25);
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --card-shadow: 0 6px 20px rgba(137, 197, 59, 0.1);

    /* Effects */
    --focus-shadow: 0 0 0 4px rgba(137, 197, 59, 0.35);

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
    font-family: "Poppins", sans-serif;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}


/* ================= Typography ================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.subheading {
    color: var(--text-sub);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}
.isoimg{
    width: 34%;
}
p {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.text-dark {
    color: var(--text-dark) !important;
}

.text-sub {
    color: var(--text-sub) !important;
}

.text-mid {
    color: var(--text-mid) !important;
}

/* ================= Modern Navbar ================= */
.navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
    transition: var(--transition);
}

/* ================= BharatVerify Logo ================= */
.navbar .bharatverify-logo {
    height: 35px;
    /* Adjust as needed to match branding */
    transition: var(--transition);
    margin-left: 12px;
}

.navbar .bharatverify-link {
    display: flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar .bharatverify-link:hover {
    background-color: var(--primary-light);
}

/* Optional: Add border or scale effect on hover */
.navbar .bharatverify-link:hover img {
    transform: scale(1.05);
}

.navbar-nav {
    /*margin-left: 30px;*/
}

.nav-link {
    color: var(--text-mid) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 5px !important;
    margin: 0 5px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-light);
}

.nav-link i {
    margin-right: 8px;
    font-size: 0.95rem;
    width: 20px;
    text-align: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-primary);
    padding: 15px 0;
    margin-top: 10px;
    min-width: 240px;
    border: 1px solid var(--border-light);
    animation: fadeIn 0.3s ease-out;
}

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

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

.dropdown-item {
    padding: 10px 20px !important;
    font-size: 1rem;
    color: var(--text-mid);
    transition: var(--transition);
    display: flex;
    align-items: center;
    border-radius: 6px;
    margin: 0 10px;
    width: auto;
}

.dropdown-item i {
    margin-right: 10px;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
    color: var(--primary);
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary) !important;
    transform: translateX(5px);
}

.btn-contact {
    background: var(--primary-gradient);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    border: none !important;
    display: inline-flex;
    align-items: center;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.35);
}

.btn-contact i {
    margin-right: 8px;
}

.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2867, 97, 238, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* second navbar section */

#servicesDropdown {
    position: relative;
}

/* Adjust dropdown menu positioning */
.dropdown-menu {
    top: 100%;
    margin-top: 0px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

/* Optional: Ensure it works cleanly on hover if JS fails */
#servicesDropdown:hover+.dropdown-menu,
.dropdown:hover>.dropdown-menu {
    display: block;
}

/* Ensure next menu items aren't overlapped */
.navbar-nav li {
    position: relative;
    z-index: 1;
}

.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 10px 15px 10px 10px;
    z-index: 1000;
}

.nav-item.dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Mobile menu */
@media (max-width: 992px) {
    .navbar-nav {
        margin: 20px 0 0;
        padding: 20px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        padding: 12px 15px !important;
        margin: 5px 0;
    }

    .dropdown-menu {
        box-shadow: none;
        border: 1px solid var(--border-light);
        margin: 5px 0;
        width: 90%;
    }

    .desktop-contact {
        padding: 20px 0;
        text-align: center;
    }
}

/* ================= Modern Hero Section ================= */
.hero-section {
    background: var(--bg-hero);
    padding: 100px 15px 120px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 80px auto;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--primary-light);
    filter: blur(80px);
    z-index: 0;
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-heading {
    font-size: 2rem;
    margin-bottom: 1.75rem;
    line-height: 1.4;
}

@media only screen and (max-width: 600px) {
    .hero-heading {
        font-size: 2.25rem
    }
}

.hero-highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding: 0 2px;
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.92;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-custom-outline,
.btn-custom-fill {
    padding: 8px 38px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1.05rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-custom-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-custom-outline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-light);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-custom-outline:hover::before {
    width: 100%;
}

.btn-custom-fill {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-custom-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.btn-custom-fill:hover::after {
    height: 100%;
}

.hero-img {
    max-width: 100%;
    height: auto;
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    mix-blend-mode: multiply;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.section-title-bar {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.title-bar {
    width: 5px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    margin-right: 15px;
}

.section-title {
    font-size: 2.1rem;
    margin: 0;
}

.section-title span {
    color: var(--primary);
}

.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 3rem 0;
}
/* ================= About Us =================*/
 .section-title {
        margin-bottom: 2rem;
    }
    
    .about-content {
        border-radius: 10px;
        border-left: 5px solid #87c734;
    }
    
    .service-card {
        transition: all 0.3s ease;
        background-color: #fff;
        height: 100%;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .hover-shadow:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .transition-all {
        transition: all 0.3s ease;
    }
    
    @media (max-width: 768px) {
        .about-content {
            padding: 1.5rem;
        }
        
        .service-card {
            margin-bottom: 1rem;
        }
    }
/* ================= Sections ================= */
section {
    padding: 4px 0;
}

/* Top bar styles */
.d-flex.align-items-center.mb-4 {
    margin-bottom: 2rem !important;
}

.border-start {
    border-left: 4px solid var(--primary) !important;
    height: 30px;
    margin-right: 0.75rem;
}

/* Card styles */
.product-card {
    background-color: var(--bg-card);
    border-radius: 14px;
    padding: 47px 11px;
    height: 100%;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    box-shadow: var(--shadow-light);

}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-mid);
    box-shadow: 0 12px 24px -8px rgba(137, 197, 59, 0.25);
}


@media only screen and (max-width: 600px) {
    .product-card {
        padding: 7px 11px;
    }

    .desktop-contact {
        padding: 0px 0;
        text-align: center;
    }
}

/* About cards */
.position-relative.mt-5 .row>div {
    padding: 15px;
}

.position-relative.mt-5 .row .card {
    height: 100%;
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    border: none;
}

.position-relative.mt-5 .row .card:hover {
    box-shadow: var(--shadow-hover);
}

/* Divider */
.divider {
    height: 1px;
    background: var(--divider-color);
    margin: 3.5rem 0;
    border: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f4fdf5, #eafbe9);
    border-radius: 30px 30px 0 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto;
    border-radius: 2px;
}

.contact-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    height: 100%;
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    text-align: left;
}

.contact-info i {
    color: var(--primary);
    margin-right: 15px;
    min-width: 20px;
    font-size: 18px;
}

.contact-form {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.form-control {
    background-color: var(--bg-form);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1.02rem;
    margin-bottom: 1.6rem;
    transition: border 0.3s ease;
}

.form-control:focus {
    border-color: #d8f0b9;
    box-shadow: 0 0 0 3px var(--focus-shadow);
    background: white;
}

.btn-submit {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit i {
    margin-left: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

/* ================= Modern Footer ================= */
.footer {
    background: var(--primary-gradient);
    color: var(--text-light);
    border-top: 4px solid var(--primary-dark);
    padding-top: 4rem;
    position: relative;
}

.footer-content {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem 1rem;
    animation: fadeInUp 0.8s ease-in-out;
    background-color: var(--bg-card);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

.footer-heading {
    color: var(--primary-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 50px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.contact-info p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.contact-info i {
    color: var(--primary-dark);
    min-width: 20px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-btn:hover {
    background-color: var(--accent-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    outline: none;
    font-size: 0.95rem;
    background-color: #fff;
}

.newsletter-form button {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--accent-dark);
}

.divider {
    height: 1px;
    background-color: var(--divider-color);
    margin: 2rem 0;
}

.footer-bottom {
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    padding: 1.25rem 0;
    font-size: 0.9rem;
    border-radius: 0 0 20px 20px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--accent-dark);
}

/* index page slider text animation */

.cursor {
    display: inline-block;
    animation: blink 1s step-start infinite;
    color: #89c53b;
    font-weight: bold;
    font-size: inherit;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/*End  */

/* slider for product display */



.product-slider {
    padding: 50px 0;
}

.swiper {
    width: 100%;
}

.swiper-wrapper {
    padding-bottom: 40px;
}

.product-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.product-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.product-text {
    flex: 1;
}

.product-text h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.product-text h2 {
    color: #89c53b;
    font-size: 24px;
    margin-bottom: 15px;
}

.product-text p {
    font-size: 24px;
    margin-bottom: 20px;
}

.product-text a {
    color: #198754;
    font-weight: bold;
    text-decoration: none;
}

.product-image {
    flex: 2;
    text-align: right;
}

.product-image img {
    max-width: 90%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        text-align: center;
    }

    .product-text {
        text-align: center;
        padding: 0 20px;
    }

    .product-image {
        text-align: center;
        margin-top: 20px;
    }

    .product-image img {
        max-width: 100%;

    }
}

/* end slider  */

@media (max-width: 768px) {
    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        margin: 0 auto 1rem;
        display: block;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form button {
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .store-badges-container {
        flex-direction: column;
    }
}


.store-badges-container {
    display: flex;
    gap: 30px;
    /* flex-wrap: wrap; */
    /* justify-content: center; */
    margin-top: 30px;
}

.badge {
    display: flex;
    align-items: center;
    /* background-color: #ffffff; */
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    width: 27%;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.badge .icon {
    font-size: 2rem;
    margin-right: 15px;
    color: #565655;
}

/* .badge.google .icon {
    color: #565655;
}

.badge.apple .icon {
    color: #565655;
}

.badge.certified .icon {
    color: #565655;
} */

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-name {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    font-weight: 500;
}

.badge-rating {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.main-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.problem-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    height: 100%;
    /* Ensure all cards in a row have equal height */
}

.problem-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.problem-card .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    /* Align with text */
}

.problem-card .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 10px;
    font-size: 0.95rem;
    color: #495057;
    cursor: pointer;
}

.problem-card .form-check-input:checked+.form-check-label {
    font-weight: 500;
}

/* Custom Icon Colors to match screenshot */
.icon-app-capture {
    color: #4A90E2;
}

.icon-telesales {
    color: #7B68EE;
}

.icon-lead-mgmt {
    color: #50C878;
}

.icon-doc-mgmt {
    color: #FFA500;
}

.icon-transfer {
    color: #DC143C;
}

.icon-prescreening {
    color: #00CED1;
}

.icon-segmentation {
    color: #9370DB;
}

.icon-field-sales {
    color: #FF6347;
}

.icon-whatsapp {
    color: #25D366;
}

.icon-reminders {
    color: #FFD700;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    text-align: center;
    /* margin-bottom: 2.5rem; */
}

/* Accordion ke liye custom styling */
.accordion {
    --bs-accordion-bg: #ffffff;
    --bs-accordion-btn-bg: #ffffff;
    --bs-accordion-active-bg: #ffffff;
    --bs-accordion-active-color: #212529;
}

.accordion-item {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem !important;
    margin-bottom: 1rem;
    /* Items ke beech mein space */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 500;
    color: #343a40;
    padding: 1.25rem;
}

/* Jab button expand ho toh box-shadow hataye */
.accordion-button:not(.collapsed) {
    box-shadow: none;
}

/* Arrow icon ko customize karna */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23343a40'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23343a40'%3e%3cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 1.25rem 1.25rem 1.25rem;
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
}

.feature-showcase {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
}

.sub-heading {
    font-size: 1.2rem;
    color: #6c757d;
}

/* Custom Nav Tabs Styling */
.nav-tabs {
    /* border-bottom: 2px solid #dee2e6; */
    border-bottom: none;
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    color: #6c757d;
    font-weight: 500;
    border: none;
    padding: 0.75rem 1.5rem;
    margin-bottom: -2px;
    /* To align with bottom border */
}

.nav-tabs .nav-link:hover {
    border: none;
    color: #495057;
}

.nav-tabs .nav-link.active {
    color: #198754;
    /* Green color for active tab */
    background-color: transparent;
    border: none;
    /* border-bottom: 2px solid #198754; */
    font-weight: 600;
}

/* Phone Mockup Styling */
.phone-mockup {
    position: relative;
    width: 220px;
    height: 400px;
    background-color: #1c1c1e;
    border-radius: 40px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto;

}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 34px;
    overflow: hidden;
}

.phone-header {
    background-color: #f8f9fa;
    padding: 10px 15px;
    font-weight: 600;
    color: #343a40;
    border-bottom: 1px solid #e9ecef;
}

/* Content inside phone */
.list-item {
    padding: 6px 15px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item .contact-name {
    font-weight: 500;
    color: #343a40;
}

.list-item .contact-status {
    font-size: 0.8rem;
    color: #6c757d;
}

.list-item .icon {
    color: #198754;
}

/* Right side content styling */
.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
}

.feature-description {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 2rem;
}

.btn-demo {
    background-color: #198754;
    color: white;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.btn-demo:hover {
    background-color: #157347;
    color: white;
}

/* WhatsApp UI Status Bar */
.whatsapp-status-bar {
    background-color: #075e54;
    color: white;
    padding: 8px 10px;
    font-size: 0.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* WhatsApp UI Chat Header */
.whatsapp-chat-header {
    background-color: #075e54;
    color: white;
    padding: 6px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 0.8rem;
}

.whatsapp-chat-header .contact-info {
    display: flex;
    align-items: center;
}

.whatsapp-chat-header .contact-info .avatar {
    width: 28px;
    height: 28px;
    background-color: #ccc;
    border-radius: 50%;
    margin-right: 8px;
}

/* WhatsApp UI Chat Messages */
.whatsapp-chat-messages {
    flex-grow: 1;
    padding: 8px;
    overflow-y: auto;
    background-color: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.15' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    display: flex;
    flex-direction: column;
}

.message {
    max-width: 75%;
    padding: 6px 9px;
    border-radius: 8px;
    margin-bottom: 8px;
    line-height: 1.2;
    font-size: 0.85rem;
}

.message-received {
    background-color: #ffffff;
    align-self: flex-start;
}

.message-sent {
    background-color: #dcf8c6;
    align-self: flex-end;
}

.message .time {
    font-size: 0.6rem;
    color: #999;
    text-align: right;
    margin-top: 4px;
}

.whatsapp-input-area {
    background-color: #f0f0f0;
    padding: 5px 10px;
    /* Reduced padding */
    display: flex;
    align-items: center;
    border-top: 1px solid #ddd;
}

.whatsapp-input-area input {
    flex-grow: 1;
    border: none;
    border-radius: 15px;
    /* Adjusted radius */
    padding: 5px 8px;
    /* Reduced padding */
    margin: 0 5px;
    /* Reduced margin */
    font-size: 0.8rem;
    /* Reduced font size */
}

.whatsapp-input-area i {
    color: #51585c;
    font-size: 1.1rem;
    /* Reduced font size */
}


/* Video Section */
.video-section {
    padding: 40px 0;
    /* background-color: #f0f2f5; */
}

.video-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-controls {
    opacity: 1;
}

.control-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.control-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.video-progress {
    flex-grow: 1;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    margin: 0 15px;
    cursor: pointer;
    position: relative;
}

.video-progress-filled {
    height: 100%;
    background-color: #ff6b6b;
    border-radius: 5px;
    width: 0%;
    transition: width 0.1s linear;
}

.video-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #333;
}

.video-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    .main-heading {
        font-size: 2rem;
        font-weight: 600;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .video-section {
        padding: 20px 0;
    }

    .custom-container {
        padding: 30px 0;
    }

    .video-title {
        font-size: 1.5rem;
    }


    .div-head {
        margin-bottom: 25px !important;
    }

    .store-badges-container {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {

    .main-heading {
        font-size: 1.5rem !important;
        font-weight: 500;
    }

    .hero-section {
        padding: 20px 0 !important;
    }

    .video-section {
        padding: 20px 0 !important;
    }

    .custom-container {
        padding: 20px 0 !important;
    }

    .div-head {
        margin-bottom: 20px !important;
    }

    .store-badges-container {
        margin-top: 20px;
    }
}