

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --gold-color: #f59e0b;
  --primary-color: #ec0bbd;
  --secondary-color: #203a43;
  --section-bg-color: #f5f5f5;
  --dark-color: #000000;
  --p-color: #717275;

  --body-font-family: "DM Sans", sans-serif;

  --h1-font-size: 60px;
  --h2-font-size: 42px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --menu-font-size: 14px;
  --copyright-text-font-size: 16px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

body {
  background: var(--white-color);
  font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -2px;
}

h2 {
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
  line-height: inherit;
}

h4 {
  font-size: var(--h4-font-size);
  line-height: inherit;
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}
h4 a,
h3 a,
h5 a {
  color: #000000;
}
a {
  color: white;
  text-decoration: none;
}

a:hover {
  color: black;
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-hero ::selection,
.bg-warning ::selection {
  background: #f9d55c;
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.custom-border-radius {
  border-radius: 20px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.small-title {
  text-transform: uppercase;
  color: var(--white-color);
  font-weight: (--font-weight-bold);
}

/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/

.custom-icon {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border: 2px solid var(--white-color);
  color: white;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  position: relative;
  background: red;
}

.custom-icon::before,
.custom-icon::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
}

.custom-icon::before {
  border: 3px solid transparent;
}

.custom-icon::after {
  border: 0 solid transparent;
}

.custom-icon:hover {
  border-color: transparent;
}

.custom-icon:hover::before {
  border-top-color: var(--white-color);
  border-right-color: var(--white-color);
  border-bottom-color: var(--white-color);
  transition: border-top-color 0.15s linear,
    border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.custom-icon:hover::after {
  border-top: 3px solid var(--dark-color);
  border-left-width: 3px;
  border-right-width: 3px;
  transform: rotate(270deg);
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
}

.play-icon::before {
  position: relative;
  left: 1px;
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--secondary-color);
  border-radius: 100px;
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

.custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.custom-bg-primary {
  background: var(--primary-color);
}

.custom-bg-primary:hover {
  background: var(--white-color);
  color: var(--dark-color);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  z-index: 9;
  right: 0;
  left: 0;
}

.navbar-brand {
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-nav .nav-link {
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.projects-detail-page .navbar-nav .nav-link.active:hover {
  color: var(--gold-color);
  border-radius: 5px;
}

.projects-detail-page .navbar-nav .nav-link.active {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.breadcrumb-item.active {
  color: var(--primary-color);
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: var(--dark-color);
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header-icon {
  color: var(--primary-color);
}

.site-header .social-icon {
  text-align: right;
}

/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  height: calc(100vh - 133px);
}
.project-hero {
  background-image: url("/images/projects/projects\ \(3\).jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: auto;
  padding-top: 180px;
  padding-bottom: 180px;
}
.contact-hero {
  background-image: url("/images/projects/projects\ \(23\).jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: auto;
  padding-top: 180px;
  padding-bottom: 180px;
}
.contact-hero::before {
  content: "";
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.project-hero::before {
  content: "";
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}
.services-bg {
  background-image: url("/images/projects/projects\ \(4\).jpg") !important;
  background-image: url("/images/projects/projects\ \(2\).jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: auto;
  padding-top: 180px;
  padding-bottom: 180px;
}
.services-bg::before {
  content: "";
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.section-hero {
  background-image: url("/images/projects/projects\ \(2\).jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: auto;
  padding-top: 180px;
  padding-bottom: 180px;
}

.section-hero::before {
  content: "";
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.section-hero-text {
  position: relative;
}

.carousel {
  padding-right: 0;
  padding-left: 0;
}

.hero-carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.carousel-image-wrap::before {
  content: "";
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.carousel-caption {
  z-index: 9;
  top: 32%;
  bottom: 0;
  left: 0;
  text-align: left;
  width: 50%;
  margin-right: 12px;
  margin-left: 12px;
}

.carousel-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin-left: auto;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-control-next,
.carousel-control-prev {
  top: auto;
  bottom: 50px;
  opacity: 1;
}

.carousel-control-prev {
  left: auto;
  right: 70px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-color);
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-image-wrap {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-image-info {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 40px;
}

.about-image {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-thumb {
  background: var(--primary-color);
  border-radius: 20px;
  margin-bottom: 24px;
  padding: 40px;
}

/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services {
  background: var(--section-bg-color);
}

.nav-tabs {
  border-bottom: 0;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link span {
  color: var(--p-color);
  display: block;
  text-align: left;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border: 0;
  border-left: 7px solid var(--p-color);
  margin-right: 30px;
  margin-left: 30px;
  margin-bottom: 30px;
  padding: 30px;
  transition: all 0.3s ease-in-out;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-left-color: var(--gold-color);
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.nav-tabs .nav-link.active h3,
.nav-tabs .nav-link:focus h3,
.nav-tabs .nav-link:hover h3 {
  color: var(--primary-color) !important;
}

/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects-thumb {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  transition: all 0.3s;
  cursor: pointer;
}

.projects-thumb-large {
  min-height: 356px;
}

.projects-thumb:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.projects-thumb:hover .projects-image {
  transform: scale(1.2);
}

.projects-thumb:hover .projects-title-wrap {
  padding-bottom: 30px;
}

.projects-thumb:hover .custom-btn,
.projects-btn-wrap .custom-btn:hover {
  background: var(--primary-color);
}

.projects-title-wrap {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 25px 25px 10px 25px;
  transition: all 0.2s;
}

.projects-small-title {
  color: var(--primary-color);
  text-transform: uppercase;
}

.projects-title {
  color: var(--white-color);
}

.projects-image {
  border-radius: 20px;
  width: 100%;
  height: 350px;
  object-fit: scale-down; /* ensures images fit without stretching */
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  margin-top: 30px;
}

.projects-thumb-large .projects-image {
  object-fit: cover;
  height: 100%;
}

.projects-btn-wrap {
  position: absolute;
  bottom: 25px;
  right: 25px;
}

.projects-btn-wrap .custom-btn {
  font-size: 30px;
  padding: 7.5px 15px;
}

/*---------------------------------------
  CONTACT INFO               
-----------------------------------------*/
.contact-thumb {
  position: relative;
  bottom: 140px;
  margin-bottom: -140px;
}

.contact-info {
  border-radius: 20px;
  padding: 40px;
}

.google-map {
  border-radius: 20px;
  width: 100%;

  object-fit: over;
}

.contact-icon {
  color: var(--primary-color);
  font-size: var(--h4-font-size);
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-container-wrap {
  background-color: var(--dark-color);
  padding-bottom: 120px;
  border-bottom: 1px solid var(--gold-color);
}
.contact-container-wrap1 {
  background-color: var(--section-bg-color);
  padding-bottom: 120px;
}
.contact-form {
  margin-top: 30px;
  margin-right: 30px;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  border-bottom: 2px solid var(--gold-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  transition: all 0.3s;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: var(--white-color);
}

.custom-form button[type="submit"] {
  background: var(--secondary-color);
  border-radius: 50px;
  border: 0;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
  width: 150px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--gold-color);
  color: var(--white-color);
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background: var(--dark-color);
  padding-top: 40px;
  padding-bottom: 40px;
}

.site-footer .copyright-text {
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--primary-color);
  border-radius: 20px;
  font-size: var(--copyright-text-font-size);
  color: var(--white-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.social-icon-link:hover {
  color: var(--primary-color);
  background: var(--white-color);
}
.carousel-caption h2 {
  font-size: var(--h1-font-size);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .projects-thumb-large {
    min-height: 416px;
  }
}

@media screen and (max-width: 1280px) {
  .contact svg {
    bottom: 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  .carousel-caption h2 {
    font-size: 48px;
  }
  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
  }

  .navbar-nav .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-header .social-icon {
    text-align: center;
    margin-top: 10px;
  }

  .carousel-caption {
    width: 100%;
  }

  .about-thumb {
    padding: 30px;
  }

  .about-image {
    height: auto;
    margin-bottom: 24px;
  }

  .contact-container-wrap {
    padding-bottom: 50px;
  }

  .contact-form {
    margin-right: 0;
    margin-top: 80px;
    margin-bottom: 50px;
  }

  .contact-thumb {
    bottom: 0;
    margin-bottom: 0;
  }

  .site-footer {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  .contact-icon {
    font-size: 24px;
  }

  .site-header p {
    font-size: 14px;
    text-align: center;
  }

  .carousel-control-next,
  .carousel-control-prev {
    bottom: 20px;
  }

  .nav-tabs .nav-link {
    margin-right: 0;
    margin-left: 0;
    padding: 15px;
  }

  .contact-info {
    padding: 30px 25px;
  }

  .site-footer-wrap {
    flex-direction: column;
  }

  .copyright-text {
    padding-bottom: 10px;
  }
}

/* Logo inside navbar */
.brand-logo {
  height: 100px; /* adjust as needed */
  width: 100%;
  filter: brightness(2); /* 1 = normal, >1 = brighter, <1 = darker */
  transition: 0.3s ease-in-out;
  display: block;
  object-fit: contain;
}

/* Ensure nav items align well */
.navbar-brand {
  display: flex;
  align-items: center;
}
/* Tablet */
@media (max-width: 992px) {
  .brand-logo {
    height: 120px; /* slightly smaller */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .brand-logo {
    height: 100px;
    width: 100%; /* adjust for mobile nav */
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .brand-logo {
    height: 70px; /* compact size */
  }
}

.navbar .nav-link.active ul a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

nav ul a:hover {
  color: var(--secondary-color);
}

nav ul a:hover::after {
  width: 100%;
}

.navbar .nav-link .active {
  color: var(--primary-color);
}

/* Section Styling */
.footprints-section {
  background: linear-gradient(rgba(255, 168, 0, 0.9), rgba(255, 168, 0, 0.9)),
    url("/images/flag.jpg") no-repeat center center/cover;
  padding: 80px 0;
  color: #fff;
  position: relative;
}

/* Titles */
.footprints-text .title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #2d2d2d;
}

.footprints-text .subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
}

/* Stats */
.stats p {
  font-size: 20px;
  font-weight: 600;
  margin: 5px 0;
}

.stats span {
  color: #7c2d12;
  font-weight: 800;
  font-size: 22px;
}

/* Map */
.map-img {
  max-width: 90%;
  height: auto;

  border-radius: 12px;

  transition: transform 0.3s ease-in-out;
}

.map-img:hover {
  transform: scale(1.05);
}
/* Tablet */
@media (max-width: 991px) {
  .footprints-text {
    text-align: center;
    margin-bottom: 30px;
  }

  .footprints-text .title {
    font-size: 36px;
  }

  .footprints-text .subtitle {
    font-size: 18px;
  }
}
.copyright-text a {
  cursor: pointer;
}
.copyright-text a :hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 576px) {
  .footprints-text .title {
    font-size: 28px;
  }

  .footprints-text .subtitle {
    font-size: 16px;
  }

  .stats p {
    font-size: 16px;
  }

  .stats span {
    font-size: 18px;
  }
}
.join-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center; /* Vertically center content */
  justify-content: center; /* Horizontally center content */
  padding: 2rem;
  box-sizing: border-box;
  background-image: url("/images/services/home-banner.jpg"); /* Replace with your image URL */
  background-size: cover;
  background-position: center; /* Center the background image */
  background-repeat: no-repeat;
  overflow: hidden;
}

.join-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  z-index: 1;
}

.join-content-box {
  /* New class for the box */
  position: relative;
  z-index: 2;
  max-width: 60%; /* Adjust as needed */
  width: 100%;
  background-color: rgba(255, 182, 193, 0.8); /* Opaque dark background */
  padding: 3rem; /* Add padding inside the box */
  box-sizing: border-box;
  text-align: center; /* Center text within the box */
  border-radius: 8px; /* Optional: add rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Optional: add a subtle shadow */
}

.join-content-box h2 {
  font-size: 3rem; /* Adjusted for a box */
  font-weight: bold;
  margin: 0 0 1rem 0;
  text-shadow: none;
  color: var(
    --secondary-color
  ); /* Remove text shadow if it conflicts with box */
}

.join-content-box .tagline {
  font-size: 1.3rem;
  margin: 0 0 1.5rem 0;
}

.join-content-box .join-bjp {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secon);
  margin: 0 0 1.5rem 0;
}

.join-content-box .description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--p-color);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center; /* Center buttons within the box */
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.btn {
   display: inline-block;   /* make it shrink to text */
    border: none;
    padding: 0.6rem 1.2rem;  /* reduced padding */
    font-size: 1rem;
    font-weight: bold;
    color: #fff !important;
    border-radius: 5px;
    cursor: pointer;
   
    white-space: nowrap;     /* prevents breaking into 2 lines */
    transition: background-color 0.3s ease;
    width: auto;  
}

.btn.join-as {
  background-color: var(--primary-color);
}

.btn.become-a {
  background-color: var(--secondary-color);
}

.btn.make-a {
  background-color: var(--tertiary-color);
}

.btn:hover {
  filter: brightness(1.2);
  background-color: var(--secondary-color);
}

@media (max-width: 768px) {
  .join-section {
    padding: 1rem;
  }

  .join-content-box {
    max-width: 90%;
    padding: 2rem;
  }

  .join-content-box h1 {
    font-size: 2.2rem;
  }

  .join-content-box .tagline {
    font-size: 1.1rem;
  }

  .join-content-box .join-bjp {
    font-size: 1.4rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn {
    width: 60%;
  }
}

.about-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.about-img {
  max-width: 100%;
  height: 400px;
  object-fit: cover;

  transition: transform 0.3s ease-in-out;
}

.about-img:hover {
  transform: scale(1.05);
}

.about-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold-color);
}

.about-intro {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #444;
}

.about-subtitle {
  font-size: 22px;
  margin-top: 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.about-values {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.about-values li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.about-values li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
  font-weight: bold;
}

.about-quote {
  font-size: 18px;
  font-style: italic;
  margin: 30px 0;
  padding-left: 10px;
  border-left: 4px solid var(--gold-color);
  /* color: #1a1a2e; */
  color:var(--secondary-color)
}

.about-cta .btn {
  margin-right: 10px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px; /* smaller padding for mobile */
  }
  .about-title {
    font-size: 26px;
  }
  .about-subtitle {
    font-size: 18px;
  }
  .about-quote {
    font-size: 16px;
  }
}

.whatsapp {
  position: fixed;
  right: 12px;
  bottom: 6rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 50%;
  z-index: 10000;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
}
.whatsapp a {
  padding: 0.3rem 0.3rem;
}
.whatsapp a i {
  color: white !important;
}
.whatsapp:hover a i {
  color: var(--white-color) !important;
}
.whatsapp a i {
  font-size: 2rem;
}

/* Video Section */
#videos {
  background: linear-gradient(rgba(0, 200, 83, 0.9), rgba(0, 200, 83, 0.9)),
    url(/images/services/herosection-2.jpg) no-repeat center center / cover;
  padding: 100px 0;
  color: #fff;
  position: relative; /* Light gray background */
}

#videos h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#videos .ratio {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 4px 15px rgba(230, 64, 64, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#videos .ratio:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 25px rgba(119, 68, 201, 0.25);
}
.video-box {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.video-box:hover {
  transform: scale(1.03);
}

.card {
  background:lightseagreen ;
  border-radius: var(--radius);
  box-shadow: 0 6px 30px rgba(12, 12, 20, 0.06);
  padding: 20px;
  margin-top: 30px;
}

/* Contact form */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}
input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
}
textarea {
  min-height: 120px;
  resize: vertical;
}





.form-foot {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}
