header {
  background: #f59a07;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  position: relative;
}

header .logo {
  font-size: 24px;
  font-weight: 600;
}

/* NAV DESKTOP */
nav {
  display: flex;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #000;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  nav a {
    color: #fff;
    margin: 12px 0;
    font-size: 18px;
  }

  nav a:hover {
    color: #f59a07;
  }

  nav.active {
    display: flex;
  }
}






/* ================= FEATURES SECTION ================= */

.features {
  background: #000000;
  color: #ffffff;
  padding: 80px 8%;
  font-family: 'Poppins', sans-serif;
}

/* GRID — MIRROR PREVIOUS SECTION */
.features-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr; /* content wider, image smaller */
  gap: 60px;
  align-items: stretch; /* SAME HEIGHT */
}

/* IMAGE */
.features-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-image img {
  width: 100%;
  max-width: 420px;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  /* filter: drop-shadow(0 0 35px rgba(245,154,7,0.25)); */
}

/* CONTENT */
.features-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.features-label {
  color: #f59a07;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

.features-content h2 {
  font-size: 40px;
  margin: 16px 0 18px;
  line-height: 1.25;
  text-transform: uppercase;
}

.features-desc {
  max-width: 520px;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* FEATURE LIST */
.feature-list {
  position: relative;
}

/* ITEM */
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* ICON */
.icon-box {
  width: 48px;
  height: 48px;
  background: #f59a07;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 22px rgba(245,154,7,0.55);
}

/* TEXT */
.feature-text h4 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
}

.feature-text p {
  margin-top: 6px;
  color: #bfbfbf;
  font-size: 14px;
  line-height: 1.7;
  max-width: 480px;
}

/* CONNECTOR */
.connector {
  width: 2px;
  height: 42px;
  background: linear-gradient(
    to bottom,
    rgba(245,154,7,0.15),
    #f59a07,
    rgba(245,154,7,0.15)
  );
  margin: 12px 0 12px 23px;
}

/* HOVER */
.feature-item:hover .icon-box {
  transform: scale(1.12);
  transition: 0.3s ease;
}

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

@media (max-width: 992px) {
  .features-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .features-image img {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .features-content h2 {
    font-size: 30px;
  }

  .features-image img {
    height: 360px;
  }
}





/* ================================
   SERVICES SECTION
================================ */
.services-section {
  background: #000;
  padding: 60px 10%;
  text-align: center;
  position: relative;
}

/* SECTION HEADER */
.services-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #f59a07;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
}

.services-header h2 {
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.services-header p {
  max-width: 650px;
  margin: 0 auto 70px;
  font-size: 15px;
  color: #bfbfbf;
}

/* ================================
   SERVICES GRID
================================ */
.service-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* exactly 3 per row */
  gap: 35px;
}


/* SERVICE CARD */
.service {
  background: #1c1a1a;
  padding: 35px 28px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT (UNCHANGED CORE EFFECT) */
.service:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 
    0 0 20px #f59a07,
    0 0 40px rgba(245, 154, 7, 0.6);
  outline: 2px solid #f59a07;
}

/* ================================
   ICON STYLING
================================ */
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(245, 154, 7, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 26px;
  color: #f59a07;
}

/* ================================
   CARD CONTENT
================================ */
.service h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service p {
  font-size: 14px;
  color: #cfcfcf;
}

/* ================================
   SCROLL ANIMATION
================================ */
.animate-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER EFFECT */
.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}




* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

#cf_sec_59120 *{
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

#cf_sec_59120{
  background:#000000;
  padding:70px 0;
}

#cf_sec_59120 .cf_sec_59120_container{
  width:min(1180px,92%);
  margin:auto;
}

#cf_sec_59120 .cf_sec_59120_grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:40px;
  align-items:stretch;
}

/* IMAGE */
.cf_sec_59120_imageWrap{
  display:flex;
  align-items:stretch;
}

.cf_sec_59120_imageCard{
  width:100%;
  max-width:420px;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.cf_sec_59120_image{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
}

/* CONTENT */
.cf_sec_59120_content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.cf_sec_59120_titleRow{
  display:flex;
  gap:18px;
  margin-bottom:18px;
}

.cf_sec_59120_accent{
  width:6px;
  background:#f59a07;
  border-radius:99px;
}

.cf_sec_59120_heading{
  font-size:40px;
  font-weight:900;
  line-height:1.15;
  text-transform:uppercase;
  color:#ffffff;
}

.cf_sec_59120_text{
  font-size:15px;
  line-height:1.9;
  color:#ffffff;
  margin-bottom:14px;
  text-align:justify;
}

/* STATS */
.cf_sec_59120_stats{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.cf_sec_59120_card{
  padding:20px;
  border-radius:16px;
  background:#000000;
  border:1px solid #e8edf5;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:.25s;
}

.cf_sec_59120_card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.cf_sec_59120_number{
  font-size:36px;
  font-weight:900;
  color:#f59a07;
}

.cf_sec_59120_label{
  font-size:14px;
  font-weight:700;
  color:#ffffff;
}

/* RESPONSIVE */
@media(max-width:1024px){
  #cf_sec_59120 .cf_sec_59120_grid{
    grid-template-columns:1fr;
  }

  .cf_sec_59120_image{
    min-height:420px;
  }
}

@media(max-width:768px){
  .cf_sec_59120_heading{
    font-size:28px;
  }

  .cf_sec_59120_stats{
    grid-template-columns:1fr;
  }
}


.team-section {
  padding: 70px 20px;
  background: #000000;
  text-align: center;
}

.team-container {
  max-width: 1200px;
  margin: auto;
}

/* LABEL */
.team-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #f59a07;
  font-weight: 600;
}

/* TITLE */
.team-title {
  font-size: 42px;
  margin: 16px 0;
  color: #ffffff;
}

/* DESCRIPTION */
.team-desc {
  max-width: 700px;
  margin: 0 auto 70px;
  color: #bdbdbd;
  font-size: 15px;
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.team-card {
  background: #1c1a1a;
  border-radius: 18px;
  padding: 24px;
  transition: 0.35s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(245, 154, 7, 0.35);
  outline: 1px solid #f59a07;
}

/* IMAGE */
.team-img {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
}

.team-img img {
  width: 100%;
  display: block;
}

/* NAME */
.team-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

/* TEXT */
.team-card p {
  font-size: 14px;
  color: #bdbdbd;
  line-height: 1.6;
}

/* SOCIAL ICONS */
.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.team-social a {
  width: 38px;
  height: 38px;
  border: 1px solid #f59a07;
  color: #f59a07;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.team-social a:hover {
  background: #f59a07;
  color: #000000;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}


.footer {
  background: radial-gradient(circle at top, #1a1a1a 0%, #000000 70%);
  font-family: "Inter", sans-serif;
  color: #bfbfbf;
}

/* LAYOUT */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 25px 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1.6fr;
  gap: 50px;
}

/* BRAND */
.footer-brand img {
  max-width: 130px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #bfbfbf;
  line-height: 1.8;
  max-width: 320px;
  text-align: justify;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  padding-bottom: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(245, 154, 7, 0.35);
  color: #f59a07;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.35s ease;
}

.footer-social a:hover {
  background: #f59a07;
  color: #000;
  box-shadow: 0 0 15px rgba(245,154,7,0.6);
}

/* COLUMNS */
.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  margin-top: 60px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 15px;
  color: #bfbfbf;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f59a07;
  padding-left: 6px;
}

/* CONTACT */
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
  color: #bfbfbf;
}

.contact-item i {
  color: #f59a07;
  font-size: 18px;
  margin-top: 4px;
}

/* MAP */
.map-box iframe {
  width: 80%;
  height: 170px;
  padding-bottom: 0px;
  border: none;
  border-radius: 20px;
  filter: grayscale(100%);
  transition: 0.4s ease;
}

.map-box iframe:hover {
  filter: grayscale(0%);
  box-shadow: 0 0 20px rgba(245,154,7,0.5);
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: -30px;
  padding: 18px;
  border-top: 1px solid rgba(245,154,7,0.25);
  text-align: center;
  font-size: 14px;
  color: #9e9e9e;
}

.footer-bottom a {
  color: #bfbfbf;          /* Same as footer text */
  text-decoration: none;   /* Remove underline */
  transition: 0.3s ease;
}

.footer-bottom a:hover {
  color: #f59a07;          /* Brand yellow on hover */
}


/* Responsive */

@media (max-width: 600px) {

  /* Reduce overall footer height */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px 16px;
    gap: 30px; /* reduced gap between sections */
  }

  /* Reduce heading top spacing */
  .footer-col h4 {
    margin-top: 30px;
    margin-bottom: 18px;
  }

  /* Brand section tighter */
  .footer-brand img {
    margin-bottom: 10px;
  }

  .footer-brand p {
    margin-bottom: 12px;
  }

  /* Center social icons with less space */
  .footer-social {
    justify-content: center;
    margin-top: 14px;
    padding-bottom: 0;
  }

  /* Contact items spacing */
  .contact-item {
    justify-content: center;
    margin-bottom: 12px;
  }

  /* Map full width & tighter */
  .map-box iframe {
    width: 100%;
    height: 160px;
    margin-top: 10px;
  }

  /* Footer bottom spacing fix */
  .footer-bottom {
    margin-top: 0;
    padding: 14px 10px;
    font-size: 13px;
  }
}







/* ================= CTA VIDEO SECTION ================= */
.cta-video-section {
  position: relative;
  width: 100%;
  height: 60vh;          /* ⬅ reduced from 80vh */
  min-height: 420px;     /* ⬅ reduced from 520px */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}


/* VIDEO */
.cta-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0.25; /* subtle grain */
}

/* DARK + BRAND OVERLAY */
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(245,154,7,0.15),
      rgba(0,0,0,0.85)
    );
  z-index: 1;
}

/* CONTENT */
.cta-video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: #fff;
}

.cta-video-content .cta-label {
  color: #f59a07;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}

.cta-video-content h2 {
  font-size: 48px;
  margin: 20px 0;
  line-height: 1.2;
}

.cta-video-content p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #cfcfcf;
  font-size: 15px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-btn {
  padding: 14px 38px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

/* PRIMARY */
.cta-btn.primary {
  background: #f59a07;
  color: #000;
}

.cta-btn.primary:hover {
  box-shadow: 0 0 30px rgba(245,154,7,0.9);
  transform: translateY(-2px);
}

/* SECONDARY */
.cta-btn.secondary {
  border: 1px solid #f59a07;
  color: #f59a07;
}

.cta-btn.secondary:hover {
  background: rgba(245,154,7,0.15);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-video-content h2 {
    font-size: 34px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}



/* ================= page HERO SECTION ================= */
.page-hero {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

/* VIDEO */
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.4)
  );
  z-index: 2;
}

/* CONTENT */
.page-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.page-hero-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 12px;
}

.page-hero-content p {
  font-size: 18px;
  color: #e5e5e5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-hero {
    height: 45vh;
    min-height: 320px;
  }

  .page-hero-content h1 {
    font-size: 40px;
  }

  .page-hero-content p {
    font-size: 16px;
  }
}



/* ================= ABOUT SECTION ================= */
.about-section {
  background: #000;
  padding: 80px 5%;
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* CONTENT */
.about-label {
  color: #f59a07;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

.about-content h2 {
  font-size: 40px;
  margin: 20px 0;
  line-height: 1.2;
  color: #fff;
}

.about-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #cfcfcf;
  margin-bottom: 18px;
  max-width: 560px;
  text-align: justify;
}

/* IMAGE */
.about-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.6s ease;
}

/* SUBTLE HOVER */
.about-image:hover img {
  transform: scale(1.04);
}

/* IMAGE GLOW BORDER */
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(245,154,7,0.35);
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-content h2 {
    font-size: 34px;
  }
}


/* ============ VISION / MISSION / VALUES (THEME MATCHED) ============ */
.vmv-section {
  background: linear-gradient(
    135deg,
    #0b0f14,
    #111827
  ); /* dark premium background */
  padding: 50px 5%;
}

.vmv-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.vmv-card {
  text-align: center;
  padding: 30px 28px;
  color: #ffffff;
  position: relative;
}

/* DIVIDER */
.vmv-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 12%;
  width: 1px;
  height: 76%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(245, 154, 7, 0.6),
    transparent
  );
}

/* ICON */
.vmv-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #f59a07;
  border: 1px solid rgba(245, 154, 7, 0.4);
  border-radius: 14px;
  background: rgba(245, 154, 7, 0.08);
}

.vmv-icon.circle {
  border-radius: 50%;
}

.vmv-icon.shield {
  border-radius: 16px;
}

/* TITLE */
.vmv-card h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #f59a07;
}

/* CONTENT */
.vmv-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #d1d5db;
  text-align: center;
}

/* HOVER EFFECT */
.vmv-card:hover .vmv-icon {
  background: rgba(245, 154, 7, 0.15);
  box-shadow: 0 0 18px rgba(245, 154, 7, 0.35);
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vmv-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vmv-card:not(:last-child)::after {
    display: none;
  }
}



/* ================= WHY CHOOSE US ================= */

.why-choose {
  background: #000;
  padding: 110px 8%;
  color: #fff;
}

/* HEADER */
.why-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-label {
  color: #f59a07;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
}

.why-header h2 {
  font-size: 44px;
  margin-top: 16px;
  line-height: 1.2;
}

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

/* CARD */
.why-item {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.015)
  );
  border-radius: 20px;
  padding: 70px 30px 40px;
  position: relative;
  transition: 0.4s ease;
}

/* ICON */
.why-item i {
  position: absolute;
  top: -26px;
  left: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #f59a07;
  box-shadow: 0 0 0 6px rgba(245,154,7,0.2);
}

/* TEXT */
.why-item h4 {
  font-size: 19px;
  margin-bottom: 14px;
}

.why-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #bfbfbf;
  text-align: justify;
}

/* HOVER */
.why-item:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 50px rgba(0,0,0,0.7),
    0 0 30px rgba(245,154,7,0.35);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-header h2 {
    font-size: 32px;
  }

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




/* TESTIMONIALS */
.testimonials-section {
  background: linear-gradient(
    135deg,
    #0b0f14,
    #111827
  ); /* dark premium background */
  padding: 80px 10%;
  color: #fff;
}

.testimonials-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.testimonials-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #f59a07;
  font-weight: 600;
}

.testimonials-left h2 {
  font-size: 44px;
  margin: 15px 0;
  line-height: 1.2;
}

.testimonials-left p {
  max-width: 420px;
  color: #bfbfbf;
  font-size: 15px;
  line-height: 1.7;
}

/* RIGHT */
.testimonials-right {
  overflow: hidden;
  position: relative;
  max-width: 520px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* CARD */
.testimonial-card {
  min-width: 100%;
  background: #111;
  padding: 35px;
  border-radius: 14px;
  border: 1px solid rgba(245,154,7,0.15);
}

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

.testimonial-card p {
  font-size: 15px;
  color: #d1d1d1;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* AUTHOR */
.author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f59a07;
}

.author h4 {
  font-size: 16px;
  margin: 0;
}

.author span {
  font-size: 13px;
  color: #9f9f9f;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}



/* FAQ SECTION */
.faq-section {
  background: #000;
  padding: 120px 10%;
  color: #fff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-label {
  color: #f59a07;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
}

.faq-header h2 {
  font-size: 42px;
  margin: 12px 0;
}

.faq-header p {
  color: #bfbfbf;
  font-size: 15px;
  max-width: 520px;
  margin: auto;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ITEM */
.faq-item {
  background: #111;
  border-radius: 14px;
  border: 1px solid rgba(245,154,7,0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #f59a07;
  box-shadow: 0 0 0 1px rgba(245,154,7,0.25);
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  color: #f59a07;
}

/* ICON */
.faq-question .icon {
  font-size: 22px;
  color: #f59a07;
  transition: transform 0.3s ease;
}

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

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 26px 24px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 32px;
  }

  .faq-section {
    padding: 90px 6%;
  }
}





/* LUX SERVICES SECTION */
.lux-services {
  background: #0b0b0b;
  padding: 110px 8%;
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.lux-container {
  max-width: 1300px;
  margin: auto;
}

/* HEADER */
.lux-header {
  text-align: center;
  margin-bottom: 80px;
}

.lux-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: #f5f5f5;
}

.lux-line {
  width: 90px;
  height: 5px;
  background: linear-gradient(90deg, #f59a07, transparent);
  margin: 18px auto 0;
  border-radius: 3px;
}

/* GRID */
.lux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.lux-card {
  background: #121212;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lux-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #f59a07, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}

.lux-card:hover::before {
  opacity: 0.15;
}

.lux-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 80px rgba(245, 154, 7, 0.35);
}

/* IMAGE */
.lux-image {
  height: 230px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.lux-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.lux-card:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

/* CONTENT */
.lux-content {
  padding: 28px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lux-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #f59a07;
  text-transform: uppercase;
}

.lux-content p {
  font-size: 15px;
  color: #cfcfcf;
  line-height: 1.7;
  text-align: justify;
  flex-grow: 1;
}

/* BUTTON */
.lux-btn {
  margin-top: 22px;
  align-self: flex-start;
  padding: 12px 34px;
  border-radius: 40px;
  background: linear-gradient(135deg, #f59a07, #ffbf4a);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(245, 154, 7, 0.45);
  transition: all 0.4s ease;
  z-index: 3;
}

/* Shine Effect */
.lux-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.55),
    transparent 80%
  );
  transition: 0.6s ease;
}

.lux-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(245, 154, 7, 0.75);
  color: #000;
}

.lux-btn:hover::before {
  left: 120%;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .lux-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lux-grid {
    grid-template-columns: 1fr;
  }

  .lux-header h2 {
    font-size: 32px;
  }

  .lux-services {
    padding: 90px 6%;
  }

  .lux-btn {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .lux-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .lux-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}












































































































































/* Contact page css */

.contact-section {
  background: #000;
  padding: 100px 10%;
  color: #fff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* CARD BASE */
.contact-info,
.contact-form {
  background: #111;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* LEFT */
.contact-info h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}

.contact-info p {
  color: #bfbfbf;
  line-height: 1.7;
  margin-bottom: 70px;
}

.info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: #f59a07;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-item h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #fff;
}

.info-item p {
  margin: 0;
  font-size: 14px;
  color: #cfcfcf;
}

/* FORM */
.contact-form h2 {
  font-size: 34px;
  margin-bottom: 5px;
}

.form-subtitle {
  color: #bfbfbf;
  margin-bottom: 30px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #000;
  color: #fff;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f59a07;
  box-shadow: 0 0 8px rgba(245,154,7,0.5);
}

.contact-form textarea {
  min-height: 130px;
  resize: none;
}

.contact-form button {
  margin-top: 10px;
  padding: 14px;
  background: #f59a07;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ffb733;
  box-shadow: 0 0 20px rgba(245,154,7,0.7);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .info-list {
    grid-template-columns: 1fr;
  }
}



.map-section {
  width: 100%;
  height: 70vh; 
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) brightness(90%) contrast(110%);
}















/* Responsive section */

@media (max-width: 900px) {
  .features-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features-image {
    margin-bottom: 40px;
  }

  .feature-item {
    align-items: center;
    flex-direction: column;
  }

  .connector {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  .services-section {
    padding: 90px 6%;
  }

  .services-header h2 {
    font-size: 32px;
  }

  .service {
    text-align: center;
  }

  .service-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .services-header h2 {
    font-size: 26px;
  }

  .services-header p {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .service-boxes {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

@media (max-width: 600px) {
  .service-boxes {
    grid-template-columns: 1fr; /* 1 per row */
  }
}



