/* RESET */
* { margin:0; padding:0; box-sizing:border-box }

body{
  font-family:system-ui,-apple-system,"Segoe UI",sans-serif;
  background:#fff;
  color:#1f2937;
  line-height:1.6;
  overflow-x:hidden;
}

/* HEADER */
header{
  position:fixed;
  top:0; left:0;
  width:100%;
  padding:18px 6vw;
  background:#ffffffee;
  backdrop-filter:blur(12px);
  border-bottom:1px solid #e5e7eb;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
}

.logo{
  font-size:34px;
  font-weight:900;
  color:#111827;
  text-decoration:none;
}
.logo span{color:#f97316}

/* NAV COMMON */
nav{
  display:flex;
  align-items:center;
}

nav a{
  margin-left:24px;
  text-decoration:none;
  font-weight:600;
  color:#374151;
  font-size:15px;
}
nav a:hover,
nav a.active{color:#f97316}

/* CTA */
.nav-cta{
  padding:8px 18px;
  background:#f97316;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  margin-left:30px;
  white-space:nowrap;
}

/* TOGGLE ICON */
.menu-toggle{
  font-size:26px;
  cursor:pointer;
  color:#111827;
}

/* HERO */
.hero-img{
  width:100%;
  height:360px;
  object-fit:cover;
  margin-top:80px;
  filter:brightness(0.85);
}

/* SECTION */
.section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:70px 8vw;
  align-items:center;
}

.section img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:16px;
}

.section h2{
  font-size:32px;
  font-weight:900;
  margin-bottom:10px;
}

.section p{
  font-size:17px;
  color:#4b5563;
}

.card-back ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.card-back li {
  list-style: none;
}

.outline-btn {
  margin-top: 16px;
  padding: 10px 20px;
  border: 2px solid #2563eb;
  background: transparent;
  color: #2563eb;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s ease;
 }
.outline-btn:hover {
  background: #2563eb;
  color: white;
 }

/* ===============================
   OUTER SERVICE CARD (RESTORED)
================================ */

.service-card {
  background: #ffffff;              /* card shell */
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  overflow: hidden;                 /* IMPORTANT for flip */
  perspective: 1000px;
  height: 520px;
}

/* SERVICES */
.services{
  padding:120px 6vw 60px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* ===== SERVICE CARD FLIP FOUNDATION ===== */

.service-card {
  height: 520px;
  perspective: 1000px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.service-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-back {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.card-front img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}
.card-front h3,
.card-back h4 {
  margin-bottom: 12px;
}

.card-front p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-back ul {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.card-back li {
  margin-bottom: 8px;
}
.card-front .outline-btn,
.card-back .outline-btn {
  margin-top: auto;          /* pushes button to bottom */
  align-self: center;
}

.service-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:12px;
}

/* ABOUT */
#about{
  padding:100px 8vw;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.about-image{
  width: 100%;
  max-width:520px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.about-text h2 {
      font-size: 36px;
      font-weight: 900;
    }

    .about-text p {
      margin-top: 16px;
      font-size: 17px;
      color: #374151;
    }

/* WHY US */
    .why-box {
      background: #f9fafb;
      padding: 26px;
      border-radius: 14px;
      border: 1px solid #e5e7eb;
    }

/* ===============================
   TRUST SECTION (THEME MATCHED)
================================ */
.trust-section {
  padding: 80px 6vw;
  background: #f9fafb; /* matches footer / light sections */
}

.trust-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 50px 40px;
  max-width: 1200px;
  margin: auto;
  border: 1px solid #e5e7eb; /* same as header/footer */
}

.trust-title {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 40px;
  color: #111827;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.stat h3 {
  font-size: 34px;
  font-weight: 900;
  color: #111827;
}

.stat p {
  margin-top: 6px;
  font-size: 16px;
  color: #4b5563;
}



    /* FAQ */
    details {
      background: #f9fafb;
      padding: 18px 20px;
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      margin-bottom: 12px;
      cursor: pointer;
    }

    /* VIDEO REVIEWS */
    .video-section h2 {
      padding: 0 8vw;
      font-size: 28px;
      margin-top: 20px;
      margin-bottom: 20px;
      font-weight: 900;
    }

    .video-grid {
      padding: 0 8vw 70px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 26px;
    }

    .video-grid iframe {
      width: 100%;
      height: 220px;
      border-radius: 12px;
      border: none;
    }


/* FOOTER */
footer{
  background:#f9fafb;
  padding:70px 8vw;
  display:grid;
  grid-template-columns:2fr repeat(4,1fr);
  gap:40px;
  border-top:1px solid #e5e7eb;
}
.footer-brand{font-size:26px;font-weight:900}
.footer-title{font-weight:700;margin-bottom:16px}
.footer-link{
  display:block;
  margin-bottom:10px;
  text-decoration:none;
  color:#475569;
}
.footer-link:hover{color:#f97316}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.social-icons img {
  width: 32px;
  height: 32px;
}

.footer-bottom{
  background:#f3f4f6;
  padding:18px;
  text-align:center;
  font-size:14px;
}
















