@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/* ======Bootstrap Icons===== */
@font-face {
  font-family: "bootstrap-icons";
  src: url("../bootstrap-icons-1.11.3/font/fonts/bootstrap-icons.woff2") format("woff2"),
    url("../bootstrap-icons-1.11.3/font/fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}
    body {
      font-family: "Poppins", sans-serif;
    }

    /* ============================
   BACKGROUND VIDEO
=============================== */
    .hero-section {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
    }

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

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(103, 17, 0, 0.70);
      z-index: 2;
    }

    /* ============================
   NAVIGATION
=============================== */
/* ============================
   NAVIGATION
=============================== */
.hero-nav {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 0 80px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.hero-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.hero-logo img {
  width: 90px;
  height: auto;
}

/* DESKTOP MENU */
.hero-menu {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 40px; /* replaces padding on li */
}

.hero-menu li {
  font-size: 15px;
  position: relative;
}

.hero-menu li+li {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  padding-left: 40px;
}

.hero-menu a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 4px;
  position: relative;
  transition: color 0.3s;
}

.hero-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #E8D154;
  transition: width 0.3s;
}

.hero-menu a:hover {
  color: #E8D154;
}

.hero-menu a:hover::after {
  width: 100%;
}

/* CALL BOX */
.call-box {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.call-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.call-text-top {
  font-size: 12px;
  opacity: .9;
}

.call-number {
  font-size: 16px;
  font-weight: 600;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
}

/* Active hamburger (X) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* MOBILE MENU */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  padding: 20px 80px;
  transform: translateY(-150%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.mobile-menu ul li {
  margin: 15px 0;
}

.mobile-menu ul a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  display: block;
  transition: color 0.3s;
}

.mobile-menu ul a:hover {
  color: #E8D154;
}

.mobile-call {
  margin-top: 10px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
  .hero-nav {
    padding: 0 40px;
  }
  .mobile-menu {
    padding: 20px 40px;
  }
}

@media (max-width: 992px) {
  .hero-nav {
    padding: 0 30px;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Hide desktop menu & call box */
  .hero-menu,
  .call-box.desktop-only {
    display: none;
  }

  .mobile-menu {
    padding: 20px 30px;
  }
}

@media (max-width: 576px) {
  .hero-nav {
    padding: 0 20px;
  }
  .hero-logo img {
    width: 70px;
  }
  .mobile-menu {
    padding: 20px;
  }
  .mobile-menu ul a {
    font-size: 17px;
  }
}
    /* ============================
   HERO CONTENT
=============================== */
    .hero-content-wrapper {
      position: relative;
      z-index: 5;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .hero-content {
      padding-left: 110px;
    }

    .hero-title {
      font-size: 64px;
      font-weight: 700;
      color: #fff;
      line-height: 1.1;
      white-space: nowrap;
      /* FORCE single line */
    }

    .hero-title span {
      color: #E8D154;
    }

    /* FLASH + TIMER container */
    .flash-row {
      display: flex;
      align-items: center;
          justify-content: space-evenly;
      margin-top: 30px;
      gap: 40px;
    }

    /* FLASH TEXT */
    .flash-title {
      font-size: 46px;
      font-weight: 700;
      color: #E8D154;
      margin-bottom: 6px;
    }

    .flash-title i {
      font-size: 48px;
      margin: 0 4px;
    }

    .flash-sub {
      font-size: 15px;
      color: #fff;
    }

    /* TIMER */
    .flash-timer {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .timer-box {
      background: #fff;
      padding: 16px 22px;
      border-radius: 12px;
      text-align: center;
      min-width: 80px;
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
    }

    .timer-number {
      font-size: 24px;
      font-weight: 700;
    }

    .timer-label {
      font-size: 11px;
      color: #555;
    }

    .timer-sep {
      color: #fff;
      font-size: 34px;
      margin: 0 4px;
    }

    /* ============================
   RESPONSIVE
=============================== */
    @media(max-width:991px) {
 
      .hero-content {
        padding-left: 40px;
      }

      .hero-title {
        font-size: 46px;
      }

      .flash-title {
        font-size: 34px;
      }
    }

    @media(max-width:767px) {
 
      .hero-content {
        padding: 20px;
      }

      .hero-title {
        white-space: normal;
        font-size: 36px;
      }

      .flash-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
    }

    @media(max-width:575px) {
      .hero-title {
        font-size: 30px;
      }

      .flash-title {
        font-size: 26px;
      }

      .timer-box {
        min-width: 70px;
        padding: 12px 16px;
      }
    }

    /* ===================== ABOUT SECTION ===================== */
    .about-section {
      position: relative;
      padding: 40px 0 40px;
      overflow: hidden;
    }

    /* ABOUT TAG */
    .about-tag {
      display: inline-block;
      padding: 8px 22px;
      border: 1px solid #791313;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 500;
      color: #791313;
    }

    /* MAIN TITLE */
    .about-title {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.28;
      color: #121212;
      margin-top: 25px;
    }

    .about-title span {
      color: #791313;
    }

    /* DESCRIPTION */
    .about-text {
      font-size: 16px;
      color: #555;
      line-height: 1.7;
      margin-top: 25px;
    }

    /* ICON BOXES */
    .about-icons-row {
      margin-top: 80px;
    }

    .about-icon-box {
      text-align: left;
      margin-bottom: 40px;
    }

    .about-icon svg {
      width: 70px;
      height: 70px;
      stroke: #791313;
      stroke-width: 2;
      fill: none;
      margin-bottom: 20px;
    }

    .about-icon-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #141414;
    }

    .about-icon-text {
      font-size: 15px;
      color: #666;
      line-height: 1.6;
      max-width: 300px;
    }

    /* BACKGROUND BUILDING IMAGE */
    .about-bg {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      opacity: 0.18;
      pointer-events: none;
    }

    /* Responsive Adjustments */
    @media(max-width:992px) {
      .about-title {
        font-size: 40px;
      }
    }

    @media(max-width:768px) {
      .about-title {
        font-size: 34px;
      }

      .about-icons-row {
        margin-top: 40px;
      }
    }

    @media(max-width:576px) {
      .about-title {
        font-size: 30px;
      }
    }


/* ================= CONTACT BOX ================= */
.contact-wrapper{
    background:#661C1F; /* deep maroon */
    border-radius:30px;
    padding:60px;
    margin:10px auto;
}

.contact-title{
    font-size:38px;
    font-weight:700;
    color:#fff;
}

.contact-title span{
    color:#E8D154;
}

.contact-sub{
    font-size:16px;
    color:#f3f3f3;
    margin-top:10px;
}

.form-control{
    border-radius:8px;
    height:55px;
    font-size:15px;
}

textarea.form-control{
    height:120px !important;
    padding-top:15px;
}

.submit-btn{
    background:#E8D154;
    border:none;
    padding:12px 40px;
    font-size:16px;
    font-weight:600;
    border-radius:8px;
    margin-top:15px;
}

.right-img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:25px;
}

/* ================= FOOTER ================= */
.footer-bar{
    background:#27343A;
    padding:20px 10px;
    color:#fff;
    font-size:14px;
}

.footer-bar .left{
    text-align:left;
}
.footer-bar .right{
    text-align:right;
}

@media(max-width:768px){
    .contact-wrapper{
        padding:35px;
    }
    .contact-title{
        font-size:30px;
    }
    .footer-bar .left,
    .footer-bar .right{
        text-align:center;
    }
}
  
/* popup csss */
    #popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      opacity: 0;
      display: none;
      transition: 0.35s ease;
      z-index: 9998;
      backdrop-filter: blur(3px);
    }

    #popup-box {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -40%) scale(0.8);
      background: #ffffff;
      width: 92%;
      max-width: 420px;
      padding: 28px 25px 30px;
      border-radius: 18px;
      display: none;
      opacity: 0;
      transition: 0.4s ease;
      z-index: 9999;
      box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.18);
    }

    #popup-overlay.show {
      display: block;
      opacity: 1;
    }

    #popup-box.show {
      display: block;
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    .popup-content {
      position: relative;
    }

    .popup-close {
      position: absolute;
      right: -15px;
      top: -20px;
      background: #ffe4e4;
      border: none;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-size: 20px;
      line-height: 32px;
      text-align: center;
      cursor: pointer;
      color: #d30000;
      transition: 0.2s ease;
    }

    .popup-close:hover {
      background: #ffcdcd;
    }

    .popup-title {
      text-align: center;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 5px;
      color: #222;
    }

    .popup-subtitle {
      text-align: center;
      font-size: 14.2px;
      color: #555;
      margin-bottom: 18px;
    }

    .popup-input {
      margin-bottom: 14px;
      padding: 11px 13px;
      width: 100%;
      border-radius: 10px;
      border: 1.5px solid #ddd;
      font-size: 14.2px;
      transition: 0.2s ease;
    }

    .popup-input:focus {
      border-color: #ff6a00;
      box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.25);
      outline: none;
    }

    .popup-submit-btn {
      width: 100%;
      background: linear-gradient(135deg, #ff7b00, #ff5400);
      border: none;
      padding: 13px;
      border-radius: 10px;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.25s ease;
      margin-top: 5px;
      box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
    }

    .popup-submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(255, 102, 0, 0.4);
    }

