html, body {
overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* All headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Familjen Grotesk', sans-serif;
}
/* ===============================
   SIMPLE IMAGE SLIDER (ONLY IMAGES)
================================ */
.hero-slider-section {
    width: 100%;
}
.hero-slider-section .carousel-item img {
    width:100%;
    /*height:550px;*/
    object-fit:cover;
}
/* Smooth fade effect */
.carousel-fade .carousel-item {
    transition: opacity 1s ease-in-out;
}
/* Responsive Slider */
@media (max-width: 992px) {
    .hero-slider-section .carousel-item img {
        height: 300px;
    }
}

/* ===============================
   WHY SECTION
================================ */

/* Section */
.why-section {
    background: white; 
}

/* Title */
.section-title {
    font-weight: 700;
    color: #0d3b66;
}

/* Card */
.why-box {
    background: #ffffff;
    padding-bottom: 40px;
    position: relative;
    height: 100%;
    overflow: visible;
    border-radius: 10px;

    /* Better shadow */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

/* Hover effect (optional but recommended) */
.why-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* Top Blue Strip */
.why-top-bg {
    background: #88c9ec;
    height: 80px;
}

/* Icon Overlap */
.why-icon {
    width: 70px;
    height: 70px;
    background: #0d3b66;
    border-radius: 50%;
    border: 6px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 45px;
    z-index: 2;
}

.why-icon i {
    color: #ffffff;
    font-size: 26px;
}

/* Content */
.why-content {
    padding: 70px 20px 0;
}

.why-content h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.why-content p {
    font-size: 14px;
    color: #666;
    max-width: 250px;
    margin: 0 auto;
}

/* Bottom Line */
.why-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #88c9ec;
}

.md-cta-about{
background:#eef6ff;
padding:40px 0;
}

.md-cta-box{
max-width:800px;
margin:auto;
text-align:center;
}

.md-cta-title{
font-size:36px;
font-weight:700;
color:#0d3b66;
margin-bottom:20px;
}

.md-cta-text{
font-size:18px;
line-height:1.7;
color:#444;
}

/* Mobile */

@media (max-width:768px){

.md-cta-about{
    padding: 33px 15px 15px;
}

.md-cta-title{
font-size:28px;
}

.md-cta-text{
font-size:15px;
}

}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1f5ab6;
    color: #fff;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #174a96;
    color: #fff;
}
/* Responsive */
@media (max-width: 768px) {
    .why-content p {
        max-width: 100%;
    }
}
/* ===============================
   MODERN ABOUT SECTION
================================ */

.about-pro-section {
    background: linear-gradient(135deg, #f4f8ff, #ffffff);
    padding: 100px 0;
}

/* Tag */
.about-tag {
    color: #0d3b66;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
}

/* Heading */
.about-heading {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0 20px;
    color: #111;
}

.about-heading span {
    color: #1f5ab6;
}

/* Paragraph */
.about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Feature Card */
.about-feature-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(13, 59, 102, 0.08);
    transition: 0.3s ease;
}

.about-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 59, 102, 0.15);
}

.about-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d3b66, #1f5ab6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.about-feature-box h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111;
}

.about-feature-box p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Button */
.about-btn {
    background: #1f5ab6;
    color: #fff;
    padding: 13px 32px;
    font-weight: 600;
    text-decoration: none;
    width:100%;  
    transition: 0.3s ease;
    border-radius:0px;
}

.about-btn:hover {
    background: #174a96;
    color: #fff;
}

/* Image Styling */
.about-image-wrapper {
    overflow: hidden;
    /* box-shadow: 0 20px 45px rgba(13, 59, 102, 0.15); */
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .about-heading {
        font-size: 20px;
    }
    .about-pro-section {
        padding: 20px 20px 50px;
    }
}
@media (max-width: 576px){
        .about-pro-section {
        padding: 26px 0px 50px;
        margin-top: 35px;
    }
}
/* ===============================
   PROFESSIONAL SERVICES SECTION
================================ */

.services-pro {
    background: #0d3b66; 
    padding: 100px 0;
    color: #ffffff;
   
}

/* Small Tag */
.services-mini-title {
    color: #8fd3ff;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-left: 50px;
}

.services-mini-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: #8fd3ff;
}

/* Main Heading */
.services-main-heading {
    font-size: 40px;
    font-weight: 700;
    margin-top: 15px;
}

/* Right Description */
.services-description {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

/* Cards */
.service-pro-card {
    background: linear-gradient(145deg, #112e4e, #0b223a);
    padding: 40px 30px;

    transition: 0.4s ease;
    height: 100%;
}

.service-pro-card i {
    font-size: 38px;
    color: #8fd3ff;
    margin-bottom: 20px;
    display: inline-block;
}

.service-pro-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.service-pro-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

/* Learn More */
.service-pro-card a {
    color: #8fd3ff;
    text-decoration: none;
    font-weight: 500;
}

.service-pro-card:hover {
    transform: translateY(-8px);
}

/* Responsive */
@media (max-width: 991px) {
    .services-main-heading {
        font-size: 27px;
    }
    .services-pro {
    padding: 30px 10px;
    
}
}
/* ===============================
   ADVANTAGES SECTION
================================ */

.adv-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.adv-heading {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.adv-heading span {
    color: #1f5ab6;
}

/* Image */

.adv-image img {
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 570px;
    object-fit:cover;
}

/* Advantage Box */

.adv-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.adv-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Icon */

.adv-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(31, 90, 182, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-icon i {
    font-size: 22px;
    color: #1f5ab6;
}

/* Text */

.adv-item h5 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.adv-item p {
    margin: 0;
    font-size: 0.92rem;
    color: #555;
}

/* MOBILE */

@media (max-width: 991px){

.adv-section{
padding:60px 0;
}

.adv-heading{
font-size:2rem;
}

}

@media (max-width: 576px){

.adv-item{
flex-direction:column;
align-items:center;
text-align:center;
padding:20px;
}

.adv-icon{
margin-bottom:10px;
}
.adv-image img{height: auto;}
.adv-section{padding:20px 0;}

}
/* ===============================
   SIMPLE CTA IMAGE
================================ */

.cta-image-section {
    width: 100%;
    overflow: hidden;
  
}

.cta-image-section img {
    width: 100%;
    height: auto;
    display: block;
     padding-top:40px;
    
}


/* ===============================
   MODERN COMPARISON SECTION
================================ */

.comparison-section {
    padding: 50px 0;
    background: #f4f8ff;
}

.comparison-heading {
    font-size: 40px;
    font-weight: 700;
}

.comparison-heading span {
    color: #1f5ab6;
}

.comparison-sub {
    color: #666;
    font-size: 15px;
    margin-top: 10px;
}

/* Card */
.compare-card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    height: 100%;
}

/* Highlight MediDrape */
.highlight-card {
    border: 2px solid #1f5ab6;
}

/* Header */
.compare-header {
    padding: 18px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
    color: #fff;
}

.medidrape-bg {
    background: #1f5ab6;
}

.other-bg {
    background: #6c757d;
}

/* Body */
.compare-body {
    padding: 35px;
}

.compare-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.compare-item:last-child {
    border-bottom: none;
}

/* Icons */
.success {
    color: #0d3b66;
    font-size: 18px;
}

.danger {
    color: #dc3545;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .comparison-heading {
        font-size: 28px;
    }

    .compare-body {
        padding: 25px;
    }
}
/* ===============================
   PREMIUM TESTIMONIAL SECTION
================================ */

.testimonial-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0d3b66, #1f5ab6);
    color: #fff;
}

.testimonial-heading {
    font-size: 42px;
    font-weight: 700;
}

.testimonial-heading span {
    color: #ffffff;
}

/* Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.12);
   padding:50px;
border-radius:30px;
    backdrop-filter: blur(12px);
    height: 100%;
}


/* Quote icon */
.quote-icon {
    font-size: 28px;
    margin-bottom: 15px;
    opacity: 0.6;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-card h6 {
    font-weight: 600;
    margin: 0;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-heading {
        font-size: 30px;
    }
}
/* ===============================
   TESTIMONIAL SLIDER FUNCTIONALITY
================================ */

.testimonial-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

.testimonial-item{
    min-width: calc(33.333% - 20px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #1f5ab6;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 10;
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

@media(max-width: 768px){
    .testimonial-item{
        min-width: 100%;
    }
    .testimonial-section{
        padding: 30px 20px;
    }
    .testimonial-card{padding:20px 30px;}
}

/* ===============================
   TOP FEATURE STRIP
================================ */
.top-feature-strip {
    background: #f8f9fa;
    padding: 40px 0 40px;
}

.top-feature-strip .container {
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    padding: 25px 20px;
}

.feature-item {
    position: relative;
}

.feature-content {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;           /* Desktop: center */
}

.feature-content i {
    font-size: 32px;
    color: #2b6edb;
    flex-shrink: 0;
}

.feature-content div {
    text-align: left;
}

.feature-content h6 {
    font-weight: 600;
    margin: 0 0 4px;
    font-size: 16px;
    color: #222;
}

.feature-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Desktop vertical divider */
@media (min-width: 992px) {
    .border-lg-start {
        border-left: 1px solid #e3e3e3;
    }
}

/* Mobile: LEFT ALIGN only */
@media (max-width: 991px) {
    .top-feature-strip {
        padding: 25px 0 45px;
    }
    .feature-content {
        justify-content: flex-start;    /* ← Left align on mobile */
        padding-left: 10px;
    }
    .feature-item {
        margin-bottom: 24px;
    }
    .feature-item:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .feature-content i {
        font-size: 28px;
    }
    .feature-content h6 {
        font-size: 15px;
    }
    .feature-content p {
        font-size: 13px;
    }
}

/* ===============================
   DARK FOOTER
================================ */
.main-footer {
    background: #000;
    color: #ccc;
}

.footer-cta {
    background: #111;
    padding: 40px 0;
    margin-top: 0;
}

.footer-cta h4 {
    color: #fff;
    margin: 0;
    font-size: 1.4rem;
}

.footer-cta-btn {
    background: #1f5ab6;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.footer-cta-btn:hover {
    background: #163e82;
    transform: translateY(-2px);
}

.footer-content {
    padding: 70px 0 50px;
}

.footer-logo-img {
    width: 160px;
    margin-bottom: 18px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact i {
    color: white;
    font-size: 18px;
    min-width: 20px;
    background: #1f5ab6;
    padding: 5px 9px;
    border-radius: 4px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #aaa;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #222;
    font-size: 14px;
    text-align: center;
    color: #888;
}

/* Mobile CTA spacing */
@media (max-width: 991px) {
    .footer-cta {
        padding: 35px 0;
    }
    .footer-content {
        padding: 50px 0 40px;
    }
    .footer-cta h4 {
        font-size: 1.25rem;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-cta .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-logo-img {
        width: 140px;
    }
}

/* Toast styling */
.toast-box {
    position: fixed;
    bottom: 20px;
    right: -350px;
    background: #d4edda;
    color: #155724;
    padding: 14px 18px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 260px;
    transition: 0.4s ease;
    z-index: 9999;
}

.toast-box.show {
    right: 20px;
}

.toast-box i {
    font-size: 18px;
}

.social-links-text .social-text-link {
    color: #aaa;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .social-links-text {
        font-size: 0.95rem;
        gap: 0.75rem !important;
    }
}
/* ===============================
   PRODUCT DETAIL SECTION
================================ */

.product-detail-section {
background:#f8f9fa;
}

/* Title */

.product-title{
font-size:2.2rem;
font-weight:700;
margin-bottom:12px;
color:#0d3b66;
}

/* Remove row gap */

.row.g-0{
margin:0 !important;
}

/* Rating */

.product-rating i{
color:#ffc107;
font-size:18px;
}

.product-rating span{
color:#666;
margin-left:6px;
font-weight:500;
}

/* Price */

.product-price{
font-size:3rem;
font-weight:700;
color:#1f5ab6;
}

.price-current{
font-size:3rem;
font-weight:700;
color:#1f5ab6;
}

.price-old{
font-size:1.2rem;
color:#888;
text-decoration:line-through;
}

/* Image wrapper */

.product-image-wrapper{
height:100%;
background:#fff;
}

.product-image-wrapper img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

/* Content padding only for product section */

.product-detail-section .p-4,
.product-detail-section .p-lg-5{
padding:2.5rem !important;
}

/* Button */

.btn-cart{
background:#0d3b66;
color:white;
padding:14px 30px;
font-weight:600;
border-radius:8px;
display:inline-flex;
align-items:center;
justify-content:center;
transition:all 0.3s;
width:100%;
max-width:240px;
text-decoration:none;
}

.btn-cart:hover{
background:#0a2f52;
transform:translateY(-2px);
}

/* ===============================
   TABLET RESPONSIVE
================================ */

@media (max-width:991px){

.product-detail-section .container{
padding-top:40px;
padding-bottom:40px ;
}

.product-title{
font-size:2.1rem;
}

.product-price{
font-size:2.5rem;
}
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width:576px){
    
    .price-current{
font-size:2.4rem;
}
.price-old{
font-size:1rem;
}

/* upper product section */
.product-detail-section .container{
padding-bottom:0 !important;
margin-bottom:0 !important;
}

/* next product section */
.product-detail-section + .product-detail-section .container{
padding-top:0 !important;
margin-top:0 !important;
}


.product-detail-section .p-4,
.product-detail-section .p-lg-5{
padding:20px 12px !important;
}

.product-title{
font-size:1.9rem;
}

.product-price{
font-size:2.4rem;
}

/* prevent image crop on mobile */

.product-image-wrapper img{
height:auto;
object-fit:contain;
}

}
/* MOBILE SIDE SPACE FIX */

@media (max-width:576px){

.product-detail-section .container{
padding-left:8px !important;
padding-right:8px !important;
}

.product-detail-section .p-4,
.product-detail-section .p-lg-5{
padding:16px 8px !important;
}

}

.cart-page {
    margin-top:120px;
    margin-bottom:80px;
}

.cart-title {
    margin-bottom:30px;
    font-weight:700;
}

.cart-card {
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.cart-item {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 0;
    border-bottom:1px solid #eee;
}

.cart-img img {
    width:100px;
    border-radius:10px;
}

.cart-details {
    flex:1;
    padding:0 20px;
}

.price {
    color:#1f5ab6;
    font-weight:600;
}

.qty-box {
    display:flex;
    align-items:center;
    margin-top:10px;
}

.qty-box button {
    width:30px;
    height:30px;
    border:none;
    background:#1f5ab6;
    color:#fff;
    border-radius:5px;
}

.qty-box input {
    width:40px;
    text-align:center;
    margin:0 8px;
    border:1px solid #ddd;
    border-radius:5px;
}

.cart-total {
    text-align:right;
    font-weight:600;
}

.remove-btn {
    margin-top:8px;
    border:none;
    background:none;
    color:red;
    font-size:13px;
}

.summary-card {
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.summary-row {
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}

.total-row {
    font-weight:700;
    font-size:18px;
}

.checkout-btn {
    width:100%;
    padding:12px;
    border:none;
    border-radius:8px;
    background:linear-gradient(90deg,#0d3b66,#1f5ab6);
    color:#fff;
    font-weight:600;
    margin-top:20px;
}
.checkout-page {
    margin-top: 84px;
    margin-bottom: 80px;
}

.checkout-title {
    margin-bottom:30px;
    font-weight:700;
}

.checkout-card {
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.checkout-card input,
.checkout-card textarea,
.checkout-card select {
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #e0e0e0;
    border-radius:8px;
    outline:none;
    background:#f8f9fb;
}

.checkout-card input:focus,
.checkout-card textarea:focus,
.checkout-card select:focus {
    border-color:#1f5ab6;
    background:#fff;
}

.summary-card {
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.summary-row {
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
}

.total-row {
    font-weight:700;
    font-size:18px;
}

.place-order-btn {
    width:100%;
    padding:14px;
    border:none;
    border-radius:8px;
    background:linear-gradient(90deg,#0d3b66,#1f5ab6);
    color:#fff;
    font-weight:600;
    margin-top:20px;
}

.place-order-btn:hover {
    opacity:0.9;
}

.secure-text {
    text-align:center;
    margin-top:15px;
    font-size:13px;
    color:#777;
}
.use-for-section {
    padding: 80px 0 30px;
}

.section-title {
    font-weight: 600;
    margin-bottom: 50px;
}

.use-box img {
    width: 100%;
    transition: 0.3s ease;
}

.use-box h5 {
    margin-top: 20px;
    font-weight: 500;
}

.use-box:hover img {
    transform: scale(1.05);
}
@media (max-width: 991px) {
        .checkout-page {
            padding-top: 100px !important;
        }
        .summary-card {
            position: static !important;
            margin-top: 30px;
        }
        .form-control, .form-select, textarea {
            font-size: 1rem;
        }
        .use-for-section {
    padding: 30px 0;
}
    }
  /* --------privacy policy page styles-------- */

        .policy-hero{
    background: linear-gradient(135deg, #0d3b66, #1f5ab6);
    color: white;
    padding: 190px 0 80px;
    text-align: center;
    margin-bottom: 60px;
}

        .policy-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .policy-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }

        .policy-content {
            background: white;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            padding: 50px;
            line-height: 1.8;
            font-size: 1.05rem;
            color: #444;
        }

        .policy-content h2 {
            color: #0d3b66;
            font-weight: 700;
            margin: 2.5rem 0 1.2rem;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 10px;
        }

        .policy-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: #1f5ab6;
            border-radius: 2px;
        }

        .policy-content h3 {
            color: #1f5ab6;
            font-weight: 600;
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
        }

        .policy-content ul {
            padding-left: 25px;
            margin-bottom: 1.5rem;
        }

        .policy-content li {
            margin-bottom: 0.8rem;
        }

        .policy-content strong {
            color: #0d3b66;
        }

        .contact-info {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            margin-top: 2rem;
            border-left: 5px solid #1f5ab6;
        }

        @media (max-width: 991px) {
            .policy-wrapper {
                padding: 110px 0 80px;
            }
            .policy-hero {
                padding: 100px 0 70px;
            }
            .policy-hero h1 {
                font-size: 2.5rem;
            }
            .policy-content {
                padding: 35px;
            }
        }

        @media (max-width: 576px) {
            .policy-hero h1 {
                font-size: 2.2rem;
            }
            .policy-hero p {
                font-size: 1rem;
            }
            .policy-content {
                padding: 25px 20px;
                font-size: 1rem;
            }
            .policy-content h2 {
                font-size: 1.6rem;
            }
        }
        /* ---faq page styles---- */

.faq-wrapper{
    padding:180px 0;
}
.faq-title{
    text-align:center;
    margin-bottom:60px;

}

.faq-title h2{
    font-size:38px;
    font-weight:700;
}

.faq-title span{
    color:#1f5ab6;
}

.faq-title p{
    color:#666;
}

/* FAQ CARD */
.faq-card{
    background:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    overflow:hidden;
}

/* HEADER STRIP */
.faq-header{
    background:#1f5ab6;
    color:#fff;
    padding:20px 30px;
    font-weight:600;
    font-size:18px;
}

/* ACCORDION */
.accordion-button{
    font-weight:600;
    padding:20px 25px;
}

.accordion-button:not(.collapsed){
    background:#eef3ff;
    color:#1f5ab6;
    box-shadow:none;
}

.accordion-body{
    color:#666;
    line-height:1.7;
    padding:20px 25px;
}

.accordion-item{
    border:none;
    border-bottom:1px solid #eee;
}

.accordion-button:focus{
    box-shadow:none;
}
@media (max-width:991px){
    .faq-wrapper{
        padding:120px 0;
    }
    .faq-title h2{
        font-size:28px;
    }
}
/* ---product-css---- */
 .product-wrapper {
            padding: 148px 0 80px;
        }
        .product-card {
            background: white;
            box-shadow: 0 25px 60px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        /* Image Section - Desktop default: thumbnails left */
        .image-section {
            display: flex;
            gap: 20px;
            padding: 40px 30px;
        }
        .thumbnails {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .thumbnails img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        .thumbnails img:hover,
        .thumbnails img.active {
            border-color: #1f5ab6;
        }
        .main-image {
            flex-grow: 1;
        }
        .main-image img {
            width: 100%;
            max-height: 500px;
            object-fit: contain; 
        }

        /* ──────────────── MOBILE Responsive ──────────────── */
        @media (max-width: 991px) {
            .image-section {
                flex-direction: column;
                align-items: center;
                padding: 30px 20px;
            }
        
             .thumbnails {
        flex-direction: row !important;
        justify-content: flex-start;   
        width: 100%;
        margin-bottom: 10px;
        order: 2;
    }
            .main-image {
                order: 1;
                width: 100%;
            }
            .thumbnails img {
                width: 70px;
                height: 70px;
            }
            .main-image img {
                max-height: 400px;
            }
        }

        @media (max-width: 576px) {
             .thumbnails {
flex-direction: row !important;
justify-content: flex-start;  
width: 100%;
margin-bottom: 10px;
order: 2;
}
.thumbnails img {
                width: 60px;
                height: 60px;
            }
            .main-image img {
                max-height: 300px;
            }
          
        }

        /* Product Info */
        .product-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .price-discount{
    background:#22c55e;
    color:#fff;
    font-size:12px;
    padding:3px 7px;
    border-radius:4px;
}
        .price-box{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
}

.price-current{
    font-size:28px;
    font-weight:700;
    color:#1f5ab6;
}

.price-old{
    text-decoration:line-through;
    color:#888;
    font-size:18px;
}

.price-discount{
    background:#22c55e;
    color:#fff;
    font-size:13px;
    padding:4px 8px;
    border-radius:6px;
    font-weight:600;
}
        .stock-info {
            color: #28a745;
            font-weight: 500;
            margin: 10px 0;
        }
        .btn-cart {
background: #1f5ab6;
border: none;
padding: 12px 32px;
font-size: 1.05rem;
font-weight: 600;
border-radius: 50px;
transition: all 0.3s;
color: white;
display:flex;
align-items:center;
justify-content:center;
gap:8px;
}
        .btn-cart:hover {
            background: #0d3b66;
            transform: translateY(-2px);
            color: white;
        }
        .qty-wrapper{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:50px;
    overflow:hidden;
    width:150px;
    height:50px;
}

.qty-wrapper input{
    width:60px;
    border:none;
    text-align:center;
    font-size:18px;
    font-weight:600;
    outline:none;
}

.qty-btn{
    width:45px;
    height:100%;
    border:none;
    background:#f1f5f9;
    font-size:20px;
    cursor:pointer;
    transition:.2s;
}

.qty-btn:hover{
    background:#e2e8f0;
}

.cart-row {
display: flex;
align-items: center;
gap: 15px;
flex-wrap: wrap;
}
        .toast-custom {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1050;
            min-width: 300px;
        }

        /* Tabs - scrollable on mobile */
      .nav-tabs {
    border-bottom: 2px solid #dee2e6;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.nav-tabs::-webkit-scrollbar {
    display: none;
}
        .nav-tabs::-webkit-scrollbar-thumb {
            background: #1f5ab6;
            border-radius: 3px;
        }
 .nav-tabs .nav-link{
    color:#0d3b66;
    font-weight:600;
    border:none;
    border-bottom:3px solid transparent;
    padding:12px 24px;
    border-radius:0;
    flex-shrink:0;
    transition:all .3s ease;
}

.nav-tabs .nav-link:hover{
    color:#1f5ab6;
    border-bottom:3px solid #1f5ab6;
}

.nav-tabs .nav-link.active{
    color:#1f5ab6;
    border-bottom:3px solid #1f5ab6;
    background:transparent;
}

.tab-content {
            padding: 40px 30px;
            background: white;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            min-height: 300px;
        }
        .tab-pane h4 {
            color: #0d3b66;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        .tab-pane p, .tab-pane ul {
            line-height: 1.8;
            font-size: 1.05rem;
            color: #444;
        }
        .badge-trust {
            font-size: 1rem;
            padding: 10px 20px;
            margin: 10px;
            border-radius: 30px;
        }

        /* Other responsive adjustments */
        @media (max-width: 768px) {
            .product-wrapper {
                padding: 120px 0 60px;
            }
            .product-card .col-lg-6.p-5 {
                padding: 0px 25px !important;
            }
            .product-title {
                font-size: 1.8rem;
            }
            .price-current {
                font-size: 2rem;
            }
            .cart-row {
                flex-direction: column;
                align-items: stretch;
            }
            .quantity-group {
                width: 100%;
                max-width: 200px;
                margin-right: 0;
                margin-bottom: 15px;
            }
            .btn-cart {
                width: 100%;
                max-width: none;
            }
            .tab-content {
                padding: 30px 20px;
            }
            .nav-tabs .nav-link {
                padding: 10px 18px;
                font-size: 0.95rem;
            }
            
        }
        @media (max-width: 576px) {
            .product-title {
                font-size: 23px;
            }
            .price-current {
                font-size: 1.8rem;
            }
            .cart-row{
        justify-content: flex-start !important;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .qty-wrapper{
        justify-content: flex-start;
    }
    
 .btn-cart{
        width: 100%;
    }
.nav-tabs{
        padding-left:25px !important;
        padding-right:15px !important;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        gap:10px;
    }

    .nav-tabs::-webkit-scrollbar{
        display:none;
    }

    .nav-tabs .nav-link{
        flex-shrink:0;
        scroll-snap-align:start;
        white-space:nowrap;
    }
     .nav-tabs .nav-item:first-child{
        margin-left:20px;
    }
        }
        /* ----contact-css----- */
         .contact-header {
    background: linear-gradient(135deg, #0d3b66, #1f5ab6);
    color: white;
    padding: 190px 188px 100px;
    text-align: center;
    margin-bottom: 60px;
}
        .contact-header h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .contact-header p {
            opacity: 0.9;
            font-size: 1.2rem;
        }

        /* CONTACT CONTENT */
        .contact-section {
            padding: 70px 0;
        }

        .contact-box {
            background: #fff;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
           
        }

        .left-panel {
            padding: 0;
            background: #f7f7f7;
        }

        .left-title {
            background: #1c2e5a;
            color: #fff;
            text-align: center;
            padding: 16px;
            font-weight: 600;
        }

        .info-grid {
            position: relative;
            padding: 40px 20px;
        }

        .info-grid::before,
        .info-grid::after {
            content: "";
            position: absolute;
            background: #ddd;
        }

        .info-grid::before {
            top: 40px;
            bottom: 40px;
            left: 50%;
            width: 1px;
        }

        .info-grid::after {
            left: 30px;
            right: 30px;
            top: 50%;
            height: 1px;
        }

        .info-item {
            text-align: center;
            padding: 40px 20px;
        }

        .info-item i {
            font-size: 30px;
            color: #1c2e5a;
            margin-bottom: 12px;
        }

        .info-item h6 {
            font-weight: 700;
            color: #1c2e5a;
            margin-bottom: 10px;
        }

        .info-item p {
            font-size: 13px;
            color: #666;
            margin: 0;
        }

        .right-panel {
            padding: 0;
            border-left: 1px solid #eee;
        }

        .right-title {
            background: #1c2e5a;
            color: #fff;
            text-align: center;
            padding: 16px;
            font-weight: 600;
        }

        .form-wrapper {
            padding: 35px;
        }

        .form-control {
            height: 48px;
            border-radius: 6px;
        }

        textarea.form-control {
            height: 110px;
        }

        .submit-btn {
            background: #1c2e5a;
            color: #fff;
            border: none;
            padding: 12px;
            border-radius: 6px;
            width: 100%;
            font-weight: 600;
            transition: 0.3s;
        }

        .submit-btn:hover {
            background: #142247;
        }

        /* NEW CONTENT SECTION */
        .contact-info-section {
            text-align: center;
        }

        .contact-info-section h2 {
            color: #0d3b66;
            font-weight: 700;
            margin-bottom: 1.8rem;
            font-size: 2.2rem;
        }

        .contact-info-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            max-width: 900px;
            margin: 0 auto 2rem;
        }

        .contact-info-section .highlight {
            color: #1f5ab6;
            font-weight: 600;
            font-size: 1.3rem;
        }

        .down-arrow {
            font-size: 3.5rem;
            color: #1f5ab6;
            margin-top: 2rem;
            display: block;
        }

        /* MAP SECTION */
        .location-section {
            padding: 80px 0 40px;
            text-align: center;
        }

        .location-section h2 {
            font-size: 2.4rem;
            font-weight: 700;
            color: #0d3b66;
            margin-bottom: 2rem;
        }

        .map-container {
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(0,0,0,0.1);
            height: 500px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        @media (max-width: 991px) {
            .right-panel {
                border-left: none;
                border-top: 1px solid #eee;
            }
            .info-grid::before, .info-grid::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .contact-header {
                padding: 140px 0 50px;
            }
            .contact-header h2 {
                font-size: 34px;
            }
            .contact-info-section {
                padding: 0px 0 ;
            }
            .location-section {
                padding: 60px 0;
            }
            .map-container {
                height: 400px;
            }
            .down-arrow {
                font-size: 2.8rem;
            }
            .contact-header p {
    opacity: 0.9;
    font-size: 17px;
}
.down-arrow {
    margin-top: 0px;
}
      .contact-section{padding: 40px 0 0px;}
      .form-wrapper{padding:16px;}
            .col-6 {
        width: 100%;
        background: #1f5ab6;
    }
    .info-item {
    margin-bottom: 10px;
   
}
.info-item i,
.info-item h6,
.info-item p {
    color: white;
}
}    

        @media (max-width: 576px) {
            .map-container {
                height: 320px;
            }
            .contact-info-section h2 {
                font-size: 2rem;
            }
            .down-arrow {
                font-size: 2.5rem;
            }
        }

/* ----- PRODUCT CATEGORIES ----- */

.md-product-categories{
padding:50px 0;
}

.md-cat-wrapper{
display:flex;
justify-content:center;
gap:60px;
flex-wrap:wrap;
text-align:center;
}

/* Item */

.md-cat-item{
text-decoration:none;
color:#222;
width:240px;
}

/* Image */

.md-cat-img{
width:100%;
height:200px;
overflow:hidden;
margin:auto;
transition:0.3s;
display:flex;
align-items:center;
justify-content:center;
}

.md-cat-img img{
width:100%;
height:100%;
object-fit:contain;
}

/* Title */

.md-cat-item h5{
margin-top:18px;
font-weight:600;
}

/* Hover */

.md-cat-item:hover .md-cat-img{
transform:scale(1.05);
}

/* ---------- TABLET ---------- */

@media(max-width:992px){

.md-cat-wrapper{
gap:40px;
}

.md-cat-item{
width:200px;
}

.md-cat-img{
height:170px;
}

}

/* ---------- MOBILE ---------- */

@media(max-width:576px){
.md-product-categories{
padding:30px 0;
}
.md-cat-wrapper{
flex-direction:column;
align-items:center;
gap:35px;
}

.md-cat-item{
width:80%;
}

.md-cat-img{
height:160px;
}

.md-cat-item h5{
font-size:17px;
}

}

.zoom-container{
position:relative;
overflow:hidden;
cursor:zoom-in;
}

.zoom-image{
width:100%;
transition:transform 0.2s ease;
}

.zoom-container:hover .zoom-image{
transform:scale(2);
}

/* mobile par off */
@media(max-width:768px){
.zoom-container:hover .zoom-image{
transform:none;
}
}
