:root{
  --maroon:#7b1230;
  --green:#1d9b6c;
  --sky:#19a7d8;
  --gray:#2b2f36;

  --soft:#f4f7fb;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(0,0,0,.12);
  --shadow2: 0 10px 25px rgba(0,0,0,.12);

  --sideW: 280px;
  --navBlue: #0b1b6f;
  --softBorder: rgba(15,23,42,.12);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#1a1f2a;
  background:#fff;
}
a{ text-decoration:none; }

.section-pad{ padding: 80px 0; }
.section-soft{ background: linear-gradient(180deg, #ffffff, var(--soft)); }

.section-head .section-kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  color: var(--maroon);
  background: rgba(123, 18, 48, .08);
}
.section-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing:.2px;
  margin-top: 12px;
}
.section-lead{ color:#4a5363; margin-top: 10px; }

/* =========================
   Sidebar Layout
========================= */
.side-nav{
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sideW);
  background: #fff;
  border-right: 1px solid var(--softBorder);
  z-index: 1030;
}
.side-inner{
  height: 100%;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.side-logo img{
  width: 100%;
  max-width: 175px;
  height: auto;
  display:block;
}
.side-menu{
  display:grid;
  gap: 10px;
  margin-top: 8px;
}
.side-link{
  display:block;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
  color:#0f172a;
}
.side-link:hover{
  background: rgba(11,27,111,.08);
  color: var(--navBlue);
}
.side-link.active{
  background: var(--navBlue);
  color:#fff;
}
.side-call{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--navBlue);
  color:#fff;
  font-weight: 900;
}

/* main page margin on desktop */
.page{ margin-left: 0; }
@media (min-width: 992px){
  .page{ margin-left: var(--sideW); }
}

/* mobile header */
.m-header{
  position: sticky;
  top: 0;
  z-index: 1035;
  background:#fff;
  border-bottom: 1px solid var(--softBorder);
}
.m-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 12px;
}
.m-brand img{
  height: 42px;
  width:auto;
  display:block;
}
.m-menu-btn{
  border: 1px solid var(--softBorder);
  border-radius: 10px;
  padding: 8px 10px;
}
.m-menu-btn i{ font-size: 1.4rem; }

.mobile-menu{ display:grid; gap: 10px; }
.mobile-link{
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 900;
  color:#0f172a;
  background: rgba(11,27,111,.06);
}
.mobile-call{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--navBlue);
  color:#fff;
  font-weight: 900;
}

/* =========================
   Hero
========================= */
.hero{ position: relative; }
.hero-img{
  height: 78vh;
  min-height: 520px;
  object-fit: cover;
  filter: brightness(.72);
}
.carousel-caption{
  inset: 0;
  display:flex !important;
  align-items:center;
  justify-content:center;
  text-align:left;
}
.hero-card{
  max-width: 820px;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(15,18,23,.65);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.hero-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 10px;
  color:#fff;
}
.hero-text{ color: rgba(255,255,255,.90); font-size: 1.05rem; max-width: 680px; }
.hero-badges{ display:flex; flex-wrap:wrap; gap: 10px 14px; color: rgba(255,255,255,.92); font-size:.95rem; }
.hero-badges span i{ color: #8fe3ff; margin-right:6px; }

/* Buttons */
.btn-maroon{ background: var(--maroon); color:#fff; border:none; }
.btn-green{ background: var(--green); color:#fff; border:none; }
.btn-sky{ background: var(--sky); color:#fff; border:none; }
.btn-maroon:hover,.btn-green:hover,.btn-sky:hover{ filter: brightness(1.05); color:#fff; }

.glow-soft{ box-shadow: 0 0 0 rgba(0,0,0,0); transition: transform .2s ease, box-shadow .25s ease; }
.glow-soft:hover{ transform: translateY(-2px); box-shadow: 0 18px 40px rgba(25,167,216,.25); }

/* Quick strip */
.quick-strip{ padding: 18px 0 0; margin-top: -42px; position: relative; z-index: 5; }
.quick-strip-card{
  display:flex; gap: 14px; align-items:flex-start;
  padding: 18px; border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow2);
  border: 1px solid rgba(0,0,0,.06);
}
.qs-icon{
  width: 44px; height: 44px; display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(123,18,48,.08);
  color: var(--maroon);
}
.qs-title{ font-weight: 800; }
.qs-text{ color:#566074; font-size:.95rem; }

/* About image */
/* About Video Section */
.about-video-wrap{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.06);
  background:#fff;
}

.about-video-frame{
  border-radius: var(--radius);
  overflow: hidden;
}

.about-video-frame iframe,
.about-video-frame video{
  border: none;
  border-radius: var(--radius);
}

.about-video-badge{
  position:absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  color:#fff;
  font-weight: 800;
  background: linear-gradient(90deg, var(--maroon), var(--sky));
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

@media (max-width: 575px){
  .about-video-wrap{
    margin-top: 10px;
  }
}


/* Product cards */
.product-card{
  background:#fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow2);
  overflow:hidden;
  height:100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.product-img img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
  transition: transform .4s ease, filter .4s ease;
}
.product-card:hover .product-img img{ transform: scale(1.04); filter: brightness(.95); }
.product-body{ padding: 20px; }
.product-top{ display:flex; gap: 12px; align-items:flex-start; margin-bottom: 10px; }
.product-title{ font-weight: 900; margin:0; color: var(--maroon); }
.product-text{ color:#57627a; font-size:.95rem; margin: 10px 0 16px; }
.product-icon{
  width: 46px; height: 46px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(25,167,216,.12);
  border: 1px solid rgba(25,167,216,.22);
  color: var(--sky);
  flex: 0 0 auto;
  transition: transform .6s ease;
}
.product-card:hover .product-icon{ transform: rotate(360deg); }
.highlight-product{
  background: linear-gradient(135deg, rgba(123,18,48,.08), rgba(25,167,216,.08));
  border: 1px solid rgba(123,18,48,.18);
}

/* =========================
   Services (Reference Cards)
========================= */
/* =========================
   Services (Theme: Maroon + Sky + Green)
========================= */

.service-box{
  background:#fff;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow2);
  position: relative;
}

/* top gradient accent bar */
.service-box::before{
  content:"";
  position:absolute;
  left:0; top:0; right:0;
  height: 6px;
  background: linear-gradient(90deg, var(--maroon), var(--sky), var(--green));
}

.service-img{
  padding: 18px 18px 0;
}

.service-img img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 999px; /* round look like reference */
  display:block;
  border: 3px solid rgba(25,167,216,.18);
  transition: transform .35s ease, filter .35s ease;
}

.service-box:hover .service-img img{
  transform: scale(1.03);
  filter: brightness(.97);
}

.service-body{
  padding: 18px 20px 22px;
  text-align: center;
}

.service-title-ref{
  font-weight: 900;
  font-size: 1.25rem;
  margin: 14px 0 10px;
  color: var(--maroon);
}

.service-text-ref{
  color:#57627a;
  font-size: .95rem;
  margin: 0 0 16px;
  line-height: 1.7;
}

.service-actions{
  display:flex;
  justify-content:center;
  gap: 8px;              /* smaller gap */
  align-items:center;
}

/* WhatsApp button (smaller) */
.service-btn-wa{
  background: linear-gradient(90deg, rgba(29,155,108,1), rgba(25,167,216,1));
  color:#fff;
  border: none;
  border-radius: 999px;
  padding: 7px 14px;      /* reduced padding */
  font-size: .85rem;      /* smaller text */
  font-weight: 700;       /* slightly lighter */
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition: transform .2s ease, filter .2s ease;
}

.service-btn-wa i{
  font-size: .9rem;       /* smaller icon */
}

.service-btn-wa:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Call button (smaller) */
.service-btn-callnow{
  background: #fff;
  color: var(--maroon);
  border: 1.5px solid rgba(123,18,48,.6);   /* thinner border */
  border-radius: 999px;
  padding: 7px 14px;        /* reduced padding */
  font-size: .85rem;        /* smaller text */
  font-weight: 700;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition: all .2s ease;
}

.service-btn-callnow i{
  font-size: .9rem;
}

.service-btn-callnow:hover{
  background: var(--maroon);
  color:#fff;
  transform: translateY(-1px);
}


/* responsive */
@media (max-width: 575px){
  .service-img img{
    height: 180px;
    border-radius: 999px;
  }
  .service-actions{
    flex-wrap: wrap;              /* allow wrap on very small screens */
  }
  .service-btn-wa,
  .service-btn-callnow{
    width: 100%;                  /* full width buttons on mobile */
  }
}


/* Stats */
.stat-card{
  padding: 22px;
  border-radius: var(--radius);
  background:#fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow2);
  text-align:center;
  height:100%;
}
.stat-icon{
  width: 54px; height:54px;
  margin: 0 auto 10px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(25,167,216,.12);
  color: var(--sky);
  font-size: 1.4rem;
}
.stat-number{ font-weight: 900; font-size: 2rem; color: var(--gray); }
.stat-label{ color:#57627a; font-weight:700; }

/* Gallery */
.gallery-item{
  position: relative;
  border-radius: 18px;
  overflow:hidden;
  background:#fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}
.gallery-item img{
  display:block;
  width:100%;
  height: 240px;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.gallery-item:hover img{ transform: scale(1.06); filter: brightness(.90); }
.gallery-overlay{
  position:absolute;
  inset:0;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  padding: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.65));
  color:#fff;
}
.gallery-tag{ font-size:.9rem; font-weight:800; opacity:.95; }
.gallery-zoom{
  width: 40px; height:40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
}



/* =========================
   Testimonials + FAQs (Theme: Maroon + Sky + Green)
========================= */

.tf-box{
  background:#fff;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow2);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* subtle top accent bar */
.tf-box::before{
  content:"";
  position:absolute;
  left:0; top:0; right:0;
  height: 6px;
  background: linear-gradient(90deg, var(--maroon), var(--sky), var(--green));
}

/* titles */
.tf-title{
  font-weight: 900;
  text-align: center;
  margin: 6px 0 16px;
  letter-spacing: .2px;
  color: var(--gray);
}

/* testimonial text */
.tf-quote{
  text-align: center;
  color:#57627a;
  line-height: 1.9;
  font-size: 1rem;
  padding: 0 12px;
  margin: 10px 0 16px;
}

/* stars in sky color */
.tf-stars{
  display:flex;
  justify-content:center;
  gap: 6px;
  color: var(--sky);
  font-size: 1rem;
  margin-bottom: 14px;
}

/* name */
.tf-name{
  text-align: center;
  font-weight: 800;
  color: var(--maroon);
  margin-bottom: 14px;
}

/* count */
.tf-count{
  text-align:center;
  color:#6b7280;
  font-weight: 700;
}

/* Carousel arrows */
.tf-control{
  width: 44px;
  opacity: 1;
}

.tf-arrow{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(25,167,216,.10);
  color: var(--sky);
  border: 1px solid rgba(25,167,216,.22);
  font-size: 1.1rem;
  transition: transform .2s ease, filter .2s ease;
}

.tf-control:hover .tf-arrow{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* FAQ accordion style */
.tf-accordion .accordion-item{
  border: none;
  border-radius: 0;
  margin-bottom: 10px;
}

.tf-accordion .accordion-button{
  background: rgba(25,167,216,.10);
  border-radius: 14px !important;
  font-weight: 800;
  color: var(--gray);
  box-shadow: none !important;
  border: 1px solid rgba(25,167,216,.18);
}

.tf-accordion .accordion-button:not(.collapsed){
  background: rgba(123, 18, 48, .10);
  border-color: rgba(123, 18, 48, .22);
  color: var(--maroon);
}

.tf-accordion .accordion-button::after{
  transform: scale(.95);
}

.tf-accordion .accordion-body{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-top: none;
  border-radius: 0 0 14px 14px;
  color:#57627a;
  line-height: 1.8;
  padding: 14px 14px 16px;
}




/* Contact */
.contact-card, .form-card{
  padding: 24px;
  border-radius: var(--radius);
  background:#fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow2);
}
.contact-row{
  display:flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,.10);
}
.contact-row:last-child{ border-bottom:none; }
.contact-icon{
  width: 46px; height:46px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(29,155,108,.12);
  color: var(--green);
  flex:0 0 auto;
}
.contact-label{ font-weight:900; color: var(--gray); }
.contact-link{ color: var(--maroon); font-weight:800; }

/* Footer */
/* =========================
   Footer Section
========================= */
.footer{
  background: linear-gradient(135deg, #151922, #0f1217);
  color: rgba(255,255,255,.90);
  padding: 60px 0 25px;
}

.footer-brand{
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color:#fff;
}

.footer-text{
  color: rgba(255,255,255,.70);
  font-size: .95rem;
  line-height: 1.7;
}

.footer-title{
  font-weight: 800;
  margin-bottom: 14px;
  color:#fff;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 8px;
}

.footer-links a{
  color: rgba(255,255,255,.70);
  font-size: .92rem;
  transition: color .2s ease;
}

.footer-links a:hover{
  color: var(--sky);
}

.footer-contact{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 10px;
  font-size:.92rem;
}

.footer-contact i{
  color: var(--sky);
  margin-right: 8px;
}

.footer-contact a{
  color: rgba(255,255,255,.80);
}

.footer-contact a:hover{
  color: var(--green);
}

.footer-social{
  display:flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color:#fff;
  transition: all .2s ease;
}

.footer-social a:hover{
  background: linear-gradient(90deg, var(--maroon), var(--sky));
}

.footer-line{
  border-color: rgba(255,255,255,.12);
}

.footer-copy{
  color: rgba(255,255,255,.65);
}

/* Floating buttons */
.float-btn{
  position: fixed;
  right: 18px;
  z-index: 999;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  color:#fff;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  transition: transform .2s ease;
}
.float-btn:hover{ transform: translateY(-2px); color:#fff; }
.float-btn i{ font-size: 1.2rem; }
.float-whatsapp{ bottom: 30px; background: linear-gradient(90deg, #25D366, #1aa855); }
.float-call{ bottom: 120px; background: linear-gradient(90deg, var(--maroon), var(--sky)); }

.back-top{
  position: fixed;
  left: 18px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: none;
  background: rgba(43,47,54,.9);
  color:#fff;
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 999;
  box-shadow: 0 18px 35px rgba(0,0,0,.22);
}
.back-top.show{ display:flex; }

/* Reveal animations */
.reveal{ opacity:0; transform: translateY(14px); }
.reveal.show{
  opacity:1;
  transform: translateY(0);
  transition: opacity .75s ease, transform .75s ease;
}
.cu-mb-nv{
	display:none!important
}
.cu-ds-nn{
	display:none!important
}
/* Responsive */
@media (max-width: 991px){
  .hero-img{ height: 72vh; min-height: 520px; }
  .carousel-caption{ padding: 0 14px; }
  .hero-card{ padding: 20px; }
  .cu-mb-lg-wdth{
	  width:100px;
  }
  .cu-mb-nv{
	display:block!important
}
}
@media (max-width: 575px){
  .section-pad{ padding: 62px 0; }
  .hero-img{ height: 72vh; min-height: 480px; }
  .quick-strip{ margin-top: -26px; }
  .gallery-item img{ height: 290px; }
  .float-btn{ right: 12px; }
  .back-top{ left: 12px; }
  .about-image{ height: 320px; }
  .product-img img{ height: 180px; }
}
