/* CSS Variables - Theme Configuration */
:root {
    /* Colors - Can be customized in theme-config.js */
    --primary-color: #08304a;
    ;
    --primary-dark: #15486b;
    --secondary-color: #1ca4ac;
    --accent-color: #5aafff;
    --text-primary: #222222;
    --text-secondary: #717171;
    --background: #FFFFFF;
    --background-secondary: #F7F7F7;
    --background-tertiary: #FFF5F5;
    --border-color: #DDDDDD;
    --card-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --font-size-small: 12px;
    --font-size-large: 18px;
    --font-size-h1: clamp(32px, 5vw, 56px);
    --font-size-h2: clamp(24px, 3vw, 40px);
    --font-size-h3: clamp(20px, 2.5vw, 28px);

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 80px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
}

.container_header {
    width: 100%;
    justify-content: space-between;
}

.container {
    max-width: 1200px;

    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-white,
.cta-button {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-base);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary1 {
    padding: 0;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-base);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

}


.btn-primary,
.cta-button {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover,
.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 56, 92, 0.2);
}

.btn-secondary {
    background: var(--background-secondary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--border-color);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

.btn-primary1 img {
    width: 150px;
    height: 50px;

}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    width: 100%;
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
}

.header-hide {
    transform: translateY(-100%);
}


.navbar {
    padding: var(--spacing-sm) 0;
    width: 100%;
}

.nav-wrapper {
    display: flex;
    align-items: center;

    text-align: center;
}

.logo {
    width: 70%;
    display: flex;
    justify-content: space-around;
    /* gap:1rem; */
    align-items: center;
}

.logo img {
    height: 70px;
    padding-left: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    /* gap: var(--spacing-lg); */
    gap: 26px;
    /* margin: 0 100px; */
    justify-content: flex-end;
    /* or space-between */
    flex-wrap: nowrap;
    /* prevent wrapping */
    font-size: 17px;
    align-items: center;
}

.action {
    margin: 0 70px;
}

/* .nav-menu a {
    font-weight: 500;
    color: var(--text-primary);
}

.nav-menu a:hover {
    color: var(--primary-color);
} */
.nav-menu a {
    width: fit-content;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;

}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 50%;
    /*startatcenter*/
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #08304a;
    /*underlinecolor*/
    transition: all 0.3s ease;
    transform: translateX(-50%);
    /* keep it centered */
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
    /* expands smoothly to both sides */
}

@media(max-width:1285px) {
    .nav-menu a {
        font-size: 15px;
    }

    .cta-button {
        padding: 8px 16px;
        border-radius: var(--radius-md);
        font-weight: 400;
        font-size: 15px;


    }
}

@media(max-width:1180px) {
    .nav-menu a {
        font-size: 11px;
    }
    .cta-button {
        padding: 3px 5px;
        border-radius: var(--radius-md);
        font-weight: 400;
        font-size: 15px;


    }
}

@media(max-width:1030px) {
    .cta-button {
        padding: 3px 5px;
        border-radius: var(--radius-md);
        font-weight: 400;
        font-size: 12px;


    }
}

@media(max-width:980px) {
    .cta-button {
        padding: 3px 5px;
        border-radius: var(--radius-md);
        font-weight: 400;
        font-size: 10px;


    }
}



.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}



/* Hero Section */
/* General Reset */

/* Hero Section */



.hero-sec {
    height: 80vh;
    width: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('images/app_hero.jpg');
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
    align-content: center;
    padding: auto;
    ;
}

.hero-sec div {

    height: 100%;
    width: 100%;


}

.hero-content {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
    justify-items: center;
    /* padding-top: 10%;
    padding-bottom: 10%; */

}

.hero-image {
    height: 100%;
    width: 100%;

}

#img_hero {
    filter: drop-shadow(0 4px 8px #000000);
    height: 90%;
    width: 99.50%;
    margin-top: 10px;
    animation: float 4s ease-in-out infinite;
}

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

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

    100% {
        transform: translateY(0px);
        /* back to normal */
    }
}

/* .hero-content {
    flex: 1;
    min-width: 300px;
    color: black;
} */

.hero-title {
    color: black;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 8%;
    line-height: 1.2;
}

.hero-subtitle {
    color: black;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

.playstore {
    height: fit-content;
    max-height: fit-content;
    width: 100%;
    display: flex;
    place-content: center;
    gap: 25px;
}

.playstore button a img {
    height: 100%;
    width: 100%;
}

.playstore button {
    height: 50px;
    width: 180px;
    background-color: #05314e;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.playstore button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 56, 92, 0.2);
}

.st {
    font-size: 19px;
}

/* ---------------- RESPONSIVE ---------------- */

/* Large tablets / small laptops */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    #img_hero {
        width: 80%;
        height: auto;
    }
}

/* Tablets & Mobiles */
@media screen and (max-width: 900px) {
    .hero-sec {
        grid-template-columns: 1fr;
        height: auto;
        /* let content decide height */
        min-height: 50vh;
        /* ensure full screen on first load */
        background-size: cover;
        /* cover full screen */
        background-position: center;
        /* center the image */
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content {
        padding: 20px 10px;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-image {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    #img_hero {
        width: 70%;
        height: auto;
    }

    .playstore {
        flex-direction: row;
        gap: 20px;
    }

    .playstore button {
        height: 50px;
        width: 140px;
    }
}

/* Small Mobiles */
@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    #img_hero {
        width: 90%;
    }
}






/* Stats Section */
.stats-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-secondary);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-xl);
    align-items: center;
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}

.stat-card h2 {
    font-size: var(--font-size-h1);
    color: var(--primary-color);
}

.stars {
    color: #FFD700;
    font-size: 24px;
    margin: var(--spacing-sm) 0;
}

.trust-text h3 {
    margin-bottom: var(--spacing-md);
}

.brand-logos {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.brand-logos img {
    height: 40px;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.brand-logos img:hover {
    opacity: 1;
}

/* Features Section */
.features-section {
    padding: var(--spacing-xs) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: var(--font-size-h2);
    margin-bottom: var(--spacing-md);
}

.section-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-large);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    text-align: center;

}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 3px 20px rgba(1, 2, 0, 5.15);
    border: none;

}

.feature-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-secondary);
}

/* Product Showcase */
.product-showcase {
    padding: var(--spacing-xs) 0;
    background: var(--background-secondary);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.showcase-content h2 {
    font-size: var(--font-size-h2);
    margin-bottom: var(--spacing-md);
}

.feature-list {
    list-style: none;
    margin: var(--spacing-lg) 0;
}

.feature-list li {
    padding: var(--spacing-sm) 0;
    font-size: var(--font-size-large);
}

.showcase-image img {
    border-radius: var(--radius-lg);

}

/* Software Features */
.software-features {
    padding: var(--spacing-xxl) 0;
    padding-top: var(--spacing-xs);
}

.features-tabs {
    margin-top: var(--spacing-xl);
}

.tab-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    background: none;
    border: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.tab-info ul {
    list-style: none;
    margin-top: var(--spacing-md);
}

.tab-info li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
}

/* Video Section */
.video-section {
    padding: var(--spacing-sm) 0;
    background: var(--background-secondary);
}

.video-wrapper {
    text-align: center;
}

.video-wrapper h2 {
    font-size: var(--font-size-h2);
    margin-bottom: var(--spacing-lg);
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-hover-shadow);
}

.video-container video {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}


.cal_price {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    gap: 0px;
    width: 100%;




}

.price {
    font-size: var(--font-size-h1);
    font-weight: 700;
    /* margin-bottom: var(--spacing-xs) 0; */
    color: var(--primary-color);
}

/* 
.actual_price {
    text-decoration: line-through;
    font-size: var(--font-size-h3);

    text-align: left;

} */
.price_master_price_month {
    font-size: var(--font-size-base);
    text-align: left;
    padding: 10px;
    font-weight: bold;
    color: var(--text-secondary);
    max-height: 10px;
    margin-top: 10px;


}
@media(max-width:600px){
    .price_master_price_month{
        font-size: 15px;
    }
}

.price_master_price_year {

    text-align: left;
    font-size: var(--font-size-h2);
    font-weight: bold;
    color: var(--primary-color);
    max-height: 25px;
    margin-top: -10px;
}

.price_master_price_year small {
    font-size: var(--font-size-base);
}



@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.85;
    }

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



/* FAQ Section */
/* FAQ Section Styles */
.faq-section {
    padding: 50px 20px;
    background: #f9f9f9;
}

.faq-section .section-header h2 {
    text-align: center;
    color: #08304a;
    /* primary color */
    margin-bottom: 30px;
    font-size: 2rem;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background: #08304a;
    /* primary color */
    color: #fff;
}

.faq-question h3 {
    font-size: 1rem;
    margin: 0;
}

.faq-question .toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 15px 0;
    color: #333;
    font-size: 0.95rem;
    font-weight: bold;
}

/* When Active */
.faq-item.active .faq-answer {
    max-height: 200px;
    /* enough to show content */
    padding: 15px 20px;
}

.faq-item.active .faq-question .toggle {
    transform: rotate(45deg);
    /* change + to x */
    color: #1ca4ac;
    /* secondary color */
}

/* Responsive */
@media (max-width: 600px) {
    .faq-section {
        padding: 30px 10px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }
}



/* CTA Section */
.cta-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: var(--font-size-h1);
    margin-bottom: var(--spacing-md);
}

.cta-wrapper p {
    font-size: var(--font-size-large);
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* Footer */
.footer {
    box-shadow: var(--card-shadow);
    background: #FFFFFF;
    color: #333;
    /* padding: var(--spacing-xs) 0; */
    padding-bottom: 0px;
    padding-top: 20px;
}
.container_footer {
    /* max-width: 100px;; */
   
    
 
    padding: 0 var(--spacing-md); 
}
.container_footer1{
    display: flex;
    gap:20px;

}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
    gap: var(--spacing-md);
    /* margin-bottom: var(--spacing-xl); */
}
.footer-col1{
    width:30%;
}


.footer-logo {
    height: 60px;
    margin-bottom: var(--spacing-md);
}

.footer-col h4 {
    margin-bottom: var(--spacing-md);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    /* padding: var(--spacing-xs) 0; */
}

.footer-col a {
    color: rgb(15, 1, 1);

}

.footer-col a:hover {
    color: #15486b;

}

.social-links {
    color: #000000;
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition-fast);
    -webkit-filter: brightness(0) invert(1);
}

.social-links img:hover {
    opacity: 1;
}

.footer-bottom {
    /* padding-top: var(--spacing-lg); */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
}
.footer-bottom2{
    background-color: #666;
    text-align: center;
    color: white;
} 
.footer-bottom p{
    
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: rgba(12, 12, 12, 0.7);
}

@media(max-width:450px){
    /* .footer-grid {
     gap:var(--spacing-md);
    } */

    .footer-col h4 {
    margin-bottom: var(--spacing-xs);
}
    .footer-col li {
    padding: 5px;
}
    .footer-col h4{
        font-size: 18px;
    }
    .footer-col a{

        font-size: 15px;
    }
    .footer-bottom p{
        font-size: 12px;;
    }
    .footer-bottom a{
        font-size: 12px;
    }
}



/* Responsive Design */
@media (max-width:1000px) {
    .hamburger {
        display: flex;
        margin-left: 50px;
    }

    .nav-menu {
        position: fixed;
        left: -125%;
        top: 90px;
        flex-direction: column;
        background-color: white;
        width: 80%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: var(--spacing-lg);
    }

    .nav-menu a {
        font-size: 14px;
        width: fit-content;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-grid,
    .showcase-grid,
    .tab-grid {
        grid-template-columns: 1fr;
    }


    .stats-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }
    .container_footer1{
        display: flex;
        flex-direction: column;
        align-items: center;
  
    }

    .footer-col1{
    width:70%;

}


 

    .footer-bottom {
        display: flex;
        /* flex-direction: column; */
        gap: var(--spacing-mxs);
        text-align: center;
    }
}

/* Software Features - Responsive */
@media (max-width: 768px) {
    .footer-col1{
        width:100%;
    }
       .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .features-tabs {
        margin-top: var(--spacing-md);
    }

    .tab-buttons {
        flex-direction: column;
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-md);
    }

    .tab-btn {
        width: 100%;
        text-align: left;
        padding: var(--spacing-sm);
        font-size: var(--font-size-small);
    }

    .tab-btn.active::after {
        bottom: 0;
        left: 0;
        right: auto;
        width: 4px;
        height: 100%;
    }

    .tab-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .tab-info ul {
        margin-top: var(--spacing-sm);
    }

    .tab-info li {
        padding: var(--spacing-xs) 0;
        font-size: var(--font-size-small);
    }
}



.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-pane.active {
    display: block;
}

.tab-btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    /*background: #eee;
    */
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;

}

.tab-btn.active {
    background-color: white;
    color: black;
}

.tab-grid {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.tab-info {
    flex: 1;
}

.tab-image {
    height: 320px;
    width: 500px;
}

.tab-image img {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

}

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

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


/* Responsive for Tablets */
@media (max-width: 992px) {
    .nav-menu {
        gap: 10px;
    }

    .software-features .tab-grid {
        flex-direction: column;
        text-align: center;
    }

    .software-features .tab-info {
        order: 2;
    }

    .software-features .tab-image {
        order: 1;
        width: 90%;
        height: auto;
    }

    .tab-image img {
        width: 100%
    }

    .software-features .tab-info h3 {
        font-size: 1.3rem;
    }
}

/* Responsive for Mobiles */
@media (max-width: 576px) {
    .software-features .section-header h2 {
        font-size: 1.6rem;
    }

    .software-features .tab-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .software-features .tab-btn {
        width: 100%;
        max-width: 250px;
        padding: 10px;
        font-size: 0.9rem;
    }

    .software-features .tab-info h3 {
        font-size: 1.2rem;
    }

    .software-features .tab-info p,
    .software-features .tab-info ul {
        font-size: 0.9rem;
    }
}

@media(max-width:1300px) {
    .nav-menu {
        display: flex;
        gap: 18px;
    }
}

@media(max-width:1080px) {
    .nav-menu {
        gap: 14px;
    }
}

@media(max-width: 1050px) {
    .nav-menu {
        gap: 13px;
    }

}

@media(max-width:1040px) {
    .nav-menu {
        gap: 12px;
    }
}

@media(max-width:1024px) {
    .nav-menu {
        gap: 11px;
    }
}

@media(max-width:1000px) {
    .nav-menu {
        gap: 8px;
    }
}









.offers-section {
    width: 100%;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.offers-container {
    display: flex;
    width: max-content;
    animation: scrollLoop 30s linear infinite;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.offer-card {
    flex: 0 0 320px;
    max-width: 320px;
    height: 200px;
    margin: 0 10px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.offer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
}

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

.offer-card h2,
.offer-card p {
    position: relative;
    z-index: 1;
}

.offer-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffcc00;
}

.offer-card p {
    font-size: 15px;
    line-height: 1.4;
    color: #eee;
    padding: 0 10px;
    font-weight: bold;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

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

/* Responsive */
@media (max-width: 768px) {
    .offers-container {
        animation: none !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;

    }

    .offer-card {
        flex: 0 0 250px;
        max-width: 250px;
        height: 180px;
    }
}

.head_offers {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.head_offers:hover {
    text-transform: scale(1.05);
}




#bill_barcode {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}

@media(max-width:768px) {
    #bill_barcode {
        width: auto;
        height: auto;
    }
}


/* success stories */
/* Main container */

/* =============================
   Section Wrapper & Container
   ============================= */
.success-stories {
    padding: 40px 0;
    background-color: #f9f9f9;
    position: relative;
    width: 100%;
}

.containerr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* =============================
   Section Header
   ============================= */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 30px;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

/* =============================
   Carousel Wrapper
   ============================= */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0;
    /* no padding so arrows align exactly with cards */
}

/* =============================
   Scrollable Cards
   ============================= */
.stories-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
    /* Firefox */
}

.stories-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* =============================
   Each Story Card
   ============================= */
.story-card {
    flex: 0 0 calc(33.333% - 13.33px);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    min-width: 300px;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;

}

.card img {
    height: 70%;
}

/* .card {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-rows: 60% 40%;
} */

.story-card:hover {
    transform: translateY(-4px);
}

.story-card img {
    width: 100%;
    height: auto;
}

.story-content {
    padding: 16px;
}

.story-content h3 {
    font-size: 23px;
    color: #003366;
    margin-bottom: 10px;
}

.story-content p {
    font-size: 15px;
    color: #444;
}

/* =============================
   Author Info
   ============================= */
.author {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.author strong {
    font-size: 14px;
    color: #111;
    display: block;
}

.author span {
    font-size: 13px;
    color: #777;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 4;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.left-btn {
    left: 0px;
    /* Adjust if needed */
}

.right-btn {
    right: 0px;
}

/* =============================
   Responsive Adjustments
   ============================= */
@media screen and (max-width: 992px) {
    .story-card {
        flex: 0 0 calc(50% - 10px);
    }

    .carousel-btn {
        font-size: 24px;
        padding: 8px 10px;
    }
}

@media screen and (max-width: 600px) {
    .story-card {
        flex: 0 0 100%;
    }

    .carousel-btn {
        font-size: 22px;
        padding: 6px 8px;
    }

    .left-btn {
        left: 10px;
    }

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

/* price section */

.section-header {
    margin-top: 20px;
}

.price_master_section {
    padding: 50px 20px;
    padding-top: 0px;
    ;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease-in-out;
}

.price_master_card {
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 250px;
    max-width: 300px;

    width: 250px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-top: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 1px 2px 10px black;
}

.price_master_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid black;
}

.price_master_card h3 {
    font-size: 14px;
}

.price_master_title {
    font-size: 1.4rem;
    height: fit-content;
    font-weight: bold;
    /* margin-bottom: 5px; */
    color: var(--primary-color);
}


.but_price {
    background-color: transparent;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.price_master_card .but_price button {
    height: 40px;
    width: 130px;
    font-size: 16px;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 500;

}

.price_master_subtitle {
    font-size: 0.9rem;
    color: var(--gray-color);
    /* margin-bottom: 15px; */
}

.price_master_original {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--gray-color);
    height: 10px;
    ;

}


.price_master_price {
    font-size: 1.8rem;
    font-weight: bold;
    /* margin: 10px 0; */
    color: var(--primary-color);
}



.price_master_discount {
    background: var(--secondary-color);
    color: #fff;
    font-weight: bold;
    padding: 10px 12px;
    margin-top: 15px;
    border-radius: 8px;
    display: inline-block;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

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

.top-right-icon {
    position: absolute;
    top: 10px;
    right: 0px;
    width: 35px;
    /* adjust size */
    height: 35px;
    /* adjust size */
}


.price_master_btn {
    display: inline-block;
    margin: 15px 0;
    padding: 12px 20px;
    background: var(--secondary-color);
    color: var(--light-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.price_master_btn:hover {
    background: var(--primary-color);
}

.price_master_features {

    list-style: none;
    padding: 0;

    width: 100%;
    text-align: left;
}

.price_master_features p {
    padding: 0px;
    margin-bottom: 0rem;
}

.price_master_features ul {
    gap: 5px;
}

.price_master_features li {
    /* margin-bottom: 8px; */
    padding-left: 22px;
    position: relative;
    font-size: 0.95rem;
}

.price_master_features li::before {
    content: "✔";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.price_master_features .disabled {
    color: #ccc;
    text-decoration: line-through;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@media (max-width: 768px) {
    .price_master_section {
        flex-direction: column;
        align-items: center;
    }
}

.price_master_custom_main {
    text-align: center;
    margin-top: 14px;

}

.custom_plan_section {

    width: 100%;
    ;
}

.custom_plan_section h3 {
    text-align: center;
    margin-bottom: 15px;
}

.price_master_custom {
    display: flex;
    align-items: center;
    /* margin: 10px 0; */
    border: 1px solid #ccc;
    width: 90%;
    align-items: center;
    justify-items: center;
    justify-content: center;
    height: 10%;

}

.custom_button {
    width: 15%;
    /* padding: 10px 20px; */
    cursor: pointer;
    border: none;
    background-color: var(--primary-color);
    font-size: 18px;
    justify-items: center;
    color: #f5f5f5;
}

.custom_button:hover {
    background-color: #f5f5f5;
    color: black;
}

.count {
    min-width: 150px;
    text-align: center;
    /* padding: 10px; */
    font-size: 16px;
}

.filter-form button {
    background-color: var(--primary-color);

}


section.testimonials {
    padding: 30px 0;
    background: #f8f9fa;
    text-align: center;
    position: relative;

}

.testimonial_section_header {
    padding: 20px;
    color: #05314e;
    font-size: var(--font-size-h3);

}

.testimonial_section_header h2 {
    font-size: var(--font-size-h2);
    font-weight: bold;

}

.carousel-container {
    position: relative;
    width: 90%;
    /* max-width: 1000px; */
    margin: auto;
    overflow: hidden;
}

.carousel-track {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
    gap: 10px;
}



.card {
    /* flex: 0 0 calc(33.333% - 20px); */
    margin: 0 0px;
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    min-height: 250px;
    min-width: 340px;
    border: 1px solid black;
}

.card img {
    height: 62%;
    width: auto;
}

.card h3 {
    margin: 10px 0;
    color: #0d47a1;
}

.card p {
    font-size: 14px;
    color: #333;
}

/* ✅ Buttons outside the card area */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #444;
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    z-index: 10;
}

.prev {
    left: 0;
}

/* Stick to left side of section */
.next {
    right: 0;
}

/* Stick to right side of section */

.prev:hover,
.next:hover {
    background: #0d47a1;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .carousel-track .card {
        flex: 0 0 calc(50% - 20px);
        margin-top: 20px;
        width: 80%;
        margin-left: 6px;

    }

    .testimonals {
        margin-top: -80px;
    }
}

@media (max-width: 480px) {
    .card {
        flex: 0 0 calc(100% - 20px);
        width: 90%;
    }
}

.img_para {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-right-icon_1 {
    height: 40px;
}


.dealer-card h3 {
    margin: 0 0 10px;
    color: #007bff;
}

.dealer-card p {
    margin: 4px 0;
    font-size: 14px;
}

.toast,
.alert-success {
    display: none !important;
}
@media(max-width:900px) {
    .logo img {
        margin-left: 0px;
    }
}