@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Zoom effect for cards and buttons */
.card,
.btn,
.service-card,
.stat-item,
.team-member,
.testimonial,
.feature-box,
.feature-card,
.read-more-btn {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover,
.btn:hover,
.service-card:hover,
.stat-item:hover,
.team-member:hover,
.testimonial:hover,
.feature-box:hover,
.feature-card:hover,
.read-more-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Image zoom effect */
.img-zoom {
  overflow: hidden;
  border-radius: 8px;
}

.img-zoom img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
  display: block;
}

.img-zoom:hover img {
  transform: scale(1.1);
}

/* Footer Section */
.footer-section {
  background-color: #666a49;
  color: #fff;
  padding: 50px 0 20px;
  margin-top: -5px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 30px;
  border-bottom: 1px solid #ffffff;
}

.footer-about,
.footer-office,
.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.swiper-pagination {
  position: relative !important;
}

.swiper-pagination-bullet-active {
  background-color: #666a49 !important;
}
.footer-section p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #d2c481;
  text-decoration: underline;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: #d2c481;
  text-decoration: underline;
}

.footer-contact i {
  width: 20px;
  margin-right: 10px;
  color: #fbffc4;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0 0;
  color: #888;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    padding: 0 20px 30px;
  }

  .footer-about,
  .footer-office,
  .footer-contact {
    margin-bottom: 30px;
    width: 100%;
  }

  .footer-section h3 {
    margin-bottom: 15px;
  }
}

/* Features Section */
.features-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.feature-card {
  background: white;
  padding: 30px;
  box-shadow: 0 10px 30px rgb(183 183 183 / 94%);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 1;
  border-radius: 20px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #6c63ff;
  font-size: 24px;
  position: relative;
  z-index: 2;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  font-weight: 700;
  color: #666a49;
  z-index: 1;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #666a49;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: #718096;
  margin-bottom: 25px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.read-more-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(to right, #666a49, #8c954a);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  color: white;
}

.gradient-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 200px;
  background: linear-gradient(135deg, #d2db94 0%, #666a49 100%);
  border-bottom-left-radius: 0%;
  z-index: 1;
}

.about-banner {
  position: relative;
  padding: 120px 0 80px;
  background: url("../image/banner-3.jpeg") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  border-bottom-left-radius: 92px;
  border-bottom-right-radius: 92px;
}

.about-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  border-bottom-left-radius: 92px;
  border-bottom-right-radius: 92px;
}

.about-banner .container {
  position: relative;
  z-index: 1;
}

.about-banner h1 {
  font-size: 4rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.about-us-section {
  padding: 100px 0;
  background-color: #fff;
  color: #333;
}

.about-us-image-wrapper {
  position: relative;
}

.about-us-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
}

.about-us-content h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #666a49;
  line-height: 1.2;
}

.about-us-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.content-line {
  width: 50px;
  height: 5px;
  background-color: #666a49;
  margin-top: 30px;
}
.statistics-section {
  background: url(../image/banner-3.jpeg);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.stat-item {
  margin-bottom: 30px;
}

.stat-item i {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .features-section {
    padding: 60px 0;
  }
}

/* Team Member Section */
.team-section {
  padding: 50px 0;
  background: url(../image/bg1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.text-primary {
  color: #666a49 !important;
}
.profile-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgb(197 197 197);
  text-align: center;
  position: relative;
  margin-top: 40px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.profile-banner {
  height: 10px;
  background: linear-gradient(135deg, #d2db94 0%, #666a49 100%);
  position: relative;
}

.profile-content {
  padding: 100px 25px 30px;
  position: relative;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid white;
  overflow: hidden;
  margin: -80px auto 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: white;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card h3 {
  margin: 15px 0 10px;
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 700;
}
.profile-card h6 {
  color: #718096;
  font-size: 1rem;
  line-height: 1.6;
}

.profile-card p {
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.follow-btn {
  background: #2d3748;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.follow-btn:hover {
  background: #1a202c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.slider-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}

.slider-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.slider-wrapper {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
}

.slider-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.carousel-item.active .mainImage {
  animation: zoomOut 10s linear forwards;
}

@keyframes zoomOut {
  0% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slider-item:hover .slider-image {
  transform: scale(1.05);
}

.slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  color: white;
  z-index: 2;
}

.slider-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.slider-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border: none;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

.slider-nav span {
  display: none;
}

.slider-nav::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  margin-right: 2px;
}

.slider-nav.next::before {
  transform: rotate(-135deg);
  margin-left: 2px;
  margin-right: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slider-title {
    font-size: 2rem;
  }

  .slider-subtitle {
    font-size: 0.9rem;
    padding: 0 20px;
  }

  .slider-item {
    height: 400px;
  }

  .slider-content {
    padding: 25px;
  }

  .slider-content h3 {
    font-size: 1.5rem;
  }

  .slider-content p {
    font-size: 0.8rem;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
  }
}

#roto {
  position: relative;
  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(0deg, #fff, transparent);
    opacity: 0;
    z-index: 4;
    transition: 0.2s all ease;
  }
  &.active::before {
    opacity: 1;
    height: 50%;
  }
}

body {
  color: #fff;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.navbar {
  padding: 15px 0;
  background-color: #0000005c !important;
  transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
  background-color: #666a49 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #ccc !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

.slide {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #000;
  .mainImage {
    position: absolute;
    width: 130vw;
    height: 130vw;
    object-fit: cover;
    object-position: center;
    left: 0;
    top: calc(50% - 65vw);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: zoomOut 10s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-iteration-count: 1;
    animation-duration: 1.1s;
  }
  .roundOuter {
    position: absolute;
    width: 86vw;
    height: 86vw;
    overflow: hidden;
    border-radius: 50%;
    left: calc(50% - 43vw);
    top: calc(50% - 43vw);
    filter: brightness(0.9);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    img {
      position: absolute;
      width: 130vw;
      height: 130vw;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      object-position: center;
      animation: zoomOut 10s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      animation-iteration-count: 1;
      animation-duration: 1.3s;
    }
  }
  .roundInner {
    position: absolute;
    width: 50vw;
    height: 50vw;
    overflow: hidden;
    left: calc(50% - 25vw);
    top: calc(50% - 25vw);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    img {
      position: absolute;
      width: 130vw;
      height: 130vw;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      object-fit: cover;
      object-position: center;
      animation: zoomOut 10s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      animation-iteration-count: 1;
      animation-duration: 1.2s;
    }
  }
  .slideText {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    background-color: rgb(0 0 0 / 42%);
    padding-top: 500px;
    h1 {
      font-size: 3vw;
      font-weight: bold;
      text-transform: uppercase;
      text-align: center;
      animation-delay: 1s;
      filter: drop-shadow(0 2px 10px #000);
      position: relative;
      &::after {
        content: "";
        position: absolute;
        width: 40vw;
        height: 1px;
        background-color: #fff;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
      }
    }
    p {
      text-align: center;
      word-spacing: 3px;
      padding: 10px 100px;
      animation-delay: 1.5s;
      filter: drop-shadow(0 2px 10px #000);
    }
    .buttonNav {
      display: flex;
      justify-content: center;
      gap: 12px;
      animation-delay: 1.7s;
      button {
        border: none;
        background: transparent;
        color: #fff;
        font-size: 1.3rem;
        filter: drop-shadow(0 2px 10px #000);
      }
      span {
        display: grid;
        width: 1px;
        flex: 0 0 1px;
        background-color: #fff;
        filter: drop-shadow(0 2px 10px #000);
      }
    }
  }
}

.tamil-menu .slideText h1 {
  font-size: 3vw !important;
}
.tamil-menu .slideText p {
  letter-spacing: 10px !important;
  font-size: 1rem !important;
}

#about {
  color: #999;
  padding-top: 80px;
  padding-bottom: 80px;
  h2 {
    color: #8e8454;
  }
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.navbar {
  background: #bfb789;
  height: 60px;
}

.navbar-brand .logo-img {
  width: 200px;
}

.navbar-nav .nav-link {
  color: #fff;
  margin-left: 11px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #ffffff;
  background: #00000000;
  border-radius: 20px;
  box-shadow: 0 0 10px #ffffff;
  padding: 4px 20px;
}

@media (max-width: 575px) {
  .slide {
    width: 100%;
    min-height: 71vh;
    position: relative;
    overflow: hidden;
    background-color: #000;
}
  
  .slide {
    .mainImage {
      width: 130vh;
      height: 130vh;
    }
    .roundOuter {
      width: 86vh;
      height: 86vh;
      left: calc(50% - 43vh);
      top: calc(50% - 43vh);
      img {
        width: 130vh;
        height: 130vh;
      }
    }
    .roundInner {
      width: 50vh;
      height: 50vh;
      left: calc(50% - 25vh);
      top: calc(50% - 25vh);
      img {
        width: 130vh;
        height: 130vh;
      }
    }
    .slideText {
      padding-top: 00px;
      h1 {
        font-size: 1.7rem;
      }
      p {
        padding: 10px;
      }
    }
  }
}
.base-template {
  padding: 50px 0 0;
  background-image: linear-gradient(
    -65deg,
    #666a49,
    rgba(18, 18, 19, 1),
    #666a49
  );
}
.slider-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 100%;
  height: 510px;
}

.slider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2.5rem;
  border: 1px solid transparent;
  background-image: linear-gradient(
      70deg,
      rgba(209, 206, 206, 0.6),
      rgba(102, 102, 102, 0.6)
    )
    border-box;
  mask:
    linear-gradient(#fff 0, #fff 100%) padding-box,
    linear-gradient(#fff 0, #fff 100%);
  mask-composite: exclude;
  mix-blend-mode: color-dodge;
  transition: background-color 0.6s ease-in-out;
}

/**
 * Background Slider
 */

.background-swiper {
  width: 100%;
  height: 100%;
}

.background-swiper .swiper-wrapper {
  align-items: center;
}

.slidehome {
  position: relative;
  overflow: hidden;
  max-width: 280px;
  max-height: 280px;
  width: 100%;
  border-radius: 1.25rem;
}

.slidehome::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #00000066;
}

/**
 * Centered Slider
 */

.centered-swiper {
  position: absolute !important;
  top: 50%;
  left: 50%;
  overflow: hidden;
  z-index: 10;
  max-width: 280px;
  max-height: 390px;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 1.25rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}

.centered-swiper__slide {
  cursor: pointer;
  width: 100%;
  transition: transform 0.6s ease;
}

.centered-swiper__slide a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.centered-swiper__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.centered-swiper__slide:hover img {
  transform: scale(1.05);
}

.background-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/**
 * Sliders Info
 */

.slider-section__title {
  margin: 0;
  position: absolute;
  top: 4.5%;
  left: 50%;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.slider-section__text {
  margin: 0;
  position: absolute;
  bottom: 0%;
  left: 50%;
  max-width: 280px;
  height: 50px;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  color: #bbbbbb;
  transform: translateX(-50%);
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(-50%);
    opacity: 1;
  }

  100% {
    transform: translateX(calc((-50% - 50px)));
    opacity: 0;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(calc(-50% + 50px));
    opacity: 0;
  }

  100% {
    transform: translateX(-50%);
    opacity: 1;
  }
}

.hidden-out {
  animation: slideOutLeft 0.4s forwards;
}

.hidden-in {
  animation: slideInRight 0.4s forwards;
}

.hidden {
  opacity: 0;
}

/**
 * Slider Control
 */

.slider-section__next-button {
  position: absolute;
  right: 2.5%;
  top: 50%;
  transform: translate(-50%, 2.5%);
}

.slider-section__prev-button {
  position: absolute;
  left: 2.5%;
  top: 50%;
  transform: translate(-50%, 2.5%);
}

.slider-section__next-button,
.slider-section__prev-button {
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 400;
  background-color: #ffffff33;
  backdrop-filter: blur(0.25rem);
  color: white;
  transform: translateY(-50%);
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    opacity 0.35s ease;
  cursor: pointer;
}

.slider-section__next-button.disabled,
.slider-section__prev-button.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.slider-section__next-button:hover,
.slider-section__prev-button:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.contact-info-container {
  display: flex;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.company-info {
  flex: 1;
  padding: 60px 40px;
  background: #f9f9f9;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-info h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
  color: #666a49;
  line-height: 1.2;
}

.company-info p {
  font-size: 18px;
  color: #666;
  margin-bottom: 0;
  font-weight: 500;
}

.orange-circle {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: #666a49;
  border-radius: 50%;
}

.contact-details {
  flex: 2;
  padding: 60px 40px;
  background: url(../image/about02.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  position: relative;
}

.contact-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 100vh 0;
  border-color: transparent #d2c481 transparent transparent;
}

.contact-now {
  background: #000000cd;
  padding: 30px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #d2c481;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  color: #eee;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: #d2c481;
  transform: translateY(-3px);
}

/* Responsive styles */
@media (max-width: 991px) {
  .contact-info-container {
    flex-direction: column;
  }

  .contact-details::before {
    display: none;
  }

  .company-info,
  .contact-details {
    padding: 40px 30px;
  }

  .company-info {
    text-align: center;
  }

  .orange-circle {
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}

.slider-section__next-button:active,
.slider-section__prev-button:active {
  background-color: rgba(255, 255, 255, 0.25);
  color: #04a1a1;
}

@media screen and (max-width: 767px) {
  .slider-section {
    padding: 2.5rem 1px;
    height: 550px;
  }

  .slidehome {
    max-width: 200px;
    max-height: 200px;
  }

  .centered-swiper {
    max-width: 200px;
    max-height: 300px;
  }

  .slider-section__next-button,
  .slider-section__prev-button {
    width: 50px;
    height: 50px;
    font-size: 0.875rem;
  }

  .slider-section__title {
    top: 15%;
    font-size: 1.5rem;
  }

  .slider-section__text {
    bottom: 10%;
    height: 3.75rem;
    font-size: 1rem;
  }
  .navbar-brand .logo-img {
    width: 130px;
    height: auto;
  }
}

@media screen and (max-width: 575px) {
  .base-template__title {
    margin-bottom: 30px;
  }

  .slider-section__title {
    top: 10%;
  }

  .slider-section__text {
    bottom: 7.5%;
  }

  .slider-section__prev-button {
    top: 50%;
    left: 5%;
  }

  .slider-section__next-button {
    top: 50%;
    right: 5%;
  }
}

.shape-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background-color: #666a49;
  border-radius: 0 0 100% 0;
}

.shape-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: #666a49;
  border-radius: 100% 0 0 0;
}

.features-section,
#about,
.base-template,
.team-section,
.footer-section {
  position: relative;
  overflow: hidden;
}

.useful-links-section {
  padding: 50px 0 0;
  background-size: cover;
  background-position: center;
  background: #fff;
}

.useful-links-section h1 {
  color: #666a49;
  font-weight: 700;
}

.link-card {
  background: white;
  border-radius: 10px;
  padding: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-card:hover {
  transform: translateY(-5px);
}

.link-card img {
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Swiper Styles */
.useful-links-swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #666a49;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #666a49;
  opacity: 1;
}

.swiper-pagination {
  position: relative;
}
