
 /* Navbar Styling */
 .navbar {
    background-color: #fff;
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.brand-me-badge {
    background-color: var(--primary-yellow);
    color: #000;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 2px;
    font-weight: 800;
    display: inline-block;
    transform: skew(-10deg);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    font-size: 0.95rem;
}

.nav-link.active-yellow {
    color: #ffb700 !important;
}

.nav-link i {
    font-size: 0.8rem;
    margin-left: 3px;
    color: var(--primary-yellow);
}


/* Custom CSS for Sampark UI */

.icon-btn {
    font-size: 20px;
    margin-left: 18px;
    cursor: pointer;
    color: white;
}

.flag-img {
    width: 28px;
    height: 20px;
    margin-left: 18px;
    border-radius: 3px;
}
.stat-card{
width: 100%;
height: auto
;
}
.amazon-logo-container{
background-color: white;
border-radius: 8px;
padding: 10px;

height: 60px;
width: 170px;
}
.amazon-logo-container img{
width: 100%;
height: auto;
}
.btn{
border-radius: 7px;
display: block;
}
.stat-card img{
width: 100%;
height: auto;
}
.navbar-nav .dropdown-menu {
    border-radius: 8px;
    padding: 10px;
    color: white;
}
/* 1. Hero Video Section Styling */
.hero-video-section {
height: 70vh; /* Adjust height as needed */
min-height: 450px;
background-color: #000; /* Fallback background */
}

/* Video Placeholder (use for image/background video) */
.video-placeholder {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
object-fit: cover;
}

/* Dark Overlay to make text readable */
.video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4); /* Dark transparency */
z-index: 1;
}

/* Play button appearance */
.play-button-container {
cursor: pointer;
}
.fa-circle-play {
color: white;
}

/* 3. Feature Cards Section Styling */
.icon-circle {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 1rem;
background-color: #f0f0f0; /* Light grey background */
}

.icon-circle i {
color: #343a40; /* Dark icon color */
}

/* Specific styling for the PDF icon */
.icon-bg-light-red {
background-color: #fce4e4; /* Very light red/pink background */
}

.toggle-box {
width: 100%;
max-width: 500px;

font-family: Arial, sans-serif;
}

.toggle-header {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
font-size: 20px;

padding: 10px 0;
}
.toggle-header :hover {
color: #ffcd39;
}

.arrow {
transition: transform 0.3s;
font-size: 24px;
}

/* Hide checkbox */
#toggleCheck {
display: none;
}

/* Content area */
.toggle-content {
max-height: 0;
overflow: hidden;
transition: 0.3s ease-in-out;
}

/* When clicked — show content */
#toggleCheck:checked ~ .toggle-content {
max-height: 200px;
padding: 10px 0;
}

/* Rotate arrow when opened */
#toggleCheck:checked + .toggle-header .arrow {
transform: rotate(180deg);
}
/* Hero Section */
.hero-section {
    padding: 60px 0 40px 0;
    text-align: left; 
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #343a40;
}

.hero-subheadline {
    color: var(--text-gray);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 50px;
}

/* Stats Section */
.stats-row {
    margin-top: 20px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-target { color: #d63384; } /* Pinkish */
.icon-chart { color: #6f42c1; }  /* Purple */
.icon-users { color: #d63384; }  /* Pinkish */

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 20px 0 60px 0;
}

.review-card {
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); /* Very subtle shadow */
    border-bottom: 4px solid #eef2f7; /* The colored bottom lip */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.stars {
    color: var(--primary-yellow);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-author {
    font-weight: 600;
    color: #343a40;
    font-size: 0.95rem;
}

/* Floating WhatsApp Button */
.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s;
    text-decoration: none;
}

.fab-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

/* Products Section */
.products-section {
    padding: 40px 0 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212529;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #495057;
    font-weight: 400;
}

.product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img-container {
    position: relative;
    height: 250px;
    background-color: #f8f9fa;
    overflow: hidden;
    border-radius: 12px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #000;
}

.product-price {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.btn-add-cart {
    background-color: #ffcd39;
    border: none;
    color: #000;
    width: 100%;
    padding: 12px;
    font-weight: 500;
    border-radius: 6px;
    margin-top: auto;
    transition: background-color 0.2s;
}

.btn-add-cart:hover {
    background-color: #e6c200;
}
/* Shop Button Divider */
.shop-btn-container {
    text-align: center;
    margin: 40px 0 80px 0;
}

.btn-shop-main {
    background-color: #212529;
    color: white;
    padding: 12px 60px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-shop-main:hover {
    background-color: #000;
    color: white;
}
.availability-section {
    padding: 80px 0;
    background: #fff;
}

.avail-desc-right {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 20px;
    border-left: 3px solid #e9ecef;
}

.partner-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    border: 1px solid #f8f9fa;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.partner-logo {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

/* Franchise Section */
.franchise-section {
    padding: 60px 0;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #212529;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s;
}

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

.franchise-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.franchise-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.icon-yellow { color: #ffd700; }
.icon-pink { color: #ff8fab; }

.franchise-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.franchise-item p {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.btn-franchise {
    background-color: var(--primary-yellow);
    color: black;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    transition: background 0.2s;
}

.btn-franchise:hover {
    background-color: #e6c200;
}

/* What We Do Text Section */
.what-we-do-text-section {
    text-align: center;
    padding: 40px 0 20px 0;
}

.what-we-do-headline {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Trust/Invest Section (New) */
.trust-section {
    padding: 80px 0 0 0;
    text-align: center;
    background: #fff;
}

.trust-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.trust-stat-label {
    color: #6c757d;
    font-size: 0.95rem;
}

.btn-invest {
    background-color:#ffd700;
    color: #000;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 8px;
    border: none;
    margin-top: 40px;
    margin-bottom: 60px;
    transition: background 0.2s;
}

.btn-invest:hover {
    background-color: #e6c200;
}

.trust-illustration {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
}

/* Special Points Section */
.special-points-section {
    padding: 60px 0;
}
.footer-images image{
width: 100%;
height: auto;
}
.footer-images{
width: 100%;

}
.section-label {
    font-size: 0.8rem;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.special-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.special-desc {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 350px;
}

.feature-grid-item {
    text-align: center;
    padding: 20px 10px;
}

.feature-icon {
    font-size: 2rem;
    color: #6c757d;
    margin-bottom: 15px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-size: 0.8rem;
    color: #495057;
    font-weight: 500;
    line-height: 1.4;
}

/* App Management Section */
.app-mgmt-section {
    background-color: #d5e3f2;
    padding: 80px 0;
    margin: 40px 0;
}

.app-mgmt-label {
    color: #4dabf7; 
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.app-mgmt-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.app-mgmt-text {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
}

.app-link {
    color: #e6c200;
    font-weight: 600;
    text-decoration: none;
}

.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.phone-mockup {
    width: 180px;
    background: white;
    border: 8px solid #000;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    height: 360px;
}

.phone-notch {
    background: #000;
    height: 20px;
    width: 50%;
    margin: 0 auto;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    top: 0;
    left: 25%;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding-top: 25px;
}

.app-header {
    background: #e6c200;
    padding: 10px;
    font-weight: bold;
    font-size: 0.8rem;
    text-align: center;
}

.app-list-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 0.7rem;
    display: flex;
    justify-content: space-between;
}
    /* What We Do Text Section */
.what-we-do-text-section {
    text-align: center;
    padding: 40px 0 20px 0;
}

.what-we-do-headline {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}



/* Franchise Section */
.franchise-section {
    padding: 60px 0;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #212529;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s;
}

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

.franchise-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.franchise-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.icon-yellow { color: #ffd700; }
.icon-pink { color: #ff8fab; }

.franchise-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.franchise-item p {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

.btn-franchise {
    background-color: var(--primary-yellow);
    color: black;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    transition: background 0.2s;
}

.btn-franchise:hover {
    background-color: #e6c200;
}

/* What We Do Text Section */
.what-we-do-text-section {
    text-align: center;
    padding: 40px 0 20px 0;
}

.what-we-do-headline {
    font-size: 2.2rem;
    font-weight: 700;
    color: #212529;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}
/* Availability Section */
.availability-section {
    padding: 80px 0;
    background: #fff;
}

.avail-desc-right {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 20px;
    border-left: 3px solid #e9ecef;
}

.partner-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    border: 1px solid #f8f9fa;
}
.partner-card image{
    width: 100%;
    height: auto;
}
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.partner-logo {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

 /* COLOR UTILITIES */
.text-sampark-green { color: #10b981; }
.text-sampark-pink { color: #ec4899; }
.bg-mint-light { background-color: #f0fdfa; } /* Light green background for Search */
.bg-pink-light { background-color: #fff0f5; } /* Light pink background for eTag */
.bg-sampark-yellow { background-color: #ffc107; } /* Standard Bootstrap yellow for 'Add to Cart' */
.bg-footer-dark { background-color: #212529; } /* Dark background for footer */

/* PHONE MOCKUP STYLES (Used for Search/eTag Section) */
.phone-frame-small {
    width: 8rem;
    height: 16rem;
    border: 4px solid #333;
    border-radius: 2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    position: relative;
    background-color: #000;
}
.phone-screen-small {
    background-color: white;
    border-radius: 1.5rem;
    height: 100%;
    overflow: hidden;
    font-size: 0.5rem;
    line-height: 0.75rem;
}     /* FOOTER BANNER STYLES */
.cta-banner {
    background-color: rgba(68, 68, 68, 0.8); /* Dark gray, slightly transparent */
    color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: -5rem; /* Overlap with the footer */
    position: relative;
    z-index: 10;
}

/* SVG Icon placeholders (for social media/app stores) */
.icon-small {
    width: 1.25rem;
    height: 1.25rem;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    .hero-headline { font-size: 2.5rem; }
    .stat-item { margin-bottom: 30px; }
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 10px;
        z-index: 999;
    }
}

















/* ----------------------------- */

/* HERO */
.hero-section {
height: 85vh;
background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
        url("https://images.unsplash.com/photo-1517142089942-ba376ce32a0a") center/cover no-repeat;
}

/* Feature Cards */
.ui-card {
background: #fff;
border-radius: 16px;
border: 1px solid #eee;
transition: all .3s;
}
.ui-card:hover {
transform: translateY(-6px);
box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Icons */
.icon-wrap {
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 28px;
}

/* CTA Section */
.cta-section {
background: linear-gradient(135deg, #ff4e50, #ff8a00);
}

/* Accordion improved padding */
.accordion-button {
font-weight: 600;
padding: 1rem 1.3rem;
}




/* cssssss ---------- */
.features-section {
background: #fff;
padding: 20px 0px;

}
/* GLOBAL */
body {
font-family: "Poppins", sans-serif;
background: #f8f9fb;
}

/* NAVBAR */
.navbar {
transition: 0.3s;
color: #fff;
}
.navbar-nav li a{
color: #fff; 
}
.navbar.scrolled {
background: #fff !important;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.navbar.scrolled li a{
color: #000; 
}
.navbar.scrolled li a.btn{
color: #fff; 
}

/* HERO SECTION */
.hero {
height: 95vh;
background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8)),
        url('https://images.unsplash.com/photo-1517142089942-ba376ce32a0a')
        center/cover no-repeat;
color: white;
display: flex;
align-items: center;
text-align: center;
}

/* FEATURE CARDS */
.feature-card {
background: white;
padding: 35px;
border-radius: 18px;
border: 1px solid #eee;
transition: .3s;
}
.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,0,0,0.07);
}

/* ICON CIRCLE */
.icon-box {
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 28px;
margin: 0 auto;
}

/* PRODUCT CARD */
.product-card {
background: white;
border-radius: 16px;
padding: 25px;
text-align: center;
transition: .3s;
border: 1px solid #eee;
text-decoration: none;
}
.product-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ACCORDION */
.accordion-button {
font-weight: 600;
padding: 1.1rem;
}
.accordion-button:not(.collapsed) {
background: #e9f1ff;
color: #0d6efd;
}

/* CTA SECTION */
.cta {
/* background: linear-gradient(135deg, #ff4b2b, #ff416c); */
background: #0d6efd;
color: white;
padding: 80px 0;
text-align: center;
}
.hero-slider button{
margin: 0 auto;
}
.cta button{
display: block;
margin: 0 auto;
} 
.hero-slider button .fa-circle-play{
color: #0d6efd !important;

}  
/* FOOTER */
footer {
background: #1b1c1e;
color: #eee;
padding: 50px 0;
}

.hero-slider {
height: 95vh;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: relative;
animation: slideShow 60s infinite;
}

/* DARK OVERLAY */
.hero-slider .overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.55);
z-index: 1;
}

.hero-slider .container {
z-index: 2;
}

/* 5 IMAGE SLIDER */
@keyframes slideShow {
0%   { background-image: url('../img/her-2.png'); }
100%  { background-image: url('../img//banner-2.jpg'); }
/* 100%  { background-image: url('../img/banner-1.jpg'); } */
/* 60%  { background-image: url('https://images.unsplash.com/photo-1502877338535-766e1452684a'); }
80%  { background-image: url('https://images.unsplash.com/photo-1503736334956-4c8f8e92946d'); }
100% { background-image: url('https://images.unsplash.com/photo-1517142089942-ba376ce32a0a'); } */
}





/* ================= PRODUCT CARD STYLES ================= */
.product-card {
background-color: #fff;
border-radius: 15px;
padding: 20px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
border-radius: 12px;
transition: transform 0.3s ease;
}

.product-card h5 {
margin-top: 15px;
font-size: 1.2rem;
}

.product-card p {
font-size: 0.9rem;
color: #6c757d;
margin-bottom: 15px;
}

.product-card button {
transition: all 0.3s ease;
}

.product-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.product-card button:hover {
background-color: #333;
transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
.product-card {
padding: 15px;
}
}

@media (max-width: 576px) {
.product-card h5 {
font-size: 1rem;
}

.product-card p {
font-size: 0.85rem;
}
}




/* ================== AVAILABILITY SECTION ================== */

.availability h2 {
letter-spacing: 2px;
font-weight: 600;
}

.availability .card {
border: none;
border-radius: 18px;
transition: all 0.3s ease;
background: #ffffff;
padding: 25px;
}

.availability .card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.availability .card img {
max-height: 60px;
object-fit: contain;
transition: transform 0.3s ease;
}

.availability .card:hover img {
transform: scale(1.08);
}

/* Smooth fade-in animation */
.availability .card {
opacity: 0;
animation: fadeInUp 0.6s ease forwards;
}

.availability .card:nth-child(1) { animation-delay: 0.1s; }
.availability .card:nth-child(2) { animation-delay: 0.2s; }
.availability .card:nth-child(3) { animation-delay: 0.3s; }
.availability .card:nth-child(4) { animation-delay: 0.4s; }
.availability .card:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
from { opacity: 0; transform: translateY(15px); }
to   { opacity: 1; transform: translateY(0); }
}

/* Responsive logo size */
@media (max-width: 768px) {
.availability .card img {
max-height: 50px;
}

.availability .card {
padding: 18px;
}
}

section.availability.py-15 {
padding: 100px 0px;
background: #eee;
}
.availability h3.display-5 {
font-weight: 500;
font-size: 36px;
margin-bottom: 100px !important;
}
.availability  .lead{
font-size: 20px;
line-height: 1.5;
}



.shop .shop-header {
padding: 60px 0 30px;
text-align: center;
}
.shop .product-card img {
width: 100%;
height: 220px;
object-fit: cover;
border-radius: 6px;
}
.shop .product-card {
transition: 0.3s ease;
}
.shop .product-card:hover {
transform: translateY(-5px);
}
.shop .features-section {
background: #fff;
padding: 40px 0;
margin-top: 30px;
}
.shop .cta-bar {
background: #333;
color: #fff;
padding: 25px;
border-radius: 8px;
}

.shop .hero-section {
height: 55vh;
background: linear-gradient(135deg, #000428, #004e92);
padding: 60px 0;
}
.shop .hero-section .btn{
width: 300px;
margin: 0 auto;
}

/* Hero Section */
.privacy-hero {
height: 35vh;
background: linear-gradient(135deg, #1f1c2c, #928dab);
}

/* Content Box Container */
.policy-container {
max-width: 850px;
margin-top: -60px; 
}

/* Great typography */
.policy-container h2, 
.policy-container h3 {
color: #333;
}

/* Improve readability */
.policy-container p, 
.policy-container li {
font-size: 16px;
line-height: 1.7;
}

/* Better spacing for cards */
.policy-container .card {
border-radius: 12px;
}

/* Soft hover effect */
.policy-container .card:hover {
background: #fafafa;
transition: 0.2s ease-in-out;
}

/* about us page */

/* Hero Section */
/* .hero {
position: relative;
background: url('https://source.unsplash.com/1600x700/?parking,city') no-repeat center center;
background-size: cover;
height: 70vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-align: center;
}
.hero::after {
content: '';
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0,0,0,0.5);
}
.hero h1 {
position: relative;
font-size: 4rem;
font-weight: 700;
z-index: 1;
}
.hero p {
position: relative;
font-size: 1.25rem;
z-index: 1;
} */

.about .hero-section {
height: 55vh;
background: linear-gradient(135deg, #000428, #004e92);
padding: 60px 0;
}
.about .hero-section .btn{
width: 300px;
margin: 0 auto;
}
/* Section Styling */
.about section {
padding: 80px 20px;
}
.about  .section-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 50px;
text-align: center;
}

/* Features Section */
.about .feature-card {
border: none;
background: #fff;
text-align: center;
padding: 30px 20px;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
transition: transform 0.3s, box-shadow 0.3s;
}
.about .feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.about .feature-card i {
font-size: 3rem;
color: #0d6efd;
margin-bottom: 20px;
}

/* Team Section */
.about .team img {
border-radius: 50%;
width: 150px;
height: 150px;
object-fit: cover;
margin-bottom: 15px;
transition: transform 0.3s;
}
.about  .team img:hover {
transform: scale(1.1);
}

/* Testimonials */
.about .testimonial-card {
background: #fff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
transition: transform 0.3s, box-shadow 0.3s;
text-align: center;
}
.about  .testimonial-card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.about  .testimonial-card img {
width: 80px;
height: 80px;
border-radius: 50%;
margin-bottom: 15px;
}

/* CTA Section */
.about .cta {
background: #0d6efd;
color: white;
text-align: center;
padding: 60px 20px;
}
.about  .cta a {
font-size: 1.25rem;
padding: 12px 35px;
border-radius: 50px;
width: 300px;
margin: 0 auto;
}
.about    .gradient-card {
background: linear-gradient(135deg, #0d6efd, #6610f2);
border-radius: 20px;
transition: transform 0.3s, box-shadow 0.3s;
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.about   .gradient-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.about   .gradient-card i {
color: #fff;
}

.about   .gradient-card p {
font-size: 20px;
}
.about   .gradient-card h5 {
font-size: 30px;
}
.about .mission .card-body{
padding: 50px;
}
.about .cta-bar {
background: #333;
color: #fff;
padding: 25px;
border-radius: 8px;
}
.about .features-section {
background: #fff;
padding: 40px 0;
margin-top: 0px;
}
@media (max-width: 768px) {
.about  .gradient-card {
margin-bottom: 20px;
}
}


/* footer css */

/* Footer Styles */
.footer {
background-color: #222;
color: #fff;
padding: 60px 20px;
}

.footer-container {
display: flex;
flex-wrap: wrap;
max-width: 1200px;
margin: auto;
gap: 20px;
}

.footer-column {
flex: 1;
min-width: 200px;
}

.footer h4 {
margin-bottom: 20px;
font-size: 18px;
color: #f8f8f8;
}

.footer a {
display: block;
color: #ccc;
text-decoration: none;
margin-bottom: 10px;
transition: color 0.3s;
}

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

.footer p {
color: #ccc;
line-height: 1.6;
}

/* Social Icons */
.social-icons a {
display: inline-block;
margin-right: 10px;
color: #ccc;
font-size: 18px;
transition: color 0.3s;
}

.social-icons a:hover {
color: #ff6600;
}

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

.footer-column {
margin-bottom: 30px;
}
}


/* contact us */

/* Section Heading */
.contact-header {
text-align: center;
padding: 60px 20px 20px;
}

.contact-header h1 {
font-size: 48px;
font-weight: 700;
background: linear-gradient(90deg, #ff6600, #ff9933);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.contact-header p {
margin-top: 10px;
font-size: 18px;
color: #555;
}

/* Contact Container */
.contact-container {
max-width: 1200px;
margin: 40px auto;
display: flex;
flex-wrap: wrap;
gap: 40px;
padding: 0 20px;
justify-content: center;
}

/* Contact Info */
.contact-info {
flex: 1;
min-width: 300px;
background: #fff;
padding: 40px 30px;
border-radius: 15px;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
transition: transform 0.3s;
}

.contact-info:hover {
transform: translateY(-10px);
}

.contact-info h3 {
color: #ff6600;
margin-bottom: 20px;
font-size: 24px;
}

.contact-info p {
margin-bottom: 15px;
line-height: 1.7;
}

/* Contact Form */
.contact .contact-form {
flex: 1;
min-width: 300px;
background: #fff;
padding: 40px 30px;
border-radius: 15px;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
transition: transform 0.3s;
}

.contact  .contact-form:hover {
transform: translateY(-10px);
}

.contact  .contact-form h3 {
color: #ff6600;
margin-bottom: 30px;
font-size: 24px;
}

/* Floating Labels */
.contact  .form-group {
position: relative;
margin-bottom: 25px;
}

.contact  .form-group input,
.contact .form-group textarea {
width: 100%;
padding: 15px;
border: 1px solid #ddd;
border-radius: 8px;
font-size: 16px;
outline: none;
transition: border 0.3s;
}

.contact .form-group input:focus,
.contact  .form-group textarea:focus {
border: 2px solid #ff6600;
}

.contact  .form-group label {
position: absolute;
top: 50%;
left: 15px;
color: #999;
transform: translateY(-50%);
background: #fff;
padding: 0 5px;
pointer-events: none;
transition: 0.3s;
}

.contact .form-group input:focus + label,
.contact  .form-group input:not(:placeholder-shown) + label,
.contact  .form-group textarea:focus + label,
.contact.form-group textarea:not(:placeholder-shown) + label {
top: -10px;
left: 10px;
color: #ff6600;
font-size: 12px;
}

.contact .contact-form button {
width: 100%;
padding: 15px;
background: linear-gradient(90deg, #ff6600, #ff9933);
border: none;
color: #fff;
font-size: 16px;
border-radius: 10px;
cursor: pointer;
transition: 0.3s;
}

.contact  .contact-form button:hover {
background: linear-gradient(90deg, #ff9933, #ff6600);
}

/* Map */
.contact  .map-container {
margin-top: 50px;
width: 100%;
height: 450px;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.contact .cta-bar {
background: #333;
color: #fff;
padding: 25px;
border-radius: 8px;
}
.contact .features-section {
background: #fff;
padding: 40px 0;
margin-top: 0px;
}
.contact  .map-container iframe {
width: 100%;
height: 100%;
border: 0;
}
.contact .hero-section {
height: 55vh;
background: linear-gradient(135deg, #000428, #004e92);
padding: 60px 0;
}
.contact .hero-section .btn{
width: 300px;
margin: 0 auto;
}
/* Responsive */
@media (max-width: 768px) {
.contact  .contact-container {
flex-direction: column;
align-items: center;
}
}

.navbar.scrolled {
transition: 0.3s;
color: #000;
}

.navbar a.navbar-brand.fw-bold.fs-4.text-dark {
color: #fff !important;
}
.navbar.scrolled a.navbar-brand.fw-bold.fs-4.text-dark {
color: #000 !important;
}

.about-section {
background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.about-card {
background: #ffffff;
border-radius: 16px;
padding: 30px 20px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
transform: translateY(-6px);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-card .icon {
font-size: 40px;
}

.feature-card {
background: #ffffff;
padding: 30px 20px;
border-radius: 16px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
}

.feature-card:hover {
transform: translateY(-6px);
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
width: 70px;
height: 70px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 28px;
margin: auto;
}

section.hero-slider.d-flex.align-items-center h1 {
color: #fff;
}

section.cta h2 {
color: #fff;
}

.mission h5 {
color: #fff;
}

.hero-section h1 {
color: #fff;
}
.contact a{
display: inline-block;
margin-bottom: 0px;
}

.half-text {
    max-height: 3.2em;
    overflow: hidden;
}

.full-text {
  max-height: unset;
}

.bg-dark {
    transition: 0.3s;
    color: #000;
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.bg-dark a.navbar-brand.fw-bold.fs-4.text-dark {
    color: #000 !important;
}

i.failed-icon {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 50px;
    color: red;
    margin-left: 30px;
}
