@charset "UTF-8";

*{
    box-sizing:border-box;
}

html, body{
    overflow-x:hidden;
}


   /* Carousel nav arrows */
   .owl-nav button {
   position: absolute;
   top: 40%;
   transform: translateY(-50%);
   background: rgba(0,0,0,0.6) !important;
   color: #fff !important;
   border: none !important;
   font-size: 28px !important;
   padding: 8px 14px !important;
   border-radius: 50%;
   cursor: pointer;
   z-index: 1000;
   }
   .owl-nav .owl-prev { left: -35px; }
   .owl-nav .owl-next { right: -35px; }
   .owl-nav button:hover { background: #00a79d !important; }

   
   /* ===== ULTRA PREMIUM HERO ===== */



/* FLOATING WHATSAPP */
.floating-whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:#fff;
    padding:12px 16px;
    border-radius:50px;
    font-weight:600;
    z-index:9999;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    box-shadow:0 6px 20px rgba(0,0,0,0.3);
}

.hero-slider .owl-stage-outer{
    margin-bottom:0 !important;
}

.hero-slider .owl-stage{
    margin-bottom:0 !important;
}


.hero-slide{
    height:300px;

    background-size:contain;   /* ✅ FULL IMAGE VISIBLE */
    background-repeat:no-repeat;
    background-position:center;

    border-radius:10px;
    background-color:#f5f5f5; /* fallback */
}

@media(max-width:768px){

.hero-slide{
    height:200px;   /* adjust for mobile */
    background-size:contain;  /* keep full image */
}

}

.hero-slide{
    height:300px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-img{
    width:100%;
    height:100%;
    object-fit:contain;   /* 🔥 BEST */
}

/* ===============================
   ULTRA PREMIUM TOP STRIP
================================ */

.top-features-bar{
    position:relative;
    overflow:hidden;

    /* 🔥 GLASS EFFECT */
    background:rgba(255,255,255,0.6);
    backdrop-filter:blur(6px);

    border-bottom:1px solid rgba(255,255,255,0.3);

    /* subtle shadow */
    box-shadow:0 4px 20px rgba(0,0,0,0.05);

    /* mobile smooth touch */
    touch-action:pan-y;
}

/* ===============================
   SCROLL TRACK
================================ */
.top-features-track{
    display:flex;
    gap:50px;
    width:max-content;

    animation:scrollLeft 28s linear infinite;
}

/* ===============================
   ITEM
================================ */
.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 20px;
    min-width:260px;

    transition:0.3s ease;
}

/* ===============================
   SVG ICON
================================ */
.feature-item svg{
    width:28px;
    height:28px;
    stroke:#00a79d;   /* use stroke instead of fill */
    fill:none;        /* 🔥 key fix */
    flex-shrink:0;
}

/* ===============================
   TEXT
================================ */
.feature-item strong{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#111;
}

.feature-item span{
    font-size:12px;
    color:#666;
}

/* ===============================
   HOVER ANIMATION (DESKTOP)
================================ */
.feature-item:hover{
    transform:translateY(-3px);
}

.feature-item:hover svg{
    transform:scale(1.15) rotate(5deg);
    fill:#008f86;
}

/* ===============================
   SCROLL ANIMATION
================================ */
@keyframes scrollLeft{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
}

/* ===============================
   HOVER PAUSE (DESKTOP)
================================ */
.top-features-bar:hover .top-features-track{
    animation-play-state:paused;
}

/* ===============================
   MOBILE TOUCH PAUSE
================================ */
.top-features-bar:active .top-features-track{
    animation-play-state:paused;
}

/* ===============================
   GRADIENT FADE EDGES (PREMIUM)
================================ */
.top-features-bar::before,
.top-features-bar::after{
    content:"";
    position:absolute;
    top:0;
    width:80px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

/* LEFT FADE */
.top-features-bar::before{
    left:0;
    background:linear-gradient(to right, rgba(255,255,255,0.9), transparent);
}

/* RIGHT FADE */
.top-features-bar::after{
    right:0;
    background:linear-gradient(to left, rgba(255,255,255,0.9), transparent);
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media(max-width:768px){

.feature-item{
    min-width:220px;
    padding:10px 15px;
}

.feature-item svg{
    width:22px;
    height:22px;
}

.top-features-track{
    animation-duration:22s; /* slightly faster for mobile */
}

}

/* ===============================
   FEATURED BRANDS
================================ */

.featured-brands{
    background:#f4f4f4;
}

/* TITLE */
.brands-title{
    font-size:42px;
    font-weight:500;
    margin-bottom:30px;
    color:#333;
}

/* GRID */
.brands-grid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);

    border:1px solid #e5e5e5;

    box-sizing:border-box;   /* ✅ prevents overflow */
    width:100%;
}

/* BOX */
.brand-item{
    display:flex;
    align-items:center;
    justify-content:center;

    height:120px;
    padding:20px;
	box-sizing:border-box;

    background:#fff;

    border-right:1px solid #e5e5e5;
    border-bottom:1px solid #e5e5e5;
}

/* REMOVE EXTRA BORDER */
.brand-item:nth-child(6n){
    border-right:none;
}

/* IMAGE */
.brand-item img{
    max-width:140px;
    max-height:60px;
    object-fit:contain;

    transition:0.3s;
}

/* HOVER EFFECT */
.brand-item:hover img{
    transform:scale(1.08);
    filter:grayscale(0%);
}

/* OPTIONAL: slight grayscale default */
.brand-item img{
    filter:grayscale(20%);
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:576px){

.brands-grid{
    grid-template-columns:repeat(3,1fr);
    width:100%;
}

.brand-item{
    height:80px;
    padding:8px;
}

.brand-item img{
    max-width:80px;
    max-height:35px;
}

}

.brands-title{
    text-align:center;
    font-size:42px;
    font-weight:600;
    margin-bottom:40px;
    color:#2c2c2c;
    letter-spacing:1px;
}

/* ===============================
   SECTION
================================ */
.category-section{
    padding:60px 0;
}

.section-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    margin-bottom:40px;
    color:#111;
}

/* ===============================
   GRID
================================ */
.category-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:10px; /* 🔥 reduced spacing */
}

/* ===============================
   CARD
================================ */
.category-card{
    position:relative;
    border-radius:18px;
    overflow:hidden;

    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(12px);

    box-shadow:0 8px 25px rgba(0,0,0,0.06);

    transition:all 0.4s ease;
}

/* GRADIENT BORDER */
.category-card::before{
    content:"";
    position:absolute;
    inset:-1px;
    border-radius:18px;

    background:linear-gradient(120deg,#00a79d,#4facfe,#00a79d);
    opacity:0;
    z-index:-1;

    transition:0.4s;
}

.category-card:hover::before{
    opacity:1;
    animation:borderRotate 4s linear infinite;
}

@keyframes borderRotate{
    0%{filter:hue-rotate(0deg);}
    100%{filter:hue-rotate(360deg);}
}

/* ===============================
   IMAGE
================================ */
.card-img-wrap{
    background:#f7f9fb;
    padding:15px;
}

.category-img{
    width:100%;
    height:140px;
    object-fit:contain;
    transition:0.4s;
}

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

/* ===============================
   CONTENT
================================ */
.card-content{
    padding:12px;
}

.card-title-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}

.card-icon{
    font-size:16px;
}

.category-title{
    font-size:14px;
    font-weight:600;
    margin:0;
}

/* ===============================
   BADGE
================================ */
.card-badge{
    position:absolute;
    top:10px;
    left:10px;

    background:#00a79d;
    color:#fff;

    font-size:10px;
    font-weight:600;

    padding:4px 8px;
    border-radius:20px;

    z-index:2;
}

/* ===============================
   OVERLAY
================================ */
.card-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.6);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    transition:0.4s ease;
}

.category-card:hover .card-overlay{
    opacity:1;
}

.view-btn{
    background:#fff;
    color:#000;

    padding:8px 16px;
    border-radius:30px;

    font-size:13px;
    font-weight:600;

    text-decoration:none;

    transform:translateY(20px);
    transition:0.3s;
}

.category-card:hover .view-btn{
    transform:translateY(0);
}

/* ===============================
   HOVER EFFECT
================================ */
.category-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media(max-width:992px){
.category-grid{
    grid-template-columns:repeat(3,1fr);
}
}

/* Mobile */
@media(max-width:576px){
.category-grid{
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.category-img{
    height:100px;
}

.category-title{
    font-size:12px;
}
}

/* Extra Small */
@media(max-width:360px){
.category-grid{
    grid-template-columns:repeat(2,1fr);
}
}

/* ===============================
   TRUST SECTION
================================ */
.trust-section{
    background:#f8f9fb;
    padding:50px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    text-align:center;
}

.trust-item{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.trust-item:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.trust-item h3{
    font-size:28px;
    font-weight:700;
    color:#00a79d;
}

.trust-item p{
    font-size:14px;
    color:#555;
}

/* ===============================
   WHY US SECTION
================================ */
.why-us{
    padding:60px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.why-card{
    background:#fff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

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

.why-card h4{
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
    color:#111;
}

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


/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media(max-width:992px){

.trust-grid,
.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */
@media(max-width:576px){

.trust-grid,
.why-grid{
    grid-template-columns:1fr;
}

.trust-item,
.why-card{
    padding:18px;
}

.service-area p{
    font-size:14px;
}

}



.section-subtitle{
    color:#777;
    margin-bottom:40px;
}

/* GRID */

.date{
    font-size:12px;
    color:#888;
}

/* USER IMAGE */
.user-img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
}

/* GOOGLE LOGO */
.google-row{
    margin:10px 0;
}

.google-logo{
    width:20px;
}

/* STARS */
.stars{
    color:#f4b400;
    font-size:18px;
    margin-bottom:10px;
}

/* SHOW MORE */
.show-more{
    color:#0066ff;
    font-size:13px;
    text-decoration:none;
}

/* ===============================
   FAQ SECTION
================================ */
.faq-section{
    padding:70px 0;
    background:#f8f9fb;
}

/* CONTAINER */
.faq-container{
    max-width:800px;
    margin:0 auto;
}

/* ITEM */
.faq-item{
    background:#fff;
    border-radius:14px;
    margin-bottom:15px;
    overflow:hidden;

    box-shadow:0 6px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

/* HOVER */
.faq-item:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

/* QUESTION */
.faq-question{
    width:100%;
    padding:18px 20px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:15px;
    font-weight:600;

    background:none;
    border:none;
    cursor:pointer;

    color:#111;
}

/* ICON */
.faq-icon{
    font-size:18px;
    transition:0.3s;
}

/* ANSWER */
.faq-answer{
    max-height:0;
    overflow:hidden;

    padding:0 20px;

    font-size:14px;
    color:#555;

    line-height:1.6;

    transition:all 0.3s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer{
    max-height:200px;
    padding:0 20px 15px;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:576px){

.faq-question{
    font-size:14px;
}

.faq-answer{
    font-size:13px;
}

}

/* GRADIENT BORDER */
.faq-item{
    position:relative;
    border-radius:14px;
    overflow:hidden;
}

/* OUTER GLOW BORDER */
.faq-item::before{
    content:"";
    position:absolute;
    inset:-1px;

    border-radius:14px;

    background:linear-gradient(120deg,#00a79d,#4facfe,#00a79d);

    z-index:-1;
    opacity:0;

    transition:0.4s;
}

/* SHOW ON HOVER */
.faq-item:hover::before{
    opacity:1;
    animation:faqGlow 4s linear infinite;
}

/* ANIMATION */
@keyframes faqGlow{
    0%{filter:hue-rotate(0deg);}
    100%{filter:hue-rotate(360deg);}
}

.faq-item.active{
    box-shadow:
        0 15px 40px rgba(0,0,0,0.15),
        0 5px 20px rgba(0,167,157,0.2);
}

.hero-slider .owl-stage{
    display:flex;
    align-items:center;
}

/* SLIDE CONTAINER */
.hero-slide{
    width:100%;
    height:320px;
    overflow:hidden;
    border-radius:10px;
    position:relative;
}

/* IMAGE (KEY MAGIC) */
.hero-img{
    width:100%;
    height:100%;
    object-fit:cover;        /* 🔥 fills screen */
    object-position:center;  /* 🔥 keeps center visible */
    display:block;
}

/* ===============================
   MOBILE FIX (SMART CROPPING)
================================ */
@media(max-width:768px){

.hero-slide{
    height:180px;
}

/* adjust visible area (very important) */
.hero-img{
    object-position:center center;  
}

}

/* DESKTOP → premium full look */
.hero-slide{
    width:100%;
    height:320px;
    overflow:hidden;
    border-radius:10px;
}

.hero-img{
    width:100%;
    height:100%;
    object-fit:cover;           /* ✅ fills desktop */
    object-position:center;
}

/* ===============================
   MOBILE → NO CROP (FULL IMAGE)
================================ */
@media(max-width:768px){

.hero-slide{
    height:auto;                /* ✅ auto height */
    background:#f5f5f5;         /* optional */
}

.hero-img{
    width:100%;
    height:auto;                /* ✅ keep ratio */
    object-fit:contain;         /* ✅ FULL IMAGE visible */
}

}

/* GLOBAL SECTION SPACING */
.category-section,
.why-us,
.faq-section{
    padding:40px 0;   /* 🔥 reduced from 60-70 */
}

.hero-slider{
    margin-bottom:0 !important;
}

.hero-slider .owl-stage-outer{
    margin:0 !important;
    padding:0 !important;
}

.top-features-bar{
    margin-top:0;
    margin-bottom:0;
}

.section-title{
    margin-bottom:25px;   /* reduce from 40 */
}

body{
    margin:0;
    padding:0;
}

.section-subline{
    text-align:center;
    font-size:14px;
    color:#666;
    margin-top:-10px;
    margin-bottom:30px;
    letter-spacing:0.3px;
}

/* 🔥 PREMIUM TOUCH */
.section-subline::after{
    content:"";
    display:block;
    width:60px;
    height:3px;
    background:linear-gradient(90deg,#00a79d,#4facfe);
    margin:10px auto 0;
    border-radius:5px;
}

/* ===============================
   PREMIUM TESTIMONIAL SECTION
================================ */
.testimonial-section{
    background:linear-gradient(to bottom,#f8f9fb,#eef7ff);
    padding:50px 0;
    text-align:center;
    overflow:hidden;
}

.section-subtitle{
    color:#777;
    margin-bottom:35px;
}


.testimonial-grid::-webkit-scrollbar{
    display:none;
}

/* SLIDER */
.testimonial-grid{
    display:flex;
    gap:22px;

    overflow-x:auto;
    scroll-snap-type:x mandatory;

    padding-bottom:10px;

    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
}

.testimonial-grid::-webkit-scrollbar{
    display:none;
}

/* CARD */
.testimonial-card{
    position:relative;

    flex:0 0 calc(33.333% - 15px); /* 🔥 3 cards desktop */
    min-width:320px;

    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(10px);

    border-radius:24px;
    padding:26px;

    text-align:left;

    border:1px solid rgba(0,167,157,0.08);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.06),
    0 2px 5px rgba(0,0,0,0.04);

    transition:all .35s ease;

    scroll-snap-align:center;
}

/* HOVER */
.testimonial-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.10),
    0 8px 20px rgba(0,0,0,0.05);
}

/* TABLET */
@media(max-width:992px){

.testimonial-card{
    flex:0 0 calc(50% - 12px);
    min-width:280px;
}

}

/* MOBILE */
@media(max-width:768px){

.testimonial-card{
    flex:0 0 88%;
    min-width:88%;
    padding:22px;
}

}

/* TOP GRADIENT LINE */
.testimonial-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#00a79d,#4facfe);
}

/* QUOTE ICON */
.testimonial-card::after{
    content:"❝";
    position:absolute;
    top:12px;
    right:20px;

    font-size:70px;
    line-height:1;

    color:rgba(0,167,157,0.08);

    font-family:serif;
}

.testimonial-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.10),
    0 8px 20px rgba(0,0,0,0.05);
}

/* HEADER */
.testimonial-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.testimonial-header h4{
    margin:0;
    font-size:17px;
    font-weight:700;
    color:#111;
}

.date{
    font-size:12px;
    color:#888;
}

/* USER IMAGE */
.user-img{
    width:56px;
    height:56px;
    border-radius:50%;
    object-fit:cover;

    border:3px solid rgba(0,167,157,0.15);
}

/* GOOGLE */
.google-row{
    margin-bottom:10px;
}

.google-logo{
    width:22px;
}

/* STARS */
.stars{
    color:#f4b400;
    font-size:18px;
    margin-bottom:15px;
    letter-spacing:2px;
}

/* TEXT */
.testimonial-text{
    font-size:15px;
    color:#555;
    line-height:1.8;
    margin-bottom:0;
}

/* ===============================
   MOBILE
================================ */
@media(max-width:768px){

.testimonial-card{
    min-width:88%;
    padding:24px;
}

}

/* ===============================
   DESKTOP LARGE
================================ */
@media(min-width:1200px){

.testimonial-card{
    min-width:380px;
}

}