/* Scrollbar for Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 8px;
}

html, body {
  overflow-x: hidden;
   scroll-behavior: smooth;
}

::-webkit-scrollbar-track {
  background: #ffffff; /* white track */
  border-left: 2px solid #d3d3d3; /* light grey border like screenshot */
}

::-webkit-scrollbar-thumb {
  background: #f4d31a; /* pink scrollbar */
  border-radius: 10px;
}

/* On hover */
::-webkit-scrollbar-thumb:hover {
  background: #f4d31a;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: black #ffffff;
}



.navbar-custom {
      background: #ffd700;
      padding: 15px;
    }
    .navbar-logo {
      max-height: 60px;
    }
    .nav-link {
      font-weight: 500;
      color: black;
      text-transform: uppercase;
      margin: 0 12px;
      font-size: 14px;
      margin-left: 40px;
    }
    .nav-link:hover {
      color: white ;
      background-color: black;
    }

    /* Center alignment (desktop) */
    .navbar-nav {
      align-items: center;
    }
    .left-gap {
      margin-right: 50px;
    }
    .right-gap {
      margin-left: 50px;
    }

    /* Offcanvas custom */
    .offcanvas-custom {
      background: #fff;
      width: 250px;
    }
    .offcanvas-custom .nav-link {
      margin: 10px 0;
      font-size: 18px;
    }
    .active
    {
      background-color: black;
      color: white;
      

    }

    /* Active Nav Item */
/* Base nav link */
.nav-link {
  font-weight: 500;
  color: black;
  text-transform: uppercase;
  margin: 0 12px;
  font-size: 17px;
  margin-left: 40px;
  position: relative; /* Needed for ::before */
  transition: color 0.3s ease;
}
/* ✅ Fix overflow in mobile menu */
.offcanvas-custom {
  background: #fff;
  width: 260px;
  overflow-y: auto;
}

/* ✅ Ensure dropdown works inside offcanvas */
.offcanvas-custom .dropdown-menu {
  position: static !important;
  float: none;
  box-shadow: none;
  background-color: #f8f9fa;
  margin-left: 15px;
  border-radius: 10px;
 
}

/* Dropdown items styling */
.offcanvas-custom .dropdown-item {
  font-size: 16px;
  padding: 8px 15px;
}

/* Optional: dropdown toggle icon color */
.offcanvas-custom .dropdown-toggle::after {
  filter: invert(0.3);
}


.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.contact-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}
.contact-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.form-control {
  border-radius: 10px;
  padding: 12px;
}
.contact-title {
  font-weight: 700;
  font-size: 32px;
}
.btn-submit {
  background: #007bff;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  border-radius: 10px;
  width: 100%;
}
.btn-submit:hover {
  background: #0056b3;
}
 .expo-contact-area {
      padding: 80px 0;
      text-align: center;
      background: linear-gradient(180deg, #f6fff8 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    .expo-contact-area::before {
      content: '';
      position: absolute;
      top: -80px;
      left: -80px;
      width: 250px;
      height: 250px;
      background: rgba(40, 167, 69, 0.1);
      border-radius: 50%;
      animation: expo-float-bubble 6s ease-in-out infinite alternate;
    }

    /* ---------- TITLE ---------- */
    .expo-contact-heading {
      color: #8b4513;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .expo-contact-title {
      font-weight: 700;
      color: #1e1e1e;
      margin-bottom: 50px;
    }

    /* ---------- CONTACT CARDS ---------- */
    .expo-contact-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      padding: 40px 20px;
      transition: all 0.4s ease;
      height: 100%;
      position: relative;
      z-index: 2;
      animation: expo-fade-in 1s ease forwards;
    }

    .expo-contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(40, 167, 69, 0.25);
    }

    .expo-contact-icon {
      font-size: 42px;
      color: #28a745;
      margin-bottom: 18px;
      animation: expo-bounce 2.5s infinite;
    }

    .expo-contact-card h5 {
      font-weight: 600;
      color: #1e1e1e;
      margin-bottom: 15px;
    }

    .expo-contact-card p {
      font-size: 15px;
      color: #333;
      margin: 0;
      line-height: 1.7;
    }
      @keyframes expo-fade-in {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes expo-bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-8px);
      }
    }

    @keyframes expo-float-bubble {
      from {
        transform: translate(0, 0);
      }
      to {
        transform: translate(40px, 40px);
      }
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 767px) {
      .expo-contact-card {
        margin-bottom: 30px;
      }
    }
     
    
    .footer-section {
  position: relative;
  overflow: hidden;
}

.footer-bg {
  background: url("https://images.pexels.com/photos/3182777/pexels-photo-3182777.jpeg") center/cover;
  filter: blur(5px) brightness(60%);
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-section .container {
  z-index: 2;
  position: relative;
}

.footer-link {
  color: #ddd;
  text-decoration: none;
  margin-bottom: 6px;
  display: block;
  transition: 0.3s;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
  color: #fff;
  font-size: 18px;
}

.social-icon:hover {
  background: #fff;
  color: #000;
}

.gallery-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}

.gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease-in-out;
}

/* Hover Zoom */
.gallery-box:hover img {
  transform: scale(1.08);
}

/* Smooth fade animation */
.gallery-item {
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  0% {opacity: 0; transform: translateY(25px);}
  100% {opacity: 1; transform: translateY(0);}
}
 .contact-section {
      padding: 60px 0;
      background-color: #f9f9f9;
    }
    .contact-title {
      font-family: 'Inter', sans-serif;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
    }
    .contact-image {
      width: 100%;
      border-radius: 10px;
    }
    .form-control {
      border-radius: 8px;
      padding: 12px;
    }
    .btn-custom {
      background-color: black;
      border: none;
      color: black;
      padding: 12px 25px;
      font-weight: 600;
      transition: 0.3s;
    }
    .btn-custom:hover {
      background-color: black;
      color: white;
    }
    .headcont
    {
        background-color: #000;
        color: #f4d31a;
        padding: 10px;
    }

.footer-section {
  position: relative;
  background: url("images/fotback.jpg") center center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

/* Overlay with balanced transparency (removed top gap) */
.footer-overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 50px 0 25px; /* reduced top padding from 60px */
  backdrop-filter: brightness(1.05);
  position: relative;
  top: 0;
}

/* Footer Titles */
.footer-title {
  color: #FFD700; /* Elegant gold tone */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Footer Links */
.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #FFD700;
  padding-left: 6px;
}

/* Contact Info */
.footer-contact li {
  margin-bottom: 10px;
  color: white;
  font-size: 15px;
}

.footer-contact i {
  color: #FFD700;
  margin-right: 10px;
}

/* Social Icons */
.social-links a {
  font-size: 20px;
  color: #fff;
  transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
  color: #FFD700;
  transform: scale(1.2);
}

/* Divider and bottom text */
.footer-section hr {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-section small {
  color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-section {
    text-align: start;
  }
  .footer-links a {
    padding-left: 0;
  }
  .footer-contact {
    margin-top: 20px;
  }
}
.imn img
{
  background-color: white;
  padding: 2px;
}

  .sponsor-benefits {
      position: relative;
      background: linear-gradient(135deg, rgba(65, 64, 56, 0.6), rgba(0,0,0,0.9)), 
                  url('images/back.avif') center/cover no-repeat;
      padding: 80px 0;
    }

    .sponsor-benefits .content-left h5 {
      color: white;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 10px;
      animation: fadeInDown 1s ease;
    }

    .sponsor-benefits .content-left h2 {
      font-weight: 800;
      font-size: 2.2rem;
      margin-bottom: 20px;
      line-height: 1.3;
      color: white;
      animation: fadeInUp 1s ease;
    }

    .sponsor-benefits .content-left p {
      color: white;
      font-size: 1rem;
      margin-bottom: 30px;
      max-width: 500px;
      animation: fadeIn 1.3s ease;
    }

    .sponsor-benefits .btn-quote {
      background-color: white;
      color: #000;
      font-weight: 600;
      border-radius: 50px;
      padding: 10px 30px;
      border: none;
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
    }

    .sponsor-benefits .btn-quote:hover {
      background-color: #fff;
      color: #000;
      transform: scale(1.05);
    }

    /* Card Section */
    .benefit-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(255,215,0,0.15);
      padding: 25px;
      transition: all 0.4s ease;
      height: 100%;
      border: 1px solid rgba(255,215,0,0.4);
      animation: fadeInUp 1s ease;
    }

    .benefit-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(255,215,0,0.3);
    }

    .benefit-icon {
      font-size: 2rem;
      color: #f4d31a;
      margin-bottom: 15px;
      display: inline-block;
      animation: bounce 2s infinite;
    }

    .benefit-card h5 {
      font-weight: 700;
      color: black;
      margin-bottom: 10px;
    }

    .benefit-card p {
      color: black;
      font-size: 0.95rem;
      margin: 0;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 10px rgba(255,215,0,0.3); }
      50% { box-shadow: 0 0 25px rgba(255,215,0,0.6); }
      100% { box-shadow: 0 0 10px rgba(255,215,0,0.3); }
    }

    /* Responsive */
    @media (max-width: 992px) {
      .sponsor-benefits .content-left {
        text-align: center;
        margin-bottom: 40px;
      }
      .sponsor-benefits .content-left p {
        margin: 0 auto 20px;
      }
    }

    
      .agri-sponsor-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #edf19f 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    .agri-sponsor-section::before,
    .agri-sponsor-section::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      background: rgba(228, 234, 104, 0.08);
      border-radius: 50%;
      animation: agri-float 6s ease-in-out infinite alternate;
      z-index: 0;
    }

    .agri-sponsor-section::before {
      top: -60px;
      left: -70px;
    }

    .agri-sponsor-section::after {
      bottom: -60px;
      right: -80px;
      animation-delay: 2s;
    }

    .agri-sponsor-content {
      animation: agri-fadeInLeft 1.2s ease;
      z-index: 1;
      position: relative;
    }

    .agri-sponsor-content h2 {
      color: #1a1a1a;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .agri-sponsor-content p {
      color: #333;
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 25px;
    }

    .agri-sponsor-content i {
      color: black;
      font-size: 40px;
      margin-bottom: 15px;
      animation: agri-bounce 2.5s infinite;
    }

    .agri-sponsor-form {
      background: #fff;
      padding: 40px 30px;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      animation: agri-fadeInRight 1.2s ease;
      z-index: 1;
      position: relative;
    }

    .agri-sponsor-form h4 {
      text-align: center;
      font-weight: 600;
      margin-bottom: 25px;
      color: #1e1e1e;
    }

    .agri-sponsor-form .form-control {
      border-radius: 10px;
      padding: 12px;
      font-size: 15px;
      border: 1px solid #ccc;
      transition: all 0.3s ease;
    }

    .agri-sponsor-form .form-control:focus {
      border-color: #28a745;
      box-shadow: 0 0 8px rgba(40, 167, 69, 0.3);
    }

    .agri-sponsor-btn {
      background-color: #f4d31a;
      color: black;
      padding: 12px 0;
      width: 100%;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .agri-sponsor-btn::after {
      content: "";
      position: absolute;
      left: -100%;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
      transition: all 0.6s;
    }

    .agri-sponsor-btn:hover::after {
      left: 100%;
    }

    .agri-sponsor-btn:hover {
      background-color: black;
      transform: translateY(-3px);
      color: white;
    }

    /* Keyframe Animations */
    @keyframes agri-fadeInLeft {
      0% { opacity: 0; transform: translateX(-50px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes agri-fadeInRight {
      0% { opacity: 0; transform: translateX(50px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes agri-bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes agri-float {
      from { transform: translateY(0px); }
      to { transform: translateY(30px); }
    }

    @media (max-width: 767px) {
      .agri-sponsor-form {
        margin-top: 40px;
      }
    }
    /* Floating Chatbot Button */
.chatbot-btn {
  position: fixed;
  bottom: 165px;
  right: 10px;
  width: 70px;
  height: 70px;
  background: #ffd700;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatBot 3s ease-in-out infinite;
  z-index: 10000; /* ensure button is always on top */
}

/* Chat Window (Fixed above button, no overlap) */
.chat-window {
  position: fixed;
  bottom: 110px; /* sits just above the button */
  right: 25px;
  width: 340px;
  background: #111;
  border: 2px solid #ffd700;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999; /* slightly lower than the button */
  animation: slideUp 0.4s ease forwards;
}

/* Slide-up animation when opening */
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Chat Body Scroll Fix */
.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  max-height: 400px; /* Prevents long overflow */
  background: #0a0a0a;
}

/* Adjust for smaller screens */
@media (max-width: 600px) {
  .chat-window {
    width: 90%;
    right: 5%;
    bottom: 100px;
    max-height: 70vh;
  }
}
.divider-bar {
  width: 60px;
  height: 5px;
  background-color: #FFD700;
  border-radius: 3px;
  margin: 10px auto 25px;
  animation: bounceBar 2s infinite ease-in-out;
}

/* Keyframe Animation */
@keyframes bounceBar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* bounce height */
  }
}


  @keyframes floatBot {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }

  /* Cartoon Bot Head */
  .bot-head {
    width: 50px;
    height: 45px;
    background: #000;
    border: 3px solid #ffd700;
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation: headTilt 4s ease-in-out infinite;
  }

  @keyframes headTilt {
    0%,100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
  }

  .bot-eye {
    width: 10px;
    height: 10px;
    background: #ffd700;
    border-radius: 50%;
    margin: 0 6px;
    animation: blink 4s infinite;
  }

  @keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
  }

  .bot-mouth {
    width: 22px;
    height: 4px;
    background: #ffd700;
    border-radius: 3px;
    position: absolute;
    bottom: 8px;
    transition: height 0.2s;
  }

  .bot-hand {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #ffd700;
    border-radius: 50%;
    top: 25px;
    right: -8px;
    animation: wave 2s ease-in-out infinite;
  }

  @keyframes wave {
    0%,100% { transform: rotate(0deg); }
    50% { transform: rotate(-25deg) translateY(-4px); }
  }

  /* Chat Window */
  .chat-window {
    position: fixed;
    bottom: 130px;
    right: 30px;
    width: 340px;
    background: #111;
    border: 2px solid #ffd700;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9998;
  }

  .chat-header {
    background: #ffd700;
    color: #000;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    position: relative;
  }

  .close-chat {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 20px;
    cursor: pointer;
  }

  .chat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #0a0a0a;
  }

  .message {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-end;
  }

  .bot-message, .user-message {
    max-width: 75%;
    padding: 10px 15px;
    border-radius: 15px;
    line-height: 1.4;
  }

  .bot-message {
    background: #222;
    color: #ffd700;
    margin-right: auto;
  }

  .user-message {
    background: #ffd700;
    color: #000;
    margin-left: auto;
  }

  .chat-input {
    display: flex;
    border-top: 2px solid #ffd700;
    background: #000;
  }

  .chat-input input {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
  }

  .chat-input button {
    background: #ffd700;
    border: none;
    color: #000;
    padding: 0 15px;
    cursor: pointer;
    transition: 0.3s;
  }

  .chat-input button:hover {
    background: #fff;
  }

.why-image {
      background-image: url('images/why-visit.jpg'); /* Replace with your image */
      background-size: cover;
      background-position: center;
      border-radius: 15px;
      height: 400px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
      animation: fadeInLeft 1.5s ease;
    }

    /* Content Section */
    .why-content h2 {
      color: #FFD700;
      font-weight: 800;
      font-size: 2.2rem;
      text-transform: uppercase;
      margin-bottom: 20px;
      animation: fadeInDown 1.2s ease;
    }

    .why-content p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: black;
      animation: fadeInRight 1.5s ease;
    }

    /* Decorative line */
    .divider {
      width: 60px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 3px;
      margin-bottom: 20px;
      animation: expandLine 1.2s ease forwards;
    }

    /* Animations */
    @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes expandLine {
      from { width: 0; opacity: 0; }
      to { width: 60px; opacity: 1; }
    }

    /* Responsive Adjustments */
    @media (max-width: 991px) {
      .why-image {
        height: 300px;
        margin-bottom: 30px;
      }
      .why-content h2 {
        font-size: 1.8rem;
        text-align: center;
      }
      .why-content p {
        text-align: center;
      }
      .divider {
        margin: 0 auto 20px;
      }
    }

    .discover-section h2 {
      font-weight: 800;
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 50px;
      color: #000;
    }

    /* Card */
    .discover-card {
      position: relative;
      overflow: hidden;
      border: none;
      border-radius: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }

    .discover-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    /* Image */
    .discover-image {
      position: relative;
      width: 100%;
      height: 200px;
      background-size: cover;
      background-position: center;
      transition: transform 0.4s ease;
    }

    .discover-card:hover .discover-image {
      transform: scale(1.05);
    }

    /* Overlay */
    .discover-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .discover-overlay h5 {
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      padding: 0 10px;
      line-height: 1.4;
    }

    /* Description below image */
    .discover-desc {
      background: #fff;
      padding: 15px;
      font-size: 0.9rem;
      color: #222;
      border-top: 3px solid #FFD700; /* gold accent */
      min-height: 100px;
    }

    /* Accent bar before paragraph */
    .discover-desc::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 20px;
      background: #FFD700;
      margin-right: 8px;
      vertical-align: middle;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .discover-overlay h5 {
        font-size: 0.95rem;
      }
      .discover-desc {
        font-size: 0.85rem;
      }
    }

    @media (max-width: 767px) {
      .discover-image {
        height: 180px;
      }
    }

    .marquee-section {
  position: relative;
  width: 100%;
  overflow: hidden; /* ✅ Prevent horizontal scrollbar */
  white-space: nowrap;
  padding: 20px;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
}

/* Track Animation */
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
  will-change: transform;
}

/* Pause animation on hover */
.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

/* Text Style */
.marquee-item {
  display: inline-block;
  margin: 0 60px;
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: transparent;
  -webkit-text-stroke: 1.0px #f4d31a;
  text-transform: uppercase;
  position: relative;
  background: linear-gradient(90deg, #f4d31a 0%, #28aa4a 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  transition: background-size 0.8s ease, color 0.8s ease;
  animation: fadeIn 2s ease both;
}

/* Hover fill effect */
.marquee-item:hover {
  background-size: 100% 100%;
  color: #f4d31a;
  -webkit-text-stroke: 0px transparent;
  transform: scale(1.05);
  transition: all 0.6s ease;
}

/* Infinite scroll keyframes */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive text sizing */
@media (max-width: 992px) {
  .marquee-item { font-size: 2rem; margin: 0 40px; }
}

@media (max-width: 576px) {
  .marquee-item { font-size: 1.4rem; margin: 0 25px; }
}

    .form-container {
    background: linear-gradient(90deg, #191917, #f4d31a);
    padding: 80px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 20px;
    color: white;
    font-weight: 600;
    
  }
  .form-titles {
    color: #7B5FFF;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
  }
  .expo-contact-area {
      padding: 80px 0;
      text-align: center;
      background: linear-gradient(180deg, #f6fff8 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    .expo-contact-area::before {
      content: '';
      position: absolute;
      top: -80px;
      left: -80px;
      width: 250px;
      height: 250px;
      background: rgba(40, 167, 69, 0.1);
      border-radius: 50%;
      animation: expo-float-bubble 6s ease-in-out infinite alternate;
    }

    /* ---------- TITLE ---------- */
    .expo-contact-heading {
      color: #8b4513;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .expo-contact-title {
      font-weight: 700;
      color: #1e1e1e;
      margin-bottom: 50px;
    }

    /* ---------- CONTACT CARDS ---------- */
    .expo-contact-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      padding: 40px 20px;
      transition: all 0.4s ease;
      height: 100%;
      position: relative;
      z-index: 2;
      animation: expo-fade-in 1s ease forwards;
    }

    .expo-contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(40, 167, 69, 0.25);
    }

    .expo-contact-icon {
      font-size: 42px;
      color: #28a745;
      margin-bottom: 18px;
      animation: expo-bounce 2.5s infinite;
    }

    .expo-contact-card h5 {
      font-weight: 600;
      color: #1e1e1e;
      margin-bottom: 15px;
    }

    .expo-contact-card p {
      font-size: 15px;
      color: #333;
      margin: 0;
      line-height: 1.7;
    }

    /* ---------- ANIMATIONS ---------- */
    @keyframes expo-fade-in {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes expo-bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-8px);
      }
    }

    @keyframes expo-float-bubble {
      from {
        transform: translate(0, 0);
      }
      to {
        transform: translate(40px, 40px);
      }
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 767px) {
      .expo-contact-card {
        margin-bottom: 30px;
      }
    }
    .exhibitor-section {
  position: relative;
  padding: 80px 0;
  background: url('images/back.avif') center center / cover no-repeat; /* 🔹 add your background image path here */
  color: #fff;
  overflow: hidden;
}

/* Dark overlay to improve text contrast */


/* Title Styling */
.section-title {
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #FFD700; /* gold title */
  position: relative;
  z-index: 1;
}

/* Card */
.exhibitor-card {
  background: #fff;
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;

  /* FIX: All cards same height */
  height: 380px;
  display: flex;
  flex-direction: column;
}

.exhibitor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Title */
.exhibitor-title {
  background: #fff;
  font-weight: 700;
  color: #000;
  font-size: 1rem;

  /* FIX: Same height on all cards */
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0 10px;
  border-bottom: 5px solid #FFD700;
  position: relative;
}

.exhibitor-title::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 25px;
  background: #fff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/* Image */
.exhibitor-image {
  width: 100%;
  background-size: cover;
  background-position: center;

  /* FIX: Auto stretches to fill remaining space */
  flex: 1;

  transition: transform 0.4s ease;
}

.exhibitor-card:hover .exhibitor-image {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .exhibitor-card {
    height: 340px;
  }
}

@media (max-width: 767px) {
  .exhibitor-card {
    height: 320px;
  }
}

.carousel-indicators [data-bs-target] {
  background-color: #a2dfb0; /* green indicator color */
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: white; /* darker green for active */
}

.carousel img {
  height: 110vh;
  object-fit: cover;
}
@media (max-width: 1375px) {
  .carousel img {
    height: 100vh;
  }
}

@media (max-width: 1350px) {
  .carousel img {
    height: 105vh;
  }
}
@media (max-width: 1300px) {
  .carousel img {
    height: 95vh;
  }
}
@media (max-width: 1190px) {
  .carousel img {
    height: 80vh;
  }
}



@media (max-width: 918px) {
  .carousel img {
    height: 40vh;
  }
}

/* Responsive height adjustments */
@media (max-width: 768px) {
  .carousel img {
    height: 30vh;
  }
}

@media (max-width: 576px) {
  .carousel img {
    height: 28vh;
  }
}
.countdown-section {
      background-color: black;
      color: #fff;
      padding: 40px 20px;
      
    }

    .countdown-left img {
      height: 60px;
      margin-bottom: 10px;
    }

    .countdown-left p {
      font-size: 18px;
      margin: 0;
      line-height: 1.5;
    }

    .countdown-left strong {
      display: block;
      font-size: 16px;
      color: #fff;
    }

    /* Timer */
    .countdown-timer {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      font-weight: 700;
      font-size: 56px;
      letter-spacing: 2px;
    }

    .countdown-timer span {
      color: #fff;
    }

    .countdown-labels {
      display: flex;
      justify-content: center;
      gap: 50px;
      margin-top: 5px;
      
      font-weight: 500;
      text-transform: uppercase;
      font-size:1.3rem;
      margin-top:8px;
      display:flex;
      justify-content:center;
      gap:25px;
      color:#fff;
      margin-left: 55px;
    }
    @media(max-width:550px)
    {
      .countdown-labels
      {
        margin-left: 15px;
      }
    }

    /* Button */
    .countdown-btn {
      background-color: #FFD700;
      color: #004316;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      padding: 12px 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s ease;
      font-size: 16px;
    }

    .countdown-btn:hover {
      background-color: #FFD700;
      transform: translateY(-2px);
    }

    .countdown-btn i {
      background-color: #7f6a18;
      color: #fff;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .countdown-btn:hover i {
      transform: rotate(45deg);
    }

    @media (max-width: 992px) {
      .countdown-timer {
        font-size: 28px;
      }
      .countdown-labels {
        gap: 30px;
        font-size: 13px;
      }
      .countdown-btn {
        margin-top: 20px;
      }
      .countdown-section {
        text-align: center;
      }
    }
     .awaits-section {
      padding: 80px 20px;
      background: #fff;
    }

    .awaits-section h2 {
      text-align: center;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 60px;
    }

    .awaits-section h2::after {
      content: '';
      width: 80px;
      height: 4px;
      background: #FFD700;
      display: block;
      margin: 12px auto 0;
      border-radius: 2px;
    }

    /* Cube Container */
    .cube-card {
      perspective: 1200px;
      height: 330px;
      position: relative;
    }

    .cube-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transition: transform 1s ease-in-out;
      border-radius: 12px;
    }

    .cube-front,
    .cube-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 12px;
      border: 1px solid #ddd;
      background: #fff;
      padding: 25px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    }

    .cube-front img {
      max-width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 6px;
      margin-bottom: 15px;
    }
    @media(max-width:920px)
    {
      .cube-front img
      {
        margin-top: 35px;
      }
    }

    .cube-front h5 {
      color: #FFD700;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 1rem;
      margin-bottom: 10px;
    }

    .cube-front p {
      font-size: 17px;
      color: black;
    }

    /* Back Side */
    .cube-back {
      background: linear-gradient(135deg, black, black);
      color: #fff;
      transform: rotateY(180deg);
      padding: 25px 25px;
      box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
    }

    .cube-back h5 {
      color: #FFD700;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .cube-back p {
      font-size: 0.95rem;
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .cube-card {
        height: 350px;
      }
      .cube-front img {
        height: 130px;
      }
    }

    @media (max-width: 768px) {
      .cube-card {
        margin-bottom: 25px;
      }
    }

    /* Fade in animation */
    .cube-card {
      opacity: 0;
      transform: translateY(40px);
      transition: all 1s ease;
    }
    .cube-card.visible {
      opacity: 1;
      transform: translateY(0);
    }
     .about-section {
      position: relative;
      background: url("images/abtn.jpg") center/cover no-repeat;
      padding: 100px 0;
      overflow: hidden;
    }

    /* ✅ White Overlay for better contrast */
    .about-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.8);
      z-index: 1;
    }

    .about-content {
      position: relative;
      z-index: 2;
    }

    /* Left Image */
    .about-img {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      transition: transform 0.5s ease;
    }

    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
    }

    .about-img:hover {
      transform: scale(1.03);
    }

    /* Right Content */
    .about-text {
      padding-left: 40px;
    }

    .about-text h2 {
      color: #000;
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 20px;
      position: relative;
    }

    .about-text h2::after {
      content: "";
      display: block;
      width: 70px;
      height: 4px;
      background: #FFD700;
      margin-top: 8px;
      border-radius: 2px;
    }

    .about-text p {
      color: #333;
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 20px;
      text-align: justify;
      hyphens: auto;
    }

    .about-text ul {
      color: #333;
      list-style-type: none;
      padding-left: 0;
      margin-bottom: 25px;
      text-align: justify;hyphens: auto;
    }

    .about-text ul li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 10px;
      line-height: 1.6;
    }

    .about-text ul li::before {
      content: "✔";
      color: #FFD700;
      position: absolute;
      left: 0;
      top: 0;
      font-weight: bold;
    }

    .btn-custom {
      background: #FFD700;
      color: #000;
      padding: 12px 30px;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-custom:hover {
      background: #000;
      color: #FFD700;
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    }

    /* Animations */
    @keyframes fadeInLeft {
      from {opacity: 0; transform: translateX(-50px);}
      to {opacity: 1; transform: translateX(0);}
    }

    @keyframes fadeInRight {
      from {opacity: 0; transform: translateX(50px);}
      to {opacity: 1; transform: translateX(0);}
    }

    .fade-left {
      animation: fadeInLeft 1s ease forwards;
    }

    .fade-right {
      animation: fadeInRight 1s ease forwards;
    }

    /* ✅ Responsive Fixes */
    @media (max-width: 992px) {
      .about-text {
        margin-top: 40px;
        padding-left: 0;
        text-align: center;
      }
      .about-text h2::after {
        margin: 10px auto 0;
      }
      .about-img {
        text-align: center;
      }
    }

    @media (max-width: 768px) {
      .about-section {
        padding: 60px 0;
      }
    }
     /* Grid Container */
    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      grid-gap: 0;
    }

    /* Category Card */
    .category-card {
      position: relative;
      height: 330px;
      background-size: cover;
      background-position: center;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .category-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      transition: background 0.4s ease;
    }

    .category-card:hover::before {
      background: rgba(0, 0, 0, 0.65);
    }

    /* Text Overlay */
    .category-info {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      z-index: 2;
      width: 90%;
      padding: 10px;
    }

    .category-info h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: #FFD700;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .category-info p {
      font-size: 0.95rem;
      color: #fff;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* Hover Zoom */
    .category-card:hover {
      transform: scale(1.02);
      z-index: 3;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .category-card {
        height: 300px;
      }
      .category-info h3 {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 768px) {
      .category-card {
        height: 260px;
      }
      .category-info h3 {
        font-size: 1rem;
      }
      .category-info p {
        font-size: 0.9rem;
      }
    }

    .why-visit-section {
      position: relative;
      padding: 100px 0;
      overflow: hidden;
      color: #000;
    }

    /* Background image with blur overlay */
    .why-visit-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("images/fdback.jpg") center/cover no-repeat;
      
      transform: scale(1.05);
      z-index: 0;
    }

    .why-visit-content {
      position: relative;
      z-index: 2;
    }

    .section-title {
      text-align: center;
      font-size: 2.4rem;
      font-weight: 700;
      color: black;
      margin-bottom: 25px;
      letter-spacing: 1px;
    }

    .section-subtitle {
      text-align: center;
      color: black ;
      font-size: 1.1rem;
      max-width: 850px;
      margin: 0 auto 60px auto;
      line-height: 1.7;
    }

    /* Feature Cards */
    .feature-card {
      position: relative;
      background: linear-gradient(180deg, #FFD700 0%, #ffea85 100%);
      border: 2px solid rgba(255, 215, 0, 0.3);
      border-radius: 15px;
      padding: 30px 25px;
      color: #fff;
      height: 100%;
      transition: all 0.6s ease;
      overflow: hidden;
      backdrop-filter: blur(10px);
      cursor: pointer;
      z-index: 1;
    }

    /* Gold Fill from Bottom to Top */
    .feature-card::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 0%;
      background: linear-gradient(180deg, #FFD700 0%, #ffea85 100%);
      z-index: 0;
      transition: height 0.6s ease-in-out;
    }

    .feature-card:hover::before {
      height: 100%;
    }

    /* Content always above overlay */
    .feature-card * {
      position: relative;
      z-index: 2;
    }

    /* Hover animations */
    .feature-card:hover {
      transform: translateY(-10px);
      border-color: #FFD700;
      box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    }

    .feature-card i {
      font-size: 2.2rem;
      color: black;
      margin-bottom: 15px;
      transition: color 0.3s ease;
    }

    .feature-card:hover i {
      color: #000;
    }

    .feature-card h5 {
      color: #FFD700;
      font-weight: 700;
      margin-bottom: 10px;
      transition: color 0.3s ease;
    }

    .feature-card:hover h5 {
      color: #000;
    }

    .feature-card p {
      color: #f1f1f1;
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
      transition: color 0.4s ease;
    }

    .feature-card:hover p {
      color: #000;
    }

    /* Fade-up entrance */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .section-title {
        font-size: 2rem;
      }
      .section-subtitle {
        font-size: 1rem;
      }
    }

    @media (max-width: 768px) {
      .why-visit-section {
        padding: 70px 0;
      }
      .feature-card {
        text-align: center;
      }
    }

.why-visit-content {
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  color: white;
  font-size: 1.1rem;
  max-width: 850px;
  margin: 0 auto 60px auto;
  line-height: 1.7;
}

/* Feature Cards */

.feature-card:hover::before {
  height: 100%;
}

/* Bring content above overlay */
.feature-card * {
  position: relative;
  z-index: 2;
}

/* Hover State Effects */
.feature-card:hover {
  border-color: #FFD700;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
  transform: translateY(-10px);
}

/* Text & Icon Colors */
.feature-card i {
  font-size: 2rem;
  color: black;
  margin-bottom: 15px;
  transition: color 0.4s ease;
}

.feature-card:hover i {
  color: #000;
}

.feature-card h5 {
  color: #000;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.4s ease;
}

.feature-card:hover h5 {
  color: #000;
}

.feature-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  transition: color 0.4s ease;
}

.feature-card:hover p {
  color: #000;
}

/* Animation for fade-up on load */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .why-visit-section {
    padding: 70px 0;
  }
  .feature-card {
    text-align: center;
  }
}

.showcase-section {
      position: relative;
      padding: 100px 0 50px;
      background: url('images/backout.jpg') center/cover no-repeat fixed;
      overflow: hidden;
    }

    /* Dark overlay for readability */
    .showcase-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1;
    }

    .showcase-header, .build-block {
      position: relative;
      z-index: 2;
    }

    /* Section Header */
    .showcase-header {
      text-align: center;
      margin-bottom: 80px;
      animation: fadeDown 1s ease both;
    }

    .showcase-header h2 {
      color: #FFD700;
      font-size: 2.6rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 15px;
    }

    .showcase-header p {
      color: #ddd;
      max-width: 850px;
      margin: 0 auto;
      font-size: 1.1rem;
      line-height: 1.7;
    }

    /* Build Section Blocks */
    .build-block {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
      padding: 80px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .build-block.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .build-block:nth-child(even) {
      flex-direction: row-reverse;
    }

    .build-text {
      flex: 1;
    }

    .build-text h3 {
      font-size: 2rem;
      font-weight: 700;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .build-text p {
      color: #f1f1f1;
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .build-text a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #000;
      background: #FFD700;
      font-weight: 600;
      text-decoration: none;
      padding: 10px 25px;
      border-radius: 30px;
      transition: all 0.3s ease;
    }

    .build-text a:hover {
      background: #fff;
      color: #000;
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }

    .build-icon {
      flex: 1;
      text-align: center;
    }

    .build-icon img {
      width: 100%;
      max-width: 400px;
      border-radius: 12px;
      box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
      transition: transform 0.5s ease;
    }

    .build-icon img:hover {
      transform: scale(1.05);
    }

    /* Animations */
    @keyframes fadeDown {
      from {opacity: 0; transform: translateY(-20px);}
      to {opacity: 1; transform: translateY(0);}
    }

    /* Responsive */
    @media (max-width: 992px) {
      .build-block {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
      }
      .build-icon img {
        max-width: 300px;
      }
      .build-text h3 {
        font-size: 1.7rem;
      }
    }

    @media (max-width: 768px) {
      .showcase-section {
        padding: 70px 0;
        background-attachment: scroll;
      }
    }
    .review-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  border: 1px solid #e4e4e4;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.reviewer-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #28a745;
}
.review-stars i {
  color: #f4b400; /* Google star color */
  margin-right: 2px;
}
.review-title {
  font-weight: 600;
  font-size: 16px;
}
  .contact-section {
      background-color: #ffd700;
      border-radius: 15px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .contact-img {
      width: 100%;
      height: 750px;
      object-fit: cover;
    }

    .contact-form {
      padding: 40px;
    }

    .form-control {
      
      padding: 10px 15px;
    }

    .form-control:focus {
      box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
      border-color: #28a745;
    }

    .submit-btn {
      background-color: white;
      color: white;
    
      padding: 12px 25px;
      transition: all 0.3s ease-in-out;
    }

    .submit-btn:hover {
      background-color: #218838;
    }

    .privacy-note {
      font-size: 0.9rem;
      color: #666;
      margin-top: 15px;
    }

    @media (max-width: 768px) {
      .contact-form {
        padding: 25px;
      }
    }
    .form-label
    {
        color: white;
    }
    .footer-banner {
      position: relative;
      background: url("images/hone.jpg") no-repeat center center/cover;
      padding: 80px 20px;
      color: #fff;
      text-align: center;
      overflow: hidden;
    }

    .footer-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1;
    }

    .footer-banner .content {
      position: relative;
      z-index: 2;
      max-width: 750px;
      margin: 0 auto;
      animation: fadeInUp 1.2s ease-in-out;
    }

    .footer-banner h2 {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .footer-banner p {
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: 30px;
      color: #f5f5f5;
    }

    .footer-banner .btn-custom {
      background-color: #28aa4a;
      color: #fff;
      border-radius: 50px;
      padding: 12px 32px;
      font-weight: 600;
      text-transform: uppercase;
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
    }

    .footer-banner .btn-custom:hover {
      background-color: #1e8f3c;
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(40,170,74,0.6);
    }

    /* ===== Keyframe Animations ===== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(40,170,74,0.6); }
      50% { box-shadow: 0 0 0 15px rgba(40,170,74,0); }
    }

    /* ===== Responsive Adjustments ===== */
    @media (max-width: 992px) {
      .footer-banner h2 { font-size: 32px; }
      .footer-banner p { font-size: 15px; }
    }

    @media (max-width: 576px) {
      .footer-banner h2 { font-size: 26px; }
      .footer-banner p { font-size: 14px; }
      .footer-banner .btn-custom { padding: 10px 26px; font-size: 14px; }
    }

     .agri-section {
      position: relative;
      background: url('images/tracto.jpeg') center center/cover no-repeat;
      background-attachment: fixed;
      color: #555;
      padding: 80px 20px;
    }
.fire-scroll-top {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 50px;
      height: 50px;
      background: #ffd700;
      color: black;
      border: none;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: background 0.3s ease, transform 0.3s ease;
      display: none;
      z-index: 999;
    }

    .fire-scroll-top:hover {
      background: black;
      transform: scale(1.1);
      color: white;
    }

    .fire-scroll-top i {
      font-size: 26px;
      line-height: 50px;
    }
     .whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 15px;
    background: #25d366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
  }
  .whatsapp-float img {
    width: 35px;
    height: 35px;
  }
  .whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5c;
  }
   .counter-section {
      position: relative;
      background: url('images/itwo.jpg') center/cover no-repeat fixed;
      padding: 100px 0;
      text-align: center;
    }

    /* Overlay */
    .counter-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      z-index: 1;
    }

    .counter-container {
      position: relative;
      z-index: 2;
    }

    .counter-title {
      color: #FFD700;
      font-weight: 700;
      font-size: 2.3rem;
      margin-bottom: 60px;
      animation: fadeInDown 1s ease forwards;
    }

    /* Counter Box */
    .counter-box {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 40px 20px;
      backdrop-filter: blur(4px);
      box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
      transition: transform 0.3s ease;
      animation: fadeUp 1s ease both;
    }

    .counter-box:hover {
      transform: translateY(-10px);
      background: rgba(255, 255, 255, 0.15);
    }

    .counter-icon {
      font-size: 3rem;
      color: #FFD700;
      margin-bottom: 15px;
      animation: pulse 2s infinite ease-in-out;
    }

    .counter-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #FFD700;
      margin-bottom: 10px;
    }

    .counter-text {
      font-size: 1rem;
      color: #eee;
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    /* Animations */
    @keyframes fadeUp {
      from {opacity: 0; transform: translateY(30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes fadeInDown {
      from {opacity: 0; transform: translateY(-30px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes pulse {
      0%, 100% {transform: scale(1);}
      50% {transform: scale(1.1);}
    }

    @media (max-width: 768px) {
      .counter-title {
        font-size: 1.8rem;
      }
      .counter-box {
        margin-bottom: 30px;
      }
    }
  .mission-vision-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: url("images/fdback.jpg") center/cover no-repeat;

}

/* Decorative glowing lines background */

@keyframes move-bg {
  from {background-position: 0 0;}
  to {background-position: 100% 100%;}
}

.mission-vision-section h2 {
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

/* Mission & Vision Card */
.mv-card {
  position: relative;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(5px);
  z-index: 3;
  overflow: hidden;
}

/* Gold fill overlay (hidden initially) */
.mv-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #FFD700 0%, #ffec85 100%);
  transition: height 0.6s ease-in-out;
  z-index: 1;
  border-radius: 20px;
}

/* Fill animation on hover */
.mv-card:hover::before {
  height: 100%;
}

/* Bring text & icons above overlay */
.mv-card * {
  position: relative;
  z-index: 2;
}

/* Hover effect adjustments */
.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  border-color: #FFD700;
}

/* Icon styling */
.mv-icon {
  width: 90px;
  height: 90px;
  background: #FFD700;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {transform: scale(1);}
  50% {transform: scale(1.1);}
}

.mv-card h4 {
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  transition: color 0.4s ease;
}

.mv-card p {
  color: #000;
  font-size: 1.05rem;
  line-height: 1.7;
  transition: color 0.4s ease;
}

/* Text turns black on hover */
.mv-card:hover h4,
.mv-card:hover p {
  color: #000;
}

/* Entrance animation */
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

    /* Line Connector */
    .connector {
      position: absolute;
      width: 80px;
      height: 3px;
      background: linear-gradient(to right, transparent, #FFD700, transparent);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: glow 2s infinite alternate;
      display: none;
    }

    @keyframes glow {
      from {opacity: 0.4;}
      to {opacity: 1;}
    }

    @keyframes fadeUp {
      from {opacity: 0; transform: translateY(40px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes pulse {
      0%, 100% {transform: scale(1);}
      50% {transform: scale(1.1);}
    }

    /* Responsive */
    @media (max-width: 992px) {
      .mv-card {
        margin-bottom: 2rem;
      }
    }
     .faq-section {
      padding: 100px 0;
      background: url("images/back.avif") center/cover no-repeat;

      position: relative;
    }

    .faq-title {
      color: black;
      font-weight: 700;
      text-align: center;
      margin-bottom: 60px;
      font-size: 2.4rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* Accordion Styling */
    .accordion-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 215, 0, 0.3);
      border-radius: 10px;
      margin-bottom: 15px;
      transition: all 0.3s ease;
      overflow: hidden;
      
      
    }

    .accordion-item:hover {
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    }

    .accordion-button {
      background: #ffd700;
      color: black;
      font-weight: 600;
      padding: 18px;
      font-size: 1.1rem;
      text-transform: uppercase;
      border: none;
      outline: none;
      box-shadow: none;
      position: relative;
      transition: all 0.3s ease;
    }

    .accordion-button:hover {
      background: rgba(255, 215, 0, 0.1);
    }

    .accordion-button:not(.collapsed) {
      color: #000;
      background-color: #FFD700;
      box-shadow: none;
    }

    .accordion-body {
      background: #111;
      color: #fff;
      font-size: 1rem;
      line-height: 1.7;
      border-top: 1px solid rgba(255, 215, 0, 0.2);
      padding: 20px 25px;
      animation: fadeIn 0.5s ease;
    }

    /* Remove Bootstrap Default Arrow */
    .accordion-button::after {
      display: none !important;
    }

    /* Custom + and – Icons */
    .accordion-button::before {
      content: '+';
      font-size: 1.8rem;
      font-weight: 700;
      color: black;
      position: absolute;
      right: 25px;
      top: 50%;
      transform: translateY(-50%);
      transition: all 0.3s ease;
    }

    .accordion-button:not(.collapsed)::before {
      content: '–';
      color: #000;
      transform: rotate(180deg) translateY(10%);
    }

    .accordion-button:hover::before {
      text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .faq-title {
        font-size: 2rem;
      }
    }
     .why-exhibit {
            padding: 100px 0;
            background: linear-gradient(135deg, #000000 0%, #ffd700 100%);
        }

        .why-exhibit h2 {
            text-align: center;
            font-weight: 700;
            font-size: 2.5rem;
            color: #FFD700;
            margin-bottom: 1rem;
        }

        .why-exhibit p.sub-text {
            text-align: justify;
            max-width: 850px;
            margin: 0 auto 60px;
            color: white;
            font-size: 1.05rem;
            line-height: 1.7;
            hyphens: none;
        }

        /* FLIP CARD WRAPPER */
        .flip-card {
            background: transparent;
            width: 100%;
            height: 350px;
            perspective: 1000px;
            transition: 0.3s ease;
        }

        /* Hover Lift */
        .flip-card:hover {
            transform: translateY(-8px);
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s ease;
            transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        /* FRONT + BACK FACES */
        .flip-card-front,
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 22px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 25px;
        }

        /* FRONT SIDE */
        .flip-card-front {
            background: #fff;
        }

        .flip-card-front i {
            font-size: 2.8rem;
            color: #FFD700;
            margin-bottom: 15px;
        }

        .flip-card-front h5 {
            font-weight: 700;
            font-size: 1.15rem;
            color: #000;
            margin: 0;
        }

        /* BACK SIDE — FIXED & IMPROVED */
        .flip-card-back {
            background: linear-gradient(180deg, #ffd700 0%, #ffe875 100%);
            transform: rotateY(180deg);
            color: #000;

            /* FIX OVERFLOW */
            overflow-y: auto;
            padding: 22px !important;

            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
        }

        .flip-card-back::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        .flip-card-back p {
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 500;

            /* FIX WORD BREAKING */
            hyphens: none;
            overflow-wrap: break-word;
            word-break: normal;

            text-align: justify;
            margin: 0;
        }

        /* RESPONSIVE HEIGHTS */
        @media (max-width: 992px) {
            .flip-card {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .flip-card {
                height: 280px;
                margin-bottom: 20px;
            }
        }

    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      visibility: hidden;
      opacity: 0;
      transition: all 0.4s ease;
      z-index: 9999;
    }

    .popup-overlay.show {
      visibility: visible;
      opacity: 1;
    }

    /* Popup Card */
    .popup-card {
      background: #fff;
      border-radius: 20px;
      padding: 30px 25px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      transform: scale(0.8);
      animation: popIn 0.5s ease forwards;
      position: relative;
    }

    @keyframes popIn {
      0% { transform: scale(0.8); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    .popup-card h4 {
      font-weight: 700;
      color: black;
      margin-bottom: 10px;
    }

    .popup-card p {
      color: #555;
      font-size: 1rem;
      margin-bottom: 20px;
    }

    /* Close Button */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 1.5rem;
      color: #888;
      cursor: pointer;
      transition: color 0.2s;
    }

    .close-btn:hover {
      color: #000;
    }

    /* Countdown */
    .countdown {
      font-size: 1.2rem;
      color: #333;
      font-weight: 600;
      background: #e6f2ff;
      border-radius: 10px;
      display: inline-block;
      padding: 10px 15px;
      margin-bottom: 20px;
      animation: fadeIn 1s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
.form-section {
    
      background: linear-gradient(90deg, #ffd700, black);

    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 60px;
  }
  .form-title {
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
  }
  .btn-primary {
    background-color:#7B5FFF;
    border-color: #7B5FFF;
    margin-top: 2rem;
    padding: 10px;
  }
  .btn-primary:hover {
    background-color: #5f1fa2;
  }
  .sub-head
  {
    font-size: 29px;
  }
   .form-container {
    background: linear-gradient(90deg, #ffd700, black);
    padding: 80px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 20px;
    color: white;
    font-weight: 600;
    
  }
  .form-titles {
    color: #7B5FFF;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
  }
  .expo-contact-area {
      padding: 80px 0;
      text-align: center;
      background: linear-gradient(180deg, #f6fff8 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
    }

    .expo-contact-area::before {
      content: '';
      position: absolute;
      top: -80px;
      left: -80px;
      width: 250px;
      height: 250px;
      background: rgba(40, 167, 69, 0.1);
      border-radius: 50%;
      animation: expo-float-bubble 6s ease-in-out infinite alternate;
    }

    /* ---------- TITLE ---------- */
    .expo-contact-heading {
      color: #8b4513;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .expo-contact-title {
      font-weight: 700;
      color: #1e1e1e;
      margin-bottom: 50px;
    }

    /* ---------- CONTACT CARDS ---------- */
    .expo-contact-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      padding: 40px 20px;
      transition: all 0.4s ease;
      height: 100%;
      position: relative;
      z-index: 2;
      animation: expo-fade-in 1s ease forwards;
    }

    .expo-contact-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(40, 167, 69, 0.25);
    }

    .expo-contact-icon {
      font-size: 42px;
      color: #28a745;
      margin-bottom: 18px;
      animation: expo-bounce 2.5s infinite;
    }

    .expo-contact-card h5 {
      font-weight: 600;
      color: #1e1e1e;
      margin-bottom: 15px;
    }

    .expo-contact-card p {
      font-size: 15px;
      color: #333;
      margin: 0;
      line-height: 1.7;
    }
.phone-btn {
  position: fixed;
  bottom: 170px;
  right: 15px;
  background-color: #28a745; /* Green */
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.phone-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .phone-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .phone-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
    bottom: 250px;
    right: 15px;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.phone-btn {
  animation: bounce 2s infinite;
}
.cons
    {
      font-size: 18px;
    }

    @media (max-width:1400px)
    {
      .cons
      {
        font-size: 14px;
      }
    }
    @media (max-width:1200px)
    {
      .cons
      {
        font-size: 12px;
      }
    }

    .encount
    {
      width:260px;
      height:120px;
      object-fit:cover;
      border-radius:10px;
      margin-top: -35px;

    }
    @media(max-width:550px)
    {
      .encount
      {
        width:260px;
        height:120px;
        object-fit:cover;
        border-radius:10px;
        margin-top: 0px;
      }
    }
     #preloader {
      position: fixed;
      inset: 0;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }

    .loader-card {
      text-align: center;
      color: #ffd700;
      user-select: none;
    }

    /* === BUILDING BASE === */
    .building {
      width: 140px;
      height: 200px;
      background: linear-gradient(180deg, #1a1a1a, #000);
      border-radius: 6px;
      position: relative;
      box-shadow: 0 0 25px rgba(255, 215, 0, 0.25), inset 0 -4px 10px rgba(255, 215, 0, 0.2);
      margin: 0 auto 18px;
      transform-origin: center bottom;
      animation: subtle-breath 2.4s ease-in-out infinite;
    }

    /* Roof */
    .building::before {
      content: "";
      position: absolute;
      left: -8px;
      right: -8px;
      top: -18px;
      height: 18px;
      background: linear-gradient(90deg, #ffd700, #b89100);
      border-radius: 4px;
      transform: skewX(-12deg);
      box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }

    /* Antenna */
    .antenna {
      position: absolute;
      top: -36px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 28px;
      background: linear-gradient(#ffd700, #b89100);
      border-radius: 2px;
      box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
      animation: antenna-sway 1.4s ease-in-out infinite;
    }

    .antenna::after {
      content: "";
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ffd700;
      box-shadow: 0 0 12px rgba(255, 215, 0, 0.9);
    }

    /* Windows */
    .windows {
      --cols: 3;
      --rows: 5;
      display: grid;
      grid-template-columns: repeat(var(--cols), 1fr);
      gap: 10px;
      width: 92%;
      margin: 28px auto 0;
    }

    .window {
      height: 18px;
      border-radius: 3px;
      background: rgba(255, 215, 0, 0.1);
      position: relative;
      overflow: hidden;
    }

    .window .lit {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #ffd700, #b89100);
      transform: scaleX(0);
      transform-origin: left;
      animation: light-flick 1.2s linear infinite;
      opacity: 0.95;
    }

    /* Staggered lighting */
    .window:nth-child(odd) .lit { animation-delay: -0.3s; }
    .window:nth-child(even) .lit { animation-delay: -0.6s; }

    /* Glint across building */
    .glint {
      position: absolute;
      top: -20%;
      left: -40%;
      width: 40%;
      height: 240%;
      background: linear-gradient(110deg, transparent 0%, rgba(255, 215, 0, 0.15) 50%, transparent 100%);
      transform: rotate(16deg);
      animation: glint 1.1s ease-in-out infinite;
      pointer-events: none;
    }

    /* Progress info */
    .progress-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: 600;
      letter-spacing: 0.6px;
      margin-top: 10px;
    }

    .progress-value {
      font-size: 14px;
      color: #ffd700;
      min-width: 44px;
    }

    /* Fast spinner */
    .fast-spinner {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 3px solid rgba(255, 215, 0, 0.3);
      border-top-color: #ffd700;
      animation: spin 0.6s linear infinite;
    }

    /* === KEYFRAMES === */
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    @keyframes light-flick {
      0% { transform: scaleX(0); opacity: 0; }
      20% { transform: scaleX(1); opacity: 1; }
      60% { transform: scaleX(1); opacity: 1; }
      100% { transform: scaleX(0); opacity: 0; }
    }

    @keyframes glint {
      0% { left: -40%; opacity: 0; }
      50% { left: 100%; opacity: 0.4; }
      100% { left: 120%; opacity: 0; }
    }

    @keyframes antenna-sway {
      0%, 100% { transform: translateX(-50%) rotate(-2deg); }
      50% { transform: translateX(-50%) rotate(2deg); }
    }

    @keyframes subtle-breath {
      0% { transform: translateY(0) scaleY(1); }
      50% { transform: translateY(-3px) scaleY(1.01); }
      100% { transform: translateY(0) scaleY(1); }
    }

    /* Fade out on load */
    body.loaded #preloader {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    @media (max-width: 420px) {
      .building { width: 110px; height: 160px; }
      .windows { gap: 8px; }
    }
    /* Overlay */

.contact-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-box {
  background: #f4d31a;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  animation: popupZoom 0.3s ease-out;
}

@keyframes popupZoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}
