
/* ================= VARIABLES ================= */
body {
    margin: 0;
    padding: 0;
}
html, body {
    overflow-x: hidden;
}


:root {
    --primary: #044B36;
    --secondary: #D4AF37;
    --accent: #F4EBD0;
    --white: #ffffff;
    --text-dark: #121212;
    --transition: all 0.4s ease;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:  'Kokila';
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ================= CONTAINER ================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    
}

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 30px 0;
    z-index: 1000;
    transition: var(--transition);
}
.navbar.scrolled .container {
    justify-content: center;  /* move logo to center */
}
.navbar.scrolled {
    background: var(--white);
    padding: 18px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-img {
    height: 100px;
}

/* Nav Links */
.nav-links a {
    text-decoration: none;
    margin-left: 35px;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
    color: black;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

/* ================= HERO SECTION ================= */
/* Hero Section */
/* Hero Branding (Logo + Line) */
.hero-branding {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

/* Small Logo */
.hero-branding img {
    height: 35px;  
    width: auto;
}
/* Brown Line */
.brand-line {
    width: 120px;
    height: 3px;
    background-color: #c27e35;
}
/* Right Side Image */
.hero-side-image {
    position: absolute;
    right: 60px;        
    bottom: -50px;       
    z-index: 2;
}

.hero-side-image img {
    width: 450px;      
    max-width: 100%;
    border-radius: 20px;
}

.hero {
   color: white !important;
   filter: brightness(1.1);
    /* background-color: #d0ab50; */
    position: relative;
     height: auto;
        min-height: 100vh;
    padding: 10px 0;
    padding-bottom: 80px;
    /* min-height: 600px; */
    background: url('../images/banner.jpg') center/cover no-repeat; 
    display: flex;
    align-items: center;
    position: relative;
    color: black;
}
/* Hide by default (desktop) */
.hero-image-mobile {
    display: none;
}

/* Mobile only */
/* Mobile only */
@media (max-width: 768px) {

  body {
    margin: 0;
    padding: 0;
  }
.lead,.description{
  text-align: center;
}
  .hero-content{

     padding: 0px 20px;
     padding-top: 30px;
  }

  .hero {
      align-items: center;      /* vertical center */
    justify-content: center; 
    background: none;
    padding: 0 !important;
  }

  .hero-image-mobile {

    display: block;
    margin: 0;
    padding: 0;
    
  }

  .hero-image-mobile img {
    display: block;
    width: 100vw;
    height: 230px !important;
    object-fit: cover;
    margin: 0 !important;
  }
  .hero-btns {
    margin-top: 50px;
  }
}

.highlight-red {
    color: #d0ab50;   
}

.hero-overlay {
    position: absolute;
    inset: 0;

}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    text-align: auto;
    margin-right: 550px;
    margin-top: 100px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Kokila';
    color: black;

}

.lead {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 20px;
    margin-bottom: 40px;
    color: #000;

}

.description {
    display: block;
    margin-bottom: 40px;
    font-size: 18px;
    color: #e0e0e0;
}

.hero-btns {
    display: flex;
    gap: 20px;
}
.btn {
  font-family: "Segoe UI", Arial, sans-serif;
    border-radius: 50px;
    padding: 14px 32px;
    white-space: nowrap;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
}
/* Align button content */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Icon Circle */
.btn-icon {
    width: 34px;
    height: 34px;
    background-color: #e0c27a;  /* light brown */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon inside */
.btn-icon i {
    padding: 8px 10px;
    font-size: 14px;
    color: white;
}

.btn-primary {
  font-size: 18px;
  font-weight: 600;
    background: #c8a24d;
    color: #fff;
}

.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-4px);

    background: black;
}

/* OUTLINE BUTTON */
.btn-secondary {
    color: #ffffff;
    background: transparent;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-4px);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

    .hero h1 {
        font-size: 40px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none; /* simple mobile hide */
    }
}
/* WHY SECTION */.why-section {
  /* margin-top: 100px; */
  /* margin-bottom: 100px; */
    padding: 30px 30px;
    padding-bottom: 40px;
    background: #f8f6f1;
    text-align: center;
}
.desktop-break {
  display: block;
}

@media (max-width: 768px) {
  .desktop-break {
    display: inline;
  }
}
/* Header */
.why-header {
    max-width: 750px;
    margin: 0 auto 40px;
}

.small-title {
  font-family: kokila;
    margin-top: 50px; 
    font-size: 50px;
    color: #C6A75E;
    font-weight: 700;
    margin-bottom: 15px;
} 

.why-header h1 {
  color: black;
    font-size: 38px;
    margin-bottom: 15px;
}

.why-header p {
  font-family: "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

/* Grid Layout */
.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-bottom: 70px;
}

/* Card Design */
.why-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
}

/* Icon */
.why-icon-box {
    width: 60px;
    height: 60px;
    background: #C6A75E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon-box i {
    color: white;
    font-size: 22px;
}

/* Text */
.why-card h4 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.why-card p {
  font-family: "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    color: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-cards {
        grid-template-columns: 1fr;
    }
}



/* SECTION */
.title {
    text-align: center;
    line-height: 1;
}

.title .top {
  margin-top: 1px;
    display: block;
    font-size: 30px;
    font-weight: 700;

}

.title .bottom {
    display: block;
    font-size: 30px;
    font-weight: 700;
    margin-top: 2px; 
    margin-bottom: 6px;
}

.franchise-three-cards .container {
  max-width: 1200px;   /* or whatever width you want */
  margin: 0 auto;       /* center the container */
  padding: 0 15px;      /* consistent left & right padding */
}

.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
   /* justify-content: flex-start; */
justify-content: center; 
}

.card {
  background: #fff;
  border-radius: 12px;
  /* box-shadow: 0 6px 20px rgba(0,0,0,0.1); */
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  padding: 30px;
  padding-bottom: 20px;
  padding-top: 45px;
   border: 1px solid #cfcccc;
  /* display: flex; */
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 16px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card h3 {
  margin-bottom: 6px;
    font-weight: bold;
  font-size: 26px;
  color: #c27e35;
}

.card p {
  text-align: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.met-cta-btn {
  font-family: "Segoe UI", Arial, sans-serif;
  margin-top: 30px;
  margin-bottom: 15px;;
  display: block;
 margin: 30px auto 15px auto;
  text-decoration: none;
  /* background-color: #7a7171; */
  background-color: #d0ab50;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
  font-size: 20px;
  font-weight: 700px  !important;
}

.met-cta-btn:hover {
  opacity: 0.9;
  background-color: black;
}
.metric-text.guarantee {
    display: block;
    /* text-align: center; */
}

.metric-text.guarantee .label {
    display: block;
    /* font-weight: 600; */
}

.metric-text.guarantee .value {
    display: block;
    margin-top: 4px;
    white-space: nowrap; /* 👈 keeps it in one line */
}
.metric-text.roi {
    display: block;
    /* text-align: center; */
}

.metric-text.roi .label {
    display: block;
    /* font-weight: 600; */
}

.metric-text.roi .value {
    display: block;
    margin-top: 4px;
    white-space: nowrap; /* Keeps entire value in one line */
}
.metric-text {
  font-family: "Segoe UI", Arial, sans-serif;

    display: block;
    /* text-align: center; */
}

.metric-text .label {
    display: block;
    /* font-weight: 600; */
}

.metric-text .value {
    display: block;
    font-size: 18px;
    margin-top: 4px;
    white-space: nowrap; /* Keeps value in one line */
}


.market-text {
  font-family: "Segoe UI", Arial, sans-serif;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    
}
.market-value {
    display: block;
    background-color: #d0ab50;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin: 20px -20px 0 -20px;  /* negative margin same as card padding */
    font-size: 50px !important;
    font-weight: bold;
}
.market-text .market-value {
 font-family: "Segoe UI", Arial, sans-serif;
    display: block;
    margin-top: 30px;
    margin-bottom: 5px;
    font-size: 40px;   /* Bigger */
    font-weight: 700;  /* Bold */
}


.card-metrics {
  list-style: none;
    padding: 0;
    margin: 0px auto;
    width: fit-content;      /* 👈 makes block shrink to content */
    display: flex;
    flex-direction: column;
    gap: 16px;
  /* list-style: none;
  padding-left: 0;
  margin: 0; */
  
}

.card-metrics li {
 display: flex;           /* icon + text in a row */
  align-items: center;     /* vertically center both icon and text */
  font-size: 18px;
  color: black;
  margin-bottom: 12px !important;
  gap: 10px;
  /* margin-bottom: 1px; */
  /* line-height: 1;   */
}
.icon-box {
    width: 17px;
    height: 17px;
    background-color: #C6A75E;   /* Brown / Gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    color: #fff;
    font-size: 12px;
}
.card-metrics li span.icon-box {
  margin-left: 0;  /* remove any extra left spacing */
}
.icon-box img {
    width: 25px;
  height: 25px;
  display: block;  
}



/* COMMON CONTAINER (Use this for all sections) */

/* SECTION */
.brand-zigzag-section {
  padding: 90px 0;
  padding-bottom: 60px;
  background: #ffffff;
}

/* ROW */
.zigzag-row {
  display: flex;    
  margin-top: 30px;
  align-items: center;
  gap: 50px;
}

/* REVERSE SECOND ROW */
.zigzag-row.reverse {
    gap: 30px;
  margin-top: 70px;
  flex-direction: row-reverse;
  margin-bottom: 50px;
}

/* IMAGE */
.zigzag-image {
  flex: 1;
}

.zigzag-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.zigzag-image img:hover {
  transform: scale(1.05);
}

/* CONTENT */
.zigzag-content {
  
    margin-left: 20px;
  flex: 1;
}

.zigzag-content h2 {
  font-size: 38px;
  color: #C6A75E;
  margin-bottom: 10px;
}

.zigzag-content h3 {
  font-size: 18px;
  color: #121212;
  margin-bottom: 10px;
  font-weight: 600;
}

.intro-text {
 font-family: "Segoe UI", Arial, sans-serif;
  margin-bottom: 20px;
  font-size: 15px;
  color: #555;
}

/* GOLD CIRCLE LIST */
.gold-list {
  font-family: "Segoe UI", Arial, sans-serif;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gold-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.6;
}

.gold-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  background: #C6A75E;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  /* box-shadow: 0 4px 10px rgba(198, 167, 94, 0.4); */
}

/* CLOSING LINE */
.closing-line {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.6;
}
/* FINAL CTA SECTION */
.final-cta-section {
  padding:110px;
  /* background: linear-gradient(135deg, #0f0f0f, #1a1a1a); */
  background-color: #838282;
  

  text-align: center;
  color: #ffffff;
}
.final-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: black;   /* overlay color */
    opacity: 0.5;        /* 👈 control image opacity here */
}
/* Dark Overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.55)
    );
    z-index: 1;
}

/* Bring text above overlay */
.final-cta-section .container {
    position: relative;
    z-index: 2;
}


.final-cta-section h2 {
  font-size: 60px;
  color:#C6A75E;  
  margin-bottom: 20px;
}

.cta-subtitle {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  margin-bottom: 50px;
  font-weight: bold;;
  color: white;
}

/* BUTTON WRAPPER */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* COMMON BUTTON STYLE */
.cta-btn {
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* PRIMARY GOLD BUTTON */
.primary-btn {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #C6A75E;
  color: white;
  font-size: 18px;
}

.primary-btn:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-4px);
}

/* WHITE BUTTON */
.secondary-btn {
  background: #ffffff;
  color: #000;
}

.secondary-btn:hover {
  background: #C6A75E;
  color: #000;
  transform: translateY(-4px);
}

/* OUTLINE BUTTON */
.outline-btn {
  border: 1px solid #C6A75E;
  color: white;
  background: transparent;
}

.outline-btn:hover {
  background: #C6A75E;
  color: #000;
  transform: translateY(-4px);
}

.contact-section {
    padding: 0px 20px;
    background: #f8f6f1;
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

/* LEFT IMAGE */
.contact-image img {
    width: 520px !important;        /* Reduce width */
    height: 450px;       /* Increase height */
    object-fit: cover;   /* Prevent distortion */
    border-radius: 18px;
    margin-left: 50px;
}

/* RIGHT FORM BOX */
.contact-form {
    background: #ffff;
    padding: 35px 30px;
    padding-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 500px;
    font-family: "Segoe UI", Arial, sans-serif;
}


/* Heading */
.contact-form h2 {
    margin-bottom: 20px;
    color: #c27e35;
  
}

/* Inputs */
.contact-form input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
   font-family: "Segoe UI", Arial, sans-serif;

}
.contact-form select {
    color: #666;
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    

}

/* Button */
.contact-form button {
    display: block;
    margin: 10px auto 0 auto; 
    padding: 14px 35px;
    background: #C6A75E;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    width: 100%;
}


.contact-form button:hover {
    background: black;
}


/* footer */
.footer-section {
    background: #000;
    padding: 50px 20px;
    text-align: center;
}

.footer-logo img {
    max-width: 110px;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-flex;          /* centers icon inside circle */
    align-items: center;
    justify-content: center;
    width: 40px;                   /* circle width */
    height: 40px;                  /* circle height */
    margin: 5px;
    border-radius: 50%;            /* makes it circular */
    background-color: #d0ab50;     /* brown color */
    color: white;                  /* icon color */
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icons a:hover {
    background-color: #c27e35;     /* slightly lighter brown on hover */
    transform: scale(1.1);         /* subtle zoom effect */
}


.copyright {
  font-family: "Segoe UI", Arial, sans-serif;
  margin-top: 10px;
    color: #aaa;
    font-size: 14px;
}


.contact-image {
    display: none;
}
@media (min-width: 992px) {
  .contact-image {
      display: block;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-form {
    max-width: 100%;
  }
}

@media (min-width: 380px) and (max-width: 435px) {

  .hero {
      min-height: 10vh !important;      
      padding: 120px 10px;     /* control spacing */
      /* background-size: cover; */
      /* background-position: center top;   */
      margin-top: -80px;
  }


  .hero-content h1 {
    font-size: 35px !important;
    line-height: 1.2;
    margin-top: 70px;
      text-align: center;
  }
  .hero-content{
    text-align: center;
  }
 
    .lead, .description {
        padding-left: 12px !important;
        padding-right: 12px !important;
        font-size: 14px;
    }
    .hero-image-mobile img {
    display: block;
    width: 100vw;
    /* height: 225px !important; */
    object-fit: cover;
    margin: 0 !important;
  }

}
@media (min-width: 300px) and (max-width: 450px) {

  /* HERO */
  .logo-img {
    height: 80px;
}
  .navbar .container {
      display: flex;
      justify-content: center;   /* center horizontally */
      align-items: center;
  }

  .navbar {
    position: relative;   
    padding: 15px 0;
  }
 .hero {
      /* min-height: 65vh !important;       */
      padding: 100px 70px;     /* control spacing */
      background-size: cover;
      background-position: center top;  /* IMPORTANT */
  }
  
  .hero-image-mobile img {
    display: block;
    width: 100vw;
    height: 195px !important;
    object-fit: cover;
    margin: 0 !important;
  }
  .hero {
    /* min-height: 120vh; */
    height: auto;
    min-height: auto;
    padding: 10px 0 10px;  
    padding-bottom: 50px; 
  }
  

  .hero-content {
    text-align: center;
    /* margin-top: -40px !important; */
    margin: 0;

    max-width: 100%;
  }

  .hero h1 {

    /* margin-top: -30px !important; */
    font-size: 30px;
    line-height: 1.2;
  }
  .lead{
    margin-bottom: 10px;
  }
  .lead,
  .description {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
  }
  .break-mobile::after {
        content: "";
        display: block;
    }

 .hero-btns {
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }
      .hero-btns {
        margin-top: 30px;
        margin-bottom: 20px;
    }

  .hero-btns .btn {
    width: 70%;
    height: 55px;              /* same height for all */
    justify-content: center;   /* center content */
    padding: 0 10px;
    font-size: 14px;
  }

  .hero-btns .btn-icon {
    width: 30px;
    height: 30px;
  }

.why-header {
      padding-left: 20px;
      padding-right: 20px;
  }
.why-rds {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;      /* hide manual scroll */
    gap: 15px;
  }

  .why-card {
    flex: 0 0 85%;
  }
 

  /* INVESTMENT CARDS */
  .investment-container {
    flex-direction: column;
    gap: 25px;
  }

  .investment-card {
    width: 100%;
  }

  .featured-card {
    transform: scale(1);
  }
   .small-title {
    font-size: 28px !important;   /* reduce from 45px */
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: 10px;
  }

  .container h2 {
    font-size: 22px !important;   /* reduce from 38px */
    line-height: 1.3;
    /* margin-bottom: 20px; */
  }


  .container {
    /* padding-top: 25px !important; */
    padding-left: 15px;
    padding-right: 15px;
  }
  
.cards-wrapper{
  padding-left: 15px;
  padding-right: 15px;
}
.card{
  padding-top: 15px;
}
.market-value{
  font-size: 40px !important;
  padding: 1px 0;
}
  /* ZIGZAG */
  
  .brand-zigzag-section {
    margin-top: 10px;
    padding-top: 50px;
  padding: 10px 0;
  background: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
}
  .zigzag-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }

  .zigzag-row.reverse {
    flex-direction: column;

  }

  .zigzag-content h2 {
    font-size: 22px;
  }

  /* CTA */
  .final-cta-section {
    padding: 60px 20px;   /* reduce heavy padding */
  }

  .final-cta-section h2 {
    font-size: 24px;      /* smaller heading */
    line-height: 1.3;
  }

  .cta-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;   /* stack buttons vertically */
    gap: 15px;
  }

  .cta-btn {
    width: 50%;          /* full width buttons */
    text-align: center;
    padding: 14px 0;
    font-size: 13px;
    margin-left: 90px !important;
  }

   .contact-form select {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 6px;
    }
    .contact-form{
      margin-bottom: 30px;
    }
    .contact-section {
      padding-top: 50px;
      padding-bottom: 10px;
    }
}


@media (min-width: 600px) and (max-width: 779px) {

  /* HERO */
  .hero {
    height: auto;
    padding: 130px 0 80px;
  }

  .hero-content {
    margin: 0;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-side-image {
    position: static;
    margin-top: 40px;
    text-align: center;
  }

  .hero-side-image img {
    width: 70%;
  }

  
  /* INVESTMENT */
  .investment-container {
    flex-direction: column;
    align-items: center;
  }

  .investment-card {
    width: 80%;
  }

  .featured-card {
    transform: scale(1);
  }
  
  /* ZIGZAG */
  .zigzag-row {
    flex-direction: column;
    gap: 40px;
  }

  .zigzag-row.reverse {
    flex-direction: column;
  }

  /* CTA */
  .cta-buttons {
    flex-wrap: wrap;
  }
  .contact-form select {
        padding: 12px 16px;
        font-size: 14px;
    }
    .contact-image img {
    margin-top: 0px !important;
}
}
/* ============================= */
/* 300px – 450px (Small Mobiles) */
/* ============================= */
@media (min-width:300px) and (max-width:450px) {

    .why-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .why-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

    .small-title {
        font-size: 30px;
    }

    .why-header h1 {
        font-size: 20px;
    }

    .why-header p {
        font-size: 14px;
    }
    
    .why-cards {
      padding-bottom: 30px;
        grid-template-columns: 1fr;  /* 1 column */
        gap: 18px;
    }

    
}


/* ============================= */
/* 460px – 600px (Large Mobiles) */
/* ============================= */
@media (min-width:460px) and (max-width:600px) {

    .small-title {
        font-size: 34px;
    }

    .why-header h1 {
        font-size: 22px;
    }

    .why-cards {
        grid-template-columns: 1fr; /* Still 1 column */
        gap: 20px;
    }
}


/* ============================= */
/* 600px – 767px (Small Tablets) */
/* ============================= */
@media (min-width:600px) and (max-width:767px) {

    .small-title {
        font-size: 38px;
    }

    .why-header h1 {
        font-size: 24px;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 22px;
    }
    .why-section {
        padding: 40px 20px;   /* equal left-right */
    }

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

}


/* ============================= */
/* 768px – 900px (Tablets) */
/* ============================= */
@media (min-width:768px) and (max-width:900px) {

    .why-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 25px;
    }

    .small-title {
        font-size: 42px;
    }
}

@media (width: 1024px) {
  .hero-content {
    padding-left: 50px !important;
    padding-right: 60px;
    margin-top: 0px !important;
  } 
  .hero{
    padding-top: 50px !important;
  }
}

@media (min-width: 760px) and (max-width: 1024px) {

/* ================= CONTAINER ================= */
.navbar .container {
        display: flex;
        justify-content: center; /* center horizontally */
    }

.container {
    padding: 0 40px;
}

/* ================= NAVBAR ================= */
.navbar {
    position: relative !important;
    padding: 20px 0;
}

.logo-img {
    height: 90px;
}


/* ================= HERO SECTION ================= */
.hero {
    padding: 120px 0 80px;
    min-height: 10vh;
    background-position: center;
}

.hero-content {
  align-items: center;
  padding-left: 180px;
  /* padding-right: 60px; */
    max-width: 650px;
    margin-right: 0;
    /* margin-top: 80px; */
}

.hero h1 {
  justify-content: center;
  align-items: center;
    font-size: 40px;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 30px;
}

.lead {
  margin-top: 20px;
    font-size: 24px;
}

.hero-btns {
          width: 80%;
        height: 55px;
        justify-content: center;
        padding-left: 80px;
        margin-bottom: 20px !important;
}

.hero-btns .btn {
    font-size: 18px;
    padding: 15px 18px;
}
    .hero-image-mobile img {
        display: block;
        width: 100vw;
        height: 400px !important;
        object-fit: cover;
        margin: 0 !important;
    }

/* ================= WHY SECTION ================= */
.why-section {
    padding: 60px 20px;
}

.small-title {
    font-size: 38px;
}

.why-header h1 {
    font-size: 26px;
}

.why-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* ================= INVESTMENT CARDS ================= */
.cards-wrapper {
    display: flex;
    flex-direction: column;   /* STACK vertically */
    align-items: center;
    gap: 30px;
}

.card {
    flex: 0 0 100%;
    max-width: 600px;   /* optional width control */
    width: 75%;
    padding: 30px;
}

.card h3 {
    font-size: 24px;
}

.market-value {
    font-size: 38px !important;
}

.card-metrics li {
    font-size: 20px;
}
.met-cta-btn {
  align-items: center;
  padding: 15px;
  margin-left: 50px;
  margin-right: 50px;
}
/* ================= ZIGZAG SECTION ================= */
.brand-zigzag-section {
    padding: 70px 30px;
}

.zigzag-row {
    gap: 40px;
}

.zigzag-row.reverse {
    gap: 40px;
}

.zigzag-content h2 {
    font-size: 26px;
}

.zigzag-content h3 {
    font-size: 16px;
}

/* ================= FINAL CTA ================= */
.final-cta-section {
    padding: 80px 30px;
}

.final-cta-section h2 {
    font-size: 30px;
}

.cta-subtitle {
    font-size: 16px;
}

.cta-buttons {
    gap: 20px;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 70px 30px;
}

.contact-container {
    flex-direction: column;
    gap: 40px;
}

.contact-image img {
    width: 600px;
    height: 400px;
    margin-left: 0;
}

.contact-form {
    max-width: 520px;
}

.contact-form h2 {
    font-size: 24px;
}

/* ================= FOOTER ================= */
.footer-section {
    padding: 40px 20px;
}

.footer-logo img {
    max-width: 95px;
}

}
