@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

@font-face {
  font-family: "Soligant";
  src: url("./fonts/soligant/Soligant.ttf") format("truetype");
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  /* Reduced side padding for better adaptability */
  position: fixed;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  box-sizing: border-box;
  /* Ensures padding is included in width calculation */
  animation: fadeIn 0.5s ease-out;
}

.navbar-scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
}

.logo-scrolled {
  display: none;
}

.logo-scrolled img {
  height: 50px;
}

.navbar-scrolled .logo {
  display: none;
}

.navbar-scrolled .logo-scrolled {
  display: flex;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  /* Reset default margin */
  padding: 0;
  /* Reset default padding */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links-container {
  margin-right: 0;
  /* Reset fixed margin and use flex spacing instead */
}

.nav-links li {
  margin: 0 10px;
  /* Slightly reduced margins between links */
  font-family: "Poppins", sans-serif;
}

.nav-links a {
  color: rgb(251, 243, 243);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-scrolled .nav-links a {
  color: #333;
}

.nav-links a:hover {
  color: #bc2649;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #bc2649;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  /* Slightly reduced padding */
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.navbar-scrolled .btn-outline {
  background: transparent;
  border: 1px solid black;
  color: black;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar-scrolled .btn-outline:hover {
  background: black;
  color: white;
}

.btn-filled {
  background: white;
  color: #333;
  border: 1px solid white;
}

.navbar-scrolled .btn-filled {
  background: black;
  color: white;
  border: 1px solid black;
}

.btn-filled:hover {
  background: rgba(255, 255, 255, 0.9);
}

.navbar-scrolled .btn-filled:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-scrolled .hamburger span {
  background-color: black;
}

/* Hamburger Menu Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Responsive Navbar Styles */
/* Large Desktop */
@media (min-width: 1200px) {
  .navbar {
    padding: 20px 10%;
  }

  .nav-links-container {
    margin-right: 50px;
  }

  .nav-links li {
    margin: 0 15px;
  }

  .btn {
    padding: 10px 25px;
  }
}

/* Small Laptop to Large Tablet */
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar {
    padding: 20px 5%;
  }

  .nav-links-container {
    margin-right: 20px;
  }

  .nav-links li {
    margin: 0 10px;
  }
}

/* Medium Tablet */
@media (min-width: 769px) and (max-width: 991px) {
  .navbar {
    padding: 15px 4%;
  }

  .nav-links-container {
    margin-right: 10px;
  }

  .nav-links li {
    margin: 0 8px;
  }

  .btn {
    padding: 8px 15px;
    font-size: 13px;
  }
}

/* Mobile and Small Tablet */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 15px 5%;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(243, 240, 240, 0.9);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-links a {
    color: #000;
  }

  .nav-buttons {
    display: none;
  }

  /* Show nav buttons in mobile menu */
  .nav-links.active .nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .logo img {
    height: 40px;
  }

  .navbar {
    padding: 15px 4%;
  }
}

/* Import Soligant Font (or fallback to similar fonts) */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Cormorant+Garamond:wght@300;400;600&display=swap");

/* Common button styles (needed for hero buttons) */
.btn {
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section Styles */

@import url("https://fonts.googleapis.com/css2?family=Soligant:wght@400&display=swap");

/* Carousel Container */
.hero-carousel {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

/* Slides Container */
.carousel-slides {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  /* z-index: ; */
}

/* Individual Slide */
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

/* First Slide - Original Hero */
.hero {
  height: 100%;
  width: 100%;
  background-image: url("images/WhatsApp\ Image\ 2025-04-17\ at\ 12.13.34\ PM.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-2 {
  background-image: url("images/amala-poul/3.jpeg");

}

/* Second Slide - Video Background */
.video-slide {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        } */

.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  min-width: 177.77vh;
  /* 16:9 aspect ratio */
  min-height: 56.25vw;
  /* 16:9 aspect ratio */
  z-index: 1;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* Hero Content */
.hero-content {
  width: 100%;
  padding: 0 10%;
  color: white;
  position: relative;
  z-index: 10;
  top: 110px;
}

.hero-text h1 {
  color: #fff;
  font-family: "Soligant", sans-serif;
  font-size: 90.804px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  animation: fadeInUp 1s ease-out;
  transition: transform 0.3s ease;
}

.hero-text h1:hover {
  transform: scale(1.02);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

/* .btn {
            padding: 15px 40px;
            text-decoration: none;
            font-size: 18px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-filled {
            background: white;
            color: #333;
            border: 2px solid white;
        }

        .btn-filled:hover {
            background: transparent;
            color: white;
        } */

.btn-primary {
  background: #d13b5b;
  color: white;
  border: 2px solid #d13b5b;
}

.btn-primary:hover {
  background: #b02e4a;
  border-color: #b02e4a;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 20;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: white;
  width: 40px;
  border-radius: 20px;
}

/* Arrow Navigation */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;

  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  display: none;
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
}

.carousel-arrow.prev {
  left: 40px;
}

.carousel-arrow.next {
  right: 40px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .hero-text h1 {
    font-size: 4rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .hero-carousel {
    height: 75vh;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    width: fit-content;
  }

  .hero-content {
    top: 50px;
  }

  .carousel-arrow {
    display: none;
  }

  .btn {
    padding: 8px 15px;
    font-size: 14px;

  }
}

@media screen and (max-width: 480px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    top: 0;
    padding: 0 5%;
  }

  .carousel-nav {
    bottom: 20px;
  }
}

/* Feature section Styles */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

.features-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.features-section-header {
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
}

.features-section-title {
  color: #000;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin: 0 0 15px;
}

.features-section-description {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  padding: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: #f9f0f2;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  padding: 30px 25px;
  align-self: stretch;
  width: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-image-container {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: transform 0.5s ease;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(#bc2649, #e06683);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.feature-title {
  color: #04151f;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin: 0 0 8px;
}

.feature-description {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.center-image {
  grid-column: 2;
  grid-row: 1 / span 3;
}

.left-card-1 {
  grid-column: 1;
  grid-row: 1;
}

.left-card-2 {
  grid-column: 1;
  grid-row: 2;
}

.left-image {
  grid-column: 1;
  grid-row: 3;
}

.right-card-1 {
  grid-column: 3;
  grid-row: 2;
}

.right-card-2 {
  grid-column: 3;
  grid-row: 3;
}

.right-image {
  grid-column: 3;
  grid-row: 1;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .feature-card {
    width: 100%;
    padding: 15px 25px;
  }
}

.features-section {
  padding: 60px 75px;
}

.feature-title {
  font-size: 17px;
}

.feature-icon {
  margin-bottom: 10px;
}

.feature-description {
  font-size: 13px;
}

.features-section-title {
  font-size: 40px;
}

.features-section-header {
  font-size: 12px;
}

.features-section-description {
  margin: 0 auto 32px;
  font-size: 14px;
}

.feature-icon {
  width: 50px;
  height: 50px;
}

@media (max-width: 992px) {
  .features-section {
    padding: 60px 40px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 15px;
  }

  .center-image {
    grid-column: 1 / span 2;
    grid-row: 1;
    height: 350px;
  }

  .left-card-1 {
    grid-column: 1;
    grid-row: 2;
  }

  .right-card-1 {
    grid-column: 2;
    grid-row: 2;
  }

  .left-card-2 {
    grid-column: 1;
    grid-row: 3;
  }

  .right-image {
    grid-column: 2;
    grid-row: 4;
    height: 100%;
    display: none;
  }

  .left-image {
    grid-column: 1;
    grid-row: 4;
    height: 250px;
    display: none;
  }

  .right-card-2 {
    grid-column: 2;
    grid-row: 3;
  }

  .features-section-title {
    font-size: 36px;
  }

  .features-section-description {
    font-size: 16px;
    padding: 0 15px;
  }
}

/* Mobile Styles */
@media (max-width: 576px) {
  .features-section {
    padding: 40px 25px;
  }

  .feature-card {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, auto);
    gap: 15px;
  }

  .center-image,
  .left-card-1,
  .left-card-2,
  .left-image,
  .right-card-1,
  .right-card-2,
  .right-image {
    grid-column: 1;
  }

  .center-image {
    grid-row: 1;
    height: 300px;
  }

  .left-card-1 {
    grid-row: 2;
  }

  .left-card-2 {
    grid-row: 3;
  }

  .left-image {
    grid-row: 4;
    height: 200px;
    display: none;
  }

  .right-card-1 {
    grid-row: 5;
  }

  .right-image {
    grid-row: 6;
    height: 200px;
    display: none;
  }

  .right-card-2 {
    grid-row: 7;
  }

  .features-section-title {
    font-size: 28px;
  }

  .features-section-description {
    font-size: 15px;
    line-height: 1.5;
  }

  .feature-card {
    padding: 20px 20px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-description {
    font-size: 14px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
}

/* @media (min-width: 992px) {
  .features-grid {
    height: auto;
    aspect-ratio: 16/9;
    max-height: 650px;
  }
  .feature-card {
    width: 340px;
  }
} */

/* Service Sections styles*/

.services-section {
  background: #fdf7f9;
  display: flex;
  width: 100%;
  padding: 75px 95px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.service-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 75px;
  align-self: stretch;
  max-width: 1200px;
  margin: auto;
}

/* Headers */
.service-header {
  margin-bottom: 40px;
}

.service-header h6 {
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.service-header h2 {
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 67.2px */
}

.service-header p {
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 26px */
  max-width: 535px;
  opacity: 0.75;
}

/* Service Sections */
.service-section {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  align-self: stretch;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-content {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.service-content-reverse {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.service-info {
  flex: 1;
  min-width: 300px;
}

.service-info h3 {
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 33px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 50.4px */
}

.service-info h3 a {
  color: #000;
  text-decoration: none;
}

.service-info p {
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-top: 5px;
  line-height: 130%;
  /* 20.8px */
  opacity: 0.75;
}

/* Service Lists */
.service-list {
  width: 100%;
  margin-top: 20px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 15px;
}

.service-icon {
  width: 40px;
  height: 40px;
  background-color: #e74c5e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon i {
  color: white;
  font-size: 18px;
}

.service-text h4 {
  color: var(--dark, #04151f);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  /* 26.4px */
}

.service-text p {
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  opacity: 0.75;
  align-self: stretch;
}

/* Image Container */
.image-container {
  flex: 1;
  min-width: 300px;
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.image-slider {
  /* position: relative; */
  height: 100%;
  min-height: inherit;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  /* Ensure active slide is on top */
}

/* Navigation Arrows */
.arrow-nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.arrow {
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.arrow:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.arrow span {
  color: white;
  font-size: 18px;
}

.services-read-btn {
  display: inline-block;
  margin-top: 15px;
}

.read-more-btn {
  position: relative;
  background: transparent;
  border: 1px solid #333;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  padding: 10px 20px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-block;
  border-radius: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-width: 120px;
}

.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #bc2649, #e06683);
  transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.read-more-btn:hover::before {
  left: 0;
}

.read-more-btn:hover {
  color: white;
  border-color: #bc2649;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.read-more-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

/* Pulse border effect */
.read-more-btn.pulse-border {
  border: 2px solid #ff6b9d;
  background: transparent;
  position: relative;
}

.read-more-btn.pulse-border::before {
  background: linear-gradient(45deg, #bc2649, #e06683);
}

.read-more-btn.pulse-border:hover {
  animation: pulse-glow 1.5s infinite;
  border-color: #e91e63;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(233, 30, 99, 0);
  }
}

/* Mobile-specific button styles */
@media (max-width: 768px) {
  .read-more-btn {
    font-size: 14px;
    padding: 10px 24px;
    min-width: 120px;
    border-radius: 10px;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 480px) {
  .read-more-btn {
    font-size: 13px;
    padding: 8px 20px;
    min-width: 100px;
    letter-spacing: 0.2px;
  }
}

/* Responsive */

@media (min-width: 992px) and (max-width: 1024px) {
  .service-container {
    gap: 60px;
  }

  .service-header {
    margin-bottom: 10px;
  }

  .service-header h2 {
    font-size: 45px;
  }

  .service-header p {
    font-size: 16px;
  }

  .service-info h3 {
    font-size: 30px;
  }

  .service-info p {
    font-size: 13px;
  }

  .service-text h4 {
    font-size: 16px;
  }
}

@media screen and (max-width: 992px) {
  .service-post-featured {
    grid-column: span 6;
    grid-row: 1;
  }

  .service-post-large {
    grid-column: 7 / span 6;
    grid-row: 1 / span 2;
  }

  .service-post-regular {
    grid-column: span 3;
    grid-row: 2;
  }
}

@media screen and (max-width: 768px) {
  .services-section {
    padding: 40px 55px;
  }

  .service-header {
    margin-bottom: 10px;
  }

  .service-container {
    gap: 50px;
    /* Reduced gap */
  }

  .service-section {
    gap: 24px;
    /* Reduced gap */
  }

  .service-content {
    flex-direction: column-reverse;
  }

  .service-content-reverse {
    flex-direction: column;
    gap: 20px;
  }

  .service-header h2 {
    font-size: 32px;
  }

  .service-header p {
    font-size: 17px;
  }

  .service-info h3 {
    font-size: 28px;
  }

  .image-container {
    height: 300px;
    min-height: 250px;
    /* Ensure minimum height on mobile */
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 30px 25px;
  }

  .service-header {
    margin-bottom: 15px;
  }

  .service-header h6 {
    font-size: 12px;
  }

  .service-header p {
    font-size: 14px;
  }

  .service-section {
    gap: 20px;
    /* Reduced gap */
  }

  .service-content {
    flex-direction: column-reverse;
    gap: 20px;
    /* Reduced gap */
  }

  .service-content-reverse {
    flex-direction: column;
    /* gap: 20px; */
  }

  .service-container {
    gap: 20px;
  }

  .service-header h2 {
    font-size: 28px;
  }

  .service-info h3 {
    font-size: 20px;
  }

  .service-info p {
    font-size: 13px;
  }

  .service-info,
  .image-container {
    min-width: unset;
    /* Remove minimum width */
    width: 100%;
  }

  .service-text h4 {
    font-size: 15px;
  }

  .image-container {
    height: 250px;
  }
}

/* Gallery Section Styles */
.gallery-section {
  padding: 40px 5%;
  background-color: #f9f9f9;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-logo {
  font-size: 1.2rem;
  font-weight: 600;
  color: #bc2649;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.gallery-title {
  font-size: 3rem;
  font-family: "Playfair Display", serif;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gallery-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-item-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.gallery-item-description {
  font-size: 1rem;
  opacity: 0.9;
}

/* Gallery Item Sizes */
.gallery-item-featured {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item-large {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item:not(.gallery-item-featured):not(.gallery-item-large) {
  grid-column: span 3;
  grid-row: span 1;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
  .gallery-grid {
    gap: 20px;
  }

  .gallery-item-featured,
  .gallery-item-large {
    grid-column: span 6;
  }

  .gallery-item:not(.gallery-item-featured):not(.gallery-item-large) {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .gallery-title {
    font-size: 2.5rem;
  }

  .gallery-subtitle {
    font-size: 1rem;
  }

  .gallery-item-featured,
  .gallery-item-large,
  .gallery-item:not(.gallery-item-featured):not(.gallery-item-large) {
    grid-column: span 6;
  }
}

@media (max-width: 480px) {
  .gallery-section {
    padding: 40px 3%;
  }

  .gallery-title {
    font-size: 2rem;
  }

  .gallery-grid {
    gap: 15px;
  }

  .gallery-item-featured,
  .gallery-item-large,
  .gallery-item:not(.gallery-item-featured):not(.gallery-item-large) {
    grid-column: span 12;
  }
}

/* Gallery Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item {
  animation: fadeIn 0.5s ease-out forwards;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.1s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(4) {
  animation-delay: 0.3s;
}

/* Testimonial styles */

.testimonial-section {
  background: #fdf7f9;
  padding: 20px 0;
  overflow: hidden;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.testimonial-left {
  flex: 1;
  max-width: 500px;
  z-index: 2;
}

.testimonial-right {
  flex: 1;
  position: relative;
  z-index: 1;
}

.quote-icon {
  color: #e05a7a;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-category {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.testimonial-heading {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #111;
}

.testimonial-content-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-content {
  transition: opacity 0.3s ease;
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #444;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
}

.testimonial-image-stack {
  position: relative;
  width: 440px;
  height: 439px;
  margin: 0 auto;
}

.testimonial-image {
  position: absolute;
  width: 440px;
  height: 439px;
  flex-shrink: 0;
  border-radius: 20px;
  /* background-color: #333; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

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

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

.testimonial-image-current {
  z-index: 3;
  transform: translateX(0) scale(1);
  opacity: 1;
}

.testimonial-image-next {
  z-index: 2;
  transform: translateX(30px) scale(0.92);
  /* Reduced scale, adjusted position */
  opacity: 1;
  height: 85%;
  /* Reduce height */
  top: 5%;
  /* Center it vertically */
  border-radius: 22px;
  /* Slightly rounder corners */
}

.testimonial-image-nextnext {
  z-index: 1;
  transform: translateX(50px) scale(0.85);
  /* Reduced scale, adjusted position */
  opacity: 1;
  height: 75%;
  /* Further reduce height */
  top: 10%;
  /* Center it vertically */
  border-radius: 24px;
  /* Even rounder corners */
}

.testimonial-image-bg {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #b6daea;
  position: absolute;
  top: -40px;
  right: -40px;
  z-index: 0;
}

.testimonial-navigation {
  display: flex;
  justify-content: flex-start;
  margin-top: 30px;
  gap: 10px;
}

.nav-arrow {
  background-color: transparent;
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background-color: #e05a7a;
  border-color: #e05a7a;
}

.nav-arrow:hover svg path {
  fill: #fff;
}

.nav-arrow svg {
  width: 20px;
  height: 20px;
}

/* Media Queries for Responsiveness */

@media (min-width: 992px) and (max-width: 1024px) {
  .testimonial-container {
    padding: 60px 75px;
  }

  .testimonial-heading {
    font-size: 38px;
    margin-bottom: 10px;
  }

  .testimonial-text {
    font-size: 15px;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 992px) {
  .testimonial-container {
    padding: 40px 20px;
    gap: 30px;
  }

  .testimonial-heading {
    font-size: 2.5rem;
  }

  .testimonial-image-stack {
    width: 360px;
    height: 400px;
  }

  .testimonial-image {
    width: 360px;
    height: 400px;
  }

  .testimonial-image-next {
    transform: translateX(30px) scale(0.95);
  }

  .testimonial-image-nextnext {
    transform: translateX(60px) scale(0.9);
  }
}

@media screen and (max-width: 768px) {
  .testimonial-section {
    padding: 20px 45px;
  }

  .testimonial-container {
    display: grid;
    grid-template-areas:
      "quote"
      "category"
      "heading"
      "image"
      "content"
      "navigation";
    text-align: center;
    padding: 30px 20px;
    gap: 3px;
  }

  .quote-icon {
    grid-area: quote;
    margin-bottom: 2px;
    text-align: start;
  }

  .testimonial-category {
    grid-area: category;
  }

  .testimonial-heading {
    grid-area: heading;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .testimonial-right {
    grid-area: image;
    margin: 20px 0;
    width: 100%;
  }

  .testimonial-content-wrapper {
    grid-area: content;
  }

  .testimonial-navigation {
    grid-area: navigation;
    justify-content: center;
  }

  .testimonial-left {
    display: contents;
    /* This makes the children become grid items */
  }

  .testimonial-text {
    font-size: 1rem;
    text-align: left;
    margin: 20px 0;
  }

  .testimonial-author {
    text-align: left;
  }

  .testimonial-image-stack {
    width: 300px;
    height: 330px;
  }

  .testimonial-image {
    width: 300px;
    height: 330px;
  }

  .testimonial-image-next {
    transform: translateX(25px) scale(0.95);
  }

  .testimonial-image-nextnext {
    transform: translateX(50px) scale(0.9);
  }

  .testimonial-navigation {
    justify-content: center;
    margin-top: 30px;
  }
}

@media screen and (max-width: 480px) {
  .testimonial-section {
    padding: 20px 20px;
  }

  .testimonial-container {
    padding: 20px 10px;
    gap: 15px;
  }

  .testimonial-heading {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .testimonial-text {
    font-size: 0.9rem;
    /* margin-bottom: 10px; */
    margin: 20px 0;
  }

  .testimonial-author {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  .testimonial-container {
    padding: 20px 15px;
  }

  .testimonial-heading {
    font-size: 1.8rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .testimonial-image-stack {
    width: 250px;
    height: 280px;
  }

  .testimonial-image {
    width: 250px;
    height: 280px;
  }

  .testimonial-navigation {
    margin-top: 10px;
  }

  .testimonial-image-next {
    transform: translateX(20px) scale(0.95);
  }

  .testimonial-image-nextnext {
    transform: translateX(40px) scale(0.9);
  }
}

/* Connect-us-section styles */

.connect-section {
  max-width: 100%;
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.section-title {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #000;
  font-weight: 600;
  line-height: 130%;
  /* 18.2px */
  letter-spacing: 2.8px;
  opacity: 0.75;
}

.main-title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.description {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

.cta-button {
  display: inline-block;
  background-color: #c83150;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 40px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #a7293f;
}

.image-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.slider-track {
  display: flex;
  width: fit-content;
  align-items: center;
  padding: 35px 0;
}

.slider-image {
  flex: 0 0 auto;
  width: 150px;
  height: 220px;
  border-radius: 10px;
  margin: 0 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Only two sizes - big and small */
.slider-image.big {
  width: 250px;
  height: 250px;
}

.slider-image.small {
  width: 150px;
  height: 220px;
  top: -40px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .main-title {
    font-size: 28px;
    padding: 0 10px;
  }

  .description {
    font-size: 16px;
    padding: 0 10px;
  }

  .slider-image {
    width: 120px;
    height: 180px;
    margin: 0 8px;
  }

  .slider-image.big {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 24px;
  }

  .slider-image.small {
    width: 100px;
    height: 140px;
    margin: 0 6px;
    top: -25px;
  }

  .slider-image.big {
    width: 150px;
    height: 150px;
  }
}

/* Footer-section styles */

.footer {
  background-color: #a7293f;
  padding: 30px 0;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 0.5fr;
  gap: 40px;
  padding: 0 20px;
}

.footer-logo img {
  max-width: 190px;
  height: auto;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  max-width: 300px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-links li {
  margin-bottom: 10px;
}

.footer-nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  position: relative;
}

.footer-nav-links a:hover {
  color: #fff;
}

.footer-nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}

.footer-nav-links a:hover::after {
  width: 100%;
}

.contact-name {
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
  font-size: 14px;
}

.contact-address,
.contact-phone,
.contact-email {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  text-align: left !important;

  svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    /* margin-top: trapx; */
    float: left;
    transform: translateY(2px);
  }
}

.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  /* flex-direction: column; */
  gap: 15px;

  /* display: flex; */
  /* gap: 1rem; */
  /* flex-direction: row; */
}

.social-icons li {
  margin-bottom: 5px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #e8e8e8;
  border-radius: 50%;
  color: #b02e4a;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  background-color: #fff;
  color: white;
}

.social-icons svg {
  width: 16px;
  height: 16px;
}

/* Tablet Styles */

/* @media (min-width:992px) and ( max-width: 1024px) {
.footer-container {
  padding: 10px 35px;
}
} */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-logo-column,
  .footer-nav-column {
    grid-column: span 1;
  }

  .footer-contact-column {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-social-column {
    grid-column: 2;
    grid-row: 2;
  }

  .social-icons {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Mobile Styles */
@media (max-width: 576px) {
  .footer {
    padding: 15px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-heading {
    margin-bottom: 10px;
  }

  .footer-logo-column,
  .footer-nav-column,
  .footer-contact-column,
  .footer-social-column {
    grid-column: 1;
  }

  .footer-logo-column {
    grid-row: 1;
  }

  .footer-nav-column {
    grid-row: 2;
  }

  .footer-nav-links li {
    margin-bottom: 5px;
  }

  .footer-contact-column {
    grid-row: 3;
  }

  .footer-social-column {
    grid-row: 4;
  }

  .social-icons {
    flex-direction: row;
    justify-content: flex-start;
  }

  .footer-description {
    max-width: 100%;
  }
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Add animation classes for JavaScript */
.animate-fadeIn {
  animation: fadeIn 0.5s ease-out;
}

.animate-fadeInUp {
  animation: fadeInUp 0.5s ease-out;
}

.animate-slideInRight {
  animation: slideInRight 0.5s ease-out;
}

.animate-scaleIn {
  animation: scaleIn 0.5s ease-out;
}

/* Mobile Menu Animation */
.nav-links {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links.active {
  transform: translateX(0);
}

/* Hamburger Menu Animation */
.hamburger span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Image Hover Effects */
.image-container img {
  transition: transform 0.5s ease;
}

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

/* Social Icons Animation */
.social-icons a {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

/* Footer Link Animations */
.footer-nav-links a {
  position: relative;
  transition: color 0.3s ease;
}

.footer-nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #d9546b;
  transition: width 0.3s ease;
}

.footer-nav-links a:hover::after {
  width: 100%;
}

.services-read-btn.gallery {
  display: block;
  justify-items: center;
}


.breadcrump {
  height: 50vh !important;

  .hero-content {
    top: 0;

    gap: 30px;
  }

  .hero-buttons {
    margin: 0;
  }

}

.breadcrump::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .breadcrump {
    height: 30vh !important;
  }
}

/* Submenu Styles */
.has-submenu {
  position: relative;
}

.has-submenu .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  min-width: 220px;
  padding: 1rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.submenu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.submenu li a:hover {
  background: rgba(188, 38, 73, 0.05);
  color: #BC2649;
  padding-left: 2rem;
}

/* Arrow Styles */
.submenu-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 6px;
  vertical-align: middle;
}

.has-submenu:hover .submenu-arrow {
  transform: rotate(-135deg);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .has-submenu .submenu {
    position: static;
    /* background: rgba(255, 255, 255, 0.5); */
    background: transparent;
    box-shadow: none;
    padding: 0.5rem 0;
    margin: 0.5rem 0 0.5rem 1.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
  }

  .has-submenu.active .submenu {
    display: block;
  }

  .submenu li {
    margin: 0.25rem 0;
  }

  .submenu li a {
    padding: 0.75rem 1rem;
    color: #131313;
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
  }

  .submenu li a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin-right: 10px;
    transition: all 0.3s ease;
  }

  .submenu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
    opacity: 1;
  }

  .submenu li a:hover::before {
    background: #fff;
    transform: scale(1.2);
  }

  .has-submenu>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding-right: 2rem; */
  }

  .has-submenu>a::after {
    position: absolute;
    right: 1rem;
    /* top: 50%; */
    /* transform: translateY(-50%) rotate(45deg); */
    border-color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
  }

  .has-submenu.active>a::after {
    /* transform: translateY(-50%) rotate(-135deg); */
  }

  /* Adjust hamburger menu for submenu */
  .nav-links.active .has-submenu .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .nav-links.active .has-submenu.active .submenu {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
  }
}

/* Celebrities Section Styles */
.celebrities-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.celebrities-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.celebrities-header {
  text-align: center;
  margin-bottom: 50px;
}

.celebrities-header h6 {
  color: #666;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.celebrities-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.celebrities-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.celebrity-feature {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.celebrity-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.celebrity-info {
  padding: 20px;
}

.celebrity-info h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.celebrity-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.celebrity-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(10px);
}

.highlight-icon {
  font-size: 1.5rem;
}

.celebrity-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.celebrity-video {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.celebrity-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
}

.celebrity-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-image.amala-poul {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .celebrity-content {
    grid-template-columns: 1fr;
  }

  .celebrity-info {
    order: 2;
  }

  .celebrity-media {
    order: 1;
  }
}

@media (max-width: 768px) {
  .celebrities-header h2 {
    font-size: 2rem;
  }

  .celebrity-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .celebrity-gallery {
    grid-template-columns: 1fr;
  }

  .celebrity-content {
    padding: 20px;
  }
}

p {
  text-align: justify !important;
}