
/* ========================================
   FUTURE CONCEPTS - COMPLETE OPTIMIZED CSS
   WITH LEAD GENERATION & MOBILE RESPONSIVE
   ======================================== */

* {
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000000;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: #1d1d1d;
}


    


img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========== NAVIGATION ========== */



.nav-transparent{
      position: absolute;
      /*top: 0;*/
      /*left: 0;*/
      width: 100%;
      z-index: 1000;
      background: black;
      transition: all 0.3s ease;
      padding: 0;
      opacity: 0.5;
      
    }

    .nav-transparent.scrolled {
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(20px);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      padding: 1rem 0;
    }

    .nav-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Logo on Left */
    .site-name {
      z-index: 1001;
    }

    .site-logo {
      /*height: 70px;*/
      /*width: auto;*/
      /*transition: all 0.3s ease;*/
      
          height: 120px;
          width: 200px;
       
 
    }

    .nav-transparent.scrolled .site-logo {
      height: 55px;
    }

    /* Navigation Links on Right */
    .nav-links {
      display: flex;
      gap: 3rem;
      align-items: center;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      position: relative;
      text-transform: uppercase;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #d7b56d;
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      color: #d7b56d;
    }

    .nav-links a:hover::after {
      width: 100%;
    }



    /* Hero Section */
    header {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #bg-video {
      position: absolute;
      top: 20px;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .overlay {
      position: absolute;
      top: 20px;
      left: 0;
      width: 100%;
      height: 100%;
      /*background: rgba(0, 0, 0, 0.4);*/
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: white;
      padding: 0 2rem;
      max-width: 900px;
    }

    .hero-subtitle {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: #d7b56d;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .hero-description {
      font-size: 1.2rem;
      color: #eee;
      margin-bottom: 2.5rem;
      line-height: 1.6;
    }

    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      width:100%;
    }

    .btn-primary {
        
      background: #d7b56d;
      color: white;
      padding: 1rem 2.5rem;
      font-weight: 700;
      font-size: 1.1rem;
      border-radius: 50px;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-primary:hover {
      background: #000;
      border: 1px solid #d7b56d;
      transform: translateY(-2px);
    }

    .btn-secondary {
        
      background: transparent;
      color: white;
      padding: 1rem 2.5rem;
      font-weight: 600;
      font-size: 1.1rem;
      border-radius: 50px;
      cursor: pointer;
      border: 2px solid white;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-secondary:hover {
      background: white;
      color: #000;
    }

    /* Mobile Responsive */
    @media (max-width: 1200px) {
      .nav-content {
        padding: 0 2rem;
      }

      .nav-links {
        gap: 2rem;
      }

      .nav-links a {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 992px) {
      .nav-links {
        gap: 1.5rem;
      }

      .nav-links a {
        font-size: 0.85rem;
      }

      .site-logo {
        height: 60px;
      }
    }

    @media (max-width: 768px) {
      .nav-content {
        padding: 0 1.5rem;
      }

      .nav-links {
        gap: 1rem;
      }

      .nav-links a {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
      }

      .site-logo {
        height: 50px;
      }

      .nav-transparent.scrolled .site-logo {
        height: 45px;
      }

      .hero-subtitle {
        font-size: 1rem;
      }

      .hero-description {
        font-size: 1rem;
      }

      .btn-primary,
      .btn-secondary {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 576px) {
      .nav-links {
        gap: 0.8rem;
      }

      .nav-links a {
        font-size: 0.7rem;
      }

      .site-logo {
        height: 45px;
      }

      .hero-subtitle {
        font-size: 0.9rem;
      }

      .hero-description {
        font-size: 0.9rem;
      }
    }
/* ========== FLOATING WHATSAPP BUTTON ========== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

/* ========== TRUST BADGES ========== */
.trust-badges {
  background: rgba(0, 0, 0, 0.9);
  padding: 3rem 2rem;
  text-align: center;
}

.badges-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.badge-item {
  text-align: center;
}

.badge-item h3 {
  font-size: 3rem;
  color: #d7b56d;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.badge-item p {
  color: #ccc;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========== INTRO TEXT ========== */
.intro-text {
  max-width: 700px;
  margin: auto;
}

.project-title {
  font-family: 'Didot', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  color: #d7b56d;
  padding-top: 25px;
}

.title-divider {
  width: 50%;
  height: 3px;
  background-color: #d24332;
  margin: 12px auto 20px;
  border-radius: 2px;
}

/* ========== WHO WE ARE ========== */
.who-we-are {
  background-color: #0A0A0A !important;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.who-we-are h2 {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, "Lucida Grande", Arial;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: #d7b56d;
}

.who-we-are-highlights {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.highlight-icon {
  font-size: 2.5rem;
  color: #fbbf24;
}

.highlight-item p {
  color: #ccc;
  font-size: 1rem;
}

.who-we-are p {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #e7e5e5;
  line-height: 1.7;
}

/* ========== CARDS CONTAINER ========== */
/* .cards-container {
  max-width: 1200px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 1rem;
} */
.cards-container {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0 1rem;
    background: rgba(0, 0, 0, 0.6); /* Black with 60% opacity */
    border-radius: 10px; /* optional */
}

.card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  z-index: 0;
}

.card:hover img {
  transform: scale(1.05);
}

.card-text {
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
  font-family: 'Didot', serif;
  font-style: italic;
}

/* ========== WHAT WE STAND FOR ========== */
/*.container {*/
/*  width: 100%;*/
/*  margin: 0 auto;*/
/*}*/

/*.what-we-stand-for {*/
/*  color: white;*/
/*  padding: 60px 20px;*/
/*  text-align: center;*/
/*  background-color: #0A0A0A;*/
/*}*/

/*.section-title {*/
/*  font-family: "Segoe UI", "Helvetica Neue", Helvetica, "Lucida Grande", Arial;*/
/*  font-size: 2.5rem;*/
/*  letter-spacing: 0.1em;*/
/*  color: #d7b56d;*/
/*  margin-bottom: 40px;*/
/*}*/

/*.values-container {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(3, 1fr);*/
/*  gap: 30px;*/
/*  margin: 0 20px;*/
/*}*/

/*.value-card {*/
/*  padding: 40px;*/
/*  border-radius: 50%;*/
/*  width: 250px;*/
/*  height: 250px;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  transition: transform 0.5s ease-in-out;*/
/*  margin: 0 auto;*/
/*  background-color: #0A0A0A;*/
/*  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
/*  border: 0.8px solid #d7b56d;*/
/*}*/

/*.value-card:hover {*/
/*  transform: scale(1.05);*/
/*}*/

/*.value-card h3 {*/
/*  font-family: 'Amatic SC', cursive;*/
/*  font-size: 22px;*/
/*  margin-bottom: 15px;*/
/*  color: #d7b56d;*/
/*}*/

/*.value-card p {*/
/*  font-family: 'Lora', serif;*/
/*  font-size: 16px;*/
/*  font-weight: 300;*/
/*  text-align: center;*/
/*}*/

/* CTA after values */
/*.values-cta {*/
/*  margin-top: 3rem;*/
/*  text-align: center;*/
/*}*/

/*.values-cta-text {*/
/*  font-size: 1.3rem;*/
/*  color: #d7b56d;*/
/*  font-style: italic;*/
/*  margin-bottom: 1.5rem;*/
/*  font-family: 'Lora', serif;*/
/*}*/

 /* what we stand for */
.what-we-stand-for-section {
      padding: 80px 20px;
      background: black;
      min-height: auto;
      width: 100%;
    }

    .values-container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .values-header {
      text-align: center;
      margin-bottom: 60px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .values-header h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: -1px;
      margin-bottom: 20px;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
    }

    .values-header h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: #fbbf24;
      border-radius: 2px;
    }

    .values-header p {
      font-size: 1.4rem;
      color: #666;
      margin-top: 30px;
      line-height: 1.6;
      font-weight: 300;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
      width: 100%;
    }

    .value-card-large {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(212, 49, 47, 0.1);
      cursor: pointer;
      position: relative;
    }

    .value-card-large:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(212, 49, 47, 0.15);
    }

    .card-image-container {
      width: 100%;
      height: 250px;
      background: #fbbf24;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .card-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .value-card-large:hover .card-image-container img {
      transform: scale(1.05);
    }

    .card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
     
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .value-card-large:hover .card-overlay {
      opacity: 1;
    }

    .click-icon {
      font-size: 2.5rem;
      color: white;
    }

    .value-content {
      padding: 40px;
      position: relative;
      height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-color: black;
    }

    .value-content h3 {
      font-size: 1.8rem;
      color: #ffffff;
      margin-bottom: 15px;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .value-content p {
      color: #ffffff;
      line-height: 1.8;
      font-size: 0.95rem;
      font-weight: 300;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* Modal Styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      animation: fadeIn 0.3s ease;
      overflow-y: auto;
    }

    .modal.show {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    .modal-content {
      background-color: white;
      padding: 0;
      border-radius: 20px;
      width: 90%;
      max-width: 700px;
      max-height: 90vh;
      overflow-y: auto;
      animation: slideUp 0.4s ease;
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
      margin: auto;
    }

    @keyframes slideUp {
      from {
        transform: translateY(50px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-image {
      width: 100%;
      height: 350px;
      object-fit: contain;
      border-radius: 20px 20px 0 0;
    }

    .modal-text {
      padding: 50px 40px;
      background-color: #000;
    }

    .modal-close {
      position: absolute;
      right: 20px;
      top: 20px;
      font-size: 2rem;
      cursor: pointer;
      color: white;
      background: rgba(0, 0, 0, 0.5);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      border: none;
      z-index: 1001;
    }

    .modal-close:hover {
      background: rgba(0, 0, 0, 0.8);
    }

    .modal h3 {
      font-size: 2.2rem;
      color: #ffffff;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .modal p {
      color: #ffffff;
      line-height: 1.9;
      font-size: 1rem;
      font-weight: 300;
    }

    .values-cta-section {
      text-align: center;
      padding: 10px 10px;
      background:  #000000;
      border-radius: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    }

    .values-cta-section h3 {
      font-size: 2rem;
      color: white;
      margin-bottom: 30px;
      font-weight: 600;
      line-height: 1.4;
    }

    .btn-primary {
      background: #fbbf24;
      color: white;
      padding: 15px 35px;
      border: none;
      border-radius: 8px;
      font-size: 1.05rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: #fbbf24;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: #fbbf24;
      background: #fbbf24;
    }

    /* Tablet Responsive */
    @media (max-width: 1024px) {
      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .values-header h2 {
        font-size: 3rem;
      }

      .modal-content {
        width: 85%;
        max-width: 600px;
      }
    }

    /* Medium Device Responsive */
    @media (max-width: 768px) {
      .what-we-stand-for-section {
        padding: 60px 15px;
      }

      .values-container {
        padding: 0 10px;
      }

      .values-header {
        margin-bottom: 50px;
      }

      .values-header h2 {
        font-size: 2.5rem;
      }

      .values-header h2::after {
        width: 60px;
        bottom: -12px;
      }

      .values-header p {
        font-size: 1rem;
        margin-top: 25px;
      }

      .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 50px;
      }

      .card-image-container {
        height: 200px;
      }

      .value-content {
        padding: 30px;
        height: auto;
        min-height: 180px;
      }

      .value-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
      }

      .value-content p {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
      }

      .modal-content {
        width: 90%;
        max-width: 550px;
        max-height: 85vh;
        border-radius: 15px;
      }

      .modal-image {
        height: 280px;
        border-radius: 15px 15px 0 0;
      }

      .modal-text {
        padding: 40px 30px;
      }

      .modal h3 {
        font-size: 1.8rem;
        margin-bottom: 18px;
      }

      .modal p {
        font-size: 0.95rem;
        line-height: 1.8;
      }

      .modal-close {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        right: 15px;
        top: 15px;
      }

      .values-cta-section {
        padding: 50px 25px;
        border-radius: 15px;
      }

      .values-cta-section h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
      }

      .btn-primary {
        padding: 13px 30px;
        font-size: 1rem;
      }
    }

    /* Small Device Responsive */
    @media (max-width: 640px) {
      .what-we-stand-for-section {
        padding: 50px 12px;
      }

      .values-container {
        width: 100%;
        padding: 0 5px;
      }

      .values-header {
        margin-bottom: 40px;
      }

      .values-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
      }

      .values-header h2::after {
        width: 50px;
        bottom: -10px;
      }

      .values-header p {
        font-size: 0.95rem;
        margin-top: 20px;
      }

      .values-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 40px;
      }

      .card-image-container {
        height: 220px;
      }

      .value-content {
        padding: 25px;
        height: auto;
        min-height: 160px;
      }

      .value-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
      }

      .value-content p {
        font-size: 0.85rem;
        line-height: 1.6;
        -webkit-line-clamp: 2;
      }

      .click-icon {
        font-size: 2rem;
      }

      .modal-content {
        width: 95%;
        max-width: 95%;
        max-height: 90vh;
        border-radius: 12px;
      }

      .modal-image {
        height: 250px;
        border-radius: 12px 12px 0 0;
      }

      .modal-text {
        padding: 30px 20px;
      }

      .modal h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
      }

      .modal p {
        font-size: 0.9rem;
        line-height: 1.7;
      }

      .modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        right: 12px;
        top: 12px;
      }

      .values-cta-section {
        padding: 40px 20px;
        border-radius: 12px;
        margin: 0 auto;
      }

      .values-cta-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        line-height: 1.3;
      }

      .btn-primary {
        padding: 12px 25px;
        font-size: 0.95rem;
        gap: 8px;
      }
    }

    /* Extra Small Device Responsive */
    @media (max-width: 480px) {
      .what-we-stand-for-section {
        padding: 40px 10px;
      }

      .values-header {
        margin-bottom: 30px;
      }

      .values-header h2 {
        font-size: 1.8rem;
      }

      .values-header p {
        font-size: 0.9rem;
        margin-top: 15px;
      }

      .values-grid {
        gap: 15px;
        margin-bottom: 35px;
      }

      .card-image-container {
        height: 200px;
      }

      .value-content {
        padding: 20px;
        min-height: 140px;
      }

      .value-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
      }

      .value-content p {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
      }

      .modal-content {
        width: 98%;
        max-height: 92vh;
      }

      .modal-image {
        height: 220px;
      }

      .modal-text {
        padding: 25px 18px;
      }

      .modal h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
      }

      .modal p {
        font-size: 0.85rem;
        line-height: 1.6;
      }

      .modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
        right: 10px;
        top: 10px;
      }

      .values-cta-section {
        padding: 35px 15px;
      }

      .values-cta-section h3 {
        font-size: 1.15rem;
        margin-bottom: 18px;
      }

      .btn-primary {
        padding: 11px 22px;
        font-size: 0.9rem;
      }
    }


/* ========== PROJECT SECTION ========== */
.project-section {
  max-width: 1200px;
  margin: 2rem auto 4rem;
  padding: 0 1rem;
}

.project-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  background-color: #0A0A0A;
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  color: #fafafa;
}

.project-item.even {
  flex-direction: row-reverse;
}

.project-desc {
  flex: 1 1 48%;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-desc h3 {
  /* font-family: 'Amatic SC', cursive; */
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, "Lucida Grande", Arial;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d7b56d;
}

.project-desc p {
  font-size: 1.05rem;
  color: inherit;
  max-width: 90%;
  text-align: justify;
  font-family: 'Lora', serif;
  margin-bottom: 1.5rem;
}

.project-title-divider {
  width: 100%;
  height: 3px;
  background-color: #222;
  margin: 12px auto 20px;
  border-radius: 2px;
}

.project-image {
  flex: 1 1 52%;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  filter: brightness(1);
  transition: filter 0.4s ease;
  display: block;
}

.project-item:hover .project-image img {
  filter: brightness(1.1);
}

/* Project Enquiry Button */
.btn-project-enquiry {
  


  padding: 10px 10px;
  background-color: #d7b56d;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 25px;
  margin-top: 20px;
  transition: background-color 0.3s ease;

   
}

.btn-project-enquiry:hover {
  background: #000000;
  border: 1px white solid;

  
}

/* Lead Magnet Banner */
.lead-magnet-banner {
  /* background: #050505; */
  /*padding: 3rem 2rem;*/
  text-align: center;
  border-radius: 20px;
  margin: 3rem 0;
  /* box-shadow: 0 10px 30px rgba(210, 67, 50, 0.3); */
}

.lead-magnet-content h3 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  font-family: 'Amatic SC', cursive;
}

.lead-magnet-content p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 2rem;
}

/* ========== PORTFOLIO PREVIEW ========== */
.portfolio-preview {
  background-color: #0000007a;
  padding: 4rem 1rem 2rem;
  text-align: center;
}

.portfolio-preview h2 {
  /* font-family: 'Amatic SC', cursive; */
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, "Lucida Grande", Arial;
  font-size: 4rem;
  margin-bottom: 1rem;
  user-select: none;
  color: #eee;
}

.portfolio-preview p {
  max-width: 650px;
  margin: auto;
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  font-family: 'Lora', serif;
  margin-bottom: 2rem;
}

/* ========== VISIONARIES ========== */
.visionaries h2 {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, "Lucida Grande", Arial;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color:white;
}

.visionary-item {
  align-items: flex-start;
}

.visionary-text h3 {
  font-family: 'Amatic SC', cursive;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.visionary-text blockquote {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: white;
}

.visionary-text p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: white;
  line-height: 1.7;
}

.visionary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== PROJECTS GRID ========== */
.projects-grid {
  max-width: 1200px;
  margin: 3rem auto 5rem;
  display: grid;
  gap: 2.5rem;
  padding: 0 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.project-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 0.8px white solid;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  
}

.project-info {
  padding: 1rem 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #000;
}

.project-info h4 {
  /* font-family: 'Amatic SC', cursive; */
    font-family: "Segoe UI", "Helvetica Neue", Helvetica, "Lucida Grande", Arial;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.project-info p {
  font-size: 0.9rem;
  color: #666;
  flex-grow: 1;
  line-height: 1.3;
  font-family: 'Lora', serif;
  color: #ccc;
}

/* ========== LEAD FORM SECTION ========== */
.lead-form-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 5rem 2rem;
  position: relative;
}

.lead-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: #0a0a0a;
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid #d7b56d;
  /* box-shadow: 0 10px 40px rgba(215, 181, 109, 0.2); */
}

.footer img{
 
     height: 155px;
    width: 250px;

}
.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-size: 2.5rem;
  color: #d7b56d;
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.form-header p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.trust-indicators span {
  /* color: #fbbf24; */
    color: #ffffff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: #d7b56d;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d7b56d;
  background: #222;
}

.form-group textarea {
  resize: vertical;
  font-family: 'Roboto', sans-serif;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  background: #d7b56d;
  color: white;
  padding: 1.2rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* box-shadow: 0 4px 15px rgba(210, 67, 50, 0.4); */
}

.btn-submit:hover {
  background: #000000;

  transform: translateY(-2px);
  /* box-shadow: 0 6px 20px rgba(210, 67, 50, 0.6); */
}

/* ========== EXIT POPUP ========== */
.exit-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.exit-popup-content {
  background: #0a0a0a;
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid #d7b56d;
  max-width: 500px;
  width: 100%;
  position: relative;
  text-align: center;
}

.exit-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #d7b56d;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.exit-popup-content h3 {
  color: #d7b56d;
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.exit-popup-content p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exit-popup-form input,
.exit-popup-form select {
  padding: 0.9rem;
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
}

.exit-popup-form input:focus,
.exit-popup-form select:focus {
  outline: none;
  border-color: #d7b56d;
}

/* ========== FOOTER ========== */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  /*padding: 3rem 1rem;*/
}

footer img {
  border: none;
  object-fit: contain;
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
  background-color: transparent;
}

footer a {
  color: #ffffff;
  text-decoration: underline;
}

footer a:hover {
  opacity: 0.8;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
  /* Navigation */
  .nav {
    padding: 12px 20px;
  }

  .site-name {
    font-size: 16px;
    max-width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .search-container {
    gap: 10px;
  }

  .search-input {
    width: 150px;
    padding: 6px 30px 6px 12px;
    font-size: 13px;
  }

  .search-input:focus {
    width: 180px;
  }

  .menu-overlay {
    width: 250px;
  }

  /* Hero Section */
  header {
    height: 500px;
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: 0.08rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  /* Trust Badges */
  .trust-badges {
    padding: 2rem 1rem;
  }

  .badges-container {
    gap: 2rem;
  }

  .badge-item h3 {
    font-size: 2.5rem;
  }

  .badge-item p {
    font-size: 0.9rem;
  }

  /* Intro Text */
  .intro-text {
    padding: 40px 20px;
  }

  .project-title {
    font-size: 1.5rem;
    padding: 0 15px;
  }

  .title-divider {
    width: 70%;
  }

  /* Who We Are */
  .who-we-are {
    padding: 50px 20px;
  }

  .who-we-are h2 {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .who-we-are-highlights {
    flex-direction: column;
    gap: 1.5rem;
  }

  .highlight-icon {
    font-size: 2rem;
  }

  .who-we-are p {
    font-size: 1rem;
    padding: 0 10px;
  }

  /* Cards Container */
  .cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 20px 15px;
  }

  .card {
    height: 280px;
  }

  .card-text {
    font-size: 1.6rem;
  }

  /* What We Stand For */
  .what-we-stand-for {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .values-container {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 280px;
    margin: 0 auto;
  }

  .value-card {
    width: 220px;
    height: 220px;
    padding: 30px 20px;
  }

  .value-card h3 {
    font-size: 20px;
  }

  .value-card p {
    font-size: 15px;
  }

  .values-cta-text {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  /* Project Section */
  .project-section {
    padding: 0 15px;
  }

  .project-item {
    flex-direction: column !important;
    margin-bottom: 2.5rem;
  }

  .project-item.even {
    flex-direction: column !important;
  }

  .project-desc {
    padding: 1.8rem 1.5rem;
    flex: 1 1 100%;
  }

  .project-desc h3 {
    font-size: 1.6rem;
    text-align: center;
  }

  .project-desc p {
    font-size: 0.95rem;
    max-width: 100%;
    text-align: justify;
  }

  .project-image {
    flex: 1 1 100%;
    min-height: 220px;
    max-height: 300px;
  }

  .btn-project-enquiry {
    width: 100%;
    justify-content: center;
  }

  /* Lead Magnet Banner */
  .lead-magnet-banner {
    /*padding: 2rem 1.5rem;*/
    margin: 0;
  }

  .lead-magnet-content h3 {
    font-size: 2rem;
  }

  .lead-magnet-content p {
    font-size: 1rem;
  }

  /* Portfolio Preview */
  .portfolio-preview {
    padding: 3rem 20px 2.5rem;
  }

  .portfolio-preview h2 {
    font-size: 2.8rem;
  }

  .portfolio-preview p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .button-primary {
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    color: white;
        border: 1px solid white;
        border-radius: 30px;
  }

  /* Visionaries */
  .visionaries {
    padding: 50px 20px;
  }

  .visionaries h2 {
    font-size: 2rem;
    margin-bottom: 35px;
  }

  .visionary-item {
    flex-direction: column !important;
    margin-bottom: 35px;
    gap: 25px;
  }

  .visionary-text {
    text-align: center;
  }

  .visionary-text h3 {
    font-size: 1.4rem;
  }

  .visionary-text blockquote {
    font-size: 1rem;
    text-align: left;
  }

  .visionary-text p {
    font-size: 0.95rem;
    text-align: left;
  }

  /* Projects Grid */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 15px;
  }

  .project-card img {
    height: 220px;
  }

  .project-info h4 {
    font-size: 1.2rem;
  }

  .project-info p {
    font-size: 0.9rem;
  }

  /* Lead Form */
  .lead-form-section {
    padding: 3rem 1rem;
  }

  .lead-form-container {
    padding: 2rem 1.5rem;
  }

  .form-header h2 {
    font-size: 2rem;
    flex-direction: column;
  }

  .form-header p {
    font-size: 1rem;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 0.5rem;
  }

  .trust-indicators span {
    font-size: 0.85rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  .btn-submit {
    padding: 1rem;
    font-size: 1rem;
  }

  /* Exit Popup */
  .exit-popup-content {
    padding: 2rem 1.5rem;
  }

  .exit-popup-content h3 {
    font-size: 1.5rem;
    flex-direction: column;
  }

  .exit-popup-content p {
    font-size: 1rem;
  }

  /* WhatsApp Float */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }

  /* Footer */
  footer {
    padding: 50px 20px 30px;
  }

  footer img {
    width: 120px;
  }

  footer h3 {
    font-size: 1.2rem;
  }

  footer p {
    font-size: 0.95rem;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 767px) {
  .site-name {
    font-size: 14px;
    position: static;
    transform: none;
    max-width: 120px;
  }

  .search-input {
    width: 100px;
  }

  .search-input:focus {
    width: 130px;
  }

  .menu-overlay {
    width: 220px;
  }

  header {
    height: 70vh;
    min-height: 450px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    letter-spacing: 0.05rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  .badge-item h3 {
    font-size: 2rem;
  }

  .project-title {
    font-size: 1.3rem;
  }

  .who-we-are h2,
  .section-title,
  .visionaries h2 {
    font-size: 1.6rem;
  }

  .card {
    height: 240px;
  }

  .card-text {
    font-size: 1.4rem;
  }

  .values-container {
    max-width: 1200px;
  }

  .value-card {
    width: 180px;
    height: 180px;
    padding: 20px 15px;
  }

  .value-card h3 {
    font-size: 18px;
  }

  .value-card p {
    font-size: 13px;
  }

  .project-desc h3 {
    font-size: 1.4rem;
  }

  .project-desc p {
    font-size: 0.9rem;
  }

  .lead-magnet-content h3 {
    font-size: 1.7rem;
  }

  .portfolio-preview h2 {
    font-size: 2.2rem;
  }

  .visionary-text h3 {
    font-size: 1.3rem;
  }

  .form-header h2 {
    font-size: 1.7rem;
  }

  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  footer img {
    width: 100px;
  }
}

/* Landscape Orientation */
@media (max-width: 768px) and (orientation: landscape) {
  header {
    height: 100vh;
    min-height: 100vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .card {
    height: 220px;
  }

  .value-card {
    width: 160px;
    height: 160px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .menu-icon,
  .search-icon,
  button,
  .btn-primary,
  .btn-secondary,
  .button-primary {
    min-height: 44px;
    min-width: 44px;
  }

  .project-card:hover {
    transform: none;
  }

  .value-card:hover {
    transform: none;
  }

  .card:hover img {
    transform: none;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .nav,
  .whatsapp-float,
  .exit-popup,
  .menu-overlay,
  .menu-backdrop,
  .cta-buttons,
  .btn-primary,
  .btn-secondary,
  .button-primary,
  .lead-form-section {
    display: none !important;
  }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* testimonal section */

.testimonials-section {
      padding: 80px 20px;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: 2px;
      margin-bottom: 15px;
      text-transform: uppercase;
    }

    .section-header p {
      font-size: 1.1rem;
      color: #a0a0a0;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .slider-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 80px;
    }

    .testimonials-slider {
      overflow: hidden;
      position: relative;
    }

    .testimonials-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .testimonial-slide {
      min-width: 100%;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .testimonial-card {
      background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
      border-radius: 20px;
      padding: 50px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
      position: relative;
      overflow: hidden;
      max-width: 900px;
      margin: 0 auto;
    }

    .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #c9a961, #d4af37);
    }

    .quote-icon {
      font-size: 4rem;
      color: #c9a961;
      opacity: 0.2;
      position: absolute;
      top: 30px;
      right: 40px;
    }

    .testimonial-content {
      position: relative;
      z-index: 1;
    }

    .stars {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-bottom: 30px;
    }

    .stars i {
      color: #fbbf24;
      font-size: 1.3rem;
    }

    .testimonial-text {
      color: #d1d1d1;
      font-size: 1.2rem;
      line-height: 2;
      margin-bottom: 40px;
      font-style: italic;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .client-info {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding-top: 30px;
      border-top: 1px solid #3a3a3a;
    }

    .client-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: linear-gradient(135deg, #c9a961, #d4af37);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      font-weight: 700;
      color: #1a1a1a;
      flex-shrink: 0;
    }

    .client-details {
      text-align: left;
    }

    .client-details h4 {
      color: #ffffff;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .client-details p {
      color: #a0a0a0;
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .project-tag {
      display: inline-block;
      background: rgba(201, 169, 97, 0.2);
      color: #c9a961;
      padding: 6px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
    }

    /* Navigation Arrows */
    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #c9a961, #d4af37);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1a1a1a;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      z-index: 10;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .slider-nav:hover {
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
    }

    .slider-nav.prev {
      left: 0;
    }

    .slider-nav.next {
      right: 0;
    }

    /* Dots Navigation */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 40px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #3a3a3a;
      border: 2px solid #4a4a4a;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .dot.active {
      background: linear-gradient(135deg, #c9a961, #d4af37);
      border-color: #c9a961;
      transform: scale(1.3);
    }

    .dot:hover {
      border-color: #c9a961;
    }

    /* Stats Section */
    .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-top: 80px;
      padding: 40px;
      background: rgba(42, 42, 42, 0.5);
      border-radius: 15px;
      backdrop-filter: blur(10px);
    }

    .stat-item {
      text-align: center;
      padding: 20px;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #c9a961;
      margin-bottom: 10px;
    }

    .stat-label {
      color: #d1d1d1;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* CTA Section */
    .cta-section {
      text-align: center;
      margin-top: 60px;
      padding: 40px 20px;
    }

    .cta-section h3 {
      color: #ffffff;
      font-size: 1.8rem;
      margin-bottom: 20px;
    }

    .btn-primary {
      background: linear-gradient(135deg, #c9a961, #d4af37);
      color: #1a1a1a;
      padding: 15px 0px !important;
      border: none;
      border-radius: 30px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
    }

    @media (max-width: 768px) {
      .section-header h2 {
        font-size: 2rem;
      }

      .slider-container {
        padding: 20px 60px;
      }

      .testimonial-card {
        padding: 30px 25px;
      }

      .testimonial-text {
        font-size: 1rem;
      }

      .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }

      .client-info {
        flex-direction: column;
        text-align: center;
      }

      .client-details {
        text-align: center;
      }

      .stats-container {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 767px) {
  .slider-container {
    padding: 10px 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .client-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .btn-primary {
    font-size: 1rem;
    padding: 12px 30px;
  }
}
.cta-section {
  padding: 30px 10px;
}

.btn-primary {
  width: 100%;
  justify-content: center;
  max-width: 345px;
  /*margin: 0 auto;*/
}

 /* thank.you page */
    .thank-you-container {
     max-width: 100%;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      padding: 60px 40px;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      animation: slideUp 0.8s ease-out;
      position: relative;
      overflow: hidden;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .success-icon {
      width: 100px;
      height: 100px;
      margin: 0 auto 30px;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: scaleIn 0.6s ease-out 0.3s both;
      position: relative;
    }

    .success-icon::before {
      content: '';
      position: absolute;
      width: 120px;
      height: 120px;
      border: 3px solid rgba(16, 185, 129, 0.3);
      border-radius: 50%;
      animation: pulse 2s ease-out infinite;
    }

    @keyframes scaleIn {
      from {
        transform: scale(0);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.2);
        opacity: 0;
      }
    }

    .success-icon i {
      color: white;
      font-size: 50px;
      animation: checkmark 0.4s ease-out 0.6s both;
    }

    @keyframes checkmark {
      from {
        transform: scale(0) rotate(-45deg);
      }
      to {
        transform: scale(1) rotate(0deg);
      }
    }

    h1 {
      font-size: 2.5rem;
      color: #1a1a1a;
      margin-bottom: 15px;
      font-weight: 700;
      animation: fadeIn 0.6s ease-out 0.4s both;
    }

    .subtitle {
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 30px;
      line-height: 1.6;
      animation: fadeIn 0.6s ease-out 0.6s both;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .info-box {
      background: #f8f9fa;
      border-left: 4px solid #10b981;
      padding: 20px;
      margin: 30px 0;
      border-radius: 8px;
      text-align: left;
      animation: fadeIn 0.6s ease-out 0.8s both;
    }

    .info-box h3 {
      color: #1a1a1a;
      font-size: 1.2rem;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .info-item {
      display: flex;
      align-items: center;
      margin: 12px 0;
      color: #555;
      font-size: 0.95rem;
    }

    .info-item i {
      color: #10b981;
      margin-right: 12px;
      font-size: 1.1rem;
      min-width: 20px;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 30px 0;
      animation: fadeIn 0.6s ease-out 1s both;
    }

    .social-link {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      color: #1a1a1a;
      transition: all 0.3s ease;
      text-decoration: none;
      font-size: 1.3rem;
    }

    .social-link:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .social-link.whatsapp:hover {
      background: #25D366;
      color: white;
    }

    .social-link.instagram:hover {
      background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
      color: white;
    }

    .social-link.facebook:hover {
      background: #1877F2;
      color: white;
    }

    .buttons-group {
     
      gap: 15px;
      margin-top: 30px;
      animation: fadeIn 0.6s ease-out 1.2s both;
    }

    .btn {
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .btn-primary {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      color: white;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .btn-secondary {
      background: white;
      color: #1a1a1a;
      border: 2px solid #e5e5e5;
    }

    .btn-secondary:hover {
      border-color: #1a1a1a;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .confetti {
      position: fixed;
      width: 10px;
      height: 10px;
      background: #10b981;
      position: fixed;
      animation: confetti-fall 3s linear;
      opacity: 0;
    }

    @keyframes confetti-fall {
      0% {
        opacity: 1;
        transform: translateY(-100vh) rotate(0deg);
      }
      100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg);
      }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .thank-you-container {
        padding: 40px 25px;
        border-radius: 15px;
      }

      h1 {
        font-size: 1.8rem;
      }

      .subtitle {
        font-size: 1rem;
      }

      .success-icon {
        width: 80px;
        height: 80px;
      }

      .success-icon i {
        font-size: 40px;
      }

      .success-icon::before {
        width: 100px;
        height: 100px;
      }

      .info-box {
        padding: 15px;
      }

      .info-box h3 {
        font-size: 1.1rem;
      }

      .info-item {
        font-size: 0.9rem;
      }

      .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
      }

      .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
      body {
        padding: 15px;
      }

      .thank-you-container {
        padding: 30px 20px;
      }

      h1 {
        font-size: 1.5rem;
      }

      .subtitle {
        font-size: 0.95rem;
      }

      .info-box h3 {
        font-size: 1rem;
      }

      .social-links {
        gap: 15px;
      }
    }

    /* Dark overlay for background */
    .background-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center center;
      background-size: cover;
      z-index: -1;
      opacity: 0.5;
    }
  /*slider*/

    /* Critical Slider Fix - Prevent Image Overlap */
    .project-slider {
      position: relative;
      width: 100%;
      height: 100% ;
      overflow: hidden;
      border-radius: 16px;
    }
    
    .slider-container {
      display: flex ;
      /*transition: transform 0.5s ease-in-out ;*/
      transition: transform 0.5s ease; 
      height: 100% ;
      width: 100% ;
    }
    
    .slider-slide {
      min-width: 100% ;
      max-width: 100% ;
      width: 100% ;
      height: 100% ;
      flex-shrink: 0 ;
      flex-grow: 0 ;
      flex-basis: 100% ;
    }
    
    .slider-slide img {
      width: 100% ;
      height: 500px !important;
      /*object-fit: cover ;*/
      display: block ;
    }
    
    .project-image {
      position: relative ;
      overflow: hidden ;
      width: 100% ;
      height: 100% ;
    }

    /* Enhanced Slider Controls */
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: linear-gradient(135deg, rgba(215, 181, 109, 0.95), rgba(215, 181, 109, 0.85));
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: white;
      transition: all 0.3s ease;
      z-index: 10;
      box-shadow: 0 4px 12px rgba(0,0,0,0.25);
      opacity: 0;
    }

    .project-slider:hover .slider-btn {
      opacity: 1;
    }

    .slider-btn:hover {
      background: linear-gradient(135deg, rgba(215, 181, 109, 1), rgba(215, 181, 109, 0.95));
      transform: translateY(-50%) scale(1.1);
    }

    .slider-btn.prev {
      left: 10px;
    }

    .slider-btn.next {
      right: 10px;
    }

    .slider-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
      background: rgba(0, 0, 0, 0.3);
      padding: 8px 16px;
      border-radius: 25px;
      backdrop-filter: blur(10px);
    }

    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid rgba(255, 255, 255, 0.8);
    }

    .slider-dot:hover {
      background: rgba(255, 255, 255, 0.8);
      transform: scale(1.2);
    }

    .slider-dot.active {
      background: #d7b56d;
      border-color: #d7b56d;
      width: 30px;
      border-radius: 6px;
    }

    .slider-counter {
      position: absolute;
      top: 20px;
      right: 20px;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
      color: white;
      padding: 8px 16px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 600;
      z-index: 10;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      letter-spacing: 1px;
      display: none;
    }

    @media (max-width: 768px) {
      .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        opacity: 1;
      }

      .slider-btn.prev {
        left: 10px;
      }

      .slider-btn.next {
        right: 10px;
      }
    }
    
    
    
    
    
    .project-image {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }
    .owl-carousel .item img {
      width: 100%;
      border-radius: 12px;
    }
    .slider-counter {
      position: absolute;
      top: 10px;
      right: 20px;
      background: rgba(0,0,0,0.6);
      color: #fff;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 14px;
      z-index: 10;
    }
    .owl-nav button {
      position: absolute;
      top: 45%;
      background: rgba(0, 0, 0, 0.5) !important;
      color: white !important;
      border-radius: 50%;
      width: 35px;
      height: 35px;
    }
    .owl-nav .owl-prev {
      left: -40px;
    }
    .owl-nav .owl-next {
      right: -40px;
    }
    .owl-dots {
      margin-top: 10px;
    }
    
    /*blog page*/
    
    /* Blog Grid */
        .blog-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 2.5rem;
        }

        .blog-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            opacity: 0;
            animation: fadeInUp 0.6s forwards;
        }

        .blog-card:nth-child(1) { animation-delay: 0.1s; }
        .blog-card:nth-child(2) { animation-delay: 0.2s; }
        .blog-card:nth-child(3) { animation-delay: 0.3s; }
        .blog-card:nth-child(4) { animation-delay: 0.4s; }
        .blog-card:nth-child(5) { animation-delay: 0.5s; }
        .blog-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .blog-image {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .blog-card:hover .blog-image {
            transform: scale(1.08);
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: white;
        }

        .blog-category {
            color: var(--accent-color);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .blog-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
            line-height: 1.3;
        }

        .blog-excerpt {
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .read-more {
            color: white;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s;
        }

        .read-more:hover {
            gap: 1rem;
        }

        /* Pagination */
        .pagination-blog {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin: 4rem 0 3rem;
        }

        .page-btn-blog {
            padding: 0.7rem 1.2rem;
            border: 2px solid white;
            background: white;
            color: var(--text-dark);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border-radius: 8px;
        }

        .page-btn-blog:hover,
        .page-btn.active-blog {
            background: #c9a961;
            color: white;
        }
   
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-blog h1 {
                font-size: 2.5rem;
            }

            .hero-blog p {
                font-size: 1.1rem;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .filter-tabs-blog {
                flex-direction: column;
            }

            .filter-btn-blog {
                width: 100%;
            }
        }

        /* Loading Animation */
        .loading-blog{
            display: none;
            text-align: center;
            padding: 3rem;
            font-size: 1.2rem;
            color: var(--text-light);
        }
    
    
    
         /* Mobile Menu Toggle */
    .menu-toggle {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      background: none;
      border: none;
      z-index: 1001;
      padding: 0.5rem;
    }

    .menu-toggle span {
      width: 25px;
      height: 2.5px;
      background: #d7b56d;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      width: 100%;
      max-height: 0;
      background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
      overflow: hidden;
      transition: max-height 0.3s ease;
      z-index: 999;
      border-bottom: 2px solid rgba(215, 181, 109, 0.3);
    }

    .mobile-menu.active {
      max-height: 500px;
    }

    .mobile-menu-header {
      padding: 1rem 1.5rem;
      border-bottom: 1px solid rgba(215, 181, 109, 0.2);
      color: #d7b56d;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 0;
    }

    .mobile-nav-link {
      color: #e0e0e0;
      text-decoration: none;
      padding: 1rem 1.5rem;
      border-left: 3px solid transparent;
      transition: all 0.3s ease;
      text-transform: uppercase;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
      background: rgba(215, 181, 109, 0.1);
      border-left-color: #d7b56d;
      color: #d7b56d;
    }

    .mobile-nav-link i {
      font-size: 1.1rem;
      min-width: 20px;
    }
  
    /* MOBILE MENU - DEFAULT (Mobile First Approach) */

/* Hamburger Menu Icon */
.menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    color: white;
    z-index: 999;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
}

.menu-icon i {
    transition: transform 0.3s ease;
}

.menu-icon.active i {
    transform: rotate(90deg);
}

/* Menu Backdrop */
.menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.menu-overlay.active {
    display: block;
    transform: translateX(0);
}

.menu-content {
    padding: 60px 20px 20px;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.menu-items a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.menu-items a:hover {
    color: #d7b56d;
}

/* ============================================ */
/* DESKTOP MODE - HIDE MOBILE MENU ELEMENTS */
/* ============================================ */

@media (min-width: 768px) {
    /* HIDE hamburger menu icon on desktop */
    .menu-icon {
        display: none !important;
    }

    /* HIDE menu backdrop on desktop */
    .menu-backdrop {
        display: none !important;
    }

    /* HIDE mobile menu overlay on desktop */
    .menu-overlay {
        display: none !important;
    }

    /* Show desktop navigation links */
    .nav-links {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .nav-links a {
        text-decoration: none;
        color: white;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: #d7b56d;
    }
}

.button {
    cursor: pointer;
    color: white !important;
    border: 1px white solid !important;
    padding: 10px !important;
    border-radius: 10px !important;
}



   
  

