* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #000;
  position: relative;
}

.logo img { height: 60px; }

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

nav a:hover { opacity: 0.7; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.emergency { font-size: 14px; text-align: right; }

.btn-quote {
  background: transparent;
  color: #ffff00;
  padding: 0;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.btn-quote:hover { opacity: 0.7; }

/* DESKTOP HERO - BIG IMAGE */
.hero {
  display: flex;
  align-items: center;
  padding: 80px 60px;
  gap: 60px;
  min-height: 85vh;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  color: #ffff00;
  font-size: 52px; /* bigger text on desktop */
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-image {
  flex: 1.2; /* image gets more space than text */
}

.hero-image img { 
  width: 100%; 
  max-width: 850px; /* BIGGER on desktop */
  height: auto;
  display: block;
}

/* MOBILE VIEW - TEXT FIRST, EDGE TO EDGE IMAGE */
/* MOBILE VIEW - NAV FIX */
@media (max-width: 768px) {
  .navbar { 
    padding: 15px 20px; 
    flex-wrap: wrap;
    position: relative; /* needed for dropdown */
  }
 
  .hamburger { 
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff; /* make ☰ visible on dark bg */
    z-index: 1000;
  }
  
  /* CHANGE nav to #navMenu to match your HTML id */
  #navMenu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 20px;
    width: 200px;
    background: #111;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    z-index: 999;
  }
  
  #navMenu.active { 
    display: flex; 
  }
  
  #navMenu a { 
    padding: 14px 20px; 
    border-bottom: 1px solid #333;
    text-align: left;
    color: #fff; /* make links visible */
    text-decoration: none;
    font-size: 16px;
  }
  
  #navMenu a:last-child {
    border-bottom: none;
  }
  
  #navMenu a:hover {
    background: #222;
  }
  
  .header-right { 
    order: 3; 
    width: 100%; 
    justify-content: center;
    margin-top: 15px;
    flex-direction: column;
    gap: 10px;
  }
  /* Mobile hero text - smaller + lighter */
    .hero-text h1 {
      font-size: 28px !important;   /* reduce from 52px */
      font-weight: 700 !important;  /* reduce from 900. Use 600 if you want lighter */
      line-height: 1.3 !important;
    }
    /* Mobile: stack hero text over image */

  .hero {
  flex-direction: column;  /* stack vertically */
  padding: 40px 20px;      /* less padding on mobile */
  gap: 30px;               /* space between text + image */
  min-height: auto;
  text-align: center;      /* center the text */
}

.hero-text {
  flex: none;
  width: 100%;
}

.hero-image {
  flex: none;
  width: 100%;
}

.hero-image img {
  max-width: 100%;         /* full width on mobile */
  height: auto;
}
  .emergency { text-align: center; font-size: 12px; color: #fff; }
}

/* SECTION 2: DESIGNS OF THE WEEK */

.designs-week {
  padding: 80px 60px;
  background: #fff;
  color: #000;
  text-align: center;
}

.designs-week h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #000;
  font-family: Arial, sans-serif;
}

.designs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.design-card {
  text-align: left;
}

.design-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 4px;
}

.design-card h3 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #1a202c;
  line-height: 1.4;
}

.design-card p {
  font-size: 11px;
  line-height: 1.6;
  color: #4a5568;
  font-family: Arial, sans-serif;
}

.designs-btn-wrap {
  margin-top: 35px;
}

.btn-more {
  background: #2563eb;
  color: #fff;
  padding: 10px 24px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  display: inline-block;
  border: none;
  transition: 0.3s;
}

.btn-more:hover {
  background: #1d4ed8;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .designs-week {
    padding: 50px 20px;
  }
  
  .designs-week h2 {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .designs-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .design-card img {
    height: 320px;
  }
  
  .design-card h3 {
    font-size: 12px;
  }
  
  .design-card p {
    font-size: 11px;
  }
}

/* SECTION 3: RECENT PARTNERS */
.partners {
  padding: 70px 60px;
  background: #f7fafc;
  text-align: center;
}

.partners h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #2d3748;
  font-family: Arial, sans-serif;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-width: 200px;  /* was 140px */
  height: 100px;     /* was 80px */
  object-fit: contain;
}

.partner-logo img:hover {
  transform: scale(1.05);
}

.partner-logo span {
  font-size: 10px;
  color: #718096;
  margin-top: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .partners {
    padding: 50px 20px;
  }
  
  .partners h2 {
    font-size: 16px;
    margin-bottom: 35px;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on mobile */
    gap: 30px 20px;
  }
  
.partner-logo img {
  max-width: 160px;  /* was 120px */
  height: 90px;      /* was 70px */
}
  
  .partner-logo span {
    font-size: 9px;
  }
}
/* SECTION 4: VFILA SPLIT */
.vfila {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100px;
}

.vfila-left {
  background: #000;
  color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vfila-logo {
  width: 80px;
  margin-bottom: 8px;
}

.vfila-tagline {
  font-size: 11px;
  color: #ccc;
  margin-bottom: 40px;
}

.vfila-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.vfila-desc {
  font-size: 18px;
  line-height: 1.5;
  color: #4a5568;
  margin-bottom: 30px;
  font-weight: 600;
}

.vfila-btn {
  background: #fff;
  color: #2563eb;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 3px;
  transition: 0.3s;
}

.vfila-btn:hover {
  background: #f1f5f9;
}
.vfila-right {
  background: #fff;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0; /* removed padding so image touches edges */
}

.vfila-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills box, crops edges if needed */
  object-position: center; /* centers the cap */
}


/* MOBILE VIEW - STACK VERTICALLY */
@media (max-width: 768px) {
  .vfila {
    grid-template-columns: 1fr; /* stack */
  }
  
  .vfila-left {
    padding: 50px 25px;
    text-align: center;
    align-items: center;
  }
  
  .vfila-logo {
    width: 70px;
  }
  
  .vfila-left h2 {
    font-size: 32px;
  }
  
  .vfila-desc {
    font-size: 16px;
  }
  
  .vfila-right {
    padding: 40px 20px;
  }
  
  .vfila-img {
    max-width: 100%;
  }
}
/* SECTION 5: VCAP SPLIT - REVERSED */
.vcap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* full-bleed like vFila */
  min-height: 520px;
}

.vcap-left {
  background: #fff;
  padding: 0;
  line-height: 0;
}

.vcap-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vcap-right {
  background: #000;
  color: #fff;
  padding: 70px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: flex-start; /* left align everything */
  gap: 15px; /* space between items */
  min-height: 520px;
}



.vcap-logo {
  width: 70px;
  margin: 0 0 5px 0; /* small space below logo */
  align-self: flex-start; /* left align */
}

.vcap-tagline {
  font-size: 10px;
  color: #ccc;
  margin: -10px 0 25px 0; /* negative margin pulls it close to logo */
  align-self: flex-start;
  order: 1; /* tagline comes right after logo */
}

.vcap-right h2 {
  font-size: 38px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  order: 2;
}

.vcap-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #a0aec0;
  margin: 0;
  font-weight: 600;
  max-width: 380px;
  order: 3;
}

.vcap-btn {
  background: #fff;
  color: #2563eb;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 3px;
  transition: 0.3s;
  margin-top: 10px;
  order: 4;
}


.vcap-btn span {
  font-size: 14px;
}

.vcap-btn:hover {
  background: #f1f5f9;
}

/* MOBILE VIEW - STACK, IMAGE FIRST */
@media (max-width: 768px) {
  .vcap {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
  }
  
  .vcap-right {
    padding: 50px 25px;
    align-items: center;
    text-align: center;
  }
  
  .vcap-logo,
  .vcap-tagline {
    align-self: center; /* center on mobile */
  }
  
  .vcap-left {
    min-height: 350px;
  }
}
/* SECTION 6: OUR WORK GALLERY */
.our-work {
  padding: 80px 60px;
  background: #f8f9fa; /* light grey background */
  text-align: center;
}

.our-work h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns desktop */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.work-item {
  background: #fff;
  overflow: hidden;
  aspect-ratio: 1 / 1; /* makes all squares */
  border-radius: 4px;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.work-item img:hover {
  transform: scale(1.05); /* zoom on hover */
}

/* MOBILE: 2 columns */
@media (max-width: 768px) {
  .our-work {
    padding: 50px 20px;
  }
  
  .work-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns mobile */
    gap: 12px;
  }
  
  .our-work h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
/* SECTION 7: TESTIMONIALS */
.testimonials {
  padding: 80px 60px;
  background: #fff;
  text-align: center;
}

.testimonials h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a365d; /* dark blue like screenshot */
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.testimonial-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Center oval image */
.testimonial-item.center img {
  width: 120px;
  height: 180px;
  border-radius: 60px; /* oval shape */
}

.testimonial-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 5px;
}

.testimonial-item .title {
  font-size: 11px;
  font-weight: 700;
  color: #2b6cb0;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.testimonial-item .location {
  font-size: 13px;
  color: #4a5568;
  margin-bottom: 15px;
}

.testimonial-item .quote {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
  font-style: italic;
}

/* MOBILE: 2 columns */
@media (max-width: 768px) {
  .testimonials {
    padding: 50px 20px;
  }
  
  .testimonials h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  
  .testimonial-item img {
    width: 90px;
    height: 90px;
  }
  
  .testimonial-item.center img {
    width: 90px;
    height: 130px;
  }
}
/* FOOTER SECTION */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr; /* map column wider */
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 8px;
}

.footer-label {
  font-weight: 700;
  color: #fff !important;
  margin-top: 20px;
  margin-bottom: 5px !important;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

.copyright {
  font-size: 12px;
  color: #666;
  margin-top: 30px;
}

.social-icons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: #ffcc00; /* yellow circles like screenshot */
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  transform: translateY(-3px);
}

.footer iframe {
  border-radius: 4px;
  filter: grayscale(20%); /* slight grey tone */
}

/* MOBILE: Stack columns */
@media (max-width: 768px) {
  .footer {
    padding: 40px 25px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}
/* about us page */
/* ABOUT PAGE HERO */
.about-hero {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 120px 60px;
}

.about-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.about-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #ccc;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 400;
}

/* Active menu link */
.nav a.active {
  color: #fff;
  font-weight: 600;
}

.nav a {
  color: #999;
  text-decoration: none;
  transition: 0.3s;
}

.nav a:hover {
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero {
    padding: 80px 25px;
  }
  
  .about-hero h1 {
    font-size: 38px;
  }
  
  .about-hero p {
    font-size: 16px;
  }
}
/* ABOUT PAGE SECTION 2: STORY */
.about-story {
  padding: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50/50 split */
  min-height: 500px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-text {
  background: #000;
  color: #ccc;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
}

.story-text p:last-child {
  margin-bottom: 0;
}

/* MOBILE: Stack vertically */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  
  .story-image {
    order: 1; /* image on top */
    min-height: 350px;
  }
  
  .story-text {
    order: 2; /* text below */
    padding: 40px 25px;
  }
  
  .story-text p {
    font-size: 15px;
  }
}
/* ABOUT PAGE SECTION 3: MISSION & VALUES */
.mission-values {
  background: #000;
  color: #fff;
  padding: 80px 60px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.mission h2,
.core-values h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

.mission {
  text-align: center;
}

.mission p {
  font-size: 17px;
  line-height: 1.7;
  color: #ccc;
}

.core-values p {
  font-size: 16px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 20px;
}

.value-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.check {
  color: #ffcc00; /* yellow checkmark */
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

/* MOBILE: Stack */
@media (max-width: 768px) {
  .mission-values {
    padding: 60px 25px;
  }
  
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .mission h2,
  .core-values h2 {
    font-size: 26px;
  }
  
  .mission p,
  .core-values p {
    font-size: 15px;
  }
}
/* ABOUT PAGE SECTION 4: WHY CHOOSE US */
/* WHY CHOOSE US SECTION - BLACK BG */
.why-choose {
  background: #000;
  padding: 80px 60px;
}

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text h2 {
  color: #ffcc00 !important; /* yellow heading */
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.why-list {
  margin-bottom: 30px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  justify-content: center;
}

.why-item .check {
  color: #ffcc00 !important; /* yellow check */
  font-size: 22px;
  font-weight: bold;
}

.why-item p {
  color: white !important; /* white text */
  font-size: 16px;
  margin: 0;
}

.why-desc {
  color: #fff !important; /* force white paragraph */
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  margin-top: 25px;
}

.why-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-choose {
    padding: 60px 25px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-text h2 {
    font-size: 26px;
  }
  
  .why-item p, .why-desc {
    font-size: 15px;
  }
  
  .why-image {
    order: -1; /* image first on mobile */
  }
}
/* PRODUCT PAGE HERO */
.product-hero {
  background: #000;
  color: #fff;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 60px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.product-text {
  text-align: center;
}

.product-text h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.product-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 30px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.btn-yellow {
  background: #ffcc00;
  color: #000;
  padding: 14px 35px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s;
}

.btn-yellow:hover {
  background: #e6b800;
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 150, 255, 0.4)); /* glow effect */
}

.diamond-icon {
  position: absolute;
  bottom: 30px;
  right: 60px;
  width: 50px;
  height: 50px;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 5px 0 0 0; /* rounded top-left like screenshot */
}

/* MOBILE */
@media (max-width: 768px) {
  .product-hero {
    padding: 60px 25px;
    min-height: auto;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-text h1 {
    font-size: 32px;
  }
  
  .product-text p {
    font-size: 16px;
  }
  
  .product-image img {
    max-width: 300px;
  }
  
  .diamond-icon {
    bottom: 20px;
    right: 25px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
/* PRODUCT PAGE SECTION 2: vCAP */
.vcap-section {
  padding: 80px 60px;
  background: #fff;
}

.vcap-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vcap-small {
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
  font-weight: 500;
}

.vcap-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a2b42; /* dark blue text */
  margin-bottom: 40px;
  line-height: 1.4;
}

.vcap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.vcap-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.vcap-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.vcap-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  width: 100%;
}

.vcap-overlay p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .vcap-section {
    padding: 60px 25px;
  }
  
  .vcap-container h2 {
    font-size: 22px;
  }
  
  .vcap-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .vcap-card img {
    height: 300px;
  }
}
/* PRODUCT PAGE SECTION 3: vFILA */
.vfila-section {
  padding: 80px 60px;
  background: #fff;
}

.vfila-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vfila-small {
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
  font-weight: 500;
}

.vfila-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a2b42; /* dark blue text */
  margin-bottom: 40px;
  line-height: 1.4;
}

.vfila-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.vfila-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.vfila-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.vfila-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  width: 100%;
}

.vfila-overlay p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 768px) {
  .vfila-section {
    padding: 60px 25px;
  }
  
  .vfila-container h2 {
    font-size: 22px;
  }
  
  .vfila-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .vfila-card img {
    height: 300px;
  }
}
/* CUSTOM ANIMATION SECTION */
.custom-animation-section {
  padding: 80px 60px;
  background: #fff;
}

.custom-animation-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.custom-animation-image img {
  width: 100%;
  height: auto;
  display: block;
}

.custom-animation-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a2b42;
  margin-bottom: 20px;
  line-height: 1.2;
}

.custom-animation-content p {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-animate {
  display: inline-block;
  background: #ffeb3b; /* bright yellow like screenshot */
  color: #000;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-animate:hover {
  background: #fdd835;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .custom-animation-section {
    padding: 60px 25px;
  }
  
  .custom-animation-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .custom-animation-content h2 {
    font-size: 28px;
  }
  
  .custom-animation-content p {
    font-size: 16px;
  }
}
/* WHY CHOOSE SECTION */
.why-choose-section {
  padding: 80px 60px;
  background: #fff;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-container h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

.why-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.why-item p {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 25px;
  }
  
  .why-choose-container h2 {
    font-size: 20px;
    margin-bottom: 40px;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  
  .why-item img {
    width: 40px;
    height: 40px;
  }
  
  .why-item p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}
/* PRODUCT GALLERY SECTION */
.product-gallery-section {
  padding: 80px 60px;
  background: #fff;
}

.product-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-gallery-container h2 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .product-gallery-section {
    padding: 60px 25px;
  }
  
  .product-gallery-container h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* OUR PRODUCTS CTA SECTION */
.products-cta-section {
  background: #000;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.products-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.products-cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.products-cta-content p {
  font-size: 18px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 35px;
}

.btn-request-quote {
  display: inline-block;
  background: #ffeb3b;
  color: #d32f2f;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-request-quote:hover {
  background: #fdd835;
  transform: translateY(-2px);
}

.products-cta-image {
  position: relative;
}

.products-cta-image img {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 20px 100px; /* rounded bottom-left like screenshot */
  display: block;
}

.diamond-icon {
  position: absolute;
  bottom: -25px;
  left: 45%;
  background: #fff;
  padding: 12px;
  border-radius: 4px 20px 4px 4px; /* bottom-left rounded */
}

.diamond-icon img {
  width: 24px;
  height: 24px;
  display: block;
}


/* MOBILE */
@media (max-width: 768px) {
  .products-cta-section {
    padding: 70px 25px;
  }
  
  .products-cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .products-cta-content h2 {
    font-size: 32px;
  }
  
  .products-cta-content p {
    font-size: 16px;
  }
  
  .products-cta-image img {
    border-radius: 20px 20px 20px 80px;
  }
  
  .diamond-icon {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* CONTACT PAGE */
.contact-section {
  padding: 0;
  min-height: 600px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* LEFT BLACK PANEL */
.contact-left {
  background: #000;
  color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-small {
  font-size: 14px;
  margin-bottom: 15px;
  color: #ccc;
}

.contact-left h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-desc {
  font-size: 16px;
  color: #ddd;
  line-height: 1.7;
}

/* RIGHT FORM PANEL */
.contact-right {
  background: #f8f9fa;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a2b42;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form button {
  background: #2563eb;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #1d4ed8;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-left,
  .contact-right {
    padding: 60px 25px;
  }
  
  .contact-left h2 {
    font-size: 28px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}


























































































































/* ABOUT PAGE FIX - DOES NOT AFFECT INDEX */
.about-hero {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 120px 60px;
}

.about-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 2px;
  color: #fff !important;
}

.about-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #ccc !important;
  max-width: 900px;
  margin: 0 auto;
}

/* STORY GRID */
.about-story { padding: 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-text {
  background: #000;
  color: #ccc;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ccc !important;
}

/* MISSION + VALUES */
.mission-values {
  background: #000;
  color: #fff;
  padding: 80px 60px;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.mission h2, .core-values h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff !important;
}
.value-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.check {
  color: #ffcc00 !important;
  font-size: 18px;
  font-weight: 700;
}

/* WHY CHOOSE */
.why-choose {
  background: #000;
  padding: 80px 60px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.why-text h2 {
  color: #ffcc00 !important;
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}
.why-item p, .why-desc {
  color: #fff !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .story-grid, .mv-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  .about-hero { padding: 80px 25px; }
  .story-text, .mission-values, .why-choose { padding: 60px 25px; }
}







































/* Mobile navbar */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 20px;
}

/* Show hamburger + hide menu on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  nav.active {
    display: flex;
  }
}