:root {
  --primary-color: #f0c172;
  --primary-light: #e6f0ff;
  --secondary-color: #000;
  --secondary-light: #f8f7fc;
  --dark-color: #353535;
  --light-color: #e5f0ff !important;
  --white: #ffffff;
  --green: #4caf50;
  --orange: #ff9800;
  --transition: all 0.3s ease;
}

body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  color: var(--dark-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

/* Loader Styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-container {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-static {
  width: 120px;
  height: 120px;
  z-index: 2;
}

.logo-static img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rotating-element {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid transparent;
  border-top-color: #f0c172;
  border-radius: 50%;
  animation: rotate 2s linear infinite;
}

.rotating-element:nth-child(2) {
  width: 120px;
  height: 120px;
  border-top-color: #f0c172;
  animation-direction: reverse;
  animation-duration: 2s;
}

/* .rotating-element:nth-child(3) {
  width: 140px;
  height: 140px;
  border-top-color: #4caf50;
  animation-duration: 2.5s;
} */

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  margin-top: 0px;
  font-family: "Arial", sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

/* Header Styles */
.header {
  background-color: transparent;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 5px 0;
}

.header.scrolled {
  padding: 5px 0;
  background-color: black;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.logo {
  height: 70px;
  transition: var(--transition);
}

.header.scrolled .logo {
  height: 65px;
}

.main-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li {
  position: relative;
  margin: 0 12px;
}

.main-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 10px;
  display: inline-block;
  position: relative;
  transition: var(--transition);
  font-size: 16px;
  text-transform: uppercase;
}

.main-menu li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  /* background-color: var(--primary-color); */
  bottom: 5px;
  left: 0;
  transition: var(--transition);
  border-radius: 3px;
}

.main-menu li a:hover,
.main-menu li a.active {
  color: var(--primary-color);
}

.main-menu li a:hover:after,
.main-menu li a.active:after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-btn {
  padding: 8px 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  margin-left: 15px;
}

.header-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark-color);
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  color: var(--primary-color);
}

/* Offcanvas Menu */
.offcanvas-menu {
  background-color: var(--white);
  width: 300px;
}

.offcanvas-header {
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offcanvas-title {
  font-weight: 700;
  color: var(--secondary-color);
}

.btn-close {
  font-size: 18px;
}

.mobile-menu {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 12px;
}

.mobile-menu li a {
  color: var(--dark-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  display: block;
  padding: 8px 0;
}

.mobile-menu li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Banner Styles */
.banner {
  /* padding-top: 100px; */
  position: relative;
  overflow: hidden;
}

/* .swiper-slide {
  position: relative;
  height: 700px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
} */

.banner .swiper-slide {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(21, 19, 19, 0.138),
    rgba(23, 23, 23, 0.455)
  );
}

.banner-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 650px;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background-color: var(--white);
  color: var(--primary-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 15px;
  transition: var(--transition);
  border: 2px solid var(--white);
}

.banner-btn:hover {
  background-color: transparent;
  color: var(--white);
}

.banner-btn.outline {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.banner-btn.outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.banner-btn i {
  margin-left: 8px;
  font-size: 14px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--primary-color);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white);
  opacity: 0.6;
  transition: var(--transition);
}

.products-section .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #052c65;
  opacity: 0.6;
  transition: var(--transition);
}

.products-section .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width:20px;
  border-radius: 100px;
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Section Styles */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}

.section-title h2 {
  font-weight: 700;
  color: black;
  margin-bottom: 5px;
  font-size: 36px;
}

.section-title p {
  color: #666;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.title-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-color)
  );
  margin: 5px auto;
  border-radius: 2px;
}

.bg-light {
  background-color: #f0c17217 !important;
}

/* .bg-secondary-light {
  background-color: var(--secondary-light);
} */

/* About Section */
.about-img-container {
  position: relative;
  height: 100%;
  padding-right: 30px;
}

.about-img-main {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: relative;
}

.about-img-secondary {
  position: absolute;
  width: 45%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 5px solid var(--white);
}

.about-img-1 {
  top: 0;
  right: 0;
  z-index: 2;
}

.about-img-2 {
  bottom: 0;
  right: 10%;
  z-index: 3;
}

.about-content h3 {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 32px;
}

.about-content p {
  margin-bottom: 20px;
  color: #666;
  font-size: 16px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.about-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 35px;
  font-size: 16px;
}

.about-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-size: 18px;
}

.btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  font-size: 15px;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(9, 110, 254, 0.2);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(9, 110, 254, 0.2);
}

/* Products Section */
.product-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 30px;
  /* height: 100%; */
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(9, 110, 254, 0.2);
}

.product-img {
  height: 220px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-content {
  padding: 5px 10px 25px;
}

.product-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.product-content p {
  color: #666;
  margin-bottom: 20px;
  font-size: 15px;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--secondary-color);
}

.read-more i {
  margin-left: 8px;
  transition: var(--transition);
  font-size: 13px;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* Why Choose Us Section */
.feature-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: var(--transition);
  /* height: 100%; */
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(9, 110, 254, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 28px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--primary-color);
  color: var(--white);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.feature-card p {
  color: #666;
  font-size: 15px;
}

.why-choose-img {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  height: 90%;
  border: 10px solid var(--white);
}

.why-choose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services Section */
.service-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(9, 110, 254, 0.2);
}

.service-img {
  height: 220px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 5px 10px 25px;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.service-content p {
  color: #666;
  margin-bottom: 20px;
  font-size: 15px;
}

/* Gallery Section */
.gallery-item {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.gallery-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(9, 110, 254, 0.7); */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 40px;
  transition: var(--transition);
  transform: scale(0.8);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Blog Section */
.blog-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  margin-bottom: 30px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(9, 110, 254, 0.2);
}

.blog-img {
  height: 220px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 10px;
}

.blog-meta {
  display: flex;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
  flex-wrap: wrap;
}

.blog-meta span {
  margin-right: 20px;
  margin-bottom: 5px;
  display: inline-flex;
  align-items: center;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--primary-color);
  font-size: 15px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.blog-content p {
  color: #666;
  margin-bottom: 20px;
  font-size: 15px;
}

/* Footer Styles */
.footer {
  background-color:black;
  color: var(--white);
  padding: 100px 0 0;
  position: relative;
}

.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  /* background-color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%); */
}

.footer-logo {
  height: 50px;
  margin-bottom: 25px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  font-size: 15px;
}

.social-links {
  display: flex;
  margin-top: 25px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 10px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: var(--white);
}

.footer-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-links a i {
  margin-right: 8px;
  font-size: 14px;
  color: var(--primary-color);
}

.footer-contact-info {
  list-style: none;
  padding: 0;
}

.footer-contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-contact-info i {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 3px;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  margin-top: 50px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(9, 110, 254, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

/* Swiper Customization */
.banner .swiper-pagination {
  position: relative;
  margin-top: -20px;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .banner-content h1 {
    font-size: 46px;
  }

  .section-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 991.98px) {
  .main-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-actions {
    margin-left: auto;
  }

  /* .banner {
    padding-top: 80px;
  } */

  /* .swiper-slide {
    height: 600px;
  } */

  .banner-content h1 {
    font-size: 40px;
  }

  .section {
    padding: 80px 0;
  }

  .about-img-container {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .about-img-secondary {
    width: 40%;
  }
}

@media (max-width: 767.98px) {
  .banner-content {
    text-align: center;
  }

  .banner-btn {
    display: block;
    margin: 0 auto 15px;
    width: 220px;
  }

  .swiper-slide {
    height: 550px;
  }

  .banner-content h1 {
    font-size: 36px;
  }

  .section {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .footer:before {
    height: 70px;
  }
}

@media (max-width: 575.98px) {
  .logo {
    height: 40px;
  }

  .header-btn {
    padding: 6px 15px;
    font-size: 13px;
    margin-left: 10px;
  }

  /* .swiper-slide {
    height: 500px;
  } */

  .banner-content h1 {
    font-size: 30px;
  }

  .banner-content p {
    font-size: 16px;
  }

  .section {
    padding: 60px 0;
  }

  .about-img-secondary {
    width: 35%;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 18px;
    bottom: 20px;
    right: 20px;
  }
}

.btnicon-whatsapp {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #2ac902;
  left: 10px;
  position: fixed;
  color: white !important;
  bottom: 70px;
  margin-left: 10px;
  font-size: 27px;
  line-height: 40px;
  text-align: center;
  z-index: 9999;
}

.btnicon-whatsapp a {
  color: white;
}

.btnicon-call a {
  color: white;
}

.btnicon-call {
  width: 40px;
  height: 40px;
  left: 20px;
  border-radius: 100%;
  background-color: #326694;
  position: fixed;
  bottom: 10px;
  font-size: 25px;
  line-height: 40px;
  text-align: center;
  z-index: 9999;
}

@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.my-breadcum {
  padding: 20px 0;
  padding-top: 100px;
  background-size: cover;
  background-position: bottom;
  /* background-position: center; */
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 1px solidrgb(226, 180, 13);
}



.my-breadcum h1{
  text-transform: capitalize;
}

.my-breadcum-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 100px 0 90px;
  position: relative;
}

.my-breadcum-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
}

.my-breadcum-item {
  display: flex;
  align-items: center;
  color: #e5f0ff;
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.my-breadcum-item:not(:last-child)::after {
  content: "/";
  /* Indian-style arrow */
  margin: 0 5px;
  color: var(--primary-color);
  font-size: 14px;
}

.my-breadcum-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.my-breadcum-link:hover {
  color: rgb(255, 255, 255);
  text-shadow: 0 0 8px rgba(216, 180, 254, 0.6);
}

.my-breadcum-active .my-breadcum-text {
  color: #e5f0ff;
  /* Indian gold/yellow */
  font-weight: 600;
  display: flex;
  align-items: center;
}

.my-breadcum-icon {
  margin-right: 8px;
  font-size: 14px;
}

/* Common Card Styling */
.vision-card,
.mission-card,
.goal-card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  color: #f0c172;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.4s ease-in-out;
  perspective: 1000px;
  margin-bottom: 15px;
}

.vision-card {
  background-image: url("../images/fban.png");
}

.mission-card {
  background-image: url("../images/fban2.png");
}

.goal-card {
  background-image: url("../images/fban4.png");
}

.vision-card .overlay,
.mission-card .overlay,
.goal-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Icon & Heading */
.vision-card .content,
.mission-card .content,
.goal-card .content {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease-in-out;
}

.vision-card i,
.mission-card i,
.goal-card i {
  font-size: 40px;
  margin-bottom: 10px;
}

.vision-card h3,
.mission-card h3,
.goal-card h3 {
  font-size: 24px;
  font-weight: bold;
  color: #e5f0ff;
}

/* Hover Content */
.vision-card .hover-content,
.mission-card .hover-content,
.goal-card .hover-content {
  position: absolute;
  inset: 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 20px;
  color: var(--primary-color);
  transform: scale(0);
  transition: transform 0.6s ease-in-out;
  overflow-y: auto;
  max-height: 100%;
}

/* Hover Effect */
.vision-card:hover .hover-content,
.mission-card:hover .hover-content,
.goal-card:hover .hover-content {
  transform: scale(1);
}

/* Hide Content on Hover */
.vision-card:hover .content,
.mission-card:hover .content,
.goal-card:hover .content {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease-in-out;
}

/* Scrollable Content */
.vision-card .hover-content p,
.mission-card .hover-content p,
.goal-card .hover-content p {
  text-align: left;
  color: #fff;
  padding: 0 10px;
  font-size: 16px;
  line-height: 1.5;
  max-height: 80%;
  overflow-y: auto;
}

.vision-card .hover-content,
.mission-card .hover-content,
.goal-card .hover-content {
  overflow-y: auto !important;
  max-height: 100%;
  padding-right: 10px;
  scrollbar-width: thin !important;
  /* Firefox */
  scrollbar-color: rgba(255, 255, 255, 0.5) transparent !important;
}

/* ✅ WebKit Scrollbar */
.vision-card .hover-content::-webkit-scrollbar,
.mission-card .hover-content::-webkit-scrollbar,
.goal-card .hover-content::-webkit-scrollbar {
  width: 2px !important;
  /* Ultra-thin scrollbar */
  background: transparent !important;
}

.vision-card .hover-content::-webkit-scrollbar-track,
.mission-card .hover-content::-webkit-scrollbar-track,
.goal-card .hover-content::-webkit-scrollbar-track {
  background: transparent !important;
  /* No background */
}

.vision-card .hover-content::-webkit-scrollbar-thumb,
.mission-card .hover-content::-webkit-scrollbar-thumb,
.goal-card .hover-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4) !important;
  /* Light white scrollbar */
  border-radius: 10px !important;
  transition: background 0.3s ease-in-out !important;
}

.vision-card .hover-content::-webkit-scrollbar-thumb:hover,
.mission-card .hover-content::-webkit-scrollbar-thumb:hover,
.goal-card .hover-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.7) !important;
  /* Slightly brighter on hover */
}

.vision-card .hover-content,
.mission-card .hover-content,
.goal-card .hover-content {
  scrollbar-gutter: stable both-edges !important;
  -webkit-overflow-scrolling: touch !important;
}

.blog-view-inn {
  background-color: var(--white);
}

.blog-view-inn h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 10px;
}

.blog-view-inn .main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-view-inn .content {
  color: #333;
  line-height: 1.9;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.blog-view-inn ul {
  margin-bottom: 30px;
  padding-left: 25px;
}

.blog-view-inn ul li {
  color: #333;
  margin-bottom: 12px;
  font-size: 1rem;
}

.blog-view-inn .image-row img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.related-blogs {
  position: sticky;
  top: 100px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #187594;
}

.related-blogs h2 {
  color: var(--primary-dark);
  font-size: 2rem;
  margin-bottom: 25px;
}

.related-blog-card {
  background-color: #bec2ce29;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}

.related-blog-card:hover {
  transform: translateY(-5px);
}

.related-blog-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}

.related-blog-card .related-content {
  flex: 1;
}

.related-blog-card h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.related-blog-card p {
  color: #333;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 991px) {
  .related-blogs {
    position: static;
  }

  .related-blog-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .related-blog-card img {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.contact-inn__info-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.contact-inn__info-card:hover {
  transform: translateY(-5px);
}

.contact-inn__info-card i {
  color: #f0c172;
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-inn__info-card h5 {
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-inn__info-card p {
  color: #000;
  font-size: 0.95rem;
}

.contact-inn__form {
  background-color: var(--white);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.contact-inn__form .form-control {
  border: 1px solid #000;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.95rem;
}

.contact-inn__form .form-control:focus {
  border-color: #f0c172;
  box-shadow: 0 0 8px rgba(20, 152, 186, 0.3);
}

.contact-inn__form .form-label {
  color: var(--dark);
  font-weight: 500;
}

.contact-inn__form .btn-primary {
  background-color: #000000;
  border-color: #000;
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-inn__form .btn-primary:hover {
  background-color: #f0c172;
  border-color: #f0c172;
  color: var(--white);
}

.contact-inn__map {
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.contact-inn__map iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.contact-inn__title {
  color: var(--dark);
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0px;
}

.contact-inn__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f0c172;
  margin: 5px auto 30px;
}

.pro-view {
  background: linear-gradient(135deg, var(--white) 60%, #f0c172 100%);
  border-radius: 10px;
  padding: 30px 15px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-view .product-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* margin-bottom: 20px; */
}

.product-view .thumbnail {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, border 0.3s ease;
  border: 2px solid transparent;
}

.product-view .thumbnail:hover {
  transform: scale(1.05);
  border-color: #000;
}

/* .product-view .swiper {
  padding: 10px 0;
} */

.product-view .swiper-slide {
  text-align: center;
}

.product-view .swiper-button-next,
.product-view .swiper-button-prev {
  color: var(--white);
  background-color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.product-view .swiper-button-prev {
  left: 1px !important;
}

.product-view .swiper-button-next {
  right: 1px !important;
}

.product-view .swiper-button-next:hover,
.product-view .swiper-button-prev:hover {
  background-color: #000000;
}

.product-view .swiper-button-next::after,
.product-view .swiper-button-prev::after {
  font-size: 16px;
}

.product-view .product-details h2 {
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.product-view .product-details p {
  color: var(--dark);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.product-view .product-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.product-view .product-details ul li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
  color: var(--dark);
  font-size: 0.95rem;
}

.product-view .product-details ul li::before {
  content: "\f06c"; /* Leaf icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* Use 900 for solid icons */
  color: #000;
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 1.2rem;
}

.product-view .enquiry-btn {
  background-color: #096efe;
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.product-view .enquiry-btn:hover {
  background-color: #000;
  transform: translateY(-2px);
}

.product-view .modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background-color: var(--white);
}

.product-view .modal-header {
  background: linear-gradient(135deg, #000, #000);
  color: var(--white);
  border-bottom: none;
  padding: 1.5rem 2rem;
  position: relative;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.product-view .modal-title {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.product-view .btn-close {
  background: var(--white);
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  /* padding: 8px; */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.product-view .btn-close:hover {
  background: #096efe;
  transform: rotate(90deg);
  opacity: 1;
}

.product-view .modal-body {
  padding: 2rem;
}

.product-view .form-control {
  border-radius: 10px;
  border: 1px solid #000;
  padding: 10px !important;
  font-size: 1rem;
  max-height: 80px;
  background-color: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.product-view .form-control:focus {
  border-color: #000;
  box-shadow: 0 0 10px rgba(17, 98, 179, 0.3);
  transform: translateY(-2px);
  outline: none;
}

.product-view .form-control::placeholder {
  color: #999;
  font-style: italic;
}

.product-view .form-label {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.product-view .form-label:hover {
  color: #000;
}

.product-view .form-label i {
  color: #000;
  margin-right: 12px;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.product-view .form-label:hover i {
  transform: scale(1.2);
}

.product-view .swiper-slide {
        height: 90px;
    }

.product-view .submit-btn {
  background: #096efe;
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  /* width: 100%; */
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.product-view .submit-btn:hover {
  background: linear-gradient(90deg, #000, #000);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(17, 98, 179, 0.4);
}

.product-view .submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(17, 98, 179, 0.2);
}

@media (max-width: 991px) {
  .product-view .product-image {
    height: 350px;
  }

  .product-view .thumbnail {
    height: 100px;
  }

  .product-view .product-details h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .product-view .product-image {
    height: 250px;
  }

  .product-view .thumbnail {
    height: 80px;
  }

  .product-view .product-details h2 {
    font-size: 1.5rem;
  }

  .product-view .product-details p {
    font-size: 1rem;
  }

  .product-view .modal-title {
    font-size: 1.4rem;
  }

  .product-view .modal-body {
    padding: 1.5rem;
  }
}

.submit-btn {
  background: #096efe;
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(8, 167, 211, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(8, 167, 211, 0.5);
  color: white;
  background: linear-gradient(45deg, var(--accent-blue), #000);
}

.service-view__pro-view {
  /* background: linear-gradient(215deg, var(--white) 70%, #096efe 100%); */
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-view__service-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-view__swiper-container {
  position: relative;
  padding-bottom: 30px;
}

.service-view__swiper-button-next,
.service-view__swiper-button-prev {
  color: var(--white);
  background-color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.service-view__swiper-button-prev {
  left: 3px;
}

.service-view__swiper-button-next {
  right: 3px;
}

.service-view__swiper-button-next:hover,
.service-view__swiper-button-prev:hover {
  background-color: #000;
}

.service-view__swiper-button-next::after,
.service-view__swiper-button-prev::after {
  font-size: 16px;
}

.service-view__swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
}

.service-view__swiper-pagination .swiper-pagination-bullet {
  background: #000;
  opacity: 0.6;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-view__swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
  opacity: 1;
  transform: scale(1.2);
}

.service-view__details h2 {
  color: var(--primary-blue);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0rem  !important;
}

.service-view__details p {
  color: var(--dark);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-view__details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-view__details ul li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
  color: var(--dark);
  font-size: 0.95rem;
}

.service-view__details ul li::before {
  content: "\f7d9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #096efe;
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 1.2rem;
}

.service-view__enquiry-btn {
  background-color: #096efe;
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-view__enquiry-btn:hover {
  background-color: #000;
  transform: translateY(-2px);
}

.service-view__modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background-color: var(--white);
}

.service-view__modal-header {
  background: linear-gradient(135deg, #000, #000);
  color: var(--white);
  border-bottom: none;
  padding: 1.5rem 2rem;
  position: relative;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.service-view__modal-title {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.service-view__btn-close {
  background: var(--white);
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-view__btn-close:hover {
  background: #096efe;
  transform: rotate(90deg);
  opacity: 1;
}

.service-view__modal-body {
  padding: 2rem;
}

.service-view__form-control {
  border-radius: 10px;
  border: 1px solid #000;
  padding: 10px !important;
  font-size: 1rem;
  max-height: 80px;
  background-color: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.service-view__form-control:focus {
  border-color: #000;
  box-shadow: 0 0 10px rgba(17, 98, 179, 0.3);
  transform: translateY(-2px);
  outline: none;
}

.service-view__form-control::placeholder {
  color: #999;
  font-style: italic;
}

.service-view__form-label {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.service-view__form-label:hover {
  color: #000;
}

.service-view__form-label i {
  color: #000;
  margin-right: 12px;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.service-view__form-label:hover i {
  transform: scale(1.2);
}

.service-view__submit-btn {
  background: #096efe;
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  /* width: 100%; */
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.service-view__submit-btn:hover {
  background: linear-gradient(90deg, #000, #000);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(17, 98, 179, 0.4);
}

.service-view__submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(17, 98, 179, 0.2);
}

@media (max-width: 991px) {
  .service-view__service-image {
    height: 350px;
  }

  .service-view__details h2 {
    font-size: 2rem;
  }

  .service-view__swiper-button-prev {
    left: 5px;
  }

  .service-view__swiper-button-next {
    right: 5px;
  }
}

@media (max-width: 767px) {
  .service-view__service-image {
    height: 250px;
  }

  .service-view__details h2 {
    font-size: 1.5rem;
  }

  .service-view__details p {
    font-size: 1rem;
  }

  .service-view__modal-title {
    font-size: 1.4rem;
  }

  .service-view__modal-body {
    padding: 1.5rem;
  }

  .service-view__swiper-button-prev {
    left: 0 !important;
  }

  .service-view__swiper-button-next {
    right: 0 !important;
  }
}



.my-breadcum {
    position: relative;
    background-size: cover;
    background-position: center;
   
    z-index: 1;
}

.my-breadcum .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent black */
    z-index: 1;
}








.my-breadcum-container {
    position: relative;
    z-index: 2;
}



.related-blogs a{
  text-decoration: none;
}















/* Styling for the submenu */
.submenu {
    display: none; 
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #fff;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);  */
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 150px; 
}

.submenu li a {
    /* padding: 10px 20px; */
    display: block;
}

/* Show submenu on hover */
.dropdown:hover .submenu {
    display: block;
}

/* Optional: Hover effect for menu items */
/* .main-menu li a:hover {
    background-color: #f0f0f0; 
} */







/* Basic styling for the main menu */
.main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-menu li {
    position: relative; /* Needed for positioning the submenu */
}







    .video-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 30px;
    }

    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .video-thumbnail {
        position: relative;
        overflow: hidden;
        height: 250px;
        /* 16:9 Aspect Ratio */
    }

    .video-thumbnail img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background-color: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        opacity: 0.9;
        transition: all 0.3s ease;
    }

    .play-button:hover {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
        background-color: #0a5ed7;
    }

    .video-info {
        padding: 15px;
    }

    .video-title {
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--secondary-color);
        font-size: 1.1rem;
    }

    .video-channel {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .video-card a{
        text-decoration: none;
    }

   

    @media (max-width: 992px) {
        .video-card {
            margin-bottom: 20px;
        }
    }

   




    