/********** Template CSS **********/
:root {
  --primary: #ff5e14;
  --secondary: #5f656f;
  --light: #f5f5f5;
  --dark: #02245b;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
  font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  transition: 0.5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.topbar-right {
  position: relative;
  background: #8a0809;
}

.topbar-right::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 100%;
  top: 0;
  left: -15px;
  transform: skewX(-30deg);
  background-color: #8a0809;
}

/*** Navbar ***/

.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

@media(max-width:768px)
{
  .navbar.sticky-top {
  top: 60px !important;
  transition: 0.5s !important;
}
}

.navbar .navbar-brand {
  position: relative;
  padding-right: 50px;
  height: 90px;
  display: flex;
  align-items: center;
  background: fff;
}

@media (max-width: 768px) {
  /* Responsive breakpoint */
  .navbar .navbar-brand {
    padding-right: 22px;
  }
}

.navbar .navbar-brand::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 100%;
  top: 0;
  right: -25px;
  transform: skewX(-30deg);
  background-color: #fff;
}

@media (max-width: 768px) {
  /* Responsive breakpoint */
  .navbar .navbar-brand::after {
    transform: skewX(-25deg);
  }
}

@media (max-width: 768px) {
  /* Responsive breakpoint */
  .toggle-adjust {
    padding-right: 2rem !important;
  }
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 20px 0;
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  outline: none;
}

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

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/

@media (max-width: 991.98px) {
  .logo-align {
    padding-left: 0rem !important;
  }
}

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  /* background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgba(2, 36, 91, 0) 100%); */
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border: 15px solid var(--primary);
  border-radius: 3.5rem;
}

@media (max-width: 768px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 1.8rem !important;
    height: 1.8rem !important;
    background-color: var(--primary);
    border: 5px solid var(--primary) !important;
    border-radius: 3.5rem;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 120px; /* Tablet height */
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background:
    linear-gradient(to right, rgba(2, 36, 91, 0.0) 0%, rgba(2, 36, 91, 0) 100%),
    url(../img/breadcrumb.jpg) center center no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
    .page-header {
        min-height: 80px !important;
        padding: 25px 15px !important;
        margin-bottom: 0px !important;
        background-position: center right;
    }

      .page-header h1 {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }

      .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 13px !important;
    }
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--light);
}

/*** Facts ***/
.facts {
  position: relative;
  margin: 6rem 0;
  background: var(--dark);
}

.facts .border {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/*** Features ***/
.btn-play {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  display: block;
  box-sizing: content-box;
  width: 16px;
  height: 26px;
  border-radius: 100%;
  border: none;
  outline: none !important;
  padding: 18px 20px 20px 28px;
  background: var(--primary);
}

@media (max-width: 992px) {
  .btn-play {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
  }
}

.btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 100%;
  animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 100%;
  transition: all 200ms;
}

.btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  left: -1px;
  border-left: 16px solid #ffffff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
    opacity: 0;
  }
}

.modal-video .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.modal-video .modal-body {
  position: relative;
  padding: 0px;
}

.modal-video .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/* hydraulic cylinder manufacturing section start */
.service-list-section {
  margin-top: -100px;
  margin-bottom: -100px;
}
.product-item {
  position: relative;
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.product-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px; /* border thickness */
  background: linear-gradient(90deg, #f50606, #f5bd06);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .product-item {
    /* padding: 25px 18px; */
    border-radius: 8px;
  }

  .product-item::before {
    border-radius: 8px;
    background: linear-gradient(90deg, #f50606, #f5bd06);
  }
}

.product-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  max-width: 380px;
}

.product-info h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .product-info h3 {
    margin-top: 20px;
  }
}

.product-info p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.product-info ul {
  list-style: none; /* remove default bullets */
  padding: 0;
  margin: 0;
}

.product-info ul li {
  font-size: 15px;
  padding-left: 28px; /* extra space for bigger bullet */
  margin-bottom: 8px;
  position: relative;
  color: #000000;
}

.product-info ul li::before {
  content: "\2022"; /* Unicode bullet • */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #ff4500;
  font-size: 35px;
  line-height: 1;
  margin-left: 6px;
}

/* Responsive */
@media (max-width: 991px) {
  .product-item {
    padding: 25px;
  }
  .product-info h3 {
    font-size: 22px;
  }
}
.what-different {
  font-weight: 600;
  font-size: 20px !important;
  color: orangered !important;
}
.astrology-bg {
  display: block;
  width: 100%;
  background: linear-gradient(to right, #ffa94d, #ffffff);
  padding: 12px 15px;
  border-radius: 5px;
}
/* hydraulic cylinder manufacturing section end */

/*** Service ***/
.service-item {
  position: relative;
  margin: 65px 0 25px 0;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.service-item .service-img {
  position: absolute;
  padding: 10px;
  width: 215px;
  height: 215px;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.service-item .service-detail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.service-item .service-title {
  position: absolute;
  padding: 65px 30px 25px 30px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  transition: 0.5s;
}

.service-item:hover .service-title {
  top: -100%;
}

.service-item .service-text {
  position: absolute;
  overflow: hidden;
  padding: 65px 30px 25px 30px;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  display: flex;
  align-items: center;
  text-align: center;
  background: rgba(2, 36, 91, 0.7);
  transition: 0.5s;
}

.service-item:hover .service-text {
  top: 0;
}

.service-item .service-text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100px;
  top: -100%;
  left: 0;
  transform: skewY(-12deg);
  background: #ffffff;
  transition: 0.5s;
}

.service-item:hover .service-text::before {
  top: -55px;
}

.service-item .btn {
  position: absolute;
  width: 130px;
  height: 50px;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background: #ffffff;
  border: none;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
  z-index: 2;
}

.service-item .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

/*** Project ***/
.project-carousel {
  position: relative;
  background: var(--dark);
}

.project-item {
  position: relative;
  display: block;
  padding: 2px;
}

.project-item img {
  transition: 0.5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
  margin-top: -60px;
}

.project-item .project-title {
  position: absolute;
  padding: 0 15px;
  width: 100%;
  height: 80px;
  bottom: -110px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  transition: 0.5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title {
  bottom: -60px;
}

.project-item .project-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
  top: -15px;
  left: 0;
  transform: skewY(-5deg);
  background: var(--dark);
  transition: 0.5s;
}

.project-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 45px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  opacity: 0;
  z-index: 1;
}

.project-carousel:hover .owl-nav {
  opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
  margin: 0 30px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

/*** Team ***/
.team-item .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  display: flex;
  align-items: center;
  background: var(--primary);
  transition: 0.5s;
}

.team-item:hover .team-social {
  left: 0;
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
  margin-bottom: 30px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transform: scale(0.8);
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  transform: scale(1);
}

/*** Footer ***/
.footer {
  color: #cecece;
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #cecece;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 0.3px;
  box-shadow: none;
}

.copyright {
  color: #b0b9ae;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hymac-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-top: -20px;
}
.intro-para {
  text-align: justify;
}

@media (max-width: 786px) {
  .intro-para {
    text-align: left;
  }
}
.establishment {
  font-size: 30px;
}
.offer-heading {
  font-size: 22px;
  margin-top: 100px;
}
.offer-para {
  margin-top: 80px;
}

/* Commitments Section */
.commitments-section {
  position: relative;
  width: 100%;
  background-image: url("../img/background.webp"); /* Add your background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Rubik", sans-serif;
  background-attachment: fixed;
  margin-bottom: -50px;
}

.commitments-section .overlay {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  /* padding: 0px 0; */
}

/* Heading */
.commitments-heading {
  font-size: 3rem;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 10px;
}

.heading-line {
  width: 80px;
  height: 4px;
  background-color: #ffcc00;
  margin: 0 auto;
  border-radius: 2px;
}

/* Commitment Items */
.commitment-item {
  background: rgba(255, 255, 255, 0.07);
  padding: 40px 20px;
  border-radius: 15px;
  backdrop-filter: blur(3px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  /* border: 1px solid #ffcc00; */
}

.commitment-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.commitment-item .icon {
  font-size: 3rem;
  color: #ffcc00;
  margin-bottom: 20px;
}

.commitment-item p {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
  .commitments-heading {
    font-size: 2.5rem;
  }
  .commitment-item {
    padding: 30px 15px;
  }
}

.bg-dark-2 {
  background-color: #ffffff;
  margin-top: -40px !important;
}
.text-white-2 {
  color: #02245b;
}

.footer-logo-section {
  text-align: left;
}

.brand-color
{
  color: #fff !important;
}
.footer-logo {
  margin-left: 0px;
  max-width: 220px;
  height: auto;
  margin-bottom: 5px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  border-radius: 12px;
  margin-bottom: 10px;
}
.leading {
  font-size: 15.5px;
}

/* Mission & Vision Cards */
.mission-vision-card {
  background: #fff; /* White card */
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Soft premium shadow */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-left: 4px solid orangered !important;
}

.mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mission-text
{
  font-size: 15px !important;
}

/* Icon circle */
.mission-vision-card .icon {
  width: 70px;
  height: 70px;
  background: #e9f2ff; /* Light primary circle */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto;
}

/* Card Heading */
.mission-vision-card h5 {
  font-size: 1.5rem;
}

/* Paragraph styling */
.mission-vision-card .intro-para {
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
}

/* Responsive gap for smaller screens */
@media (max-width: 991px) {
  .mission-vision-card {
    margin: 0 auto;
  }
}

.bg-light-premium {
  background-color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Center Image */
.image-center {
  max-width: 300px;
  height: 250px;
  border-radius: 12px;
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* Move up */
  }
}

.image-center:hover {
  transform: scale(1.05);
}

/* Feature List */
.feature-item {
  gap: 1rem;
}

.feature-icon {
  color: #ff5e14;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.2);
}

.feature-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #495057;
}

.feature-divider {
  border: none; /* Remove default border */
  height: 2px !important; /* Line thickness */
  margin: 1rem 0; /* Top & bottom spacing */
  background: linear-gradient(
    to right,
    #fc7100,
    #ffffff
  ); /* Gray → White gradient */
}

@media (max-width: 991px) {
  .content-split-row {
    flex-direction: column !important;
  }

  .image-center {
    margin: 2rem auto;
    max-width: 200px;
  }

  .features-column {
    margin-bottom: 2rem;
  }
}

/* HYMAC About Section */
.hymac-about-wrapper {
  padding: 15px 0;
  background-color: #ffffff;
  padding-bottom: 50px;
  margin-top: -40px !important;
}

/* Row height adjust */
.hymac-about-row {
  min-height: 480px;
}

/* Left Image */
.hymac-about-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hymac-about-img {
  max-width: 100%;
  height: auto; /* important: image aspect ratio maintain */
  border-radius: 8px;
  display: block;
  object-fit: contain; /* ensures poora image dikhe */
  margin-top: 40px !important;
}

@media(max-width:768px)
{
  .hymac-about-wrapper {
  padding: 15px 0;
  background-color: #ffffff;
  padding-bottom: 50px;
  margin-top: 0px !important;
}
}

/* Right Content */
.hymac-about-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hymac-about-tagline {
  text-transform: uppercase;
  font-weight: 600;
  color: #ad6a02;
  margin-bottom: 10px;
  letter-spacing: 1px;
  
}

.hymac-about-heading {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #02245b;
}

.hymac-about-description {
  font-size: 15px !important;
  line-height: 1.7;
  color: #3b3b3b;
  text-align: justify !important;
 
  margin-top: -12px !important;
}

/* Responsive */
@media (max-width: 991px) {
  .hymac-about-img {
    max-width: 100%; /* chhoti ho mobile pe */
    margin-bottom: 20px;
  }

  .hymac-about-heading {
    font-size: 2.1rem;
  }
}

/* counter section start */

/* Section Background */
.hymac-stats-section {
  position: relative; /* Important for ::before */
  background: url("../img/background-7.png") center center/cover no-repeat;
  background-attachment: fixed;
  z-index: 1; /* Ensure content is above overlay */
}

/* Cards equal height & center content */
.hymac-stats-card {
  background: rgba(0, 0, 0, 0.308);
  border-radius: 14px;
  padding: 28px 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid rgb(109, 109, 109);
}

/* Numbers – slightly smaller */
.hymac-stats-number,
.hymac-stats-number-static {
  font-size: 38px;
  font-weight: 800;
  color: #ff9f1c;
  line-height: 1.2;
  margin-bottom: 6px;
}

/* Text – compact */
.hymac-stats-text {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  max-width: 110px;
}

/* Mobile fine-tuning */
@media (max-width: 768px) {
  .hymac-stats-card {
    padding: 20px 6px;
  }

  .hymac-stats-number,
  .hymac-stats-number-static {
    font-size: 25px;
  }

  .hymac-stats-text {
    font-size: 13px;
  }
}

/* operational detail section start */
.hymac-metrics-section {
  background-color: #f8f9fa;
  margin-bottom: -50px;
}

/* Table wrapper */
.hymac-metrics-table-wrap {
  margin-top: 30px;
}

/* Table styling */
.hymac-metrics-table {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.hymac-metrics-table th,
.hymac-metrics-table td {
  padding: 16px 18px;
  vertical-align: middle;
}

/* Left column */
.hymac-metrics-table th {
  width: 35%;
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  border: none;
}

/* Right column */
.hymac-metrics-table td {
  color: #333333;
  font-weight: 500;
}

/* Row separation */
.hymac-metrics-table tr:not(:last-child) th,
.hymac-metrics-table tr:not(:last-child) td {
  border-bottom: 1px solid #e6e6e6;
}

/* Mobile optimization */
@media (max-width: 767px) {
  .hymac-metrics-table th {
    width: 45%;
    font-size: 14px;
  }

  .hymac-metrics-table td {
    font-size: 14px;
  }
}

/* Section Background */
.hymac-reliability-section {
  background-color: #f0f4f8;
}

/* Card styling */
.hymac-reliability-card {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center; /* center on mobile */
  text-align: center;
}

@media (min-width: 992px) {
  .hymac-reliability-card {
    align-items: flex-start; /* left align on desktop */
    text-align: left;
  }
}

/* Icon Circle */
.hymac-reliability-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #e7f1ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

.hymac-reliability-icon-circle i {
  color: #0b5ed7;
  font-size: 28px;
}

/* Hover Effect */
.hymac-reliability-card:hover .hymac-reliability-icon-circle {
  background-color: #0b5ed7;
}

.hymac-reliability-card:hover .hymac-reliability-icon-circle i {
  color: #ffffff;
  transform: scale(1.2);
}

/* Card Title */
.hymac-reliability-title {
  color: #0b5ed7;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

/* Card Text */
.hymac-reliability-text {
  color: #555555;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .hymac-reliability-title {
    font-size: 18px;
  }

  .hymac-reliability-text {
    font-size: 14px;
  }
}

.hymac-contact-modern {
  background: #ffffff;
  padding-top: 60px !important;
  padding-bottom: 0px !important;
}

/* Card Styling */
.contact-card-modern {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  padding: 25px 20px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #ff5e14;
}

.contact-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.15);
}

/* Icon */
.contact-icon {
  font-size: 38px;
  color: #ff5e14;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.contact-card-modern:hover .contact-icon {
  color: #4dabf7;
  transform: scale(1.2);
}

/* Title */
.card-title-modern {
  font-size: 20px;
  font-weight: 700;
  color: #0b5ed7;
  margin-bottom: 6px;
}

/* Text */
.card-text-modern {
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}

/* Buttons */
.contact-card-modern .btn {
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-card-modern {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .contact-card-modern {
    text-align: center;
  }
}

/* Mobile & Tablet */
@media (max-width: 768px) {
  .about-img {
    margin-top: 0px; /* value adjust kar sakte ho */
  }
}

/* Tablet & Mobile */
@media (max-width: 786px) {
  .about-right {
    margin-top: -40px; /* value apne design ke hisaab se adjust karo */
  }
}
.footer {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background:
   /* linear-gradient(to right, rgba(27, 15, 0, 0.9) 0%, rgba(39, 22, 0, 0.9) 100%),*/
    url(../img/instituion.png)  center no-repeat;
  background-size: cover;
}
.copyright {
  background-color: #000000 !important;
}

/* gallery section start */

.gallery-section {
  margin-top: -20px;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  font-size: 0.9rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.gallery-card {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}
/* gallery section end */

.header-top {
  background-color: #8a0809 !important;
}

/* ===== About Section New Design ===== */

.about-section-new {
  /* Background image */
  background: url(../img/engineer-back.jpg) no-repeat top center;
  background-size: cover; /* Cover entire section */
  background-attachment: fixed;
  position: relative;
  margin-bottom: 30px;
  margin-top: -20px;
}



.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  /* height: 600px; */
}

.image-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(45deg, rgba(0,0,0,0.2), transparent); */
  border-radius: 15px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important; */
}

.about-content-new {
  padding-left: 10px;
}

.about-tagline {
  color: #925800;
  font-weight: 100px !important;
  margin-bottom: 15px;
  font-size: 17px !important;
}

.about-description {
  color: #2b2b2b;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
  font-weight: 500;
  font-size: 15px;
}

@media (max-width: 768px) {
  .about-description {
    text-align: left;
  }
}


/* =========================================
   GEET DOT SLIDE
========================================= */

.geet-dot-slide-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #f5f5f5;
}

.geet-dot-slide-track {
    display: flex;
    width: 100%;
    transition: transform 0.7s ease-in-out;
}

.geet-dot-slide-item {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.geet-dot-slide-image {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.geet-dot-slide-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45),
        transparent
    );
    pointer-events: none;
}


/* =========================================
   DOT NAVIGATION
========================================= */

.geet-dot-slide-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 5;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.geet-dot-slide-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.geet-dot-slide-dot:hover {
    transform: scale(1.15);
}

.geet-dot-slide-dot.active {
    width: 28px;
    border-radius: 10px;
    background: #ffffff;
}


/* =========================================
   MOBILE RESPONSIVE
   MAX WIDTH: 768px
========================================= */

@media (max-width: 768px) {

    .about-section-new {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .geet-dot-slide-wrapper {
        border-radius: 14px;
    }

    .geet-dot-slide-image {
        height: 330px;
    }

    .geet-dot-slide-dots {
        bottom: 14px;
        gap: 7px;
    }

    .geet-dot-slide-dot {
        width: 8px;
        height: 8px;
    }

    .geet-dot-slide-dot.active {
        width: 22px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .geet-dot-slide-image {
        height: 280px;
    }

    .geet-dot-slide-wrapper {
        border-radius: 12px;
    }

    .geet-dot-slide-dots {
        bottom: 12px;
    }

}

/* Highlight Box */
.about-highlight-box {
  display: flex;
  flex-wrap: wrap; /* Wrap on smaller screens */
  gap: 30px;
  align-items: center;
  /* justify-content: space-between; */
  margin-top: 25px;
  background: #ffffff;
  padding: 20px 15px; /* Proper padding */
  /* border-radius: 12px; */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgb(224, 224, 224);
}

.highlight-year {
  text-align: center;
  color: #02245b;
  padding: 15px 20px;
  /* border-radius: 10px; */
  font-size: 1rem;
  font-weight: 600;
  border: 3px solid #ff651f; /* Double-line border */
  background: none; /* Remove background */
}

.highlight-year h2 {
  font-size: 48px; /* Bigger number */
  margin: 0 0 10px 0;
}

.highlight-features p {
  margin-bottom: 8px;
  font-weight: 500;
}
.about-image-wrapper {
  transition: transform 0.4s ease;
}
.about-image-wrapper:hover {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .about-highlight-box {
    flex-direction: column; /* Stack vertically */
    text-align: left !important; /* Section text left */
  }

  .about-highlight-box .highlight-year {
    flex: unset;
    text-align: center !important;
  }

  .about-highlight-box .highlight-features {
    flex: unset;
    text-align: left !important; /* Left align */
  }

  .about-highlight-box .highlight-features p {
    justify-content: flex-start; /* Left align icons and text */
  }
}

.highlight-features i {
  color: #02245b;
  margin-right: 8px;
}

/* Contact */
.about-contact-row {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.contact-box-new {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.contact-box-new:hover {
  transform: translateY(-5px);
}

.contact-box-new i {
  font-size: 20px;
  color: #0d6efd;
}
.we-are-ready {
  font-size: 18px;
}

/* ===== Responsive ===== */

@media (max-width: 991px) {
  .about-highlight-box {
    flex-direction: column;
    text-align: center;
  }

  .about-contact-row {
    flex-direction: column;
  }

  .about-content-new {
    padding-left: 0;
    margin-top: 0px;
  }
}

.our-services-sec {
  background-color: #ffffff;
}
.w-25 {
  color: orangered;
  height: 2px !important;
}

/* HYMAC Contact Section */
.hymac-contact-section {
  background: #f8f9fa;
  margin-top: 50px;
  /* padding-top: 100px !important; */
  margin-bottom: -50px;
}

/* Cards */
.hymac-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Equal height cards */
}

.hymac-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Icons */
.hymac-icon {
  font-size: 40px;
  color: #ff5e14;
  margin-bottom: 15px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.hymac-card:hover .hymac-icon {
  color: #ff5e57;
  transform: scale(1.2);
}

/* Card Titles */
.hymac-card h5 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

/* Card Text */
.hymac-card p {
  color: #555;
  margin-bottom: 5px;
  font-size: 16px;
}

/* CTA Button */
.hymac-btn-primary {
  background: #ff5e14;
  border: none;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 50px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hymac-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hymac-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .hymac-card h5 {
    font-size: 18px;
  }

  .hymac-card p {
    font-size: 14px;
  }

  .hymac-icon {
    font-size: 35px;
  }
}

.gw-all-products-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff; /* yellow text */
  background: #000; /* black background */
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgb(250, 76, 23);
  /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
}

/* Shining overlay – left to right only */
.gw-all-products-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.1)
  );
  transform: skewX(-60deg);
  animation: shineLTR 1.5s linear infinite;
  pointer-events: none;
}

/* Keyframes – only left to right */
@keyframes shineLTR {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Hover effect */
.gw-all-products-btn:hover {
  color: #ffffff;
  background: #1a3e72;
  /* box-shadow: 0 0 5px rgba(255,255,255,1), 0 0 20px rgba(255,215,0,0.9); */
  transform: translateY(-3px);
}

/* ===============================
   commitment Section start
=================================*/

.commitment-bg-section {
  position: relative;
  background: url("../img/background.webp") center center/cover no-repeat;
  z-index: 1;
  padding-top: 100px; /* Section ko thoda niche kiya */
  padding-bottom: 80px;
  background-attachment: fixed;
  margin-bottom: -50px;
}

.commitment-bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}

/* ===============================
   Heading Style
=================================*/

.commitment-heading-light p {
  color: #0d6efd;
}

/* ===============================
   Thread Wrapper
=================================*/

.commitment-thread-wrapper-new {
  position: relative;
  max-width: 900px;
  margin: 0px auto 0; /* heading ke niche gap */
}

/* ===============================
   Thread Item
=================================*/

.commitment-thread-item-new {
  position: relative;
  padding-left: 120px;
  margin-bottom: 50px;
}

/* ===============================
   Icon (Thread Center Point)
=================================*/

.commitment-thread-icon {
  position: absolute;
  left: 50px;
  transform: translateX(-50%);
  top: 0;
  width: 55px;
  height: 55px;
  background: #ecc412;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  box-shadow: 0 0 50px #000000;
  z-index: 2;
  margin-top: 50px;
}

/* ===============================
   Thread Line (Connected to Icon)
=================================*/

.commitment-thread-item-new:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50px;
  transform: translateX(-50%);
  top: 110px; /* exactly icon ke niche se start */
  width: 3px;
  height: calc(100% - 15px);
  background: linear-gradient(to bottom, #fdd10d, #ff9114);
}

@media (max-width: 768px) {
  .commitment-thread-item-new:not(:last-child)::after {
    top: 120px;
  }
}

/* ===============================
   Content Card
=================================*/

.commitment-thread-content-new {
  background: rgba(255, 255, 255, 0.144);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9);
  transition: 0.3s ease;
}

.commitment-thread-content-new h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.commitment-thread-content-new p {
  margin: 0;
  color: #ffffff;
}

.commitment-thread-content-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
}

/* ===============================
   Responsive
=================================*/

@media (max-width: 768px) {
  .commitment-thread-wrapper-new {
    margin-top: 40px;
  }

  .commitment-thread-item-new {
    padding-left: 80px;
    margin-bottom: 70px;
  }

  .commitment-thread-icon {
    left: 30px;
  }

  .commitment-thread-item-new:not(:last-child)::after {
    left: 30px;
  }
}

/* Mission & Vision Cards */
.mission-vision-wrapper .card-mv {
  position: relative;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  padding: 2rem 1.5rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  /* border-left: 3px solid #811210;
  border-right: 3px solid #811210; */
  border: 2px solid #811210;
}

.geet-miss-vis-icon {
    width: 70px;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geet-miss-vis-icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

/* Smooth top-bottom border using pseudo-element */
/* .card-mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 3px;
  background: #811210;
  transition: all 0.5s ease;
  transform: translateX(-50%);
}
.card-mv:hover::after {
  width: 100%;
}


.card-mv::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 3px;
  background: #811210;
  transition: all 0.5s ease;
  transform: translateX(-50%);
}
.card-mv:hover::before {
  width: 100%;
} */

/* Icon styling */
.icon-mv i {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}
.card-mv:hover .icon-mv i {
  transform: scale(1.2);
  color: #0a58ca;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-vision-wrapper .card-mv {
    margin-bottom: 20px;
  }
}

.mission-head
{
  color: #811210 !important;
  font-size: 24px !important;
}

.feature-icon-lg {
  font-size: 35px !important; /* ya jo size chahiye */
}

/* Custom HR with linear gradient */

.enquery-now {
  margin-top: -40px;
  margin-bottom: -50px;
}
.form-fill {
  margin-top: -20px;
}

.highlight-experience {
  color: orangered;
  font-weight: 700 !important;
}

.gw-all-products-btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff; /* yellow text */
  background: #ff5e14; /* black background */
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgb(0, 0, 0);
  /* box-shadow: 0 0 15px rgba(255,255,255,0.4), 0 0 10px rgba(255,215,0,3); */
}

/* Shining overlay – left to right only */
.gw-all-products-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.1)
  );
  transform: skewX(-60deg);
  animation: shineLTR 1.5s linear infinite;
  pointer-events: none;
}

/* Keyframes – only left to right */
@keyframes shineLTR {
  0% {
    left: -100%;
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Hover effect */
.gw-all-products-btn:hover {
  color: #ffffff;
  background: #1a3e72;
  /* box-shadow: 0 0 5px rgba(255,255,255,1), 0 0 20px rgba(255,215,0,0.9); */
  transform: translateY(-3px);
}
.navbar-nav {
  align-items: center;
}

/* new-counter section start */

/* Counter Section CSS */
.new-counter-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 3rem 1rem;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%),
    url(../img/new-3.jpg) center center no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
}

.new-counter-section .new-counter-card {
  background: rgba(54, 54, 54, 0.486);
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid rgb(51, 51, 51);
}

.new-counter-section .new-counter-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.new-counter-section .new-counter-card i {
  margin-bottom: 1rem;
}

.new-counter-section .new-counter-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffce00;
}

.new-counter-section .new-counter-card p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #d1d1d1;
}

/* Responsive Grid */
@media (min-width: 768px) {
  .new-counter-section .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .new-counter-section .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.new-counter-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
/* =========================================== */

/* notification running bar */

.geet-notification-bar {
  width: 100%;
  background: #931311;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: relative;
  z-index: 999;
}
.geet-notification-inner {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
} /* ========================================= NOTIFICATION LABEL ========================================= */
.geet-notification-label {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #931311;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.geet-notification-label i {
  font-size: 15px;
  animation: geetNotificationBell 1.5s infinite;
} /* Small angled design */
.geet-notification-label::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  width: 30px;
  height: 100%;
  background: #931311;
  z-index: -1;
} /* ========================================= MARQUEE AREA ========================================= */
.geet-notification-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
} /* ========================================= RUNNING TRACK ========================================= */
.geet-notification-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: geetNotificationRunning 24s linear infinite;
} /* ========================================= SCROLLING NOTIFICATION TEXT ========================================= */
.geet-notification-track span {
  display: inline-flex;
  align-items: center; /* Light background */
  background: rgba(255, 118, 118, 0.247); /* Rounded pill */
  border-radius: 4px; /* Text spacing */
  padding: 4px 22px; /* Gap between notifications */
  margin: 0 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500; /* Prevent background from shrinking */
  white-space: nowrap;
} /* Small yellow circle */
.geet-notification-track span i {
  color: #fbbf24;
  font-size: 8px;
  margin-right: 12px;
} /* ========================================= PAUSE ON HOVER ========================================= */
.geet-notification-marquee:hover .geet-notification-track {
  animation-play-state: paused;
} /* ========================================= INFINITE RUNNING ANIMATION ========================================= */
@keyframes geetNotificationRunning {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
} /* ========================================= NOTIFICATION BELL ANIMATION ========================================= */
@keyframes geetNotificationBell {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(-12deg);
  }
  20%,
  40% {
    transform: rotate(12deg);
  }
  50% {
    transform: rotate(0deg);
  }
} /* ========================================= MOBILE - 768px ========================================= */
@media (max-width: 768px) {
  .geet-notification-inner {
    min-height: 36px !important;
  }
  .geet-notification-label {
    min-height: 36px !important;
    padding: 0 14px;
    font-size: 12px;
    gap: 6px;
  }
  .geet-notification-label i {
    font-size: 13px;
  }
  .geet-notification-label::after {
    right: -10px;
    width: 20px;
  } /* Mobile scrolling text */
  .geet-notification-track span {
    font-size: 12px;
    padding: 5px 16px;
    margin: 0 8px;
    border-radius: 20px;
  }
  .geet-notification-track span i {
    font-size: 5px;
    margin-right: 8px;
  }
  .geet-notification-track {
    animation-duration: 18s;
  }
} /* ========================================= SMALL MOBILE - 480px ========================================= */
@media (max-width: 480px) {
  .geet-notification-label {
    padding: 0 11px;
  }
  .geet-notification-label span {
    display: none;
  }
  .geet-notification-label i {
    margin: 0;
  }
  .geet-notification-track span {
    font-size: 11px;
    padding: 4px 14px;
    margin: 0 6px;
    border-radius: 20px;
  }
  .geet-notification-track {
    animation-duration: 16s;
  }
}

/* header section start */

.main-head {
  font-size: 40px !important;
  color: #811210 !important;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

@media (max-width: 768px) {
  .main-head {
    font-size: 30px !important;
    color: #811210 !important;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
  }
  .about-tagline {
    font-size: 16px !important;
  }
}

.upper-sub-head {
  color: #ad6a02 !important;
}

/*==================================
 GEET COUNTER SECTION
==================================*/

.geet-counter-section {
  /* background:#f8f9fc; */
  background:
    linear-gradient(
      to right,
      rgba(248, 248, 248, 0) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../img/rabindranath.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.geet-counter-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  /* box-shadow: 0 25px 70px rgba(0,0,0,.15); */
  /* background: #fff;  */
  padding: 15px; /* optional */
}

.geet-counter-image img {
  width: 100%;
  height: auto; /* pehle 540px tha */
  object-fit: cover; /* pura image dikhega */
  object-position: center;
  transition: 0.5s;
}

/* .geet-counter-image:hover img{
    transform: scale(1.03);
} */

.geet-counter-subtitle {
  display: inline-block;
  /* background:linear-gradient(135deg,#8b0000,#c99700); */
  color: #ffd0a4;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid #e07d43;
}

.years {
  color: #ffd0a4;
}

.geet-counter-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700 !important;
  color: #fff;
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", serif;
}

.geet-counter-description {
  font-size: 17px;
  color: #b7b7b7;
  line-height: 30px;
  margin-bottom: 35px;
}

.geet-counter-card-row {
  margin-top: 10px;
}

.geet-counter-card {
  position: relative;
  height: 100%;
  /* background:#fff; */
  background:
    linear-gradient(
      to right,
      rgba(248, 248, 248, 0.5) 0%,
      rgba(2, 36, 91, 0) 100%
    ),
    url(../img/light-brown.jpg) top center no-repeat;
  background-size: cover;
  padding: 18px 12px;
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid #9253008c;
}

/* .geet-counter-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#8b0000,#d4af37);
} */

/* .geet-counter-card:after{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    background:rgba(212,175,55,.08);
    border-radius:50%;
    top:-70px;
    right:-70px;
} */

/* .geet-counter-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
} */

.geet-counter-number {
  font-size: 30px;
  font-weight: 700;
  color: #8f4206;
  margin-bottom: 4px;
  font-family: "Cinzel", serif;
}

.geet-counter-card h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 30px;
  color: #222;
  margin: 0;
}

/*==========================
Responsive
===========================*/

@media (max-width: 991px) {
  .geet-counter-title {
    font-size: 38px;
  }

  .geet-counter-image img {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .geet-counter-section {
    padding: 40px 0 20px !important;
  }

  .geet-counter-image {
    margin-bottom: 35px;
  }

  .geet-counter-image img {
    height: 350px;
  }

  .geet-counter-title {
    font-size: 30px;
    line-height: 42px;
  }

  .geet-counter-description {
    font-size: 16px;
    line-height: 28px;
  }

  .geet-counter-card {
    padding: 12px 4px;
  }

  .geet-counter-number {
    font-size: 24px;
  }

  .geet-counter-card h5 {
    font-size: 13px;
    line-height: 28px;
  }
}
/*  */

/* =========================================================
   GEET VITAN - ART & LEARNING AREAS
   FINAL RESPONSIVE SLIDER CSS
========================================================= */

/* =========================================================
   MAIN SECTION
========================================================= */

.geet-new-slide-section {
  position: relative;

  width: 100%;
  max-width: 100%;

  padding: 60px 0;

  /* background: #fff; */

  background:
    linear-gradient(to right, rgba(2, 36, 91, 0) 0%, rgba(2, 36, 91, 0) 100%),
    url(../img/singer.jpg) bottom center no-repeat;
  background-size: cover;

  overflow: hidden;

  box-sizing: border-box;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.geet-new-slide-heading {
  width: 100%;
  max-width: 600px;

  margin: 0 auto 45px;

  padding: 0 15px;

  text-align: center;

  box-sizing: border-box;
}

.art-learning-head {
  margin: 0 0 15px;

  font-family: "Cormorant Garamond", serif;

  font-size: 34px !important;
  line-height: 1.2;

  font-weight: 700;

  color: #811210 !important;
}

.art-learning-head-2 {
  margin: 0 0 15px;

  font-family: "Cormorant Garamond", serif;

  font-size: 34px !important;
  line-height: 1.2;

  font-weight: 700;

  color: #fff !important;
}

.geet-new-slide-heading h2 {
  margin: 0 0 15px;

  font-size: 38px;
  line-height: 1.2;

  font-weight: 700;

  color: #222;
}

.geet-new-slide-heading p {
  margin: 0;

  font-size: 16px;
  line-height: 28px;

  color: #cacaca;
}

/* =========================================================
   MAIN ROW
========================================================= */

.geet-learning-row {
  display: flex;

  align-items: center;

  width: 100%;

  margin-left: 0 !important;
  margin-right: 0 !important;

  box-sizing: border-box;
}

/* =========================================================
   LEFT BLANK - COL LG 4
========================================================= */

.geet-learning-empty {
  min-height: 1px;

  box-sizing: border-box;
}

/* =========================================================
   RIGHT SLIDER - COL LG 8
========================================================= */

.geet-learning-slider-col {
  position: relative;

  min-width: 0;

  box-sizing: border-box;
}

/* =========================================================
   SLIDER MAIN WRAPPER
========================================================= */

.geet-new-slide {
  position: relative;

  width: 100%;
  max-width: 100%;

  overflow: visible;

  box-sizing: border-box;
}

/* =========================================================
   SWIPER

   IMPORTANT:
   NO LEFT/RIGHT PADDING HERE.
   This fixes the half-card issue.
========================================================= */

.geet-new-slide .swiper {
  position: relative;

  width: 100%;
  max-width: 100%;

  margin: 0;

  padding: 15px 0 65px;

  box-sizing: border-box;

  overflow: hidden;
}

/* =========================================================
   SWIPER WRAPPER
========================================================= */

.geet-new-slide .swiper-wrapper {
  display: flex;

  align-items: stretch;

  box-sizing: border-box;
}

/* =========================================================
   SWIPER SLIDE
========================================================= */

.geet-new-slide .swiper-slide {
  position: relative;

  height: auto;

  box-sizing: border-box;
}

/* =========================================================
   CARD
========================================================= */

.geet-new-slide-card {
  position: relative;

  width: 100%;

  height: auto;

  aspect-ratio: 1 / 1;

  perspective: 1200px;

  box-sizing: border-box;
}

/* =========================================================
   CARD INNER
========================================================= */

.geet-new-slide-inner {
  position: relative;

  width: 100%;
  height: 100%;

  transition: transform 0.8s ease;

  transform-style: preserve-3d;

  box-sizing: border-box;
}

/* =========================================================
   FLIP EFFECT
========================================================= */

.geet-new-slide-card:hover .geet-new-slide-inner {
  transform: rotateY(180deg);
}

/* =========================================================
   FRONT + BACK
========================================================= */

.geet-new-slide-front,
.geet-new-slide-back {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 18px;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  box-sizing: border-box;
}

/* =========================================================
   IMAGES
========================================================= */

.geet-new-slide-front img,
.geet-new-slide-back img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 18px;
  border: 2px solid #fdd784;

  /* padding: 8px; */
}

/* =========================================================
   FRONT OVERLAY
========================================================= */

.geet-new-slide-front::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 45%;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.55),
    transparent
  );

  z-index: 1;
}

/* =========================================================
   FRONT TITLE
========================================================= */

.geet-new-slide-title {
  position: absolute;

  left: 25px;
  right: 25px;
  bottom: 22px;

  margin: 0;

  color: #fff !important;

  font-size: 20px;
  line-height: 1.3;

  font-weight: 700;

  z-index: 2;

  box-sizing: border-box;
}

/* =========================================================
   BACK
========================================================= */

.geet-new-slide-back {
  transform: rotateY(180deg);
}

/* =========================================================
   BACK OVERLAY
========================================================= */

.geet-new-slide-back::before {
  content: "";

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.7);

  z-index: 1;
}

/* =========================================================
   BACK CONTENT
========================================================= */

.geet-new-slide-content {
  position: absolute;

  inset: 0;

  z-index: 2;

  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  padding: 30px;

  text-align: center;

  color: #fff;

  box-sizing: border-box;
}

.geet-new-slide-content h4 {
  margin: 0 0 15px;

  font-size: 24px;
  line-height: 1.3;

  font-weight: 700;

  color: #fff !important;
}

.geet-new-slide-content p {
  margin: 0;

  font-size: 15px;
  line-height: 28px;

  color: #fff;
}

/* =========================================================
   NAVIGATION ARROWS
========================================================= */

.geet-new-slide .swiper-button-next,
.geet-new-slide .swiper-button-prev {
  position: absolute;

  top: 50%;

  width: 48px;
  height: 48px;

  margin-top: -32px;

  border-radius: 50%;

  background: #fff;

  color: #000;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);

  z-index: 50;

  display: flex;

  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;

  box-sizing: border-box;
}

/* =========================================================
   LEFT ARROW
========================================================= */

.geet-new-slide .swiper-button-prev {
  left: 10px;

  right: auto;
}

/* =========================================================
   RIGHT ARROW
========================================================= */

.geet-new-slide .swiper-button-next {
  right: 10px;

  left: auto;
}

/* =========================================================
   ARROW ICON
========================================================= */

.geet-new-slide .swiper-button-next::after,
.geet-new-slide .swiper-button-prev::after {
  font-size: 18px;

  font-weight: 700;
}

/* =========================================================
   ARROW HOVER
========================================================= */

.geet-new-slide .swiper-button-next:hover,
.geet-new-slide .swiper-button-prev:hover {
  background: #811210;

  color: #fff;

  transform: scale(1.05);
}

/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (max-width: 991px) {
  /* -----------------------------------------
       HIDE LEFT BLANK COLUMN
    ----------------------------------------- */

  .geet-learning-empty {
    display: none;
  }

  /* -----------------------------------------
       SLIDER FULL WIDTH
    ----------------------------------------- */

  .geet-learning-slider-col {
    width: 100%;
    max-width: 100%;

    flex: 0 0 100%;

    min-width: 0;
  }

  /* -----------------------------------------
       HEADING
    ----------------------------------------- */

  .geet-new-slide-heading {
    margin-bottom: 35px;
  }

  /* -----------------------------------------
       SWIPER
    ----------------------------------------- */

  .geet-new-slide .swiper {
    padding: 15px 0 60px;
  }

  /* -----------------------------------------
       ARROWS
    ----------------------------------------- */

  .geet-new-slide .swiper-button-prev {
    left: 8px;
  }

  .geet-new-slide .swiper-button-next {
    right: 8px;
  }
}

/* =========================================================
   MOBILE
   0px - 767px
========================================================= */

@media (max-width: 768px) {
  /* -----------------------------------------
       SECTION
    ----------------------------------------- */

  .geet-new-slide-section {
    padding: 50px 0 20px !important;
  }

  /* -----------------------------------------
       HEADING
    ----------------------------------------- */

  .geet-new-slide-heading {
    margin-bottom: 30px;

    padding-left: 15px;
    padding-right: 15px;
  }

  .art-learning-head {
    font-size: 30px !important;
  }

  .geet-new-slide-heading h2 {
    font-size: 28px !important;
  }

  .geet-new-slide-heading p {
    font-size: 15px;

    line-height: 25px;
  }

  /* -----------------------------------------
       SWIPER
    ----------------------------------------- */

  .geet-new-slide .swiper {
    padding: 10px 0 55px;
  }

  /* -----------------------------------------
       CARD
    ----------------------------------------- */

  .geet-new-slide-card {
    aspect-ratio: 1 / 1;
  }

  /* -----------------------------------------
       TITLE
    ----------------------------------------- */

  .geet-new-slide-title {
    left: 20px;
    right: 20px;
    bottom: 20px;

    font-size: 20px;
  }

  /* -----------------------------------------
       BACK CONTENT
    ----------------------------------------- */

  .geet-new-slide-content {
    padding: 25px;
  }

  .geet-new-slide-content h4 {
    font-size: 20px;
  }

  .geet-new-slide-content p {
    font-size: 14px;

    line-height: 25px;
  }

  /* -----------------------------------------
       MOBILE ARROWS
    ----------------------------------------- */

  .geet-new-slide .swiper-button-next,
  .geet-new-slide .swiper-button-prev {
    width: 40px;
    height: 40px;

    margin-top: -28px;
  }

  .geet-new-slide .swiper-button-prev {
    left: 5px;
  }

  .geet-new-slide .swiper-button-next {
    right: 5px;
  }

  .geet-new-slide .swiper-button-next::after,
  .geet-new-slide .swiper-button-prev::after {
    font-size: 15px;
  }
}

/* =========================================================
   SMALL MOBILE
   0px - 480px
========================================================= */

@media (max-width: 480px) {
  .geet-new-slide-section {
    padding: 40px 0 10px !important;
  }

  .geet-new-slide-heading {
    margin-bottom: 25px;

    padding-left: 12px;
    padding-right: 12px;
  }

  .art-learning-head {
    font-size: 28px !important;
  }

  .geet-new-slide-heading p {
    font-size: 14px;

    line-height: 24px;
  }

  /* -----------------------------------------
       SWIPER
    ----------------------------------------- */

  .geet-new-slide .swiper {
    padding: 10px 0 50px;
  }

  /* -----------------------------------------
       ARROWS
    ----------------------------------------- */

  .geet-new-slide .swiper-button-next,
  .geet-new-slide .swiper-button-prev {
    width: 38px;
    height: 38px;

    margin-top: -27px;
  }

  .geet-new-slide .swiper-button-prev {
    left: 3px;
  }

  .geet-new-slide .swiper-button-next {
    right: 3px;
  }

  .geet-new-slide .swiper-button-next::after,
  .geet-new-slide .swiper-button-prev::after {
    font-size: 14px;
  }

  /* -----------------------------------------
       TITLE
    ----------------------------------------- */

  .geet-new-slide-title {
    left: 15px;
    right: 15px;
    bottom: 15px;

    font-size: 18px;
  }
}

/* =========================================================
   EXTRA SMALL DEVICES
   0px - 360px
========================================================= */

@media (max-width: 360px) {
  .geet-new-slide .swiper-button-next,
  .geet-new-slide .swiper-button-prev {
    width: 36px;
    height: 36px;

    margin-top: -25px;
  }

  .geet-new-slide .swiper-button-prev {
    left: 2px;
  }

  .geet-new-slide .swiper-button-next {
    right: 2px;
  }

  .geet-new-slide-title {
    font-size: 17px;
  }

  .geet-new-slide-content {
    padding: 20px;
  }

  .geet-new-slide-content h4 {
    font-size: 18px;
  }

  .geet-new-slide-content p {
    font-size: 13px;

    line-height: 22px;
  }
}

/* ================================
   GEET VITAN COURSES SECTION
================================ */

.geet-vitan-courses-section {
  width: 100%;
  padding: 60px 20px;
  /* background: #ffffff; */
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%),
    url(../img/white.jpg) top center no-repeat;
  background-size: cover;
  box-sizing: border-box;
}

.geet-vitan-courses-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */

.geet-vitan-courses-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.geet-vitan-courses-heading h2 {
  margin: 0 0 15px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #222;
}

.geet-vitan-courses-heading p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #2f2f2f;
}

/* Courses Row */

.geet-vitan-courses-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  align-items: stretch;
}

/* Course Card */

.geet-vitan-course-card {
  position: relative;
  background: #fff;
  border: 1px solid #ca7c02;
  min-height: 344px;
  overflow: visible;
  transition: all 0.3s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4) !important;
}

.geet-vitan-course-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Course Image */

.geet-vitan-course-image {
  width: 100%;
  height: 155px;
  overflow: hidden;
  border-bottom: 1px solid #fff;
}

.geet-vitan-course-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.geet-vitan-course-card:hover .geet-vitan-course-image img {
  transform: scale(1.06);
}

/* Overlapping Icon */

.geet-vitan-course-icon {
  position: absolute;
  top: 130px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: #fff0d5;
  border: 1px solid #e49b26;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.geet-vitan-course-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Course Content */

.geet-vitan-course-content {
  padding: 50px 20px 25px;
}

.geet-vitan-course-content h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
  color: #222;
}

.geet-vitan-course-content p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Admission Button */

.geet-vitan-admission-btn {
  display: inline-block;
  padding: 6px 20px;
  background: #811210;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  /* border: 1px solid #222; */
  transition: all 0.3s ease;
}

.geet-vitan-admission-btn:hover {
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  /* border: 1px solid #811210; */
}

/* ================================
   TABLET
================================ */

@media (max-width: 991px) {
  .geet-vitan-courses-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .geet-vitan-courses-heading h2 {
    font-size: 32px;
  }
}

/* ================================
   MOBILE - MAX WIDTH 768px
================================ */

@media (max-width: 768px) {
  .geet-vitan-courses-section {
    padding: 40px 15px;
  }

  .geet-vitan-courses-heading {
    margin-bottom: 35px;
  }

  .geet-vitan-courses-heading h2 {
    font-size: 28px;
  }

  .geet-vitan-courses-heading p {
    font-size: 15px;
    line-height: 1.7;
  }

  .geet-vitan-courses-row {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 30px;
  }

  .geet-vitan-course-card {
    min-height: 346px;
  }

  .geet-vitan-course-image {
    height: 170px;
  }

  .geet-vitan-course-icon {
    top: 145px;
    left: 25px;
  }

  .geet-vitan-course-content {
    padding: 50px 20px 25px;
  }
}

/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {
  .geet-vitan-courses-heading h2 {
    font-size: 25px;
  }

  .geet-vitan-course-image {
    height: 155px;
  }

  .geet-vitan-course-icon {
    top: 130px;
    left: 20px;
    width: 55px;
    height: 55px;
  }

  .geet-vitan-course-content h3 {
    font-size: 23px;
  }
}

/*  */

/* =========================================================
   GEET VITAN - ACHIEVEMENT SECTION
========================================================= */

.geet-home-achievement-section {
  position: relative;

  width: 100%;
  max-width: 100%;

  padding: 60px 20px;

  box-sizing: border-box;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(183, 134, 55, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(183, 134, 55, 0.06),
      transparent 30%
    ),
    #f9f6ef;

  /*
       Sticky ke liye section par overflow hidden nahi lagana.
    */
  overflow: visible;
}

/* =========================================================
   GLOBAL HORIZONTAL OVERFLOW CONTROL
========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

/* =========================================================
   DECORATIVE BACKGROUND - TOP LEFT
========================================================= */

.geet-home-achievement-section::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  top: -180px;
  left: -180px;

  border: 1px solid rgba(151, 105, 38, 0.1);

  border-radius: 50%;

  pointer-events: none;
}

/* =========================================================
   DECORATIVE BACKGROUND - BOTTOM RIGHT
========================================================= */

.geet-home-achievement-section::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -250px;
  bottom: -250px;

  border: 1px solid rgba(151, 105, 38, 0.08);

  border-radius: 50%;

  pointer-events: none;
}

/* =========================================================
   CONTAINER
========================================================= */

.geet-home-achievement-container {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  box-sizing: border-box;

  overflow: visible;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.geet-home-achievement-header {
  width: 100%;
  max-width: 850px;

  margin: 0 auto 65px;

  text-align: center;

  box-sizing: border-box;
}

/* =========================================================
   MAIN TITLE
========================================================= */

.geet-home-achievement-main-title {
  margin: 0;

  color: #281b12;

  font-size: 44px;

  line-height: 1.2;

  font-weight: 700;

  letter-spacing: -0.5px;

  overflow-wrap: break-word;
}

.achieve-para {
  margin-top: 20px;
}

/* =========================================================
   TITLE LINE
========================================================= */

/* .geet-home-achievement-title-line {
    position: relative;

    width: 75px;
    height: 3px;

    margin: 22px auto 0;

    background: #b98532;
}


.geet-home-achievement-title-line::before,
.geet-home-achievement-title-line::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 7px;
    height: 7px;

    background: #b98532;

    transform: translateY(-50%) rotate(45deg);
}


.geet-home-achievement-title-line::before {
    left: -13px;
}


.geet-home-achievement-title-line::after {
    right: -13px;
} */

/* =========================================================
   MAIN TWO COLUMN LAYOUT
========================================================= */

.geet-home-achievement-main {
  display: grid;

  /*
       LEFT = 350px
       RIGHT = remaining available width
    */
  grid-template-columns: 350px minmax(0, 1fr);

  gap: 55px;

  align-items: start;

  width: 100%;
  max-width: 100%;

  box-sizing: border-box;

  overflow: visible;
}

/* =========================================================
   DIRECT CHILDREN
========================================================= */

.geet-home-achievement-main > * {
  min-width: 0;
  max-width: 100%;

  box-sizing: border-box;
}

/* =========================================================
   LEFT INTRO BOX
========================================================= */

.geet-home-achievement-intro-box {
  position: -webkit-sticky;
  position: sticky;

  /*
       Header/navbar ke neeche sticky rahega.
    */
  top: 100px;

  align-self: start;

  width: 100%;
  max-width: 350px;

  height: fit-content;

  padding: 38px;

  background: #4f0c0b;

  border-radius: 24px;

  box-sizing: border-box;

  overflow: hidden;

  box-shadow: 0 25px 60px rgba(40, 27, 18, 0.16);
}

/* =========================================================
   LEFT BOX DECORATIVE CIRCLE - TOP RIGHT
========================================================= */

.geet-home-achievement-intro-box::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  top: -140px;
  right: -130px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 50%;

  pointer-events: none;
}

/* =========================================================
   LEFT BOX DECORATIVE CIRCLE - BOTTOM LEFT
========================================================= */

.geet-home-achievement-intro-box::after {
  content: "";

  position: absolute;

  width: 190px;
  height: 190px;

  bottom: -110px;
  left: -100px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 50%;

  pointer-events: none;
}

/* =========================================================
   YEARS
========================================================= */

.geet-home-achievement-years {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 28px;

  padding-bottom: 25px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  box-sizing: border-box;
}

/* =========================================================
   YEARS NUMBER
========================================================= */

.geet-home-achievement-years-number {
  flex-shrink: 0;

  color: #ffc368;

  font-size: 68px;

  line-height: 0.9;

  font-weight: 800;
}

/* =========================================================
   YEARS TEXT
========================================================= */

.geet-home-achievement-years-text {
  color: #ffffff;

  font-size: 14px;

  line-height: 1.5;

  font-weight: 600;
}

/* =========================================================
   INTRO TEXT
========================================================= */

.geet-home-achievement-intro-text {
  position: relative;

  z-index: 2;

  margin: 0;

  color: rgba(255, 255, 255, 0.78);

  font-size: 15px;

  line-height: 1.85;

  overflow-wrap: break-word;

  word-wrap: break-word;
}

/* =========================================================
   QUOTE
========================================================= */

.geet-home-achievement-quote {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 13px;

  margin-top: 30px;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  color: #e3c078;

  font-size: 14px;

  line-height: 1.6;

  font-weight: 600;
}

/* =========================================================
   QUOTE ICON
========================================================= */

.geet-home-achievement-quote-icon {
  flex-shrink: 0;

  color: #d4a34b;

  font-size: 52px;

  line-height: 0.5;

  font-family: Georgia, serif;
}

/* =========================================================
   RIGHT ACHIEVEMENT LIST
========================================================= */

.geet-home-achievement-list {
  position: relative;

  width: 100%;
  max-width: 100%;

  min-width: 0;

  box-sizing: border-box;
}

/* =========================================================
   VERTICAL TIMELINE
========================================================= */

/* =========================================================
   REMOVE VERTICAL TIMELINE LINE
========================================================= */

.geet-home-achievement-list::before {
  display: none !important;
  content: none !important;
}

/* =========================================================
   ACHIEVEMENT ITEM
   WITHOUT NUMBER COLUMN
========================================================= */

.geet-home-achievement-item {
  position: relative;

  display: grid;

  /*
       Only 2 columns:
       1 = Icon
       2 = Content
    */
  grid-template-columns: 65px minmax(0, 1fr);

  gap: 20px;

  align-items: start;

  width: 100%;
  max-width: 100%;

  min-width: 0;

  margin-bottom: 22px;

  padding: 27px 30px 27px 20px;

  background: rgba(255, 255, 255, 0.85);

  border: 1px solid rgba(151, 105, 38, 0.12);

  border-radius: 18px;

  box-shadow: 0 8px 30px rgba(46, 31, 17, 0.055);

  box-sizing: border-box;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* =========================================================
   LAST ITEM
========================================================= */

.geet-home-achievement-item:last-child {
  margin-bottom: 0;
}

/* =========================================================
   HOVER
========================================================= */

.geet-home-achievement-item:hover {
  transform: translateX(8px);

  border-color: rgba(151, 105, 38, 0.28);

  box-shadow: 0 15px 40px rgba(46, 31, 17, 0.1);
}

/* =========================================================
   ICON
========================================================= */

.geet-home-achievement-item-icon {
  position: relative;

  z-index: 2;

  grid-column: 1;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;

  flex-shrink: 0;

  border: 1px solid rgba(151, 105, 38, 0.18);

  border-radius: 50%;

  background: #f8f0df;

  color: #6c0503;

  font-size: 22px;

  box-sizing: border-box;

  transition: all 0.35s ease;
}

/* =========================================================
   ICON HOVER
========================================================= */

.geet-home-achievement-item:hover .geet-home-achievement-item-icon {
  background: #6c0503;

  color: #ffffff;

  /* transform: rotate(8deg); */
}

/* =========================================================
   ITEM CONTENT
========================================================= */

.geet-home-achievement-item-content {
  grid-column: 2;

  min-width: 0;

  max-width: 100%;

  box-sizing: border-box;
}

/* =========================================================
   ITEM HEADING
========================================================= */

.geet-home-achievement-item-content h3 {
  margin: 0 0 9px;

  color: #2c1d14;

  font-size: 19px;

  line-height: 1.45;

  font-weight: 700;

  max-width: 100%;

  overflow-wrap: break-word;

  word-wrap: break-word;
}

/* =========================================================
   ITEM PARAGRAPH
========================================================= */

.geet-home-achievement-item-content p {
  margin: 0 0 10px;

  color: #6e655d;

  font-size: 14px;

  line-height: 1.75;

  max-width: 100%;

  overflow-wrap: break-word;

  word-wrap: break-word;
}

/* =========================================================
   LAST PARAGRAPH
========================================================= */

.geet-home-achievement-item-content p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   REMOVE NUMBER COMPLETELY
========================================================= */

.geet-home-achievement-number {
  display: none !important;
}

/* =========================================================
   TABLET
   769px - 991px
========================================================= */

@media (min-width: 769px) and (max-width: 991px) {
  .geet-home-achievement-section {
    padding: 80px 20px;

    overflow: visible;
  }

  /* Main */

  .geet-home-achievement-main {
    grid-template-columns: 290px minmax(0, 1fr);

    gap: 30px;

    align-items: start;
  }

  /* Left */

  .geet-home-achievement-intro-box {
    position: -webkit-sticky;
    position: sticky;

    top: 90px;

    max-width: 290px;

    padding: 28px;
  }

  /* Years */

  .geet-home-achievement-years-number {
    font-size: 56px;
  }

  /* Title */

  .geet-home-achievement-main-title {
    font-size: 38px;
  }

  /* Achievement Item */

  .geet-home-achievement-item {
    grid-template-columns: 55px minmax(0, 1fr);

    gap: 15px;

    padding: 23px 20px;
  }

  /* Icon */

  .geet-home-achievement-item-icon {
    grid-column: 1;

    width: 52px;
    height: 52px;

    font-size: 19px;
  }

  /* Content */

  .geet-home-achievement-item-content {
    grid-column: 2;
  }
}

/* =========================================================
   MOBILE
   MAX WIDTH 768px
========================================================= */

@media (max-width: 768px) {
  .geet-home-achievement-section {
    padding: 60px 15px;

    /*
           Mobile par sticky nahi hai.
        */
    overflow: hidden;
  }

  /* Header */

  .geet-home-achievement-header {
    margin-bottom: 40px;
  }

  /* Label */

  .geet-home-achievement-label {
    padding: 7px 14px;

    font-size: 11px;

    letter-spacing: 1.5px;
  }

  /* Title */

  .geet-home-achievement-main-title {
    font-size: 29px;

    line-height: 1.3;
  }

  /* Title line */

  .geet-home-achievement-title-line {
    margin-top: 17px;
  }

  /* =====================================================
       MAIN LAYOUT
    ===================================================== */

  .geet-home-achievement-main {
    display: block;

    width: 100%;
    max-width: 100%;

    overflow: visible;
  }

  /* =====================================================
       LEFT INTRO
       STICKY DISABLED
    ===================================================== */

  .geet-home-achievement-intro-box {
    position: relative;

    top: auto;

    align-self: auto;

    width: 100%;
    max-width: 100%;

    height: auto;

    margin-bottom: 30px;

    padding: 28px 24px;

    border-radius: 18px;
  }

  /* =====================================================
       YEARS
    ===================================================== */

  .geet-home-achievement-years {
    margin-bottom: 22px;

    padding-bottom: 20px;
  }

  .geet-home-achievement-years-number {
    font-size: 54px;
  }

  .geet-home-achievement-years-text {
    font-size: 13px;
  }

  /* =====================================================
       INTRO TEXT
    ===================================================== */

  .geet-home-achievement-intro-text {
    font-size: 14px;

    line-height: 1.75;
  }

  /* =====================================================
       QUOTE
    ===================================================== */

  .geet-home-achievement-quote {
    margin-top: 23px;

    padding-top: 20px;

    font-size: 13px;
  }

  /* =====================================================
       LIST
    ===================================================== */

  .geet-home-achievement-list {
    width: 100%;
    max-width: 100%;

    min-width: 0;
  }

  /* Timeline hidden on mobile */

  .geet-home-achievement-list::before {
    display: none;
  }

  /* =====================================================
       ACHIEVEMENT ITEM
       WITHOUT NUMBER
    ===================================================== */

  .geet-home-achievement-item {
    display: grid;

    grid-template-columns: 48px minmax(0, 1fr);

    gap: 15px;

    width: 100%;
    max-width: 100%;

    margin-bottom: 18px;

    padding: 22px 18px;

    border-radius: 15px;

    box-sizing: border-box;
  }

  /* =====================================================
       ICON
    ===================================================== */

  .geet-home-achievement-item-icon {
    grid-column: 1;
    grid-row: 1;

    width: 48px;
    height: 48px;

    margin-top: 0;

    font-size: 18px;
  }

  /* =====================================================
       CONTENT
    ===================================================== */

  .geet-home-achievement-item-content {
    grid-column: 2;

    grid-row: 1;

    min-width: 0;
  }

  /* Heading */

  .geet-home-achievement-item-content h3 {
    font-size: 17px;

    line-height: 1.45;

    margin-bottom: 8px;
  }

  /* Paragraph */

  .geet-home-achievement-item-content p {
    font-size: 14px !important;

    line-height: 1.7;
  }

  /* =====================================================
       MOBILE HOVER
    ===================================================== */

  .geet-home-achievement-item:hover {
    transform: translateY(-4px);
  }
}

/* =========================================================
   SMALL MOBILE
   MAX WIDTH 480px
========================================================= */

@media (max-width: 480px) {
  .geet-home-achievement-section {
    padding: 50px 12px;
  }

  /* =====================================================
       HEADER
    ===================================================== */

  .geet-home-achievement-main-title {
    font-size: 25px;
  }

  /* =====================================================
       INTRO
    ===================================================== */

  .geet-home-achievement-intro-box {
    padding: 24px 20px;
  }

  .geet-home-achievement-years-number {
    font-size: 48px;
  }

  .geet-home-achievement-years-text {
    font-size: 12px;
  }

  /* =====================================================
       ACHIEVEMENT ITEMS
    ===================================================== */

  .geet-home-achievement-item {
    grid-template-columns: 43px minmax(0, 1fr);

    gap: 12px;

    padding: 20px 15px;
  }

  /* Icon */

  .geet-home-achievement-item-icon {
    grid-column: 1;
    grid-row: 1;

    width: 43px;
    height: 43px;

    font-size: 16px;
  }

  /* Content */

  .geet-home-achievement-item-content {
    grid-column: 2;
    grid-row: 1;
  }

  /* Heading */

  .geet-home-achievement-item-content h3 {
    font-size: 16px;
  }

  /* Paragraph */

  .geet-home-achievement-item-content p {
    font-size: 13px;
  }
}

/* =========================================================
   EXTRA SAFETY
   PREVENT HORIZONTAL OVERFLOW
========================================================= */

.geet-home-achievement-section *,
.geet-home-achievement-section *::before,
.geet-home-achievement-section *::after {
  box-sizing: border-box;
}

/* =========================================================
   LONG WORD / URL SAFETY
========================================================= */

.geet-home-achievement-section h1,
.geet-home-achievement-section h2,
.geet-home-achievement-section h3,
.geet-home-achievement-section p,
.geet-home-achievement-section span {
  max-width: 100%;

  overflow-wrap: break-word;

  word-break: normal;
}

/* =========================================================
   IMAGE SAFETY
========================================================= */

.geet-home-achievement-section img {
  max-width: 100%;

  height: auto;
}

/* =========================================================
   IFRAME / VIDEO SAFETY
========================================================= */

.geet-home-achievement-section iframe,
.geet-home-achievement-section video {
  max-width: 100%;
}
/*  */

.geet-many-singer-section {
  width: 100%;
  padding: 45px 0;
  background: #faf8f4;
  overflow: hidden;
}

.geet-many-singer-row {
  align-items: center;
}

/* IMAGE */

.geet-many-singer-image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.geet-many-singer-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.geet-many-singer-image-wrap:hover .geet-many-singer-image {
  transform: scale(1.05);
}

.geet-many-singer-image-overlay {
  position: absolute;
  left: 15px;
  bottom: 15px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.geet-many-singer-image-overlay span {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: #8b6428;
}

/* CONTENT CARD */

.geet-many-singer-card {
  position: relative;
  min-height: 310px;
  padding: 30px 38px;
  margin-left: 10px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(180, 140, 70, 0.16);
  box-shadow: 0 12px 35px rgba(50, 35, 15, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.geet-many-singer-card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -35px;
  top: -35px;
  border-radius: 50%;
  background: rgba(183, 134, 55, 0.08);
}

/* TOP */

.geet-many-singer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 8px;
}

.geet-many-singer-label {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9a702d;
}

.geet-many-singer-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 700;
  color: #8b6428;
  background: #f8f1e4;
  padding: 4px 13px;
  border-radius: 20px;
}

/* TITLE */

.geet-many-singer-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 700;
  color: #292019;
}

.geet-many-singer-description {
  max-width: 850px;
  margin: 0 0 15px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #66605a;
}

.geet-many-singer-description strong {
  color: #40352b;
  font-weight: 600;
}

/* LOCATION */

.geet-many-singer-location {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #51483f;
}

.geet-many-singer-location i {
  font-size: 15px;
  color: #a47732;
}

/* HIGHLIGHT */

.geet-many-singer-highlight {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 15px;
  background: #faf7f1;
  border-left: 3px solid #b48637;
  border-radius: 7px;
}

.geet-many-singer-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #b48637;
  color: #ffffff;
  font-size: 15px;
}

.geet-many-singer-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.geet-many-singer-highlight-text strong {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #3c3228;
}

.geet-many-singer-highlight-text span {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  line-height: 1.5;
  color: #777068;
}

/* =========================================================
   MOBILE RESPONSIVE - MAX WIDTH 768PX
========================================================= */

@media (max-width: 768px) {
  .geet-many-singer-section {
    padding: 30px 15px;
  }

  .geet-many-singer-row {
    margin: 0;
  }

  .geet-many-singer-image-wrap {
    height: 210px;
    margin-bottom: 15px;
    border-radius: 12px;
  }

  .geet-many-singer-image-overlay {
    left: 10px;
    bottom: 10px;
    padding: 5px 12px;
  }

  .geet-many-singer-image-overlay span {
    font-size: 17px;
  }

  .geet-many-singer-card {
    min-height: auto;
    margin-left: 0;
    padding: 22px 20px;
    border-radius: 12px;
  }

  .geet-many-singer-top {
    margin-bottom: 6px;
  }

  .geet-many-singer-label {
    font-size: 10px;
    letter-spacing: 0.7px;
  }

  .geet-many-singer-year {
    font-size: 14px;
    padding: 3px 10px;
  }

  .geet-many-singer-title {
    font-size: 29px;
    line-height: 1.1;
    margin-bottom: 9px;
  }

  .geet-many-singer-description {
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 12px;
  }

  .geet-many-singer-location {
    font-size: 11px;
    line-height: 1.5;
    align-items: flex-start;
    margin-bottom: 13px;
  }

  .geet-many-singer-location i {
    margin-top: 2px;
  }

  .geet-many-singer-highlight {
    padding: 9px 11px;
    gap: 9px;
  }

  .geet-many-singer-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    font-size: 13px;
  }

  .geet-many-singer-highlight-text strong {
    font-size: 11px;
  }

  .geet-many-singer-highlight-text span {
    font-size: 9px;
  }
}

/* EXTRA SMALL DEVICES */

@media (max-width: 480px) {
  .geet-many-singer-section {
    padding: 25px 12px;
  }

  .geet-many-singer-image-wrap {
    height: 180px;
  }

  .geet-many-singer-card {
    padding: 19px 16px;
  }

  .geet-many-singer-title {
    font-size: 26px;
  }

  .geet-many-singer-description {
    font-size: 11px;
  }

  .geet-many-singer-location {
    font-size: 10px;
  }

  .geet-many-singer-highlight-text strong {
    font-size: 10px;
  }

  .geet-many-singer-highlight-text span {
    font-size: 8.5px;
  }
}

/* =========================================================
   1000 ECHOES - ACHIEVEMENT HIGHLIGHT
========================================================= */

.many-achieve-singer-box {
  width: 100%;
  display: flex;
  align-items: stretch;
  margin-bottom: 22px;
  background: #fff;
  border: 1px solid rgba(130, 92, 35, 0.18);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}

/* Left Image */

.many-achieve-singer-image {
  width: 30%;
  min-height: 190px;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.many-achieve-singer-image::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
        90deg,
        rgba(252, 252, 252, 0.02),
        rgba(0, 0, 0, 0.15)
    ); */
  pointer-events: none;
}

.many-achieve-singer-image img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  display: block;
  border-radius: 12px !important;
  transition: transform 0.5s ease;
  border: 1px solid #c48601;
}

/* .many-achieve-singer-box:hover .many-achieve-singer-image img {
    transform: scale(1.05);
} */

/* Right Content */

.many-achieve-singer-content {
  width: 70%;
  padding: 25px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #fffdf8 0%, #ffffff 100%);
}

.many-achieve-singer-label {
  display: inline-block;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 30px;
  background: rgba(164, 119, 49, 0.1);
  color: #9a6b24;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.many-achieve-singer-content h3 {
  margin: 0 0 10px;
  color: #000;
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 17px;
  /* line-height: 1.25; */
  font-weight: 700;
}

.many-achieve-singer-content p {
  margin: 0;
  color: #66605a;
  font-size: 14px;
  line-height: 1.7;
  max-width: 850px;
}

/* Small Decorative Line */

/* .many-achieve-singer-content::before {
    content: "";
    width: 4px;
    height: 45px;
    position: absolute;
    left: 30%;
    top: 50%;
    transform: translateY(-50%);
    background: #b5863a;
    border-radius: 5px;
} */

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .many-achieve-singer-image {
    width: 35%;
  }

  .many-achieve-singer-content {
    width: 65%;
    padding: 22px;
  }

  .many-achieve-singer-content::before {
    left: 35%;
  }

  .many-achieve-singer-content h3 {
    font-size: 22px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .many-achieve-singer-box {
    display: block;
    margin-bottom: 18px;
    border-radius: 12px;
  }

  .many-achieve-singer-image {
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .many-achieve-singer-image img {
    width: 100%;
    height: auto !important;
    min-height: auto !important;
  }

  .many-achieve-singer-content {
    width: 100%;
    padding: 18px 20px 20px;
  }

  .many-achieve-singer-content::before {
    display: none;
  }

  .many-achieve-singer-label {
    font-size: 10px;
    padding: 4px 10px;
  }

  .many-achieve-singer-content h3 {
    font-size: 21px;
    line-height: 1.3;
  }

  .many-achieve-singer-content p {
    font-size: 13px;
    line-height: 1.65;
  }
}

/*  */

/* =========================================================
   SIGNATURE EVENTS SECTION
========================================================= */

.geet-event-slide-section {
  width: 100%;
  padding: 60px 0;
  background: #f0f0f0;
  overflow: hidden;
}

/* Heading */

.geet-event-slide-heading {
  margin-bottom: 50px;
  text-align: center !important;
}

/* .geet-event-slide-line {
    width: 65px;
    height: 3px;
    margin-top: 13px;
    background: #9c7333;
    border-radius: 5px;
} */

/* Slider */

.geet-event-slide-wrapper {
  position: relative;
  width: 100%;
}

.geet-event-slide-swiper {
  width: 100%;
  padding: 5px 3px 25px;
}

.geet-event-slide-swiper .swiper-slide {
  height: auto;
}

/* Card */

.geet-event-slide-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #ffedc7 !important;
  border: 1px solid rgba(130, 92, 35, 0.16);
  box-shadow: 0 8px 25px rgba(44, 33, 25, 0.08);
}

/* Image */

.geet-event-slide-image {
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.geet-event-slide-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.geet-event-slide-card:hover .geet-event-slide-image img {
  transform: scale(1.05);
}

/* Bottom White Highlight */

.geet-event-slide-content {
  position: relative;
  z-index: 2;
  padding: 22px 24px 24px;
  background: #ffedc7;
  min-height: 145px;
}

.geet-event-slide-content h3 {
  margin: 0 0 9px;
  font-size: 23px;
  line-height: 1.3;
  font-weight: 600;
  color: #2c2119;
  font-family: "Playfair Display", serif;
}

.geet-event-slide-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #665c54;
}

/* Navigation Buttons */

.geet-event-slide-prev,
.geet-event-slide-next {
  position: absolute;
  top: 43%;
  z-index: 10;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #fff;
  color: #8c6328;

  border: 1px solid rgba(140, 99, 40, 0.25);

  cursor: pointer;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.13);

  transition: all 0.3s ease;
}

.geet-event-slide-prev {
  left: 12px;
}

.geet-event-slide-next {
  right: 12px;
}

.geet-event-slide-prev:hover,
.geet-event-slide-next:hover {
  background: #8c6328;
  color: #fff;
  transform: translateY(-2px);
}

.geet-event-slide-prev i,
.geet-event-slide-next i {
  font-size: 16px;
}

/* Disabled Arrow */

.geet-event-slide-prev.swiper-button-disabled,
.geet-event-slide-next.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* =========================================================
   MOBILE RESPONSIVE
   MAX WIDTH: 768PX
========================================================= */

@media (max-width: 768px) {
  .geet-event-slide-section {
    padding: 40px 0;
  }

  .geet-event-slide-heading {
    margin-bottom: 25px;
  }

  .geet-event-slide-heading h2 {
    font-size: 32px;
  }

  .geet-event-slide-line {
    width: 50px;
    margin-top: 10px;
  }

  .geet-event-slide-image {
    height: 280px;
  }

  .geet-event-slide-content {
    padding: 18px 19px 20px;
    min-height: 135px;
  }

  .geet-event-slide-content h3 {
    font-size: 20px;
  }

  .geet-event-slide-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .geet-event-slide-prev,
  .geet-event-slide-next {
    width: 40px;
    height: 40px;
  }

  .geet-event-slide-prev {
    left: 8px;
  }

  .geet-event-slide-next {
    right: 8px;
  }
}
/* ================================== */

/* =========================================================
   GEET NAVBAR - LOGO BAR
========================================================= */

.geet-navbar-logo-bar {
  width: 100%;
  background: #ffffff;
  padding: 3px 0;
  border-bottom: 1px solid #eeeeee;
}

.geet-navbar-logo-container {
  width: 100%;

  padding-left: 20px;
  padding-right: 20px;

  display: flex;
  align-items: center;
}

.geet-navbar-logo-link {
  display: inline-flex;
  align-items: center;

  text-decoration: none;
}

.geet-navbar-logo {
  height: 80px;
  width: auto;

  display: block;

  object-fit: contain;
}

/* =========================================================
   MAIN NAVBAR
========================================================= */

.geet-navbar-main {
  width: 100%;

  min-height: 42px;

  padding: 0 !important;

  background: #ffc368 !important;

  border-bottom: 1px solid #fcb346;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

  z-index: 9999;
}

/* =========================================================
   NAVBAR CONTAINER
========================================================= */

.geet-navbar-nav-container {
  width: 100%;

  padding-left: 5px !important;
  padding-right: 5px !important;
}

/* =========================================================
   MENU
========================================================= */

.geet-navbar-menu {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px !important;

  width: 100%;
}

/* =========================================================
   NORMAL NAV LINKS
========================================================= */

.geet-navbar-link {
  position: relative;

  display: flex !important;
  align-items: center;
  justify-content: center;

  padding: 13px 11px !important;

  margin: 0 !important;

  color: #222222 !important;

  font-size: 14px;
  font-weight: 600;

  line-height: 1.2;
  white-space: nowrap;

  text-decoration: none;

  transition: all 0.25s ease;
}

/* =========================================================
   HOVER
========================================================= */

.geet-navbar-link:hover {
  color: #931311 !important;
}

/* =========================================================
   ACTIVE
========================================================= */

.geet-navbar-link.active {
  color: #931311 !important;
}

/* =========================================================
   ACTIVE BOTTOM LINE
========================================================= */

.geet-navbar-link.active::after {
  content: "";

  position: absolute;

  left: 7px;
  right: 7px;

  bottom: 0;

  height: 2px;

  background: #931311;

  border-radius: 2px 2px 0 0;
}

/* =========================================================
   ABOUT DROPDOWN
========================================================= */

.geet-navbar-dropdown {
  position: relative;

  margin: 0 !important;

  padding: 0 !important;
}

/* Dropdown Arrow */

.geet-navbar-dropdown .dropdown-toggle::after {
  margin-left: 3px;

  vertical-align: middle;

  /* border-top: 3px solid currentColor; */

  border-right: 3px solid transparent;

  border-left: 3px solid transparent;

  border-bottom: 0;
}

/* =========================================================
   DROPDOWN MENU
========================================================= */

.geet-navbar-dropdown-menu {
  min-width: 190px;

  margin-top: 0 !important;

  padding: 4px 0;

  background: #ffffff;

  border: 1px solid #eeeeee;

  border-radius: 0 0 5px 5px;

  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);

  z-index: 99999;
}

/* Dropdown Item */

.geet-navbar-dropdown-menu .dropdown-item {
  padding: 8px 13px;

  color: #333333;

  font-size: 11px;

  font-weight: 500;

  line-height: 1.2;

  white-space: nowrap;

  transition: all 0.2s ease;
}

/* Dropdown Hover */

.geet-navbar-dropdown-menu .dropdown-item:hover,
.geet-navbar-dropdown-menu .dropdown-item:focus {
  color: #931311;

  background: #f5f8ff;

  padding-left: 16px;
}

/* =========================================================
   DESKTOP DROPDOWN HOVER
========================================================= */

@media (min-width: 992px) {
  .geet-navbar-dropdown:hover > .dropdown-menu {
    display: block;

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
  }

  .geet-navbar-dropdown-menu {
    display: block;

    opacity: 0;

    visibility: hidden;

    transform: translateY(5px);

    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }
}

/* =========================================================
   SUPPORT ARTS
========================================================= */

.geet-navbar-support {
  display: flex !important;

  align-items: center;

  justify-content: center;

  margin-left: 4px !important;

  padding: 7px 20px !important;

  color: #ffffff !important;

  background: #931311;

  border-radius: 3px;

  font-size: 11px;

  font-weight: 600;

  line-height: 1;

  white-space: nowrap;

  transition: all 0.25s ease;
}

/* Hover */

.geet-navbar-support:hover {
  color: #ffffff !important;

  background: #931311;

  transform: none;
}

/* Active */

.geet-navbar-support.active {
  color: #ffffff !important;

  background: #931311;
}

/* Remove active line */

.geet-navbar-support.active::after {
  display: none;
}

/* =========================================================
   HAMBURGER
========================================================= */

.geet-navbar-toggler {
  display: none;

  width: 38px;

  height: 36px;

  padding: 6px !important;

  margin-left: auto;

  border: 1px solid #222222 !important;

  border-radius: 4px;

  background: #ffffff !important;

  box-shadow: none !important;

  outline: none !important;
}

/* Bootstrap Icon Remove */

.geet-navbar-toggler .navbar-toggler-icon {
  width: 21px;

  height: 15px;

  display: block;

  position: relative;

  background-image: none !important;
}

/* Hamburger Lines */

.geet-navbar-toggler .navbar-toggler-icon::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 21px;

  height: 2px;

  background: #000000;

  border-radius: 2px;

  box-shadow:
    0 6px 0 #000000,
    0 12px 0 #000000;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {
  .geet-navbar-link {
    padding-left: 8px !important;
    padding-right: 8px !important;

    font-size: 11px;
  }
}

/* =========================================================
   MEDIUM DESKTOP
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {
  .geet-navbar-logo {
    height: 58px;
  }

  .geet-navbar-link {
    padding-left: 5px !important;
    padding-right: 5px !important;

    font-size: 10px;
  }

  .geet-navbar-link.active::after {
    left: 5px;
    right: 5px;
  }

  .geet-navbar-support {
    padding-left: 8px !important;
    padding-right: 8px !important;

    font-size: 10px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {
  /* -----------------------------------------
       LOGO BAR
    ----------------------------------------- */

  .geet-navbar-logo-bar {
    position: sticky;

    top: 0;

    z-index: 10000;

    padding: 3px 0;

    background: #ffffff;
  }

  .geet-navbar-logo-container {
    min-height: 58px;

    padding-left: 12px;
    padding-right: 12px;

    display: flex;

    align-items: center;

    justify-content: space-between;
  }

  /* Logo */

  .geet-navbar-logo {
    height: 50px;

    width: auto;
  }

  /* Hamburger */

  .geet-navbar-toggler {
    display: flex !important;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    margin-left: auto;

    position: relative;

    z-index: 10001;
  }

  /* -----------------------------------------
       MAIN NAV
    ----------------------------------------- */

  .geet-navbar-main {
    min-height: 0;

    padding: 0 !important;

    border-bottom: 1px solid #eeeeee;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  /* -----------------------------------------
       COLLAPSE
    ----------------------------------------- */

  .geet-navbar-main .navbar-collapse {
    width: 100%;

    background: #ffffff;
  }

  /* -----------------------------------------
       MENU
    ----------------------------------------- */

  .geet-navbar-menu {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 2px 0 5px;
  }

  /* -----------------------------------------
       LINKS
    ----------------------------------------- */

  .geet-navbar-link {
    width: 100%;

    display: flex !important;

    align-items: center;

    justify-content: flex-start;

    padding: 10px 16px !important;

    text-align: left;

    font-size: 12px;

    line-height: 1.2;

    border-bottom: 1px solid #eeeeee;
  }

  /* Active Mobile Line */

  .geet-navbar-link.active::after {
    left: 0;

    right: auto;

    top: 0;

    bottom: 0;

    width: 3px;

    height: auto;

    border-radius: 0;
  }

  /* -----------------------------------------
       ABOUT
    ----------------------------------------- */

  .geet-navbar-dropdown {
    width: 100%;
  }

  .geet-navbar-dropdown .dropdown-toggle {
    width: 100%;

    justify-content: flex-start;
  }

  /* -----------------------------------------
       MOBILE DROPDOWN
    ----------------------------------------- */

  .geet-navbar-dropdown-menu {
    width: 100%;

    min-width: 100%;

    margin: 0 !important;

    padding: 0;

    border: 0;

    border-radius: 0;

    box-shadow: none;

    background: #f8f9fa;
  }

  .geet-navbar-dropdown-menu .dropdown-item {
    padding: 8px 15px 8px 32px;

    font-size: 11px;

    border-bottom: 1px solid #e9e9e9;
  }

  .geet-navbar-dropdown-menu .dropdown-item:hover,
  .geet-navbar-dropdown-menu .dropdown-item:focus {
    padding-left: 36px;

    background: #f2f6ff;
  }

  /* -----------------------------------------
       SUPPORT ARTS
    ----------------------------------------- */

  .geet-navbar-support {
    width: fit-content;

    margin: 7px auto !important;

    padding: 8px 18px !important;

    border-bottom: none !important;

    font-size: 12px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {
  .geet-navbar-logo-container {
    min-height: 54px;

    padding-left: 10px;
    padding-right: 10px;
  }

  .geet-navbar-logo {
    height: 46px;
  }

  .geet-navbar-toggler {
    width: 36px;

    height: 34px;
  }

  .geet-navbar-toggler .navbar-toggler-icon {
    width: 20px;

    height: 14px;
  }

  .geet-navbar-toggler .navbar-toggler-icon::before {
    width: 20px;

    box-shadow:
      0 6px 0 #000000,
      0 12px 0 #000000;
  }

  .geet-navbar-link {
    padding: 9px 15px !important;

    font-size: 12px;
  }

  .geet-navbar-dropdown-menu .dropdown-item {
    padding: 8px 15px 8px 30px;

    font-size: 11px;
  }
}

/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 375px) {
  .geet-navbar-logo {
    height: 50px;
  }

  .geet-navbar-toggler {
    width: 34px;

    height: 32px;
  }

  .geet-navbar-link {
    padding: 8px 14px !important;

    font-size: 11.5px;
  }
}
/*  */

/* =========================================================
   RIGHT SIDE 4 LOGOS
========================================================= */

.geet-navbar-right-logos {
    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 15px;

    height: 80px;
}

.geet-navbar-right-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

.geet-navbar-right-logo {
    width: auto;
    height: 78px;

    display: block;
    object-fit: contain;
}


/* =========================================================
   MEDIUM DESKTOP
========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

    .geet-navbar-right-logos {
        height: 58px;
        gap: 10px;
    }

    .geet-navbar-right-logo {
        height: 45px;
    }
}


/* =========================================================
   MOBILE - RIGHT 4 LOGOS HIDE
========================================================= */

@media (max-width: 991.98px) {

    .geet-navbar-right-logos {
        display: none !important;
    }

}





/* ============================================ */

/* geet founder message section start */

/* =========================================================
   GEET VITAN - FOUNDER MESSAGE SECTION
========================================================= */

.geet-founder-message {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    /* background:
        radial-gradient(
            circle at 8% 20%,
            rgba(188, 143, 68, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(188, 143, 68, 0.08),
            transparent 30%
        ),
        #fffdf8; */

        background:
    linear-gradient(to right, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.0) 100%),
    url(../img/swar-background.jpg) center center no-repeat;
  background-size: cover;
}


/* =========================================================
   BACKGROUND DECORATIONS
========================================================= */

/* .geet-founder-message::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    left: -180px;
    top: 50px;
    border: 1px solid rgba(151, 109, 45, 0.10);
    border-radius: 50%;
    animation: geetFounderRotate 25s linear infinite;
}

.geet-founder-message::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -140px;
    bottom: 30px;
    border: 1px solid rgba(151, 109, 45, 0.08);
    border-radius: 50%;
    animation: geetFounderRotateReverse 20s linear infinite;
} */


/* =========================================================
   MAIN ROW
========================================================= */

.geet-founder-message-row {
    position: relative;
    z-index: 2;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.geet-founder-message-content {
    padding-right: 45px;
    animation: geetFounderContentReveal 1s ease both;
}

.geet-founder-message-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    /* padding-left: 42px; */
    color: #a06d20;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* .geet-founder-message-label::before {
    content: "";
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background: #a06d20;
} */

.geet-founder-message-title {
    max-width: 700px;
    margin: 0;
    color: #811210 !important;
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 700;
}


/* =========================================================
   TITLE LINE
========================================================= */

/* .geet-founder-message-line {
    width: 75px;
    height: 3px;
    margin: 22px 0 25px;
    background: linear-gradient(
        90deg,
        #a06d20,
        #d8b16a
    );
    border-radius: 20px;
} */


/* =========================================================
   TEXT
========================================================= */

.geet-founder-message-text p {
    margin-bottom: 18px;
    color: #3b3b3b;
    font-size: 14.5px;
    line-height: 1.85;
    text-align: justify;
    margin-top: 20px;
}

.geet-founder-message-text p:last-child {
    margin-bottom: 0;
}

.geet-founder-message-final-text {
    color: #39271f !important;
    font-weight: 600;
}


/* =========================================================
   BOTTOM FULL WIDTH CONTENT
========================================================= */

.geet-founder-message-bottom-row {
    position: relative;
    z-index: 2;
    margin-top: 55px;
}

.geet-founder-message-bottom-content {
    width: 100%;
    padding-top: 5px;
}

.geet-founder-message-bottom-content
.geet-founder-message-text {
    width: 100%;
}

.geet-founder-message-bottom-content
.geet-founder-message-text p {
    margin-bottom: 20px;
}


/* =========================================================
   RIGHT IMAGE WRAPPER
========================================================= */

.geet-founder-message-image-wrap {
    position: relative;
    width: 100%;
    max-width: 470px;
    margin-left: auto;
    padding: 20px;
    animation: geetFounderImageReveal 1.1s ease both;
}


/* =========================================================
   IMAGE
========================================================= */

.geet-founder-message-image {
    position: relative;
    z-index: 3;
    overflow: hidden;
    width: 100%;
    height: 610px;
    border-radius: 220px 220px 15px 15px;
    background: #eeeeee;
    box-shadow:
        0 25px 60px rgba(45, 28, 21, 0.18),
        0 5px 15px rgba(45, 28, 21, 0.08);
}


/* NO IMAGE HOVER */

.geet-founder-message-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}


/* =========================================================
   GOLDEN IMAGE FRAME
========================================================= */

.geet-founder-message-image-frame {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: calc(100% - 5px);
    height: 100%;
    border: 1px solid #bd914f;
    border-radius: 220px 220px 15px 15px;
    transform: translate(16px, -15px);
}


/* =========================================================
   INNER IMAGE BORDER
========================================================= */

.geet-founder-message-image::after {
    content: "";
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 205px 205px 8px 8px;
    pointer-events: none;
}


/* =========================================================
   FOUNDER NAME
========================================================= */

.geet-founder-message-founder-name {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 45px;
    width: calc(100% - 40px);
    padding: 15px 20px;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    border-top: 3px solid #a06d20;
    box-shadow: 0 15px 35px rgba(45, 28, 21, 0.16);
}

.geet-founder-message-founder-name-title {
    display: block;
    color: #811210;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.geet-founder-message-founder-name-subtitle {
    display: block;
    margin-top: 4px;
    color: #5d514a;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}


/* =========================================================
   DECORATIVE DOTS
========================================================= */

.geet-founder-message-decoration {
    position: absolute;
    z-index: 7;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #b98a45;
    box-shadow: 0 0 0 7px rgba(185, 138, 69, 0.12);
}

.geet-founder-message-decoration-one {
    top: 105px;
    left: -8px;
    animation: geetFounderDotFloat 3s ease-in-out infinite;
}

.geet-founder-message-decoration-two {
    right: -7px;
    bottom: 120px;
    animation: geetFounderDotFloat 3.5s ease-in-out infinite reverse;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes geetFounderContentReveal {

    from {
        opacity: 0;
        transform: translateX(-45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes geetFounderImageReveal {

    from {
        opacity: 0;
        transform: translateX(45px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes geetFounderDotFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

@keyframes geetFounderRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes geetFounderRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .geet-founder-message {
        padding: 80px 0;
    }

    .geet-founder-message-content {
        padding-right: 20px;
    }

    .geet-founder-message-title {
        font-size: 36px;
    }

    .geet-founder-message-text p {
        font-size: 15px;
        line-height: 1.75;
    }

    .geet-founder-message-image-wrap {
        padding: 15px;
    }

    .geet-founder-message-image {
        height: 500px;
        border-radius: 190px 190px 15px 15px;
    }

    .geet-founder-message-image-frame {
        border-radius: 190px 190px 15px 15px;
    }

    .geet-founder-message-image::after {
        border-radius: 175px 175px 8px 8px;
    }

    .geet-founder-message-founder-name {
        bottom: 30px;
        width: calc(100% - 30px);
        padding: 12px 15px;
    }

    .geet-founder-message-founder-name-title {
        font-size: 22px;
    }

    .geet-founder-message-bottom-row {
        margin-top: 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .geet-founder-message {
        padding: 65px 0;
    }

    .geet-founder-message-row {
        display: flex;
        flex-direction: column;
    }

    .geet-founder-message-content {
        padding-right: 0;
        margin-bottom: 45px;
    }

    .geet-founder-message-label {
        font-size: 15px;
        letter-spacing: 1.5px;
        /* padding-left: 35px; */
    }

    .geet-founder-message-label::before {
        width: 25px;
    }

    .geet-founder-message-title {
        font-size: 31px;
        line-height: 1.25;
    }

    .geet-founder-message-line {
        margin: 20px 0 23px;
    }

    .geet-founder-message-text p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 16px;
    }


    /* IMAGE */

    .geet-founder-message-image-wrap {
        width: 90%;
        max-width: 420px;
        margin: 0 auto;
    }

    .geet-founder-message-image {
        height: 520px;
        border-radius: 190px 190px 12px 12px;
    }

    .geet-founder-message-image-frame {
        border-radius: 190px 190px 12px 12px;
        transform: translate(10px, -10px);
    }

    .geet-founder-message-image::after {
        border-radius: 175px 175px 6px 6px;
    }


    /* FOUNDER NAME */

    .geet-founder-message-founder-name {
        left: 50%;
        bottom: 25px;
        width: calc(100% - 30px);
        padding: 11px 15px;
    }

    .geet-founder-message-founder-name-title {
        font-size: 22px;
    }

    .geet-founder-message-founder-name-subtitle {
        font-size: 11px;
    }


    /* DECORATIVE DOTS */

    .geet-founder-message-decoration-one {
        top: 80px;
        left: -5px;
    }

    .geet-founder-message-decoration-two {
        right: -5px;
        bottom: 100px;
    }


    /* BOTTOM CONTENT */

    .geet-founder-message-bottom-row {
        margin-top: 35px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .geet-founder-message {
        padding: 50px 0;
    }

    .geet-founder-message-title {
        font-size: 27px;
    }

    .geet-founder-message-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    .geet-founder-message-image-wrap {
        width: 88%;
        padding: 10px;
    }

    .geet-founder-message-image {
        height: 450px;
        border-radius: 160px 160px 10px 10px;
    }

    .geet-founder-message-image-frame {
        border-radius: 160px 160px 10px 10px;
        transform: translate(8px, -8px);
    }

    .geet-founder-message-image::after {
        inset: 10px;
        border-radius: 150px 150px 5px 5px;
    }

    .geet-founder-message-founder-name {
        bottom: 20px;
        width: calc(100% - 20px);
        padding: 10px 12px;
    }

    .geet-founder-message-founder-name-title {
        font-size: 19px;
    }

    .geet-founder-message-founder-name-subtitle {
        font-size: 10px;
    }

    .geet-founder-message-bottom-row {
        margin-top: 30px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .geet-founder-message *,
    .geet-founder-message::before,
    .geet-founder-message::after {
        animation: none !important;
        transition: none !important;
    }

}
/*  */

/* =========================================================
   GEET VITAN - CULTURAL MILESTONES
========================================================= */

/* =========================================================
   GEET VITAN - CULTURAL MILESTONES
========================================================= */

.geet-milestone-section {
    position: relative;
    padding: 60px 0;
    background: #faf7f2;
    overflow: hidden;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.geet-milestone-header {
    max-width: 850px;
    margin: 0 auto 65px;
}

.geet-milestone-eyebrow {
    display: inline-block;
    margin-bottom: 14px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #a47735;
}

/* .art-learning-head {
    margin: 0 0 18px;

    font-family: "Playfair Display", serif;

    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;

    color: #2c211c;
} */

.geet-milestone-intro {
    max-width: 760px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;

    color: #6e625b;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.geet-milestone-main {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 65px;

    align-items: center;
}


/* =========================================================
   IMAGE
========================================================= */

.geet-milestone-image-column {
    width: 100%;
}

.geet-milestone-image-wrap {
    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 24px;

    background: #ded7cf;

    box-shadow:
        0 25px 60px rgba(48, 35, 25, 0.14);
}

.geet-milestone-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.geet-milestone-image-wrap:hover .geet-milestone-image {
    transform: scale(1.05);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.geet-milestone-image-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(25, 18, 14, 0.78),
        rgba(25, 18, 14, 0.08) 55%,
        transparent
    );

    pointer-events: none;
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.geet-milestone-image-caption {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 25px;

    z-index: 2;
}

.geet-milestone-image-caption span {
    display: inline-block;

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 0.3px;
}


/* =========================================================
   MILESTONE CONTENT COLUMN
========================================================= */

.geet-milestone-content-column {
    display: flex;

    flex-direction: column;

    gap: 25px;
}


/* =========================================================
   MILESTONE CARD
========================================================= */

.geet-milestone-card {
    position: relative;

    display: flex;

    flex-direction: column;

    gap: 10px;

    padding: 18px 30px;

    background: #ffffff;

    border: 1px solid rgba(164, 119, 53, 0.14);

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(48, 35, 25, 0.07);

    transition: all 0.35s ease;
}

.geet-milestone-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 42px rgba(48, 35, 25, 0.11);

    border-color: rgba(164, 119, 53, 0.35);
}


/* =========================================================
   YEAR BOX
========================================================= */

.geet-milestone-year-box {
    width: 82px;
    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: linear-gradient(145deg, #690d0b, #c61111);

    box-shadow:
        0 10px 25px rgba(164, 119, 53, 0.25);
}

.geet-milestone-year-box span {
    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 0.5px;
}


/* =========================================================
   CONTENT BELOW YEAR
========================================================= */

.geet-milestone-card-content {
    width: 100%;
}


/* Cultural Milestone / Peace Initiative */

.geet-milestone-label {
    display: inline-block;

    margin-bottom: 8px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #a47735;
}


/* Main Heading */

.geet-milestone-card-title {
    margin: 0 0 12px;

    font-family: "Playfair Display", serif;

    font-size: 24px;

    line-height: 1.3;

    color: #2c211c;
}


/* Paragraph */

.geet-milestone-card-text {
    margin: 0;

    font-size: 15px;

    line-height: 1.8;

    color: #6e625b;
}


/* =========================================================
   REPRESENTATION SECTION
========================================================= */

.geet-milestone-representation {
    margin-top: 34px;
    padding: 30px 50px;
    border-radius: 24px;
    background: #490605;
    position: relative;
    overflow: hidden;
}

.geet-milestone-representation::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -150px;
    right: -80px;

    border-radius: 50%;

    background: rgba(164, 119, 53, 0.16);
}


/* =========================================================
   REPRESENTATION HEADING
========================================================= */

.geet-milestone-representation-heading {
    position: relative;

    z-index: 1;

    max-width: 850px;

    margin-bottom: 35px;
}

.geet-milestone-small-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #d7ae67;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.geet-milestone-representation-title {
    margin: 0 0 14px;

    font-family: "Playfair Display", serif;

    font-size: 32px;

    line-height: 1.3;

    color: #ffffff;
}

.geet-milestone-representation-text {
    margin: 0;

    max-width: 780px;

    font-size: 15px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   LOCATION GRID
========================================================= */

.geet-milestone-location-grid {
    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 14px;
}

.geet-milestone-location {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 40px;

    padding: 8px 15px;

    border: 1px solid rgba(255, 255, 255, 0.13);

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.05);

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    transition: all 0.3s ease;
}

.geet-milestone-location:hover {
    background: rgba(164, 119, 53, 0.2);

    border-color: rgba(215, 174, 103, 0.45);

    transform: translateY(-3px);
}

.geet-milestone-location-icon {
    color: #d7ae67;

    font-size: 14px;
}


/* =========================================================
   MOBILE
   MAX WIDTH: 768PX
========================================================= */

@media (max-width: 768px) {

    .geet-milestone-section {
        padding: 65px 0;
    }


    /* Header */

    .geet-milestone-header {
        margin-bottom: 40px;

        padding: 0 10px;
    }

    .geet-milestone-eyebrow {
        font-size: 15px;

        letter-spacing: 1.5px;
    }

    .art-learning-head {
        font-size: 34px;

        line-height: 1.2;
    }

    .geet-milestone-intro {
        font-size: 14px;

        line-height: 1.7;
    }


    /* Main Layout */

    .geet-milestone-main {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* Image */

    .geet-milestone-image-wrap {
        aspect-ratio: 1 / 1;

        border-radius: 18px;
    }

    .geet-milestone-image-caption {
        left: 20px;

        right: 20px;

        bottom: 18px;
    }

    .geet-milestone-image-caption span {
        font-size: 13px;
    }


    /* Cards */

    .geet-milestone-content-column {
        gap: 18px;
    }

    .geet-milestone-card {
        gap: 18px;

        padding: 22px 18px;

        border-radius: 15px;
    }


    /* Year */

    .geet-milestone-year-box {
        width: 75px;

        height: 38px;

        border-radius: 10px;
    }

    .geet-milestone-year-box span {
        font-size: 17px;
    }


    /* Content */

    .geet-milestone-label {
        font-size: 10px;

        letter-spacing: 1.2px;
    }

    .geet-milestone-card-title {
        font-size: 21px;

        margin-bottom: 10px;
    }

    .geet-milestone-card-text {
        font-size: 14px;

        line-height: 1.7;
    }


    /* Representation */

    .geet-milestone-representation {
        margin-top: 40px;

        padding: 30px 20px;

        border-radius: 18px;
    }

    .geet-milestone-representation-title {
        font-size: 26px;
    }

    .geet-milestone-representation-text {
        font-size: 14px;

        line-height: 1.7;
    }


    /* Locations */

    .geet-milestone-location-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

        margin-top: 25px;
    }

    .geet-milestone-location {
        min-height: 40px;

        padding: 10px;

        font-size: 13px;
    }

    .geet-milestone-location:last-child {
        grid-column: span 2;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .geet-milestone-section {
        padding: 50px 0;
    }

    .art-learning-head {
        font-size: 30px;
    }


    /* Card remains vertical */

    .geet-milestone-card {
        display: flex;

        flex-direction: column;

        gap: 16px;
    }

    .geet-milestone-year-box {
        margin-bottom: 0;
    }

    .geet-milestone-card-title {
        font-size: 18px;
    }


    /* Representation */

    .geet-milestone-representation-title {
        font-size: 23px;
    }


    /* Locations */

    .geet-milestone-location-grid {
        grid-template-columns: 1fr;
    }

    .geet-milestone-location:last-child {
        grid-column: auto;
    }

}


/*  */

/* course detail page */

/* ==========================================
   Geet Vitan Course Detail Section
========================================== */

.geet-course-detail-section {
    position: relative;
    background: #fffdf8;
    overflow: hidden;
}

.geet-course-detail-row {
    min-height: 550px;
}

/* Image */

.geet-course-detail-image-wrap {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.geet-course-detail-image-wrap::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(184, 134, 11, 0.35);
    border-radius: 20px;
    z-index: 0;
    pointer-events: none;
}

.geet-course-detail-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    z-index: 1;
    transition: transform 0.5s ease;
}

/* .geet-course-detail-image-wrap:hover .geet-course-detail-image {
    transform: scale(1.04);
} */

/* Content */

.geet-course-detail-content {
    padding: 25px 20px 25px 45px;
}

.geet-course-detail-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;
    border-radius: 30px;
    background: rgba(184, 134, 11, 0.10);
    color: #78100f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.geet-course-detail-title {
    margin: 0;
    color: #78100f;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 300;
}

.geet-course-detail-divider {
    width: 70px;
    height: 3px;
    margin: 18px 0 20px;
    background: #78100f;
    border-radius: 5px;
}

.geet-course-detail-subtitle {
    margin-bottom: 15px;
    color: #4b3829;
    font-size: 21px;
    font-weight: 600;
}

.geet-course-detail-description {
    margin-bottom: 25px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/* Areas of Study */

.geet-course-detail-study {
    margin-top: 10px;
}

.geet-course-detail-study-title {
    margin-bottom: 15px;
    color: #2c2118;
    font-size: 20px;
    font-weight: 700;
}

.geet-course-detail-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.geet-course-detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.geet-course-detail-list-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.12);
    color: #b8860b;
    font-size: 13px;
}

/* ==========================================
   Mobile Responsive
   Max Width: 768px
========================================== */

@media (max-width: 768px) {

    .geet-course-detail-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .geet-course-detail-row {
        min-height: auto;
    }

    .geet-course-detail-image-wrap {
        height: 360px;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .geet-course-detail-image-wrap::after {
        left: 10px;
        bottom: 10px;
    }

    .geet-course-detail-content {
        padding: 25px 5px 10px;
    }

    .geet-course-detail-label {
        font-size: 13px;
        padding: 6px 13px;
    }

    .geet-course-detail-title {
        font-size: 32px;
    }

    .geet-course-detail-divider {
        margin: 15px 0 18px;
    }

    .geet-course-detail-subtitle {
        font-size: 19px;
    }

    .geet-course-detail-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .geet-course-detail-study-title {
        font-size: 18px;
    }

    .geet-course-detail-list li {
        font-size: 15px;
    }
}

/* Small Mobile */

@media (max-width: 480px) {

    .geet-course-detail-image-wrap {
        height: auto;
        border-radius: 15px;
    }

    .geet-course-detail-image {
        border-radius: 15px;
        height: auto !important;
    }

    .geet-course-detail-image-wrap::after {
        border-radius: 15px;
    }

    .geet-course-detail-title {
        font-size: 25px;
    }

    .geet-course-detail-subtitle {
        font-size: 18px;
    }

    .geet-course-detail-description {
        font-size: 14px;
    }

    .geet-course-detail-list li {
        align-items: flex-start;
    }

    .geet-course-detail-list-icon {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        font-size: 11px;
    }
}

/* Enquiry Now Button */
.course-enquiry-wrap {
    margin-top: 28px;
}

.course-enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 28px;
    background: #78100f;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #78100f;
    transition: all 0.3s ease;
}

.course-enquiry-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.course-enquiry-btn:hover {
    background: #ffffff;
    color: #78100f;
    text-decoration: none;
}

.course-enquiry-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .course-enquiry-wrap {
        margin-top: 22px;
    }

    .course-enquiry-btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 14px;
    }

}
/*  */


/* =========================================================
   GEET VITAN AWARDS & RECOGNITION
========================================================= */

.geet-award-recognition-section {
    position: relative;
    padding: 60px 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(196, 151, 45, 0.08),
            transparent 35%
        ),
        #fbf9f4;
    overflow: hidden;
}


/* Decorative Background */

.geet-award-recognition-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(166, 124, 0, 0.12);
    border-radius: 50%;
    top: -190px;
    right: -100px;
}

.geet-award-recognition-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(166, 124, 0, 0.10);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
}


.geet-award-recognition-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}


/* =========================================================
   HEADER
========================================================= */

.geet-award-recognition-header {
    max-width: 950px;
    margin: 0 auto 36px;
    margin-top: 40px !important;
}


.geet-award-recognition-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #a67c00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}


.geet-award-recognition-main-title {
    margin: 0 0 25px;
    color: #931311;
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}


.geet-award-recognition-intro {
    max-width: 900px;
    margin: 0 auto 15px;
    color: #66605a;
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   RECOGNITION HEADING
========================================================= */

.geet-award-recognition-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 850px;
    margin: 0 auto 65px;
    text-align: center;
}


/* .geet-award-recognition-heading-line {
    width: 5px;
    height: 65px;
    flex-shrink: 0;
    background: linear-gradient(
        to bottom,
        #d6aa3d,
        #9a6c00
    );
    border-radius: 10px;
} */


.geet-award-recognition-heading-title {
    margin: 0 0 5px;
    color: #931311;
    /* font-family: Georgia, "Times New Roman", serif; */
        font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 700 !important;
}


.geet-award-recognition-heading-text {
    margin: 0;
    color: #a67c00;
    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   TIMELINE
========================================================= */

.geet-award-recognition-timeline {
    position: relative;
}


/* Central Timeline */

.geet-award-recognition-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        #d8bd79 8%,
        #b48a2b 50%,
        #d8bd79 92%,
        transparent
    );
    transform: translateX(-50%);
}


/* =========================================================
   TIMELINE ITEM
========================================================= */

.geet-award-recognition-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 40px;
    margin-top: -100px;
}


.geet-award-recognition-timeline-item:last-child {
    margin-bottom: 0;
}


/* =========================================================
   NUMBER
========================================================= */

.geet-award-recognition-timeline-number {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbf9f4;
    border: 1px solid #c59a3a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}


.geet-award-recognition-timeline-number::before {
    content: "";
    position: absolute;
    width: 44px;
    height: 44px;
    border: 1px solid #e0c985;
    border-radius: 50%;
}


.geet-award-recognition-timeline-number span {
    position: relative;
    color: #8d6507;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   IMAGE
========================================================= */

.geet-award-recognition-timeline-image {
    position: relative;
}


.geet-award-recognition-image-frame {
    position: relative;
    min-height: auto;
    padding: 10px;
    background: #fff;
    border: 1px solid #e6d9bd;
    box-shadow: 0 20px 45px rgba(64, 43, 16, 0.10);
}


.geet-award-recognition-image-frame::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    border-top: 2px solid #b48a2b;
    border-left: 2px solid #b48a2b;
}


.geet-award-recognition-image-frame::after {
    content: "";
    position: absolute;
    right: -12px;
    bottom: -12px;
    width: 80px;
    height: 80px;
    border-right: 2px solid #b48a2b;
    border-bottom: 2px solid #b48a2b;
}


.geet-award-recognition-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}


/* Image Caption */

.geet-award-recognition-image-caption {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: #fff;
    background: rgba(38, 27, 15, 0.88);
    backdrop-filter: blur(8px);
}


.geet-award-recognition-image-caption span {
    color: #e2bc5d;
    font-size: 13px;
    font-weight: 700;
}


.geet-award-recognition-image-caption strong {
    font-size: 13px;
    font-weight: 500;
}


/* =========================================================
   CONTENT
========================================================= */

.geet-award-recognition-timeline-content {
    padding: 15px 0;
}


.geet-award-recognition-content-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}


.geet-award-recognition-award-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a67c00;
    background: #fff5d9;
    border: 1px solid #e2c87f;
    border-radius: 50%;
    font-size: 15px;
}


.geet-award-recognition-award-label {
    color: #a67c00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.geet-award-recognition-item-title {
    margin: 0;
    color: #302116;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    line-height: 1.3;
    font-weight: 700;
}


.geet-award-recognition-gold-line {
    width: 65px;
    height: 3px;
    margin: 20px 0 22px;
    background: linear-gradient(
        to right,
        #b48a2b,
        #e1c26e
    );
}


.geet-award-recognition-timeline-content p {
    margin: 0 0 17px;
    color: #66605a;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   HONOUR BOX
========================================================= */

.geet-award-recognition-honour-box {
    margin: 25px 0;
    /* padding: 22px; */
    background: #fffaf0;
    /* border-left: 3px solid #b48a2b; */
}


.geet-award-recognition-honour-box h5 {
    margin: 0 0 17px;
    color: #302116;
    font-size: 17px;
    font-weight: 700;
}


.geet-award-recognition-honour-grid {
    display: flex;
    flex-direction: column;
    gap: 11px;
}


.geet-award-recognition-honour-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4e4c4b;
    font-size: 15px;
    line-height: 1.5;
}


.geet-award-recognition-check {
    width: 10px;
    height: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    background: #a67c00;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   REVERSE ITEM
========================================================= */

.geet-award-recognition-timeline-item-reverse
.geet-award-recognition-timeline-content {
    grid-column: 1;
    grid-row: 1;
}


.geet-award-recognition-timeline-item-reverse
.geet-award-recognition-timeline-image {
    grid-column: 2;
    grid-row: 1;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.geet-award-recognition-bottom {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid #eadfc9;
    box-shadow: 0 12px 30px rgba(60, 40, 15, 0.06);
}


.geet-award-recognition-bottom-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #a67c00;
    background: #fff5d8;
    border: 1px solid #e0c27a;
    border-radius: 50%;
    font-size: 20px;
}


.geet-award-recognition-bottom p {
    margin: 0;
    color: #625b53;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .geet-award-recognition-section {
        padding: 80px 20px;
    }


    .geet-award-recognition-main-title {
        font-size: 38px;
    }


    .geet-award-recognition-timeline-item {
        gap: 50px;
    }


    .geet-award-recognition-item-title {
        font-size: 27px;
    }


    .geet-award-recognition-image-frame {
        min-height: 390px;
    }


    .geet-award-recognition-image {
        height: 370px;
    }

}


/* =========================================================
   MOBILE - MAX WIDTH 768px
========================================================= */

@media (max-width: 768px) {

    .geet-award-recognition-section {
        padding: 60px 15px;
    }


    /* Header */

    .geet-award-recognition-header {
        margin-bottom: 50px;
    }


    .geet-award-recognition-eyebrow {
        font-size: 15px;
        letter-spacing: 1.8px;
    }


    .geet-award-recognition-main-title {
        font-size: 29px;
        line-height: 1.3;
    }


    .geet-award-recognition-intro {
        font-size: 15px;
        line-height: 1.75;
    }


    /* Heading */

    .geet-award-recognition-heading {
        margin-bottom: 45px;
        gap: 14px;
        margin-top: -50px;
    }


    .geet-award-recognition-heading-line {
        width: 4px;
        height: 55px;
    }


    .geet-award-recognition-heading-title {
        font-size: 25px;
        line-height: 1.3;
    }


    .geet-award-recognition-heading-text {
        font-size: 14px;
    }


    /* Timeline */

    .geet-award-recognition-timeline::before {
        left: 18px;
        top: 0;
        bottom: 0;
        transform: none;
    }


    .geet-award-recognition-timeline-item,
    .geet-award-recognition-timeline-item-reverse {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
        margin-bottom: 65px;
        padding-left: 45px;
    }


    /* Number */

    .geet-award-recognition-timeline-number {
        top: 80px;
        left: 18px;
        width: 38px;
        height: 38px;
        transform: translate(-50%, 0);
    }


    .geet-award-recognition-timeline-number::before {
        width: 26px;
        height: 26px;
    }


    .geet-award-recognition-timeline-number span {
        font-size: 10px;
    }


    /* Image */

    .geet-award-recognition-timeline-image,
    .geet-award-recognition-timeline-item-reverse
    .geet-award-recognition-timeline-image {
        order: 1;
        width: 100%;
    }


    .geet-award-recognition-image-frame {
        /* min-height: 280px; */
        min-height: auto !important;
        padding: 7px;
    }


    .geet-award-recognition-image {
        width: 100%;
        height: 280px;
        min-height: 280px;
    }


    .geet-award-recognition-image-frame::before {
        top: -7px;
        left: -7px;
        width: 55px;
        height: 55px;
    }


    .geet-award-recognition-image-frame::after {
        right: -7px;
        bottom: -7px;
        width: 55px;
        height: 55px;
    }


    .geet-award-recognition-image-caption {
        left: 17px;
        bottom: 17px;
        padding: 9px 12px;
        gap: 7px;
    }


    .geet-award-recognition-image-caption span,
    .geet-award-recognition-image-caption strong {
        font-size: 11px;
    }


    /* Content */

    .geet-award-recognition-timeline-content,
    .geet-award-recognition-timeline-item-reverse
    .geet-award-recognition-timeline-content {
        order: 2;
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        padding: 0;
    }


    .geet-award-recognition-content-top {
        margin-bottom: 14px;
    }


    .geet-award-recognition-award-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }


    .geet-award-recognition-award-label {
        font-size: 11px;
        letter-spacing: 1px;
    }


    .geet-award-recognition-item-title {
        font-size: 24px;
        line-height: 1.35;
    }


    .geet-award-recognition-gold-line {
        margin: 16px 0 18px;
    }


    .geet-award-recognition-timeline-content p {
        font-size: 15px;
        line-height: 1.75;
    }


    /* Honour Box */

    .geet-award-recognition-honour-box {
        margin: 20px 0;
        padding: 18px;
    }


    .geet-award-recognition-honour-box h5 {
        font-size: 16px;
    }


    .geet-award-recognition-honour-item {
        align-items: flex-start;
        font-size: 14px;
    }


    /* Bottom */

    .geet-award-recognition-bottom {
        margin-top: 45px;
        padding: 22px;
        align-items: flex-start;
        gap: 14px;
    }


    .geet-award-recognition-bottom-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }


    .geet-award-recognition-bottom p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================================================
   SMALL MOBILE - MAX WIDTH 480px
========================================================= */

@media (max-width: 480px) {

    .geet-award-recognition-section {
        padding: 50px 12px;
    }


    .geet-award-recognition-main-title {
        font-size: 26px;
    }


    .geet-award-recognition-heading-title {
        font-size: 22px;
    }


    .geet-award-recognition-heading-text {
        font-size: 13px;
    }


    .geet-award-recognition-timeline-item,
    .geet-award-recognition-timeline-item-reverse {
        padding-left: 38px;
    }


    .geet-award-recognition-timeline::before {
        left: 14px;
    }


    .geet-award-recognition-timeline-number {
        left: 14px;
    }


    .geet-award-recognition-image,
    .geet-award-recognition-image-frame {
        height: auto;
        min-height: auto;
    }


    .geet-award-recognition-item-title {
        font-size: 22px;
    }


    .geet-award-recognition-bottom {
        flex-direction: column;
    }

}
/*  */

/* =========================================================
   GEET VITAN - AFFILIATIONS SECTION
========================================================= */

.geet-affiliation-section {
    position: relative;
    padding: 60px 0;
    background: #faf8f4;
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.geet-affiliation-heading {
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
}

.geet-affiliation-subtitle {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #da9224;
}

.geet-affiliation-title {
    margin: 0 0 22px;

    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;

    color: #2c211c;
}

.geet-affiliation-intro {
    max-width: 850px;
    margin: 0 auto 12px;

    font-size: 16px;
    line-height: 1.8;

    color: #665a52;
}

.geet-affiliation-intro strong {
    color: #2c211c;
    font-weight: 700;
}


/* =========================================================
   FEATURE
========================================================= */

.geet-affiliation-feature {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================================
   IMAGE
========================================================= */

.geet-affiliation-image-wrap {
    position: relative;

    width: 100%;
    height: 500px;

    overflow: hidden;

    border-radius: 24px;

    background: #e9e3dc;

    border: 1px solid #000;
}

.geet-affiliation-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;

    
}

/* .geet-affiliation-feature:hover .geet-affiliation-image {
    transform: scale(1.035);
} */


/* =========================================================
   CONTENT CARD - DESKTOP
========================================================= */

.geet-affiliation-content {
    position: relative;

    width: calc(100% - 120px);

    margin: 24px auto 0;

    padding: 42px 50px;

    background: #ffd493;

    border-radius: 20px;

    box-shadow:
        0 18px 50px rgba(48, 35, 25, 0.10);

    z-index: 2;
}


/* =========================================================
   LABEL
========================================================= */

.geet-affiliation-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 12px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;

    color: #931311;
}


/* =========================================================
   AFFILIATION TITLE
========================================================= */

.geet-affiliation-name {
    margin: 0 0 18px;

    font-family: "Playfair Display", serif;

    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;

    color: #2c211c;
}

.geet-affiliation-content p {
    margin: 0 0 14px;

    font-size: 15.5px;
    line-height: 1.8;

    color: #665a52;
}

.geet-affiliation-content p strong {
    color: #2c211c;
    font-weight: 700;
}


/* =========================================================
   HIGHLIGHT BOX
========================================================= */

.geet-affiliation-highlight {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 24px;
    padding: 16px 20px;

    background: #faf8f4;

    border-left: 3px solid #a47735;
    border-radius: 10px;
}

.geet-affiliation-highlight-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2c211c;
    color: #ffffff;

    font-size: 16px;
}

.geet-affiliation-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.geet-affiliation-highlight-text strong {
    font-size: 14px;
    color: #2c211c;
}

.geet-affiliation-highlight-text span {
    font-size: 13px;
    line-height: 1.5;
    color: #766a62;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .geet-affiliation-section {
        padding: 75px 0;
    }

    .geet-affiliation-title {
        font-size: 36px;
    }

    .geet-affiliation-image-wrap {
        height: 430px;
    }

    .geet-affiliation-content {
        width: calc(100% - 70px);
        padding: 38px 40px;
    }

    .geet-affiliation-name {
        font-size: 27px;
    }
}


/* =========================================================
   MOBILE - MAX WIDTH 768px
========================================================= */

@media (max-width: 768px) {

    .geet-affiliation-section {
        padding: 55px 0;
    }


    /* Section Heading */

    .geet-affiliation-heading {
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .geet-affiliation-subtitle {
        margin-bottom: 9px;

        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .geet-affiliation-title {
        margin-bottom: 16px;

        font-size: 29px;
        line-height: 1.25;
    }

    .geet-affiliation-intro {
        font-size: 14px;
        line-height: 1.7;
    }


    /* =====================================================
       IMAGE - AUTO HEIGHT ON MOBILE
    ===================================================== */

    .geet-affiliation-image-wrap {
        width: 100%;
        height: auto;

        overflow: hidden;

        border-radius: 16px;
    }

    .geet-affiliation-image {
        width: 100%;
        height: auto;

        display: block;

        object-fit: contain;

        transform: none !important;
    }


    /* =====================================================
       CONTENT - NO OVERLAP ON MOBILE
    ===================================================== */

    .geet-affiliation-content {
        width: 100%;

        margin: 25px 0 0;

        padding: 28px 22px;

        border-radius: 16px;

        box-shadow:
            0 12px 35px rgba(48, 35, 25, 0.08);
    }


    /* Label */

    .geet-affiliation-label {
        margin-bottom: 9px;

        font-size: 10px;
        letter-spacing: 1.3px;
    }


    /* Title */

    .geet-affiliation-name {
        margin-bottom: 14px;

        font-size: 23px;
        line-height: 1.3;
    }


    /* Paragraph */

    .geet-affiliation-content p {
        margin-bottom: 12px;

        font-size: 14px;
        line-height: 1.7;
    }


    /* Highlight */

    .geet-affiliation-highlight {
        align-items: flex-start;

        gap: 12px;

        margin-top: 20px;
        padding: 14px;
    }

    .geet-affiliation-highlight-icon {
        flex: 0 0 36px;

        width: 36px;
        height: 36px;

        font-size: 14px;
    }

    .geet-affiliation-highlight-text strong {
        font-size: 13px;
    }

    .geet-affiliation-highlight-text span {
        font-size: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .geet-affiliation-section {
        padding: 45px 0;
    }

    .geet-affiliation-heading {
        padding: 0 12px;
    }

    .geet-affiliation-title {
        font-size: 26px;
    }

    /* Image remains naturally sized */

    .geet-affiliation-image-wrap {
        height: auto;
        border-radius: 14px;
    }

    .geet-affiliation-image {
        height: auto;
        width: 100%;
    }


    /* Content stays completely separate */

    .geet-affiliation-content {
        width: 100%;

        margin-top: 20px;

        padding: 24px 18px;

        border-radius: 14px;
    }

    .geet-affiliation-name {
        font-size: 21px;
    }

    .geet-affiliation-content p {
        font-size: 13.5px;
        line-height: 1.7;
    }

    .geet-affiliation-highlight {
        margin-top: 18px;
    }
}
/*  */
/* ============================================ */

/* event page start */


/* ==========================================
   GEET SIGNATURE EVENTS
========================================== */

.geet-sig-event-section {
    position: relative;
    padding: 60px 0;
    background: #faf8f3;
    overflow: hidden;
}


/* ==========================================
   HEADING
========================================== */

.geet-sig-event-heading {
    max-width: 800px;
    margin: 0 auto 50px;
}

.geet-sig-event-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a46b2d;
}

.geet-sig-event-heading h2 {
    margin: 0 0 15px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #24170f;
}

.geet-sig-event-heading p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #6d625b;
}


/* ==========================================
   TABS
========================================== */

.geet-sig-event-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    padding: 7px;
    border: 1px solid #e5ddd3;
    border-radius: 50px;
    background: #fff;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.geet-sig-event-tab {
    position: relative;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 14px 27px;
    border-radius: 40px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: #655a52;
    cursor: pointer;
    transition: all 0.3s ease;
}

.geet-sig-event-tab:hover {
    color: #a46b2d;
}

.geet-sig-event-tab.active {
    color: #fff;
    background: #7a0d0b;
}


/* ==========================================
   EVENT CONTENT
========================================== */

.geet-sig-event-content {
    display: none;
    animation: geetSigEventFade 0.5s ease;
}

.geet-sig-event-content.active {
    display: block;
}

@keyframes geetSigEventFade {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ==========================================
   MAIN IMAGE
========================================== */

.geet-sig-event-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #eee;
}

.geet-sig-event-main-image a {
    display: block;
}

.geet-sig-event-main-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.geet-sig-event-main-image:hover img {
    transform: scale(1.04);
}


/* ==========================================
   CONTENT BOX
========================================== */

.geet-sig-event-content-box {
    position: relative;
    padding: 25px 20px 25px 50px;
}

.geet-sig-event-content-box h3 {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.2;
    color: #24170f;
    font-weight: 700;
}

.geet-sig-event-content-box p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: #6d625b;
}

.geet-sig-event-content-box h4 {
    margin: 25px 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #302219;
}


/* ==========================================
   LIST
========================================== */

.geet-sig-event-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.geet-sig-event-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    font-size: 15px;
    line-height: 1.6;
    color: #655a52;
}

.geet-sig-event-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a46b2d;
}


/* ==========================================
   GALLERY
========================================== */

.geet-sig-event-gallery {
    margin-top: 45px;
}

.geet-sig-event-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #eee;
}

.geet-sig-event-gallery-item a {
    display: block;
}

.geet-sig-event-gallery-item img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.geet-gallery-image-name {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 12px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.90),
        rgba(0, 0, 0, 0.55),
        transparent
    );
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    pointer-events: none;
}

.geet-sig-event-gallery-item:hover img {
    transform: scale(1.07);
}

.explore-more-gallery {
    display: table;
    margin: 15px auto 0;
    padding: 6px 22px;
    /* border: 1px solid #222; */
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #b28a4d;
}

.explore-more-gallery:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .explore-more-gallery {
        margin: 12px auto 0;
        padding: 8px 18px;
        font-size: 13px;
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .geet-sig-event-section {
        padding: 80px 0;
    }

    .geet-sig-event-heading h2 {
        font-size: 36px;
    }

    .geet-sig-event-content-box {
        padding: 20px 0 20px 25px;
    }

    .geet-sig-event-content-box h3 {
        font-size: 30px;
    }

    .geet-sig-event-main-image img {
        height: 380px;
    }

    .geet-sig-event-gallery-item img {
        height: 200px;
    }

}


/* ==========================================
   MOBILE
   max-width: 768px
========================================== */

@media (max-width: 768px) {

    .geet-sig-event-section {
        padding: 60px 0;
    }

    .geet-sig-event-heading {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .geet-sig-event-heading h2 {
        font-size: 30px;
    }

    .geet-sig-event-heading p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* --------------------------------
       MOBILE TABS
    -------------------------------- */

    .geet-sig-event-tabs {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 6px;
        padding: 6px;
        margin-bottom: 25px;
        border-radius: 15px;
        background: #fff;
    }

    .geet-sig-event-tab {
        width: 100%;
        padding: 14px 18px;
        border-radius: 10px;
        text-align: left;
        font-size: 14px;
    }


    /*
       IMPORTANT:
       Mobile par koi tab initially active nahi rahega.
       Click karne ke baad JS active class add karega.
    */

    .geet-sig-event-tab.active {
        background: #a46b2d;
        color: #fff;
    }


    /* --------------------------------
       EVENT CONTENT
    -------------------------------- */

    .geet-sig-event-content {
        width: 100%;
    }


    /* --------------------------------
       MAIN IMAGE
    -------------------------------- */

    .geet-sig-event-main-image {
        border-radius: 15px;
    }

    .geet-sig-event-main-image img {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }


    /* --------------------------------
       CONTENT
    -------------------------------- */

    .geet-sig-event-content-box {
        padding: 25px 0 0;
    }

    .geet-sig-event-content-box h3 {
        font-size: 27px;
        margin-bottom: 14px;
    }

    .geet-sig-event-content-box p {
        font-size: 14px;
        line-height: 1.75;
    }

    .geet-sig-event-content-box h4 {
        font-size: 17px;
        margin-top: 20px;
    }


    /* --------------------------------
       MOBILE GALLERY
    -------------------------------- */

    .geet-sig-event-gallery {
        margin-top: 30px;
        margin-left: -7px;
        margin-right: -7px;
    }

    .geet-sig-event-gallery > div {
        padding-left: 7px;
        padding-right: 7px;
        margin-bottom: 14px;
    }

    .geet-sig-event-gallery-item {
        border-radius: 12px;
    }

    .geet-sig-event-gallery-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

}
/* ========================================= */

/* geet vitan gallery page start */



/* =========================================
   GEET VITAN GALLERY
========================================= */

.geet-vtan-gallery {
    position: relative;
    padding: 90px 0 120px;
    background: #fff;
    overflow: hidden;
    margin-top: -50px;
}

.geet-vtan-gallery .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* =========================================
   HEADING
========================================= */

.geet-vtan-gallery-heading {
    text-align: center;
    margin-bottom: 35px;
}

.geet-vtan-gallery-heading span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a47742;
}

.geet-vtan-gallery-heading h2 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #252525;
}

.geet-vtan-gallery-heading p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #777;
}


/* =========================================
   TABS
========================================= */

.geet-vtan-gallery-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.geet-vtan-gallery-tab {
    border: 1px solid #ddd;
    outline: none;
    padding: 12px 30px;
    background: #fff;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.geet-vtan-gallery-tab:hover,
.geet-vtan-gallery-tab.active {
    background: #7a0d0b;
    color: #fff;
    border-color: #7a0d0b;
}


/* =========================================
   TAB CONTENT
========================================= */

.geet-vtan-gallery-content {
    display: none;
    animation: geetVtanGalleryFade 0.5s ease;
}

.geet-vtan-gallery-content.active {
    display: block;
}

@keyframes geetVtanGalleryFade {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   4 CARD ROW
========================================= */

.geet-vtan-gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* =========================================
   CARD
========================================= */

.geet-vtan-gallery-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    border: 1px solid #ba94247d;
    /* background: #ffedd2; */

    background:
    linear-gradient(to right, rgb(255 245 226 / 39%) 0%, rgba(2, 36, 91, 0) 100%), url(../img/drawn.jpg) bottom center no-repeat;
  background-size: cover;
  padding: 6px;
}

/* .geet-vtan-gallery-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.13);
} */


/* =========================================
   NORMAL IMAGE
========================================= */

.geet-vtan-gallery-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #eee;
    border-radius: 14px;
}

.geet-vtan-gallery-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* .geet-vtan-gallery-card:hover .geet-vtan-gallery-image img {
    transform: scale(1.07);
} */


/* =========================================
   PHOTO ZOOM
========================================= */

.geet-vtan-gallery-zoom {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #252525;
    font-size: 17px;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s ease;
}

/* .geet-vtan-gallery-card:hover .geet-vtan-gallery-zoom {
    transform: translate(-50%, -50%) scale(1);
} */


/* =========================================
   YOUTUBE VIDEO
========================================= */

.geet-vtan-youtube-wrapper {
    position: relative;
    width: 100%;
    height: 245px;
    overflow: hidden;
    background: #000;
}

.geet-vtan-youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* =========================================
   CARD CONTENT
========================================= */

.geet-vtan-gallery-card-content {
    padding: 18px 8px 20px;
    text-align: left;
    
    
}

.geet-vtan-gallery-card-content h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    color: #252525;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .geet-vtan-gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .geet-vtan-gallery-heading h2 {
        font-size: 36px;
    }

}


/* =========================================
   MOBILE - MAX WIDTH 768px
========================================= */

@media (max-width: 768px) {

    .geet-vtan-gallery {
        padding: 40px 0 90px;
    }

    .geet-vtan-gallery .container {
        padding: 0 15px;
    }

    .geet-vtan-gallery-heading {
        margin-bottom: 25px;
    }

    .geet-vtan-gallery-heading h2 {
        font-size: 30px;
    }

    .geet-vtan-gallery-heading p {
        font-size: 14px;
    }

    .geet-vtan-gallery-tabs {
        gap: 7px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .geet-vtan-gallery-tab {
        padding: 10px 22px;
        font-size: 14px;
    }

    .geet-vtan-gallery-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .geet-vtan-gallery-image,
    .geet-vtan-youtube-wrapper {
        height: 260px;
    }

    .geet-vtan-gallery-card-content {
        padding: 16px;
    }

    .geet-vtan-gallery-card-content h3 {
        font-size: 16px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .geet-vtan-gallery-heading h2 {
        font-size: 26px;
    }

    .geet-vtan-gallery-tabs {
        width: 100%;
    }

    .geet-vtan-gallery-tab {
        flex: 1;
        padding: 10px 12px;
    }

    .geet-vtan-gallery-image,
    .geet-vtan-youtube-wrapper {
        height: 230px;
    }

}

/* ========================================= */

/* alumni stories start */

/* =========================================
   GEET VITAN ALUMNI STORIES
========================================= */

.geet-alumni-stories-section {
    padding: 60px 0;
    background: #f8f6f1;
    overflow: hidden;
}


/* Section Heading */

.geet-alumni-stories-heading {
    max-width: 750px;
    margin: 0 auto 55px;
}

.geet-alumni-stories-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #a47b2c;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.geet-alumni-stories-heading h2 {
    margin: 0 0 12px;
    color: #241b14;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.geet-alumni-stories-heading p {
    margin: 0;
    color: #777;
    font-size: 16px;
}


/* Alumni Card */

.geet-alumni-stories-card {
    margin-bottom: 40px;
    padding: 25px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(53, 39, 22, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #ffc368;
}

.geet-alumni-stories-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(53, 39, 22, 0.14);
}


/* Image */

.geet-alumni-stories-image {
    position: relative;
    height: auto;
    overflow: hidden;
    border-radius: 18px;
    background: #eeeeee;
}

.geet-alumni-stories-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* .geet-alumni-stories-card:hover
.geet-alumni-stories-image img {
    transform: scale(1.06);
} */


/* Number Badge */

.geet-alumni-stories-number {
    position: absolute;
    left: 18px;
    bottom: 18px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #a47b2c;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
}


/* Content */

.geet-alumni-stories-content {
    padding: 15px 30px 15px 35px;
}

.geet-alumni-stories-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 13px;

    border-radius: 30px;
    background: rgba(164, 123, 44, 0.10);

    color: #a47b2c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.geet-alumni-stories-content h3 {
    margin: 0 0 12px;

    color: #241b14;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 700;
}

.geet-alumni-stories-content h4 {
    margin: 0 0 18px;

    color: #555555;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
}

.geet-alumni-stories-content h4 strong {
    color: #241b14;
    font-weight: 700;
}

.geet-alumni-stories-content p {
    margin: 0;

    color: #707070;
    font-size: 16px;
    line-height: 1.9;
}

.geet-alumni-stories-line {
    width: 65px;
    height: 3px;
    margin-top: 25px;

    border-radius: 10px;
    background: #a47b2c;
}


/* =========================================
   MOBILE - MAX WIDTH 768px
========================================= */

@media (max-width: 768px) {

    .geet-alumni-stories-section {
        padding: 60px 15px;
    }

    .geet-alumni-stories-heading {
        margin-bottom: 40px;
    }

    .geet-alumni-stories-heading h2 {
        font-size: 32px;
    }

    .geet-alumni-stories-heading p {
        font-size: 15px;
    }

    .geet-alumni-stories-card {
        margin-bottom: 30px;
        padding: 15px;
        border-radius: 18px;
    }

    .geet-alumni-stories-image {
        height: auto;
        border-radius: 14px;
    }

    .geet-alumni-stories-content {
        padding: 25px 5px 10px;
    }

    .geet-alumni-stories-content h3 {
        font-size: 26px;
    }

    .geet-alumni-stories-content h4 {
        font-size: 15px;
        line-height: 1.6;
    }

    .geet-alumni-stories-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .geet-alumni-stories-number {
        width: 45px;
        height: 45px;
        left: 14px;
        bottom: 14px;
        font-size: 15px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .geet-alumni-stories-section {
        padding: 50px 10px;
    }

    .geet-alumni-stories-heading h2 {
        font-size: 28px;
    }

    .geet-alumni-stories-image {
        height: auto;
    }

    .geet-alumni-stories-content h3 {
        font-size: 24px;
    }

    .geet-alumni-stories-content {
        padding-left: 2px;
        padding-right: 2px;
    }
}

/* ========================================== */


/* support arts page start */


/* =========================================
   GEET SUPPORT ART SECTION
========================================= */

.geet-support-art-section {
    position: relative;
    padding: 60px 20px;
    background:
        radial-gradient(circle at top left, rgba(191, 145, 54, 0.10), transparent 32%),
        radial-gradient(circle at bottom right, rgba(117, 42, 42, 0.08), transparent 32%),
        #faf7f1;
    overflow: hidden;
}

.geet-support-art-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.geet-support-art-heading {
    max-width: 850px;
    margin: 0 auto 35px;
    text-align: center;
}

.geet-support-art-tag {
    display: inline-block;
    position: relative;
    margin-bottom: 14px;
    padding-left: 45px;
    padding-right: 45px;
    color: #a77820;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* .geet-support-art-tag::before,
.geet-support-art-tag::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 32px;
    height: 1px;
    background: #c39a4b;
} */

.geet-support-art-tag::before {
    left: 0;
}

.geet-support-art-tag::after {
    right: 0;
}

.geet-support-art-heading h2 {
    margin: 0 0 18px;
    color: #811210;
    font-size: 34px !important;
    line-height: 1.2;
    font-weight: 700;
    font-family: "Cormorant Garamond", serif !important;
}

.geet-support-art-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #6d6259;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================
   INTRO
========================================= */

.geet-support-art-intro {
    max-width: 900px;
    margin: 0 auto 75px;
    padding: 30px 35px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(167, 120, 32, 0.15);
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(67, 39, 20, 0.07);
}

.geet-support-art-intro p {
    margin: 0 0 12px;
    color: #62574f;
    font-size: 16px;
    line-height: 1.8;
}

.geet-support-art-intro p:last-child {
    margin-bottom: 0;
}

.geet-support-art-intro strong {
    color: #7b302d;
    font-weight: 700;
}


/* =========================================
   SUB HEADING
========================================= */

.geet-support-art-subheading {
    margin-bottom: 26px;
    text-align: center;
}

.geet-support-art-subheading span {
    display: block;
    margin-bottom: 8px;
    color: #a77820;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.geet-support-art-subheading h3 {
    margin: 0;
    color: #811210;
     font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    line-height: 1.3;
}


/* =========================================
   SUPPORT CARDS
========================================= */

.geet-support-art-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 75px;
}

.geet-support-art-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(167, 120, 32, 0.13);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(67, 39, 20, 0.06);
    overflow: hidden;
    transition: all 0.35s ease;
}

.geet-support-art-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #b98527, #6e2828);
    transition: height 0.35s ease;
}

.geet-support-art-card:hover {
    transform: translateY(-7px);
    border-color: rgba(167, 120, 32, 0.3);
    box-shadow: 0 20px 45px rgba(67, 39, 20, 0.11);
}

.geet-support-art-card:hover::before {
    height: 100%;
}


/* =========================================
   ICON
========================================= */

.geet-support-art-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8ead0, #f4dfb7);
    color: #8b5d13;
    font-size: 25px;
    box-shadow: inset 0 0 0 1px rgba(167, 120, 32, 0.12);
}

.geet-support-art-card-content h4 {
    margin: 2px 0 10px;
    color: #811210;
    font-size: 20px;
    line-height: 1.35;
}

.geet-support-art-card-content p {
    margin: 0;
    color: #71675e;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   CTA
========================================= */

.geet-support-art-cta {
    position: relative;
    padding: 50px;
    border-radius: 25px;
    background: linear-gradient(135deg, #572626, #7b302d);
    box-shadow: 0 25px 60px rgba(75, 36, 36, 0.2);
    overflow: hidden;
}

.geet-support-art-cta::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: -130px;
    right: -80px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.geet-support-art-cta::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -100px;
    left: -60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.geet-support-art-cta-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto 30px;
    text-align: center;
}

.geet-support-art-cta-content span {
    display: inline-block;
    margin-bottom: 15px;
    color: #f3d48d;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.geet-support-art-cta-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
}


/* =========================================
   BUTTONS
========================================= */

.geet-support-art-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.geet-support-art-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.geet-support-art-btn-primary {
    background: #e2b85c;
    color: #4b2424;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.geet-support-art-btn-primary:hover {
    background: #f0cb76;
    color: #4b2424;
    transform: translateY(-3px);
}

.geet-support-art-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.geet-support-art-btn-secondary:hover {
    background: #ffffff;
    color: #572626;
    transform: translateY(-3px);
}


/* =========================================
   MOBILE RESPONSIVE
   MAX WIDTH 768PX
========================================= */

@media (max-width: 768px) {

   .geet-support-art-section {
    padding: 40px 15px 10px;
}

    .geet-support-art-heading {
        margin-bottom: 28px;
    }

    .geet-support-art-heading h2 {
        font-size: 28px !important;
    }

    .geet-support-art-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .geet-support-art-tag {
        font-size: 15px;
        letter-spacing: 1.5px;
        padding-left: 35px;
        padding-right: 35px;
    }

    .geet-support-art-tag::before,
    .geet-support-art-tag::after {
        width: 25px;
    }

    .geet-support-art-intro {
        margin-bottom: 55px;
        padding: 24px 20px;
        border-radius: 15px;
    }

    .geet-support-art-intro p {
        font-size: 14px;
        line-height: 1.75;
    }

    .geet-support-art-subheading {
        margin-bottom: 25px;
    }

    .geet-support-art-subheading span {
        font-size: 15px;
    }

    .geet-support-art-subheading h3 {
        font-size: 20px;
    }

    .geet-support-art-cards {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 55px;
    }

    .geet-support-art-card {
        gap: 16px;
        padding: 24px 20px;
        border-radius: 16px;
    }

    .geet-support-art-icon {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        border-radius: 13px;
        font-size: 21px;
    }

    .geet-support-art-card-content h4 {
        font-size: 18px;
        margin-bottom: 7px;
    }

    .geet-support-art-card-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .geet-support-art-cta {
        padding: 35px 20px;
        border-radius: 20px;
    }

    .geet-support-art-cta-content {
        margin-bottom: 25px;
    }

    .geet-support-art-cta-content span {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .geet-support-art-cta-content h3 {
        font-size: 16px;
        line-height: 1.7;
    }

    .geet-support-art-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .geet-support-art-btn {
        width: 100%;
        min-height: 46px;
        padding: 11px 18px;
        font-size: 13px;
    }
}
/* ========================================= */

/* ==========================================
   GEET CONTACT SECTION
========================================== */

.geet-contact-section {
    width: 100%;
    padding: 20px 60px 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    
}

.geet-contact-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;

    align-items: center;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.geet-contact-left {
    position: relative;
}

.geet-contact-heading {
    margin-bottom: 35px;
}

.geet-contact-label {
    display: inline-block;

    color: #b37715;
    font-size: 15px !important;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2.5px;

    margin-bottom: 10px;
}

.geet-contact-heading h2 {
    margin: 0;

    color: #880b09;

    font-family: "Cormorant Garamond", serif;

    font-size: 34px;
    line-height: 1.2;

    font-weight: 700;
}

.geet-contact-line {
    width: 65px;
    height: 3px;

    background: #b38a45;

    margin: 17px 0 18px;

    border-radius: 10px;
}

.geet-contact-heading p {
    max-width: 510px;

    margin: 0;

    color: #777;

    font-size: 15px;
    line-height: 1.8;
}


/* ==========================================
   CONTACT INFORMATION
========================================== */

.geet-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.geet-contact-info-box {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 18px 20px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(45, 30, 20, 0.06);

    transition: all 0.35s ease;
}

.geet-contact-info-box:hover {
    transform: translateX(7px);

    border-color: rgba(155, 35, 53, 0.25);

    box-shadow: 0 12px 35px rgba(45, 30, 20, 0.10);
}


/* ==========================================
   CONTACT ICON
========================================== */

.geet-contact-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #9b2335,
        #b83b4d
    );

    color: #ffffff;

    font-size: 18px;

    box-shadow: 0 8px 20px rgba(155, 35, 53, 0.20);

    transition: all 0.3s ease;
}

.geet-contact-info-box:hover .geet-contact-icon {
    transform: scale(1.08) rotate(5deg);
}


/* ==========================================
   CONTACT TEXT
========================================== */

.geet-contact-info-text {
    min-width: 0;
}

.geet-contact-info-text span {
    display: block;

    margin-bottom: 4px;

    color: #9b2335;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.geet-contact-info-text a {
    color: #40322d;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.3s ease;

    word-break: break-word;
}

.geet-contact-info-text a:hover {
    color: #9b2335;
}

.geet-contact-info-text p {
    margin: 0;

    color: #000000;

    font-size: 15px;

    line-height: 1.6;
}


/* ==========================================
   RIGHT MAP
========================================== */

.geet-contact-right {
    width: 100%;
}

.geet-contact-map-wrapper {
    position: relative;

    padding: 10px;

    background: #ffffff;

    border-radius: 24px;

    box-shadow:
        0 20px 60px rgba(45, 30, 20, 0.12);

    border: 1px solid #eeeeee;
}

.geet-contact-map {
    width: 100%;
    height: 470px;

    overflow: hidden;

    border-radius: 18px;

    position: relative;
}

.geet-contact-map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* ==========================================
   MAP BADGE
========================================== */

.geet-contact-map-badge {
    position: absolute;

    left: 28px;
    bottom: 28px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    background: rgba(255, 255, 255, 0.96);

    border-radius: 50px;

    color: #30201b;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.geet-contact-map-badge i {
    color: #9b2335;

    font-size: 16px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .geet-contact-section {
        padding: 70px 20px;
    }

    .geet-contact-container {
        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .geet-contact-heading h2 {
        font-size: 38px;
    }

    .geet-contact-map {
        height: 420px;
    }
}


/* ==========================================
   MOBILE - MAX WIDTH 768px
========================================== */

@media (max-width: 768px) {

    .geet-contact-section {
        padding: 10px 15px 30px !important;
    }

    .geet-contact-container {
        display: flex;
        flex-direction: column;

        gap: 40px;
    }

    .geet-contact-left,
    .geet-contact-right {
        width: 100%;
    }

    .geet-contact-heading {
        margin-bottom: 28px;
    }

    .geet-contact-heading h2 {
        font-size: 34px;
    }

    .geet-contact-heading p {
        font-size: 14px;
        line-height: 1.75;
    }

    .geet-contact-info {
        gap: 13px;
    }

    .geet-contact-info-box {
        padding: 15px;

        gap: 14px;
    }

    .geet-contact-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;

        font-size: 16px;
    }

    .geet-contact-info-text a,
    .geet-contact-info-text p {
        font-size: 14px;
    }

    .geet-contact-map-wrapper {
        padding: 7px;

        border-radius: 18px;
    }

    .geet-contact-map {
        height: 350px;

        border-radius: 13px;
    }

    .geet-contact-map-badge {
        left: 20px;
        bottom: 20px;

        padding: 10px 15px;

        font-size: 12px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .geet-contact-section {
        padding: 10px 12px 30px !important;
    }

    .geet-contact-heading h2 {
        font-size: 30px;
    }

    .geet-contact-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .geet-contact-info-box {
        padding: 14px;
    }

    .geet-contact-icon {
        width: 43px;
        height: 43px;
        min-width: 43px;
    }

    .geet-contact-map {
        height: 300px;
    }

    .geet-contact-map-badge {
        left: 15px;
        bottom: 15px;
    }
}
/* ============================================ */


/* enquiry page start */

.form-section
{
  padding: 60px;
}

@media(max-width:768px)
{
  .form-section
{
  padding: 40px 14px 10px !important;
}
}

.enquiry-form {
  border: 1px solid #b97a6b;
  padding: 34px;
  border-radius: 10px;
  background-color: rgb(248, 248, 248);
  margin-top: -30px;
  margin-bottom: 50px;
}

.enquiry-image img {
  max-width: 90%;
}

.captcha-img {
  border-radius: 8px;
  border: 1px solid #ddd;
}


/* enquiry page start */
.submit-color
{
    background-color: rgb(116 25 27) !important;
}

.submit-color:hover
{
    background-color: rgb(136, 40, 42) !important;
    color: #ffffff;
    border: 1px solid #000 !important;
    outline: none !important;
}
/* ============================================================ */

.about-tagline span {
    display: inline !important;
}

@media (max-width: 768px) {
    .about-tagline span {
        display: block !important;
    }

    .about-tagline span + span {
        margin-top: 8px !important;
    }
}



/*---17-8-26----*/

 /* Mobile */
        @media (max-width: 767.98px) {

            .scrollspy-navbar {
                overflow-x: auto;
                white-space: nowrap;
            }

            .scrollspy-navbar .nav {
                flex-wrap: nowrap;
                min-width: max-content;
            }

            .scrollspy-navbar .nav-link {
                padding: 12px 15px;
                font-size: 14px;
            }

            .scrollspy-section {
                min-height: 80vh;
                padding: 80px 15px;
            }
        }
        /* ====================================== */


        .geet-left-event-head {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
    width: 100%;
    margin-top: 40px !important;
}

.geet-left-event-head-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #3a3a3a;
    margin-right: 10px;
}

.geet-left-event-head-number {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: #7a0d0b;
    letter-spacing: 1px;
}

.geet-left-event-head-line {
    position: relative;
    flex: 0 0 80px;
    height: 1px;
    background: #d88609;
    margin-left: 15px;
}

.geet-left-event-head-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #d88609;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* in gallery view all photo section start */


/* ==========================================
   VIEW ALL PHOTOS
========================================== */

.view-all-photos-section {
    padding: 10px 0 40px !important;
}

.view-all-photos-row {
    margin-left: -10px;
    margin-right: -10px;
}

.view-all-photos-col {
    padding: 10px;
}

.view-all-photos-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.view-all-photos-card a {
    display: block;
    text-decoration: none;
}

.view-all-photos-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.view-all-photos-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Bottom Black Shadow */
.view-all-photos-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 45px 18px 18px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.65) 45%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

.view-all-photos-overlay h5 {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    transform: translateY(8px);
}

/* Hover Effect */
.view-all-photos-card:hover img {
    transform: scale(1.08);
}

.view-all-photos-card:hover .view-all-photos-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0) 100%
    );
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .view-all-photos-section {
        padding: 15px 0 40px;
    }

    .view-all-photos-row {
        margin-left: -6px;
        margin-right: -6px;
    }

    .view-all-photos-col {
        padding: 6px;
    }

    .view-all-photos-image {
        height: 150px;
    }

    .view-all-photos-overlay {
        padding: 35px 12px 12px;
    }

    .view-all-photos-overlay h5 {
        font-size: 12px;
    }
}
/* ========================================== */


/* in events drop down year  */


/* ==========================================
   SIGNATURE EVENTS SECTION
========================================== */

.geet-year-wise-event-section {
    position: relative;
    padding: 80px 0;
    background: #faf8f3;
    overflow: hidden;
}


/* ==========================================
   HEADING
========================================== */

.geet-year-wise-event-heading {
    max-width: 800px;
    margin: 0 auto 45px;
}

.geet-year-wise-event-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    color: #da9224;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.geet-year-wise-event-heading h2 {
    margin: 0 0 15px;
    color: #811210;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.2;
    font-family: "Cormorant Garamond", serif;
}

.geet-year-wise-event-heading p {
    margin: 0;
    color: #756d65;
    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================
   EVENT TABS
========================================== */

.geet-year-wise-event-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1050px;
    margin: 0 auto 45px;
}

.geet-year-wise-event-tab {
    position: relative;
}

.geet-year-wise-event-tab-btn {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #e5ddd3;
    border-radius: 10px;
    background: #fff;
    color: #3c332c;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.geet-year-wise-event-tab-btn i {
    margin-left: 7px;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.geet-year-wise-event-tab.open
.geet-year-wise-event-tab-btn i {
    transform: rotate(180deg);
}

.geet-year-wise-event-tab-btn:hover {
    border-color: #b18a63;
}


/* ==========================================
   YEAR DROPDOWN
========================================== */

.geet-year-wise-event-years {
    display: none;
    position: absolute;
    z-index: 20;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    padding: 7px;
    border: 1px solid #e5ddd3;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(60, 51, 44, 0.12);
}

.geet-year-wise-event-tab.open
.geet-year-wise-event-years {
    display: block;
}

.geet-year-wise-event-year-btn {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #51483f;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.geet-year-wise-event-year-btn:hover {
    background: #f6f1eb;
    color: #9a7047;
}


/* ==========================================
   EVENT DETAILS
========================================== */

.geet-year-wise-event-details {
    max-width: 1100px;
    margin: 0 auto;
}

.geet-year-wise-event-content {
    display: none;
    padding: 35px;
    border: 1px solid #ffc368bd;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(55, 44, 34, 0.06);
}

.geet-year-wise-event-content.show {
    display: block;
}


/* ==========================================
   EVENT IMAGE
========================================== */

.geet-year-wise-event-image {
    overflow: hidden;
    border-radius: 14px;
}

.geet-year-wise-event-image img {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.geet-year-wise-event-image:hover img {
    transform: scale(1.04);
}


/* ==========================================
   EVENT CONTENT
========================================== */

.geet-year-wise-event-text {
    padding: 10px 10px 10px 30px;
}

.geet-year-wise-event-year-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #a67c52;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.geet-year-wise-event-text h3 {
    margin: 0 0 15px;
    color: #2d251f;
    font-size: 24px;
    font-weight: 600;
}

.geet-year-wise-event-text p {
    margin-bottom: 13px;
    color: #70675f;
    font-size: 15px;
    line-height: 1.8;
}

.geet-year-wise-event-text h4 {
    margin: 22px 0 12px;
    color: #3a3028;
    font-size: 17px;
    font-weight: 600;
}

.geet-year-wise-event-text ul {
    margin: 0;
    padding-left: 20px;
}

.geet-year-wise-event-text li {
    margin-bottom: 7px;
    color: #ba6902;
    font-size: 15px;
    line-height: 1.6;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .geet-year-wise-event-section {
        padding: 55px 0;
    }

    .geet-year-wise-event-heading {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .geet-year-wise-event-heading h2 {
        font-size: 28px;
    }

    .geet-year-wise-event-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .geet-year-wise-event-tabs {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .geet-year-wise-event-tab-btn {
        padding: 14px 10px;
        font-size: 13px;
    }

    .geet-year-wise-event-tab-btn i {
        margin-left: 4px;
    }

    .geet-year-wise-event-content {
        padding: 20px;
        border-radius: 14px;
    }

    .geet-year-wise-event-image img {
        height: 250px;
    }

    .geet-year-wise-event-text {
        padding: 25px 0 0;
    }

    .geet-year-wise-event-text h3 {
        font-size: 20px;
    }

    .geet-year-wise-event-text p {
        font-size: 14px;
        line-height: 1.75;
    }

    .geet-year-wise-event-text h4 {
        font-size: 16px;
    }

    .geet-year-wise-event-text li {
        font-size: 14px;
    }
}


/* active tab */


/* Active Event Tab */
.geet-year-wise-event-tab.active .geet-year-wise-event-tab-btn {
    background: #811210;
    border-color: #811210;
    color: #fff;
}

.geet-year-wise-event-tab.active .geet-year-wise-event-tab-btn i {
    color: #fff;
}



/* ==========================================
   PHOTO HIGHLIGHTS
========================================== */

.geet-event-highlight-photo {
    margin-top: 45px;
}

.geet-event-highlight-photo-heading {
    margin-bottom: 25px;
}

.geet-event-highlight-photo-heading h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    position: relative;
    display: inline-block;
    font-family: "Rubik", sans-serif !important;
}

/* .geet-event-highlight-photo-heading h3::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    margin-top: 8px;
    background: #b78b45;
    border-radius: 5px;
} */


/* ==========================================
   PHOTO CARD
========================================== */

.geet-event-highlight-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #eee;
    height: 200px;
}

.geet-event-highlight-photo-card a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.geet-event-highlight-photo-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/* ==========================================
   DARK BOTTOM SHADOW
========================================== */

.geet-event-highlight-photo-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    min-height: 80px;

    display: flex;
    align-items: flex-end;

    padding: 15px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.45),
        transparent
    );

    pointer-events: none;
}

.geet-event-highlight-photo-overlay span {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}


/* ==========================================
   HOVER
========================================== */

.geet-event-highlight-photo-card:hover img {
    transform: scale(1.06);
}


/* ==========================================
   MOBILE
   Max Width: 768px
========================================== */

@media (max-width: 768px) {

    .geet-event-highlight-photo {
        margin-top: 35px;
    }



    .geet-event-highlight-photo-heading {
        margin-bottom: 20px;
    }

    .geet-event-highlight-photo-heading h3 {
        font-size: 20px;
    }

    .geet-event-highlight-photo-card {
        height: 150px !important;
        border-radius: 8px;
    }

    .geet-event-highlight-photo-overlay {
        min-height: 65px;
        padding: 10px;
    }

    .geet-event-highlight-photo-overlay span {
        font-size: 13px;
    }

}

/* ==========================================
   EVENT HORIZONTAL DIVIDER
========================================== */

.geet-year-wise-event-divider {
    position: relative;
    width: 100%;
    height: 1px;
    margin: 45px 0 40px;
    background: linear-gradient(
        to right,
        transparent,
        #d8cfc3 20%,
        #c8b8a6 50%,
        #d8cfc3 80%,
        transparent
    );
}

.geet-year-wise-event-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    background: #faf8f3;
    border: 1px solid #b8a28c;
    transform: translate(-50%, -50%) rotate(45deg);
}
/* ================================================== */



/* =========================================
   GEET VITAN GALLERY
========================================= */

.geet-new-year-gallery {
    position: relative;
    padding: 20px 0 80px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================
   CONTAINER
========================================= */

.geet-new-year-gallery .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* =========================================
   HEADING
========================================= */

.geet-new-year-gallery-heading {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.geet-new-year-gallery-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #da9224;
}

.geet-new-year-gallery-heading h2 {
    margin: 0 0 15px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
    color: #811210 !important;
    font-family: "Cormorant Garamond", serif;
}

.geet-new-year-gallery-heading p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
}


/* =========================================
   TABS
========================================= */

.geet-new-year-gallery-tabs {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 40px;
}


/* =========================================
   TAB WRAP
========================================= */

.geet-new-year-gallery-tab-wrap {
    position: relative;
}


/* =========================================
   TAB BUTTON
========================================= */

.geet-new-year-gallery-tab {
    min-width: 140px;
    height: 40px;
    padding: 0 22px;
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #333333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.geet-new-year-gallery-tab:hover {
    background: #811210;
    border-color: #811210;
    color: #ffffff;
}


/* Active Tab */

.geet-new-year-gallery-tab-active {
    background: #811210;
    border-color: #811210;
    color: #ffffff;
}


/* =========================================
   PHOTOS ARROW
========================================= */

#geet-new-year-gallery-photo-tab i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

#geet-new-year-gallery-photo-tab.geet-new-year-gallery-tab-active i {
    transform: rotate(180deg);
}


/* =========================================
   PHOTO YEAR DROPDOWN
========================================= */

.geet-new-year-gallery-photo-dropdown {
    display: none;
    position: absolute;
    z-index: 100;
    top: 55px;
    left: 0;
    width: 100%;
    min-width: 140px;
    padding: 5px 0;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}


/* Show Dropdown */

.geet-new-year-gallery-tab-wrap.geet-new-year-gallery-dropdown-open
.geet-new-year-gallery-photo-dropdown {
    display: block;
}


/* =========================================
   YEAR BUTTON
========================================= */

.geet-new-year-gallery-year-item {
    display: block;
    width: 100%;
    padding: 8px 16px;
    border: 0;
    background: #ffffff;
    color: #333333;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.geet-new-year-gallery-year-item:hover {
    background: #f7f2eb;
    color: #9a6a27;
}


/* =========================================
   CONTENT
========================================= */

.geet-new-year-gallery-content {
    display: none;
}


/* =========================================
   YEAR CONTENT
========================================= */

.geet-new-year-gallery-year-content {
    display: none;
}


/* =========================================
   PHOTO CARD
========================================= */

.geet-new-year-gallery-card {
    height: 100%;
    /* background: #ffffff; */

    background:
    linear-gradient(to right, rgb(255 245 226 / 39%) 0%, rgba(2, 36, 91, 0) 100%), url(../img/drawn.jpg) bottom center no-repeat;
  background-size: cover;

    border: 1px solid #d3b6a2;
    overflow: hidden;
    transition: all 0.35s ease;
    padding: 6px;
    border-radius: 14px;
}

/* .geet-new-year-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
} */


/* =========================================
   PHOTO IMAGE
========================================= */

.geet-new-year-gallery-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 14px;
}

.geet-new-year-gallery-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* .geet-new-year-gallery-card:hover
.geet-new-year-gallery-image img {
    transform: scale(1.06);
} */


/* =========================================
   PHOTO NAME
========================================= */

.geet-new-year-gallery-card-content {
    padding: 16px 18px;
}

.geet-new-year-gallery-card-content h3 {
    margin: 0;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    color: #222222;
}


/* =========================================
   VIEW ALL
========================================= */

.geet-new-year-gallery-view-wrap {
    text-align: center;
    margin-top: 40px;
}

.geet-new-year-gallery-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    background: #9a6a27;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.geet-new-year-gallery-view-btn:hover {
    background: #76501d;
    color: #ffffff;
}

.geet-new-year-gallery-view-btn i {
    transition: transform 0.3s ease;
}

.geet-new-year-gallery-view-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   VIDEO CARD
========================================= */

.geet-new-year-gallery-video-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #eeeeee;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* .geet-new-year-gallery-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
} */

.geet-new-year-gallery-video {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.geet-new-year-gallery-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.geet-new-year-gallery-video-content {
    padding: 16px 18px;
}

.geet-new-year-gallery-video-content h3 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #222222;
}


/* =========================================
   MEDIA CARD
========================================= */

.geet-new-year-gallery-media-card {
    height: 100%;
    /* background: #ffffff; */

    background:
    linear-gradient(to right, rgb(255 245 226 / 39%) 0%, rgba(2, 36, 91, 0) 100%), url(../img/drawn.jpg) bottom center no-repeat;
  background-size: cover;

    border: 1px solid #d09c26;
    overflow: hidden;
    transition: all 0.35s ease;
    padding: 6px;
    border-radius: 14px;
}

/* .geet-new-year-gallery-media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
} */

.geet-new-year-gallery-media-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 14px;
}

.geet-new-year-gallery-media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* .geet-new-year-gallery-media-card:hover
.geet-new-year-gallery-media-image img {
    transform: scale(1.06);
} */

.geet-new-year-gallery-media-content {
    padding: 16px 18px;
}

.geet-new-year-gallery-media-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #000000;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .geet-new-year-gallery {
        padding: 55px 0;
    }


    /* Heading */

    .geet-new-year-gallery-heading {
        margin-bottom: 30px;
    }

    .geet-new-year-gallery-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .geet-new-year-gallery-heading h2 {
        font-size: 30px;
    }

    .geet-new-year-gallery-heading p {
        font-size: 14px;
    }


    /* Tabs */

    .geet-new-year-gallery-tabs {
        gap: 7px;
        margin-bottom: 35px;
    }

    .geet-new-year-gallery-tab {
        min-width: 0;
        width: 100%;
        height: 45px;
        padding: 0 12px;
        font-size: 13px;
    }


    /* Photo Dropdown */

    .geet-new-year-gallery-photo-dropdown {
        top: 51px;
        min-width: 130px;
    }


    /* Images */

    .geet-new-year-gallery-image,
    .geet-new-year-gallery-media-image {
        height: 210px;
    }


    /* Photo Name */

    .geet-new-year-gallery-card-content {
        padding: 13px 15px;
    }

    .geet-new-year-gallery-card-content h3 {
        font-size: 15px;
    }


    /* View All */

    .geet-new-year-gallery-view-wrap {
        margin-top: 30px;
    }


    /* Media */

    .geet-new-year-gallery-media-content {
        padding: 14px 15px;
    }

    .geet-new-year-gallery-media-content p {
        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .geet-new-year-gallery-heading h2 {
        font-size: 26px;
    }

    .geet-new-year-gallery-tabs {
        gap: 5px;
    }

    .geet-new-year-gallery-tab {
        padding: 0 8px;
        font-size: 12px;
    }

    .geet-new-year-gallery-image,
    .geet-new-year-gallery-media-image {
        height: 190px;
    }

}

/* =========================================
   VITAN GALLERY BUTTON
========================================= */

.geet-new-year-gallery-card-content {
    padding: 16px 8px;
    text-align: left;
}

.geet-new-year-gallery-card-content h3 {
    margin: 0;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    /* font-weight: 600; */
    color: #222222;
}


/* =========================================
   BUTTON
========================================= */

.vitan-gall-btn {
    display: flex;
    width: fit-content;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin: 12px auto 0;

    padding: 10px 18px;

    background: #ab7f41;
    color: #ffffff;

    /* border: 1px solid #9a6a27; */
    border-radius: 50px;

    text-decoration: none;

    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;

    transition: all 0.3s ease;
}

.vitan-gall-btn:hover {
    background: #811210;
    border-color: #811210;
    color: #ffffff;
    text-decoration: none;
}

.vitan-gall-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.vitan-gall-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .geet-new-year-gallery-card-content {
        padding: 14px 15px;
    }

    .vitan-gall-btn {
        margin: 10px auto 0;
        padding: 8px 14px;
        font-size: 12px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .vitan-gall-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

}
/* ======================================================= */

/* =========================================
   HOME PAGE ALUMNI SECTION
========================================= */

/* =========================================
   ALUMNI SECTION
========================================= */

.home-page-alumni-section {
    position: relative;
    padding: 40px 0;
    background: #faf8f3;
    overflow: hidden;
}


/* =========================================
   DECORATIVE BACKGROUND
========================================= */

.home-page-alumni-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -180px;
    left: -150px;
    border-radius: 50%;
    background: rgba(190, 151, 76, 0.08);
}

.home-page-alumni-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -150px;
    bottom: -160px;
    border-radius: 50%;
    background: rgba(190, 151, 76, 0.07);
}


/* =========================================
   CONTAINER
========================================= */

.home-page-alumni-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
    padding: 0 15px;
}


/* =========================================
   HEADING
========================================= */

.home-page-alumni-heading {
    margin-bottom: 50px;
    text-align: center;
}


.home-page-alumni-subtitle {
    display: inline-block;

    margin-bottom: 10px;

    color: #b28a42;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* .home-page-alumni-subtitle::before,
.home-page-alumni-subtitle::after {
    content: "";

    display: inline-block;

    width: 35px;
    height: 1px;

    margin: 0 12px;

    vertical-align: middle;

    background: #c6a15b;
} */


.home-page-alumni-title {
    margin: 0;

    color: #811210 !important;

    font-family: "Cormorant Garamond", serif;

    font-size: 34px;
    /* font-weight: 700; */

    /* line-height: 1.2; */
}


/* =========================================
   HEADING LINE
========================================= */

.home-page-alumni-heading-line {
    position: relative;

    width: 70px;
    height: 2px;

    margin: 18px auto 0;

    background: #c59b4d;
}


.home-page-alumni-heading-line::after {
    content: "";

    position: absolute;

    top: -3px;
    left: 50%;

    width: 8px;
    height: 8px;

    border: 1px solid #c59b4d;

    background: #faf8f3;

    transform: translateX(-50%) rotate(45deg);
}


/* =========================================
   CARD ROW
========================================= */

.home-page-alumni-row {
    display: flex;

    gap: 28px;

    align-items: stretch;
}


/* =========================================
   CARD
========================================= */

.home-page-alumni-card {
    width: calc(33.333% - 19px);
}


/* =========================================
   CARD INNER
========================================= */

.home-page-alumni-card-inner {
    position: relative;

    height: 100%;

    padding: 10px;

    overflow: hidden;

    /*
       TOP-LEFT     = 0
       TOP-RIGHT    = 50px
       BOTTOM-RIGHT = 0
       BOTTOM-LEFT  = 50px
    */

    border-radius: 0 50px 0 50px;

    border: 1px solid rgba(190, 151, 76, 0.30);

    background: #ffffff;

    box-shadow:
        0 15px 40px rgba(50, 40, 20, 0.08);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}


/* =========================================
   INNER FANCY BORDER
========================================= */

.home-page-alumni-card-inner::before {
    content: "";

    position: absolute;

    top: 7px;
    right: 7px;
    bottom: 7px;
    left: 7px;

    z-index: 1;

    border-radius: 0 42px 0 42px;

    border: 1px solid rgba(197, 157, 82, 0.18);

    pointer-events: none;

    transition: border-color 0.4s ease;
}


/* =========================================
   CARD HOVER
========================================= */

/* .home-page-alumni-card-inner:hover {
    transform: translateY(-12px);

    border-color: rgba(190, 151, 76, 0.65);

    box-shadow:
        0 25px 55px rgba(50, 40, 20, 0.15);
} */


.home-page-alumni-card-inner:hover::before {
    border-color: rgba(197, 157, 82, 0.45);
}


/* =========================================
   IMAGE BOX
========================================= */

.home-page-alumni-image-box {
    position: relative;

    padding: 8px;
}


/* =========================================
   IMAGE
========================================= */

.home-page-alumni-image-border {
    position: relative;

    height: 310px;

    overflow: hidden;

    /*
       SAME CORNER STYLE AS CARD
    */

    border-radius: 0 42px 0 42px;

    background: #eeeeee;
}


.home-page-alumni-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


/* =========================================
   IMAGE HOVER ZOOM
========================================= */
/* 
.home-page-alumni-card-inner:hover
.home-page-alumni-image {
    transform: scale(1.08);
} */


/* =========================================
   IMAGE OVERLAY
========================================= */

.home-page-alumni-image-border::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    height: 110px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.42),
        rgba(0, 0, 0, 0)
    );

    pointer-events: none;
}


/* =========================================
   CONTENT
========================================= */

.home-page-alumni-content {
    position: relative;

    z-index: 3;

    padding: 24px 18px 28px;

    text-align: center;
}


/* =========================================
   GOLD LINE ABOVE CONTENT
========================================= */

.home-page-alumni-content::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 45px;
    height: 2px;

    border-radius: 10px;

    background: #c59b4d;

    transform: translateX(-50%);
}


/* =========================================
   ALUMNI NAME
========================================= */

.home-page-alumni-name {
    margin: 0 0 9px;

    color: #292929;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.3;
}


/* =========================================
   DESIGNATION
========================================= */

.home-page-alumni-designation {
    display: inline-block;

    margin-bottom: 9px;

    padding: 5px 15px;

    border-radius: 30px;

    background: rgba(197, 157, 82, 0.10);

    color: #ad8235;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.2px;
}


/* =========================================
   SCHOOL
========================================= */

.home-page-alumni-school {
    max-width: 260px;

    margin: 0 auto;

    color: #3d3d3d;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .home-page-alumni-section {
        padding: 70px 0;
    }


    .home-page-alumni-title {
        font-size: 36px;
    }


    .home-page-alumni-row {
        gap: 18px;
    }


    .home-page-alumni-card {
        width: calc(33.333% - 12px);
    }


    .home-page-alumni-image-border {
        height: 260px;

        border-radius: 0 38px 0 38px;
    }


    .home-page-alumni-card-inner {
        border-radius: 0 45px 0 45px;
    }


    .home-page-alumni-card-inner::before {
        border-radius: 0 38px 0 38px;
    }

}


/* =========================================
   MOBILE
   MAX WIDTH 768PX
========================================= */

@media (max-width: 768px) {

    .home-page-alumni-section {
        padding: 60px 0;
    }


    .home-page-alumni-container {
        padding: 0 15px;
    }


    .home-page-alumni-heading {
        margin-bottom: 35px;
    }


    .home-page-alumni-subtitle {
        font-size: 15px;

        letter-spacing: 3px;
    }


    .home-page-alumni-subtitle::before,
    .home-page-alumni-subtitle::after {
        width: 20px;

        margin: 0 7px;
    }


    .home-page-alumni-title {
        font-size: 30px;
    }


    .home-page-alumni-row {
        display: flex;

        flex-wrap: wrap;

        gap: 22px;
    }


    .home-page-alumni-card {
        width: 100%;
    }


    .home-page-alumni-card-inner {
        border-radius: 0 50px 0 50px;
    }


    .home-page-alumni-card-inner::before {
        border-radius: 0 42px 0 42px;
    }


    .home-page-alumni-image-border {
        height: 330px;

        border-radius: 0 42px 0 42px;
    }


    .home-page-alumni-content {
        padding: 24px 18px 28px;
    }


    .home-page-alumni-name {
        font-size: 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .home-page-alumni-section {
        padding: 50px 0;
    }


    .home-page-alumni-title {
        font-size: 27px;
    }


    .home-page-alumni-image-border {
        height: 300px;

        border-radius: 0 38px 0 38px;
    }


    .home-page-alumni-card-inner {
        border-radius: 0 45px 0 45px;
    }


    .home-page-alumni-card-inner::before {
        border-radius: 0 38px 0 38px;
    }


    .home-page-alumni-name {
        font-size: 19px;
    }


    .home-page-alumni-designation {
        font-size: 14px;
    }


    .home-page-alumni-school {
        font-size: 14px;
    }

}

/* =============================================== */

/* founder home page section */

/* =========================================
   GEET HOME FOUNDER SECTION
========================================= */

.geet-home-founder-section {
    padding: 30px 0;
    background: #fbfaf7;
}

.geet-home-founder-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #ffd1a0;
    box-shadow: 0 10px 35px rgba(70, 55, 30, 0.08);
    overflow: hidden;
}


/* =========================================
   IMAGE AREA
========================================= */

.geet-home-founder-image-area {
    flex: 0 0 245px;
    width: 245px;
    position: relative;
    padding: 10px;
}

.geet-home-founder-image-frame {
    position: relative;
    padding: 8px;
    background: #f7f2e8;
    border: 1px solid #d5bd8a;
}


/* Image Inner */

.geet-home-founder-image-inner {
    position: relative;
    width: 100%;
    height: 205px;
    overflow: hidden;
    background: #eee;
}


/* Image */

.geet-home-founder-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.geet-home-founder-image-frame:hover
.geet-home-founder-image {
    transform: scale(1.04);
}


/* =========================================
   DECORATIVE CORNERS
========================================= */

.geet-home-founder-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    z-index: 3;
}


/* Top Left */

/* .geet-home-founder-corner-tl {
    top: -5px;
    left: -5px;
    border-top: 3px solid #a88443;
    border-left: 3px solid #a88443;
} */


/* Top Right */

/* .geet-home-founder-corner-tr {
    top: -5px;
    right: -5px;
    border-top: 3px solid #a88443;
    border-right: 3px solid #a88443;
} */


/* Bottom Left */

/* .geet-home-founder-corner-bl {
    bottom: -5px;
    left: -5px;
    border-bottom: 3px solid #a88443;
    border-left: 3px solid #a88443;
} */


/* Bottom Right */

/* .geet-home-founder-corner-br {
    bottom: -5px;
    right: -5px;
    border-bottom: 3px solid #a88443;
    border-right: 3px solid #a88443;
} */


/* =========================================
   CONTENT
========================================= */

.geet-home-founder-content {
    flex: 1;
    padding: 5px 15px 5px 0;
}

.geet-home-founder-label {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #b28a42;
    text-transform: uppercase;
}

.geet-home-founder-title {
    margin: 0 0 3px;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.25;
    color: #2d261d;
}

.geet-home-founder-name {
    margin: 0;
    /* font-family: "Playfair Display", serif; */
    font-size: 22px;
    font-weight: 100 !important;
    color: #931311;
}


/* =========================================
   DIVIDER
========================================= */

.geet-home-founder-divider {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 12px 0 14px;
}

.geet-home-founder-divider::before {
    content: "";
    width: 45px;
    height: 1px;
    background: #b08a49;
}

.geet-home-founder-divider span {
    width: 6px;
    height: 6px;
    background: #b08a49;
    transform: rotate(45deg);
}


/* =========================================
   TEXT
========================================= */

.geet-home-founder-text {
    max-width: 900px;
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #62605b;
}


/* =========================================
   QUOTE
========================================= */

.geet-home-founder-quote {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-left: 2px;
}

.geet-home-founder-quote-mark {
    font-family: Georgia, serif;
    font-size: 32px;
    line-height: 25px;
    color: #a88443;
}

.geet-home-founder-quote p {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 13px;
    font-style: italic;
    color: #4d5663;
}


/* =========================================
   SUBTLE BACKGROUND DECORATION
========================================= */

.geet-home-founder-box::after {
    content: "♪";
    position: absolute;
    right: 25px;
    bottom: -15px;
    font-family: Georgia, serif;
    font-size: 100px;
    line-height: 1;
    color: rgba(168, 132, 67, 0.055);
    pointer-events: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .geet-home-founder-box {
        gap: 25px;
    }

    .geet-home-founder-image-area {
        flex: 0 0 210px;
        width: 210px;
    }

    .geet-home-founder-image-inner {
        height: 190px;
    }

    .geet-home-founder-title {
        font-size: 27px;
    }

}


/* =========================================
   MOBILE - MAX WIDTH 768px
========================================= */

@media (max-width: 768px) {

    .geet-home-founder-section {
        padding: 25px 0;
    }

    .geet-home-founder-box {
        display: block;
        padding: 18px;
    }

    .geet-home-founder-image-area {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 25px;
        padding: 8px;
    }

    .geet-home-founder-image-inner {
        height: 300px;
    }

    .geet-home-founder-content {
        padding: 0 2px;
    }

    .geet-home-founder-label {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .geet-home-founder-title {
        font-size: 27px;
    }

    .geet-home-founder-name {
        font-size: 18px;
    }

    .geet-home-founder-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .geet-home-founder-quote {
        margin-top: 12px;
    }

    .geet-home-founder-box::after {
        right: 10px;
        font-size: 70px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .geet-home-founder-box {
        padding: 14px;
    }

    .geet-home-founder-image-area {
        max-width: 260px;
    }

    .geet-home-founder-image-inner {
        height: 260px;
    }

    .geet-home-founder-title {
        font-size: 24px;
    }

    .geet-home-founder-name {
        font-size: 17px;
    }

    .geet-home-founder-text {
        font-size: 13px;
        line-height: 1.75;
    }

    .geet-home-founder-quote p {
        font-size: 12px;
    }

}
/* ====================================== */


/* geet swar hindi section  */


/* =====================================================
   GEET SWAR — PREMIUM ARTISTIC SECTION
===================================================== */

.geet-swar-premium {
    position: relative;
    overflow: hidden;

    padding: 150px 0 50px;

    background:
        linear-gradient(to right, rgb(213 111 0 / 26%) 0%, rgba(2, 36, 91, 0) 100%),
        url(../img/swar-background.jpg) center center no-repeat;

    background-size: cover;
    color: #2d2119;
}


/* =====================================================
   BACKGROUND
===================================================== */

/* .geet-swar-premium::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(150, 108, 43, .12);
    top: -300px;
    right: -180px;
}

.geet-swar-premium::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(150, 108, 43, .10);
    bottom: -250px;
    left: -180px;
} */

.geet-swar-premium-bg-text {
    position: absolute;
    left: 100px;
    top: 50px;
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 140px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 15px;
    color: #fff;
    pointer-events: none;
    /* margin-bottom: 40px; */
    
}

.geet-swar-premium-orbit {
    position: absolute;
    width: 260px;
    height: 260px;
    right: 5%;
    bottom: 8%;
    border: 1px solid rgba(160, 115, 45, .12);
    border-radius: 50%;
}

.geet-swar-premium-orbit::before {
    content: "";
    position: absolute;
    inset: 25px;
    border: 1px dashed rgba(160, 115, 45, .15);
    border-radius: 50%;
}

.geet-swar-premium-container {
    position: relative;
    z-index: 2;
}


/* =====================================================
   IMAGE ARTWORK
===================================================== */

.geet-swar-artwork {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: auto;
    padding: 25px 35px 45px 30px;
}


/* Vertical label */

.geet-swar-artwork-label {
    position: absolute;
    left: -3px;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    writing-mode: vertical-rl;
    font-size: 8px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #99702e;
}


/* Image */

.geet-swar-artwork-main {
    position: relative;
    height: 570px;
    overflow: hidden;
    /* box-shadow:
        25px 30px 60px rgba(54, 37, 22, .18); */
}

.geet-swar-artwork-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(.2,.7,.2,1);
    padding: 6px;
    border: 2px solid #da9326;
}

/* .geet-swar-artwork-main:hover .geet-swar-artwork-image {
    transform: scale(1.08);
} */


/* Image overlay */

.geet-swar-image-overlay {
    position: absolute;
    inset: 0;
    /* background:
        linear-gradient(
            to top,
            rgba(26, 17, 10, .30),
            transparent 10%
        ); */
}


/* Image caption */

.geet-swar-image-caption {
    position: absolute;
    left: 30px;
    bottom: 28px;
    color: #fff;
}

.geet-swar-image-caption span {
    display: block;
    font-family: Georgia, serif;
    font-size: 21px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.85);
}

.geet-swar-image-caption small {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    letter-spacing: 3px;
    opacity: .8;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.85);
}


/* =====================================================
   CORNERS
===================================================== */

.geet-swar-artwork-corner {
    position: absolute;
    width: 48px;
    height: 48px;
    z-index: 5;
    pointer-events: none;
}

.geet-swar-artwork-corner.top-left {
    top: -12px;
    left: -12px;
    border-top: 2px solid #a77932;
    border-left: 2px solid #a77932;
}

.geet-swar-artwork-corner.top-right {
    top: -12px;
    right: -12px;
    border-top: 2px solid #a77932;
    border-right: 2px solid #a77932;
}

.geet-swar-artwork-corner.bottom-left {
    bottom: -12px;
    left: -12px;
    border-bottom: 2px solid #a77932;
    border-left: 2px solid #a77932;
}

.geet-swar-artwork-corner.bottom-right {
    bottom: -12px;
    right: -12px;
    border-bottom: 2px solid #a77932;
    border-right: 2px solid #a77932;
}


/* =====================================================
   ESTABLISHED BADGE
===================================================== */

.geet-swar-est {
    position: absolute;
    right: 0;
    bottom: 524px;
    z-index: 10;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background: #f8f8f8;
    border: 1px solid #a77932;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(45, 31, 18, .15);
}

.geet-swar-est::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 2px dashed #931311;
    border-radius: 50%;
    animation: circleRotate 12s linear infinite;
}

@keyframes circleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.geet-swar-est small,
.geet-swar-est strong {
    position: relative;
}

.geet-swar-est small {
    font-size: 13px;
    letter-spacing: 2px;
    color: #86612b;
}

.geet-swar-est strong {
    margin-top: 4px;
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 500;
}

@media(max-width:768px)
{
  .geet-swar-est strong {
    margin-top: -2px !important;
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 500;
}
}


/* =====================================================
   ART SYMBOL
===================================================== */

.geet-swar-art-symbol {
    position: absolute;
    left: 5px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #a77932;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    box-shadow: 0 10px 25px rgba(100, 67, 22, .2);
}


/* =====================================================
   RIGHT CONTENT
===================================================== */

.geet-swar-premium-content {
    padding: 10px 15px 10px 45px;
}


/* Small heading */

.geet-swar-mini-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #9a702e;
}

.geet-swar-mini-heading span {
    width: 42px;
    height: 1px;
    background: #a77932;
}


/* Main heading */

.geet-swar-premium-content h2 {
    max-width: 600px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.04;
    font-weight: 400;
    color: #931311;
}

.geet-swar-premium-content h2 em {
    display: inline-block;
    color: #ff9f0e;
    /* font-style: italic; */
}

.hindi-swar
{
  color: #931311 !important;
  
}



/* Heading line */

.geet-swar-heading-line {
    width: 144px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 2px 0 10px;
}

.hindi-color
{
  color: #da9326;
}

.geet-swar-heading-line div {
    flex: 1;
    height: 1px;
    background: rgba(155, 112, 47, .45);
}

.geet-swar-heading-line span {
    font-size: 22px;
    color: #da9326;
}


/* Subtitle */

.geet-swar-premium-content h3 {
    margin: 0 0 28px;
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: #931311;
}


/* Description */

.geet-swar-description {
    max-width: 650px;
}

.geet-swar-description p {
    margin-bottom: 17px;
    font-size: 15px;
    line-height: 1.9;
    color: #353535;
}

.geet-swar-description strong {
    color: #ba7712;
}


/* =====================================================
   ART VALUES
===================================================== */

.geet-swar-values {
    display: flex;
    gap: 12px;
    margin: 28px 0;
}

.geet-swar-value {
    flex: 1;
    min-height: 70px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: #ffffff;
    border: 1px solid rgb(160 115 45 / 65%);
    transition: .35s ease;
    border-radius: 10px;
}

.geet-swar-value:hover {
    transform: translateY(-5px);
    background: #fffaf1;
    box-shadow: 0 12px 25px rgba(61,40,20,.08);
}

.geet-swar-value > span {
    font-family: Georgia, serif;
    font-size: 23px;
    color: #a77932;
}

.geet-swar-value strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    color: #3b2a20;
}

.geet-swar-value small {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: #806c5a;
}


/* =====================================================
   PREMIUM QUOTE
===================================================== */

.geet-swar-premium-quote {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 18px 25px;
    margin: 25px 0;
    background: #530c0b;
    color: #fff;
    overflow: hidden;
    border-radius: 10px;
}

.geet-swar-premium-quote::after {
    content: "♪";
    position: absolute;
    right: 20px;
    bottom: -30px;
    font-family: Georgia, serif;
    font-size: 100px;
    color: rgb(255 255 255 / 20%);
}

.geet-swar-quote-mark {
    font-family: Georgia, serif;
    font-size: 55px;
    line-height: .7;
    color: #c3984f;
}

.geet-swar-premium-quote p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.5;
}

.geet-swar-premium-quote p strong {
    color: #ffb722;
}

.geet-swar-premium-quote span {
    display: block;
    margin-top: 7px;
    font-size: 13px;
    letter-spacing: 2px;
    color: #e2bf99;
}


/* =====================================================
   LAST TEXT
===================================================== */

.geet-swar-last-text {
    max-width: 650px;
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.85;
    color: #353535;
}


/* =====================================================
   SIGNATURE
===================================================== */

.geet-swar-signature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.geet-swar-sign-line {
    width: 40px;
    height: 1px;
    margin-top: 10px;
    background: #a77932;
}

.geet-swar-signature p {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 14px;
    line-height: 1.75;
    font-style: italic;
    color: #76572e;
}


.mobile-break {
    display: none;
    
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .geet-swar-premium {
        padding: 90px 0;
    }

    .geet-swar-artwork {
        margin-bottom: 55px;
    }

    .geet-swar-premium-content {
        padding: 10px 20px;
    }

}


/* =====================================================
   MOBILE — MAX 768px
===================================================== */

@media (max-width: 768px) {

   .geet-swar-premium {
    padding: 80px 0 30px !important;
}

    .geet-swar-premium-bg-text {
        font-size: 60px;
        top: 30px;
        left: 30px;
    }

    .geet-swar-premium-orbit {
        width: 180px;
        height: 180px;
        right: -70px;
        bottom: 5%;
    }

    .geet-swar-artwork {
        padding: 18px 25px 35px 28px;
    }

    .geet-swar-artwork-main {
        height: 450px;
    }

    .geet-swar-artwork-label {
        font-size: 6px;
        left: 0;
        gap: 8px;
    }

    .geet-swar-artwork-corner {
        width: 35px;
        height: 35px;
    }

    .geet-swar-est {
        width: 90px;
        height: 90px;
        right: 0px;
        bottom: 0px;
    }

    .geet-swar-est strong {
        font-size: 20px;
    }

    .geet-swar-est small {
        font-size: 9px;
    }

    .geet-swar-art-symbol {
        /* width: 40px;
        height: 40px;
        font-size: 13px;
        left: 0;
        bottom: 10px; */
        display: none !important;
    }

    .geet-swar-image-caption {
        left: 20px;
        bottom: 20px;
    }

    .geet-swar-image-caption span {
        font-size: 17px;
    }

    .geet-swar-image-caption small {
        font-size: 6px;
        letter-spacing: 2px;
    }

    .geet-swar-premium-content {
        padding: 5px;
        margin-top: -50px;
    }

    .geet-swar-mini-heading {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .geet-swar-premium-content h2 {
        font-size: 18px;
        line-height: 1.08;
    }

    .geet-swar-premium-content h3 {
        font-size: 16px;
    }

    .geet-swar-description p {
        font-size: 13.5px;
        line-height: 1.8;
    }

    .geet-swar-values {
        gap: 7px;
    }

    .geet-swar-value {
        padding: 11px 8px;
        min-height: 80px;
        gap: 6px;
        margin-top: 0px;
    }

    .geet-swar-value > span {
        font-size: 18px;
    }

    .geet-swar-value strong {
        font-size: 12px;
    }

    .geet-swar-value small {
        font-size: 10px;
    }

    .geet-swar-premium-quote {
        padding: 18px;
    }

    .geet-swar-quote-mark {
        font-size: 43px;
    }

    .geet-swar-premium-quote p {
        font-size: 14px;
    }

    .geet-swar-premium-quote span {
        font-size: 12px;
    }

    .geet-swar-last-text {
        font-size: 13px;
        line-height: 1.8;
    }

    .geet-swar-signature p {
        font-size: 13px;
    }

    .mobile-break {
        display: block;
        margin-top: 10px !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

/* @media (max-width: 480px) {

    .geet-swar-premium {
        padding: 50px 0;
    }

    .geet-swar-artwork-main {
        height: 390px;
    }

    .geet-swar-premium-content h2 {
        font-size: 35px;
    }

    .geet-swar-values {
        flex-wrap: wrap;
    }

    .geet-swar-value {
        flex: 0 0 calc(50% - 4px);
    }

    .geet-swar-value:last-child {
        flex-basis: 100%;
    } */


    /* ======================================= */


    .alu-read-wrap {
    text-align: right;
    margin-top: 35px;
}

.alu-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 25px;
    background: #851b19;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.alu-read-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.alu-read-btn:hover {
    background: #851b19;
    color: #fff;
    text-decoration: none;
}

.alu-read-btn:hover i {
    transform: translateX(4px);
}


/* Mobile */
@media (max-width: 768px) {

    .alu-read-wrap {
        margin-top: 25px;
        text-align: center;
    }

    .alu-read-btn {
        padding: 10px 21px;
        font-size: 13px;
    }
   

}

/* ============================================ */



/* Popup Z-Index Fix */
.gv-popup-modal {
    z-index: 999999 !important;
}

.gv-popup-modal .gv-popup-dialog {
    z-index: 1000000 !important;
}

.gv-popup-modal .gv-popup-content {
    z-index: 1000001 !important;
}

/* Backdrop */
.modal-backdrop {
    z-index: 999998 !important;
}


/* Same Structure Styling */
.gv-popup-dialog {
    max-width: 550px;
}

.gv-popup-content {
    border: 0;
    border-radius: 12px;
    overflow: hidden;
}

.gv-popup-header {
    border-bottom: 0;
    padding: 10px 12px;
    justify-content: flex-end;
}

.gv-popup-close {
    margin: 0 !important;
    opacity: 1;
    box-shadow: none !important;
}

.gv-popup-body {
    padding: 0;
}

.gv-popup-image {
    width: 100%;
    height: auto;
    display: block;
}


/* Mobile */
@media (max-width: 768px) {

    .gv-popup-dialog {
        max-width: calc(100% - 30px);
        margin: 15px auto;
    }

    .gv-popup-header {
        padding: 8px 10px;
    }

}
/* ======================================= */



/* ==========================================
   VITAN NEW EVENTS SECTION
========================================== */


/* ==========================================
   VITAN NEW EVENTS
========================================== */

.vitan-new-events-year-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 35px 0 45px;
}


/* ==========================================
   YEAR BUTTON
========================================== */

.vitan-new-events-year-btn {
    min-width: 130px;
    padding: 8px 28px;
    border: 1px solid #c9a45c;
    border-radius: 50px;
    background: #ffffff;
    color: #795a28;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
    transition: all 0.35s ease;
}

.vitan-new-events-year-btn:hover,
.vitan-new-events-year-btn.active {
    background: #811210;
    color: #ffffff;
    border-color: #a47b35;
    box-shadow: 0 10px 25px rgba(164, 123, 53, 0.25);
}


/* ==========================================
   YEAR CONTENT
========================================== */

.vitan-new-events-year-content {
    display: none;
    animation: vitanNewEventsFade 0.45s ease;
}

.vitan-new-events-year-content.active {
    display: block;
}

@keyframes vitanNewEventsFade {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ==========================================
   EVENT CARD
========================================== */

.vitan-new-events-card {
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgb(226 147 27 / 52%);
    box-shadow: 0 10px 30px rgba(40, 30, 20, 0.09);
    transition: all 0.4s ease;
    padding: 7px;
    /* border: 1px solid #000; */
}

/* .vitan-new-events-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(40, 30, 20, 0.16);
} */


/* ==========================================
   CARD IMAGE
========================================== */

.vitan-new-events-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
}

.vitan-new-events-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* .vitan-new-events-card:hover
.vitan-new-events-card-image img {
    transform: scale(1.08);
} */


/* ==========================================
   IMAGE OVERLAY
========================================== */

.vitan-new-events-card-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.30),
        transparent
    );
    pointer-events: none;
}


/* ==========================================
   CARD BODY
========================================== */

.vitan-new-events-card-body {
    padding: 18px 18px 20px;
    text-align: center;
}

.vitan-new-events-card-body h3 {
    margin: 0 0 18px;
    min-height: 26px;
    color: #2d231b;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================
   EXPLORE MORE
========================================== */

.vitan-new-events-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 21px;
    border-radius: 50px;
    background: #811210;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.vitan-new-events-explore i {
    transition: transform 0.3s ease;
}

.vitan-new-events-explore:hover {
    background: #76551f;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.vitan-new-events-explore:hover i {
    transform: translateX(4px);
}


/* ==========================================
   MOBILE RESPONSIVE
   MAX WIDTH 768PX
========================================== */

@media (max-width: 768px) {

    .vitan-new-events-year-tabs {
        gap: 10px;
        margin: 25px 0 30px;
    }

    .vitan-new-events-year-btn {
        min-width: 105px;
        padding: 10px 20px;
        font-size: 14px;
    }


    /* Event Cards */

    .vitan-new-events-card {
        border-radius: 14px;
    }

    .vitan-new-events-card-image {
        height: 175px;
    }

    .vitan-new-events-card-body {
        padding: 15px 10px 10px;
    }

    .vitan-new-events-card-body h3 {
        min-height: 18px;
        margin-bottom: 13px;
        font-size: 15px;
    }

    .vitan-new-events-explore {
        width: 100%;
        padding: 9px 7px;
        font-size: 12px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .vitan-new-events-card-image {
        height: 145px;
    }

    .vitan-new-events-card-body h3 {
        font-size: 14px;
    }

    .vitan-new-events-explore {
        padding: 6px 5px;
        font-size: 10px;
    }

}
/* ============================================ */





