/* Import professional font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* background-color */
  --primary-color: #000000;
  --secondary-color: #a07d1d;
  --bg-black: #000000;
  --bg-dark: #666;
  --bg-white: #fff;

  /* Text Style */
  --primary-font: "Poppins", sans-serif;
  --secondary-font: "Inter", sans-serif;
  --primary-text: #000000;
  --secondary-text: #a07d1d;
  --text-white: #fff;
  --text-black: #222;
  --text-grey: #666;
  --text-light: #ddd;
}

body {
  font-family: var(--primary-font);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 0.375rem;
}

::-webkit-scrollbar-track {
  background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
}

.wrapper {
  padding: 6.25rem 0;
}

.main-btn {
  display: inline-block;
  border: 0.0625rem solid var(--bg-white);
  color: var(--text-white);
  text-align: center;
  padding: 0.75rem 1.375rem;
  font-size: 1rem;
  background: transparent;
  text-transform: capitalize;
  border-radius: 0.1875rem;
  transition: all 0.3s ease-in-out;
}

.main-btn:hover {
  background-color: var(--secondary-color);
  border: var(--secondary-color);
  color: var(--text-white);
}

.fill-btn {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-white);
}

.fill-btn:hover {
  background-color: var(--bg-white);
  border-color: var(--bg-white);
  color: var(--text-black);
}

h1 {
  font-size: 3.875rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: var(--text-white);
  font-family: var(--secondary-font);
}

h2 {
  font-size: 2.875rem;
  font-weight: 600;
  color: var(--text-white);
  font-family: var(--secondary-font);
}

h3 {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text-white);
  font-family: var(--secondary-font);
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.25rem;
  color: var(--text-black);
  font-family: var(--secondary-font);
}

h5 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2rem;
  color: var(--primary-text);
  margin-bottom: 0.9375rem;
  font-family: var(--secondary-font);
}

h6 {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.2rem;
  color: var(--text-black);
  margin-bottom: 0.9375rem;
  text-transform: uppercase;
  font-family: var(--secondary-font);
}

p {
  font-size: 1rem;
  color: var(--text-grey);
  line-height: var(--text-grey);
  line-height: 1.625rem;
}

.card {
  border-radius: 0.625rem;
  background-color: var(--bg-white);
  box-shadow: 0.5084rem 1.1419rem 2.5rem 0 rgb(0 0 0 / 8%);
  padding: 3.75rem 3.125rem 4.6875rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border: 0;
}

@keyframes movebounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(1.25rem);
    transform: translateY(1.25rem);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* website loader */
#loader-wrapper {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.3s ease;
}

#loader img {
  width: 120px;
  animation: pulse 1.2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 0.6; }
}


/* Top Contact Bar */
.topbar_wrapper {
  background: #222;
  /* Dark background */
  color: #fff;
  /* Text color */
  font-size: 0.9rem;
}

.topbar_wrapper a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.topbar_wrapper a:hover {
  color: var(--secondary-text);
  /* Highlight color on hover */
}

.topbar-right a i {
  font-size: 1rem;
}

/* navbar */
nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: var(--bg-white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

nav .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}

.navbar .logo a {
  font-size: 30px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}

nav .navbar .links {
  display: flex;
}

nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}

nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: var(--bg-white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}

.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}

.navbar .nav-links .sidebar-logo {
  display: none;
}

.navbar .bx-menu {
  display: none;
}

@media (max-width:920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a {
    font-size: 27px;
  }

  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }

  nav .navbar .links li a {
    font-size: 15px;
  }
}

@media (max-width:800px) {
  .navbar .bx-menu {
    display: block;
  }

  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: var(--bg-white);
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }

  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar-logo .logo-name {
    font-size: 25px;
    color: var(--primary-color);
  }

  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: var(--primary-color);
  }

  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }

  nav .navbar .links li .arrow {
    line-height: 40px;
  }

  nav .navbar .links li {
    display: block;
  }

  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }

  nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }

  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }

  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }

  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }

  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }

  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }

  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }

  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }

  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width:370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}

/* Banner */
.banner_wrapper {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/dholera.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  /* height: 100vh; */
}

.banner_wrapper p {
  max-width: 80%;
  color: var(--text-white);
}

/* .banner_wrapper .top-right-sec{
    position: relative;
    background-image: url(./images/top-banner-img/top-right-bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    display: flex;
    align-items: flex-end;
    justify-content: center;
} */
.home .card:hover {
  -webkit-transform: translateY(-0.625rem);
  transform: translateY(-0.625rem);
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/pilotimages.webp");
  background-size: cover;
  background-position: center;
  color: white;
  /* Makes all text inside white by default */
}

.home .card:hover h4,
.home .card:hover p {
  color: white;
}

.tz p {
  text-align: justify;
}

/* About Section */
.about_wrapper h2 {
  color: var(--text-black);
}

.about_wrapper .about-card {
  width: 100%;
  /* display: flex; */
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  /* needed for absolute lines */
  padding: 1.89rem;
  background: #fff;
  /* optional: keeps background clean */
}

.about_wrapper .about-sameeksha {
  flex: 0 0 50%;
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: 2.5rem;
}

.about_wrapper .about-sameeksha h4 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.about_wrapper .about-sameeksha p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  /* adjust as needed */
}

.about_wrapper .line-1,
.about_wrapper .line-2 {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.0313rem;
  height: 100%;
  background: var(--bg-dark);
}

.about_wrapper .line-2 {
  width: 100%;
  height: 0.0625rem;
}

/* 5 services */
.services_wrapper {
  background-color: var(--primary-color);
}

.services_wrapper .row {
  display: flex;
  flex-wrap: wrap;
}

.services_wrapper .col-md-4,
.services_wrapper .col-sm-6,
.services_wrapper .mb-4 {
  display: flex;
}

.services_wrapper .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: transparent;
  border: 0.0625rem solid var(--secondary-color);
  box-shadow: none;
  padding: 1rem;
  width: 100%;
  height: 100%;
}

.services_wrapper .card:hover {
  border: 0.0625rem solid var(--bg-white);
  box-shadow: 0 0.5rem 1rem rgba(218, 186, 101, 0.15),
    0 0.75rem 2rem rgba(255, 250, 250, 0.1);
  transform: translateY(-5px);
  /* slight lift effect */
  transition: all 0.3s ease;
}

.services_wrapper .icon-box {
  margin-bottom: 1.875rem;
}

.services_wrapper .card h4,
.services_wrapper .card p {
  color: var(--text-white);
}

.services_wrapper .whyp {
  color: var(--secondary-color);
  font-size: 20px;
  /* font-weight: bolder; */
}

/* .services_wrapper .whychhose img{
  margin-top: 50px;
} */

/*  ceo& founder Section */
/* CEO & Founder Section */
.ceofounder_wrapper {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ceofounder_wrapper .card {
  border: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: #fff;
  transition: all 0.4s ease;
  padding: 25px 15px;
}

.ceofounder_wrapper .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.ceofounder_wrapper .card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  margin: 0 auto;
}

.ceofounder_wrapper .card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 15px;
  color: #222;
}

.ceofounder_wrapper .card p {
  font-size: 16px;
  color: #777;
  letter-spacing: 0.5px;
}

.ceofounder_wrapper p {
  line-height: 1.8;
  color: #333;
}

.ceofounder_wrapper span {
  color: #0078ff;
}


/* Testimonial Section */
.testimonial-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

/* Image Box */
.testimonial-img-box {
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

/* Image Styling */
.testimonial-img-box img {
  width: 100%;
  height: auto;
  /* IMPORTANT */
  aspect-ratio: 4 / 3;
  /* Keeps image ratio */
  object-fit: cover;
  border-radius: 10px;
}

/* Hover Effect */
.testimonial-img-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(160, 125, 29, 0.25);
}



/* Counter section */
.counter-section .main-btn {
  display: inline-block;
  padding: 0.625rem 1.875rem;
  line-height: 1.5625rem;
  background-color: var(--primary-color);
  border: 0.1875rem solid var(--primary-color);
  color: var(--white-color);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.counter-section .white-btn {
  padding: 0.625rem 1.875rem;
  line-height: 25px;
  background-color: var(--white-color);
  border: 0.1875rem solid var(--white-color);
  color: var(--text-color);
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
  -webkit-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.counter-section .main-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.counter-section .white-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.counter-section .wrapper {
  padding-top: 8.25rem;
  padding-bottom: 8.25rem;
}

.counter-section .text-content {
  width: 70%;
  margin: auto;
}

.counter-section h2 {
  color: var(--white-color);
}

/* ============================================================================ */

/* about us page banner */
.aboutbanner_wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

/* background image */
.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* text overlay */
.text-overlay {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 2;
}

/* about us heading background */
.bannerabout-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.45);
  padding: clamp(8px, 2vw, 12px) clamp(20px, 5vw, 45px);
  border-radius: 8px;
  text-align: center;
}

.overlay-img {
  position: absolute;
  bottom: -2px;                 /* niche overlap */
  left: 10%;                     /* center anchor */
  transform: translateX(-50%);   /* exact horizontal center */
  width: 100%;
  max-width: 80%;                /* desktop control */
  height: auto;
  z-index: 2;
  display: block;
}

/* ============================================================================ */
/* ourprojects page css */
.ourpro_wrapper {
  position: relative;
  width: 100%;
  height: 68vh;
  overflow: hidden;
}

/* background image */
.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* prevents image distortion */
  display: block;
}

/* overlay */
.bannerour-overlay {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* title */
.bannerour-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.45);
  padding: clamp(8px, 2vw, 12px) clamp(20px, 5vw, 45px);
  border-radius: 8px;
  text-align: center;
}



.gallery_wrapper {
  background: url("../images/ourproject/bannergallery.webp") no-repeat center center;
  background-size: cover;
  padding: 6.25rem 0;
  top: 0;
  
}

.gallery_wrapper h3 {
  color: var(--text-black);
  font-family: var(--primary-font);
  font-weight: 600;
}

.gallery_wrapper img {
  border-radius: 0.9375rem;
  object-fit: cover;
}

/* ============================================================================ */

/* teammembers page css  */
/* team baner */
.teammem_wrapper {
  background: url("../images/teammembers/blog-banner-team.webp");
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 100vh; */
  background-position: center;
  width: 100vw;
}

.card-wrapper {
  background: url("../images/teammembers/Solid-blue-background.webp");
  /* z-index: -1; */
}

/* Core Team Section */
/* ==== HEADER ==== */
.team-section {
  background-color: #fef6f0;
  padding: 60px 20px;
  text-align: center;
}

.team-section h2 {
  color: #ff6600;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.team-section h3 {
  color: #228b22;
  font-size: 1.4rem;
  margin-bottom: 50px;
  font-weight: 500;
}

/* ==== TEAM GRID ==== */
.team-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: start;
  max-width: 1200px;
  margin: auto;
}

/* ==== HEXAGON IMAGE FRAME ==== */
.team-card {
  text-align: center;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  transition: 0.4s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}



.hexagon {
  width: 180px;
  height: 200px;
  background-color: white;
  margin: 0 auto 20px;
  overflow: hidden;
  position: relative;
}

.hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.5s ease;
}

.team-card:hover .hexagon img {
  transform: scale(1.2);
}

.team-card h4 {
  color: var(--secondary-text);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* ==== RESPONSIVE ==== */

/* Tablet */
@media (max-width: 992px) {
  .team-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .hexagon {
    width: 140px;
    height: 160px;
  }
}

/* âœ… MOBILE â€“ SINGLE CARD */
@media (max-width: 768px) {
  .team-container {
    grid-template-columns: 1fr;
  }

  .team-card {
    width: 100%;
    max-width: 320px;
  }

  .hexagon {
    width: 130px;
    height: 145px;
  }

  .team-card h4 {
    font-size: 1rem;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .team-container {
    grid-template-columns: 1fr; /* ðŸ”¥ STILL 1 CARD */
  }

  .hexagon {
    width: 120px;
    height: 135px;
  }
}

/* ============================================================================ */

/* achievements page css  */
/* achievements baner */
.achievements_wrapper {
  background: url("../images/achievments/achievementsbanner.webp");
  background-size: cover;
  height: 80vh;
  /*default height for desktop */
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievements_container {
  background: #f9f9f9;
}

.achievements_container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.achievements_container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

/* Hover Animation */
.achievements_container img:hover {
  transform: scale(1.07) translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}


/* ============================================================================ */

/* dholerasir page css  */
/* dholerasir baner */
.dholerasir_wrapper {
  background: url("../images/dholera sir/header_bg.webp");
  background-size: cover;
  height: 80vh;
  /*default height for desktop */
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-btn {
  padding: 8px 14px;
  margin-right: 10px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.swiper-slide {
  width: auto !important;
  /* makes each slide fit its content */
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}

.arrow-btn-custom {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.arrow-btn-custom:hover {
  background: var(--bg-black);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.advantage-item {
  transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* conectivity page */
.project-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-card img {
  transition: transform 0.4s ease;
  border-radius: 0.5rem;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.project-card:hover .card-title {
  color: #c19d0b;
  /* change to brand color */
}

/* develpment page */

/* Fullscreen zoom panel */
.zoom-panel {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: default;
}

.zoomed-img {
  max-width: 90%;
  max-height: 80%;
  transition: transform 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Close button */
.zoom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 9999999;
}

/* Zoom control buttons */
.zoom-controls {
  z-index: 9999999;
  margin-bottom: 10px;
}

.zoom-controls button {
  background: rgba(255, 255, 255, 0.8);
  border: none;
  margin: 0 5px;
  padding: 8px 14px;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.zoom-controls button:hover {
  background: #fff;
}

.shortbox {
  padding: 20px;
  border: 1px solid var(--secondary-color);
  border-radius: 8px;
  background-color: var(--secondary-color);
  color: var(--bg-white);
  height: 100%;
}

.shortbox h4,
.shortbox p {
  color: var(--bg-white);
  margin: 0;
}

.info-section img {
  border-radius: 8px;
}

@media (max-width: 768px) {
  .info-section {
    margin-top: 5vh;
  }
}

.info-box {
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.info-box img {
  max-width: 70px;
  margin-bottom: 15px;
  background-color: #000000;
  padding: 20px;
}

.info-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}

.info-box p {
  color: #555;
  margin: 0;
}

/* ground report */
.krishbox {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #f1f4fd;
}

.krish .container {
  max-width: 1200px;
  width: 95%;
}

.krish .slider-wrapper {
  position: relative;
}

.krish .slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  z-index: 5;
  color: #fff;
  display: flex;
  cursor: pointer;
  font-size: 2.2rem;
  background: #000;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-50%);
}

.krish .slider-wrapper .slide-button:hover {
  background: #404040;
}

.krish .slider-wrapper .slide-button#prev-slide {
  left: -25px;
  display: none;
}

.krish .slider-wrapper .slide-button#next-slide {
  right: -25px;
}

.krish .slider-wrapper .image-list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 18px;
  font-size: 0;
  list-style: none;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.krish .slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}

.krish .slider-wrapper .image-list .image-item {
  width: 325px;
  height: 400px;
  object-fit: cover;
}

.krish .container .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.krish .slider-scrollbar .scrollbar-track {
  background: #ccc;
  width: 100%;
  height: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  position: relative;
}

.krish .slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}

.krish .slider-scrollbar .scrollbar-thumb {
  position: absolute;
  background: #000;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  cursor: grab;
  border-radius: inherit;
}

.krish .slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.krish .slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

/* Styles for mobile and tablets */
@media only screen and (max-width: 1023px) {
  .krish .slider-wrapper .slide-button {
    display: none !important;
  }

  .krish .slider-wrapper .image-list {
    gap: 10px;
    margin-bottom: 15px;
    scroll-snap-type: x mandatory;
  }

  .krish .slider-wrapper .image-list .image-item {
    width: 280px;
    height: 380px;
  }

  .krish .slider-scrollbar .scrollbar-thumb {
    width: 20%;
  }
}

/* #giant-investors .container {
  padding: 2rem;
} */
/* Title styles */
.gi-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #fff;
}

.gi-title-label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Arrow buttons */
.gi-arrow-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.gi-arrow {
  background: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.gi-arrow:hover {
  background: #ddd;
}

/* Slider styles */
.gi-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.gi-slider::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

/* Card styles */
.gi-card {
  min-width: 250px;
  height: 320px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  position: relative;
}

.gi-card:hover {
  transform: translateY(-5px);
}

/* Card inner overlay */
.gi-overlay {
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Logo image inside card */
.gi-card img {
  width: 100px;
  margin: 0 auto 1rem;
}

/* Acres badge */
.gi-acres {
  background: linear-gradient(180deg, #a07d1d, #000000);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 5px;
}

/* Description */
.gi-desc {
  font-size: 0.95rem;
  color: #333;
  padding: 0 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .gi-title {
    font-size: 1.5rem;
  }

  .gi-arrow-buttons {
    display: none;
  }

  .gi-card {
    min-width: 220px;
    height: 300px;
  }

  .gi-card img {
    width: 80px;
  }

  .gi-desc {
    font-size: 0.85rem;
  }
}

/* upcoming-giants */
.upcoming-giants-section {
  overflow-x: hidden;
  background-color: #111;
}

.upcoming-giants-section .slider-wrapper {
  overflow-x: hidden;
  position: relative;
}

.upcoming-giants-section .image-slider {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  animation: scroll-left 30s linear infinite;
}

.upcoming-giants-section .upcoming-card {
  flex: 0 0 auto;
  width: 200px;
  background-color: #222;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
}

.upcoming-giants-section .upcoming-card:hover {
  transform: translateY(-5px);
}

.upcoming-giants-section .upcoming-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.upcoming-giants-section .company-name {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #f1f1f1;
}

/* Hide scrollbar (works on all major browsers) */
.upcoming-giants-section .slider-wrapper::-webkit-scrollbar {
  display: none;
}

.upcoming-giants-section .slider-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* faq section */
.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  padding: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 15px;
}

.faq-answer p {
  margin: 10px 0;
}

.custom-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: var(--secondary-text);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px var(--secondary-text);
}

.custom-btn:hover {
  background-color: var(--bg-black);
  transform: translateY(-2px);
  color: var(--secondary-text);
  box-shadow: 0 6px 18px var(--secondary-text);
}

.custom-btn:active {
  transform: scale(0.98);
  box-shadow: 0 3px 10px var(--secondary-text);
}


/* MAp download section */
.title-bar {
  background: linear-gradient(135deg, #a07d1d, #000000);
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.download-btn {
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
}

.download-btn:hover {
  text-decoration: none;
  color: var(--secondary-text);
}

.table th,
.table td {
  vertical-align: middle;
}


/* background: url("../images/your-background.webp") no-repeat center center; */

/* ============================================================================ */
/* contact page css  */

.contact-section {
  background-color: var(--secondary-color);
}

.contact-card {
  background: #ffffff;
}

.form-control {
  border-radius: 6px;
  padding: 10px;
}

.btn-primary {
  padding: 12px;
  border-radius: 6px;
}

/* Responsive Google Map */
.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* Mobile */
  overflow: hidden;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

/* Tablets */
@media (min-width: 768px) {
  .map-responsive {
    padding-bottom: 100%;
  }
}

/* Large Screens */
@media (min-width: 1200px) {
  .contact-section {
    padding: 80px 0;
  }
}


/* =================================================================================================================== */

/* 9 Footer Section */
/* ===== PREMIUM FOOTER ===== */

.footer_wrapper {
  background: linear-gradient(to bottom, #000000, #111111);
  color: #fff;
  border-top: 3px solid #a07d1d;
}

/* Titles */
.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #a07d1d;
  display: block;
  margin-top: 8px;
}

/* Contact */
.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.footer-item i {
  color: #a07d1d;
  font-size: 18px;
  margin-top: 4px;
}

.footer-item h6 {
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}

.footer-item p {
  color: #bbb;
  font-size: 14px;
  margin: 0;
}

.footer-item a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-item a:hover {
  color: #a07d1d;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #a07d1d;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 20px;
}

/* Social Icons */
.social-network a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  margin-right: 12px;
  transition: 0.3s;
}

.social-network a:hover {
  background: #a07d1d;
  transform: translateY(-5px);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  background: #000;
  font-size: 14px;
  border-top: 1px solid #222;
}