@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap");

:root {
  --primary-color: #fff200;
  --primary-light: #fffb99;
  --primary-dark: #e6d900;
  --secondary-color: #000000;
  --secondary-light: #333333;
  --secondary-dark: #1a1a1a;
  --text-dark: #000000;
  --text-light: #333333;
  --background-light: #fffee6;
  --white: #ffffff;
  --transition-speed: 0.3s;
  --border-radius: 12px;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  transition: var(--transition-speed);
}
ul {
  list-style: none;
}
.section__container {
  max-width: 1200px;
  margin: auto;
  padding: 5rem 1rem;
}
.section__header {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 2.5rem;
  margin-bottom: 30px;
}
.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  background-color: var(--secondary-color);
  transform: scale(1.05);
}


.header {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)
    ),
    url("assets/header.jpg"); 
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.header__container h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: orange;
}
.header__flex {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.header__card {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}
.header__card:hover {
  transform: translateY(-15px) rotateX(10deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-light);
  background: rgba(255, 242, 0, 0.1);
}
.header__card span {
  font-size: 2.5rem;
  color: var(--primary-color);
  transform: translateZ(30px);
}
.header__card div {
  transform: translateZ(20px);
}
nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: linear-gradient(
    135deg,
    rgba(44, 62, 80, 0.9) 0%,
    rgba(44, 62, 80, 0.7) 100%
  );
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.logo img {
  width: 150px;
  border-radius: 50%;
}
.nav__menu__btn {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.nav__links a:hover {
  color: var(--primary-light);
}
.nav__links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}
.nav__links a:hover::after {
  width: 100%;
}
@media screen and (max-width: 400px) {
  
  .nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(44, 62, 80, 0.9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .logo img {
    width: 100px;
    height: auto;
  }

  .nav__menu__btn {
    font-size: 1.8rem;
    color: #ffffff;
    cursor: pointer;
    z-index: 1002;
  }

  .nav__mobile__menu {
    position: fixed;
    top: 0;
    right: -80%; /* Initially hidden */
    width: 70%; /* Menu takes 70% of the screen width */
    height: 100vh;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px); /* Adds a subtle blur effect */
    transition: right 0.3s ease-in-out;
    z-index: 1001;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 0 12px 12px 0;
  }

  .nav__mobile__menu.active {
    right: 0;
  }

  .nav__links {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.2rem;
    padding: 1.5rem;
  }

  .nav__links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f39c12;
    transition: width 0.3s ease;
  }

  .nav__links a:hover::after {
    width: 100%;
  }
  .nav__links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .nav__mobile__menu.active .nav__links li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav__mobile__menu.active .nav__links li:nth-child(1) { transition-delay: 0.2s; }
  .nav__mobile__menu.active .nav__links li:nth-child(2) { transition-delay: 0.3s; }
  .nav__mobile__menu.active .nav__links li:nth-child(3) { transition-delay: 0.4s; }
  .nav__mobile__menu.active .nav__links li:nth-child(4) { transition-delay: 0.5s; }

  .nav__links a {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .nav__links a:hover {
    color: #f39c12;
    transform: scale(1.05);
  }
  .nav__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.8rem;
    color: #ffffff;
    cursor: pointer;
  }

  .header {
    padding-top: 60px;
    height: auto;
    min-height: 100vh;
  }

  .header__container h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .header__flex {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .header__card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

}
/* WhatsApp Float Button */
.whatsapp-float-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  text-decoration: none;
}
.whatsapp-icon-container {
  display: flex;
  align-items: center;
  justify-content: center; 
  background-color: #25D366;
  color: white;
  width: 60px; 
  height: 60px;
  border-radius: 50%; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}
.whatsapp-icon-container:hover {
  background-color: #128C7E;
  transform: scale(1.1) rotate(5deg);
}
.whatsapp-icon-container i {
  font-size: 28px;
}
.whatsapp-tooltip {
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2c3e50;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.whatsapp-icon-container:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 400px){
  .whatsapp-float-button {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon-container {
    width: 45px;
    height: 45px;
  }

  .whatsapp-icon-container i {
    font-size: 22px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .whatsapp-icon-container.active {
    background-color: #128C7E;
  }

  .whatsapp-icon-container.active .whatsapp-tooltip {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
/* about us styles  */
.about-us-section {
  background-color: var(--background-light);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.about-us-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.about-us-image-container {
  position: relative;
  flex-shrink: 0;
}

.about-us-image {
  position: relative;
  width: 400px;
  height: 700px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-us-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.about-us-text {
  flex: 1;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.main-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.feature-box {
  background: var(--white);
  border: 2px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: var(--primary-light);
}

.feature-box h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-box ul {
  list-style: none;
}

.feature-box ul li {
  color: var(--text-light);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.closing-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 2rem 0;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .about-us-content {
    flex-direction: column;
    text-align: center;
  }

  .about-us-image {
    width: 350px;
    height: 400px;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-us-buttons {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .about-us-section {
    padding: 4rem 1rem;
  }

  .about-us-image {
    width: 300px;
    height: 350px;
  }
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 400px) {
  .about-us-section {
    padding: 3rem 1rem;
  }

  .about-us-image {
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .about-us-image-main {
    height: 100%;
    object-fit: contain;
  }
}
 /* Services Section Styles */
.services__container {
  background: linear-gradient(135deg, var(--background-light) 0%, #fffdd9 100%);
  padding: 6rem 2rem;
}
.services__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
.services__header h2 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.services__header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}
.services__header h2::before {
  content: "🐾";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  animation: bounce 2s infinite;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.services__card {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
  transition: all 0.5s ease;
}
.services__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.services__card:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.8)
  );
}
.services__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.services__card:hover .services__card-content {
  transform: translateY(0);
}
.services__icon {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease 0.1s;
}
.services__card:hover .services__icon {
  transform: translateY(0);
  opacity: 1;
}
.services__card-content h4 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease 0.2s;
}
.services__card:hover .services__card-content h4 {
  transform: translateY(0);
  opacity: 1;
}
.services__card-content p {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease 0.3s;
}
.services__card:hover .services__card-content p {
  transform: translateY(0);
  opacity: 1;
}
.services__btn {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.8rem 1rem;
  border-radius: 15px;
  font-weight: 500;
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease 0.4s;
}

.services__card:hover .services__btn {
  transform: translateY(0);
  opacity: 1;
}
.services__btn:hover {
  background: var(--primary-dark);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-2{
  background: transparent;
  /* border-color: white; */
  border: 2px solid white;
  color: var(--white);
  border-radius: 15px;
  margin-left: 20px;
}

.btn-2:hover{
  background: transparent;
  /* border-color: white; */
  border: 1px solid white;
  color: var(--white);
}
.services__card-boarding {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("assets/about-1.jpg");
  background-size: cover;
  background-position: center;
}
.services__card-grooming {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("assets/about-2.webp");
  background-size: cover;
  background-position: center;
}
.services__card-food {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("assets/about-3.jpg");
  background-size: cover;
  background-position: center;
}
/* Animation Keyframes */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(-10px) translateX(-50%);
  }
}
.services__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
  z-index: 1;
}
.services__card:hover::after {
  left: 100%;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
  .services__header h2 {
    font-size: 2rem;
  }
  .services__grid {
    gap: 1.5rem;
  }
  
  .services__card {
    height: 350px;
  }
  
  .services__card-content {
    padding: 1.5rem;
  }
  
  .services__card-content h4 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 400px){
  .services__container {
    padding-top: 2rem;
  }
}
/* FAQ Section Container */
.faq__container {
  /* background-color: var(--background-light); */
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.faq__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.faq__image-column {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 0; 
}
.faq__top-puppies {
  width: 100%;
  position: relative;
  margin-bottom: -10px; 
}
.faq__top-puppies img {
  width: 100%;
  height: auto;
  display: block; 
}
.faq__image {
  width: 100%;
  position: relative;
}
.faq__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
  display: block; 
}
.faq-container {
  width: 60%;
}
.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  text-align: left;
}
.faq-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq-card {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}
.faq-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background-color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-card.active .faq-header {
  background-color: var(--primary-color);
}
.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}
.faq-card.active .faq-question {
  color: var(--secondary-color);
}
.faq-icon {
  font-size: 1.5rem;
  color: var(--secondary-color);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-card.active .faq-icon {
  transform: rotate(180deg);
}
.faq-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--white);
  opacity: 0;
}
.faq-card.active .faq-content {
  padding: 1.5rem;
  max-height: 300px;
  opacity: 1;
}
.faq-content p {
  color: var(--secondary-color);
  line-height: 1.8;
  margin: 0;
}

/* Decorative elements */
.faq__container::before,
.faq__container::after {
  content: "🐾";
  position: absolute;
  font-size: 4rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}
.faq__container::before {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}
.faq__container::after {
  bottom: 20px;
  right: 20px;
  transform: rotate(180deg);
  animation-delay: -3s;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
/* Responsive Design */
@media screen and (max-width: 1024px) {
  .faq__content-wrapper {
    flex-direction: column;
  }

  .faq__image-column,
  .faq-container {
    width: 100%;
  }

  .faq__top-puppies img {
    height: 250px;
  }
}

@media screen and (max-width: 768px) {
  .faq__container {
    padding: 4rem 1rem;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .faq-header {
    padding: 1rem;
  }
  .faq__top-puppies img {
    height: 200px;
  }
}
@media screen and (max-width: 400px){
  .faq__content-wrapper {
    gap: 2rem;
  }

  .faq__image-column {
    width: 100%;
  }

  .faq__top-puppies {
    margin-bottom: 0;
  }

  .faq__top-puppies img {
    height: auto;
    max-height: 150px;
    object-fit: contain;
  }

  .faq__image img {
    height: auto;
    max-height: 250px;
    object-fit: contain;
  }

  .faq-container {
    width: 100%;
  }
  .faq__container::before {
    content: "🐾";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
  }

  .faq__container::after {
    content: "🐾";
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(180deg);
    animation: float 6s ease-in-out infinite;
    animation-delay: -3s;
  }
}
/* founder section  */
/* .founder-section {
  background-color: var(--background-light);
  padding: 6rem 5%;
}
.founder-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.founder-info {
  width: 60%;
}
.founder-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}
.founder-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}
.founder-links {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
}
.founder-links .btn {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transition: background-color 0.3s ease;
}
.founder-links .btn:hover {
  background-color: var(--primary-dark);
}
.founder-image {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founder-image-main {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.founder-image:hover .founder-image-main {
  transform: scale(1.1);
}
.founder-names {
  margin-top: 1rem;
  text-align: center;
}
.founder-names a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}
.founder-names a:hover {
  color: #3498db;
}
@media screen and (max-width: 768px) {
  .founder-content {
    flex-direction: column;
  }
  .founder-info,
  .founder-image {
    width: 100%;
  }
  .founder-image-main {
    width: 150px;
    height: 150px;
  }
} */
 /* vision and mission */
 .vision-mission-section {
  padding: 6rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.vm-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3436;
  margin: 0;
}
.header-content {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.header-badge {
  background: #ffd700;
  color: #000;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.5s ease forwards;
}

.title-decoration {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.5s ease forwards 0.4s;
}

.title-decoration .line {
  width: 100px;
  height: 2px;
  background: #ffd700;
}

.cards-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.vm-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(40px);
  opacity: 0;
  animation: slideUp 0.5s ease forwards 0.6s;
  transition: all 0.3s ease;
  position: relative;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets\groomcircle.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mission-card .card-header {
  background: #ffd700;
}

.vision-card .card-header {
  background: #00b894;
}

.badge {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.flag-icon {
  color: white;
  animation: wave 2s ease-in-out infinite;
}

.card-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}
.card-content p,
.points li {
  color: #2d3436;
  background: rgba(255, 255, 255, 0.8);
  /* padding: 0.5rem; */
  border-radius: 4px;
  margin-bottom: 1rem;
}
.icon-wrapper-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.icon-wrapper {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(248, 249, 250, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-card .icon-wrapper {
  color: #ffd700;
}

.vision-card .icon-wrapper {
  color: #00b894;
}

.target-icon {
  animation: glow 2s ease-in-out infinite;
}

.bulb-icon {
  animation: glow 2s ease-in-out infinite;
}

.points {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.points li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.8rem;
  color: #2d3436;
}

.points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #ffd700;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@media screen and (max-width: 768px) {
  .vision-mission-section {
    padding: 4rem 1rem;
  }

  .main-title {
    font-size: 2rem;
  }

  .vm-card {
    min-width: 100%;
  }
  .icon-wrapper-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .section-heading {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 400px) {
  .vision-mission-section {
    padding: 2rem 1rem; 
    min-height: auto; 
  }
  
  .faq__container {
    margin-top: -2rem; 
  }
  .icon-wrapper-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .icon-wrapper {
    width: 50px;  /* Smaller icon size for mobile */
    height: 50px;
    flex-shrink: 0;
  }

  .section-heading {
    font-size: 1.2rem;
    margin: 0;
  }

  .vm-card {
    padding: 1rem;
    min-width: 100%;
  }
}

/* Modal Overlay Background */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  display: none; 
  justify-content: center;
  align-items: center;
  z-index: 1000; 
}
.modal-card {
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}
.close-btn {
  position: absolute; 
  top: 15px; 
  right: 15px; 
  width: 30px; 
  height: 30px; 
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-size: 20px; 
  font-weight: bold;
  line-height: 30px; 
  text-align: center; 
  border: none; 
  border-radius: 50%; 
  cursor: pointer; 
  transition: background 0.3s ease, transform 0.2s ease; 
}

.close-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1); 
}

.card {
  width: 370px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.top-section .top-image {
  width: 100%;
  height: 170px; 
  object-fit: cover;
  background: linear-gradient(135deg, #4ecdc4, #556270);
}

.circle-image {
  position: absolute;
  top: 130px; 
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid white; 
}
.circle-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.content {
  padding: 50px 20px 15px; 
}

.content h2 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.content p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}

.buttons {
  padding: 10px 20px 20px;
}
.book-now-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
}
@media screen and (max-width: 400px){
  .modal-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 320px;
    margin: auto;
  }

  .card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .top-section .top-image {
    height: 150px;
  }

  .circle-image {
    top: 110px;
    width: 70px;
    height: 70px;
  }

  .circle-img {
    width: 60px;
    height: 60px;
  }

  .content {
    padding: 40px 15px 10px;
  }

  .content h2 {
    font-size: 1.2rem;
  }

  .content p {
    font-size: 0.85rem;
  }

  .buttons {
    padding: 10px 15px 15px;
  }

}
/* review styles  */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
}

.review-header {
  text-align: center;
  margin-bottom: 2rem;
}

.review-header h2 {
  font-size: 2.8rem;
  color: var(--secondary-color);
  font-weight: bold;
}

.review-header p {
  font-size: 1.2rem;
  color: #444;
}

.review-cards-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 2rem;
  padding: 20px 0;
}

.review-cards {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.review-card {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  width: 320px;
  text-align: center;
  flex: 0 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stars {
  color: #ffa726;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-card p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.reviewer-info {
  font-size: 0.9rem;
  color: #777;
}

.reviewer {
  font-weight: bold;
}

.write-btn {
  display: block;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--secondary-color);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.write-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.review-form {
  display: none;
  padding: 2rem;
  background: var(--primary-light);
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.review-form h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--secondary-color);
  font-weight: bold;
}

.review-form label {
  display: block;
  margin: 1rem 0 0.5rem;
  color: #333;
  font-weight: bold;
  text-align: left;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #ffe8d2;
  color: #000;
  font-size: 1rem;
}

.review-form textarea {
  resize: none;
  height: 120px;
}

.review-form button[type="submit"] {
  background: linear-gradient(135deg, #ff8a65, #ff4500);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.review-form button[type="submit"]:hover {
  background: linear-gradient(135deg, #e57373, #d84315);
}

.star-rating {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.star-rating span {
  font-size: 2rem;
  color: var(--secondary-light);
  cursor: pointer;
  transition: color 0.2s ease;
  margin: 0 5px;
}

.star-rating span:hover,
.star-rating span.selected {
  color: #FFD700;
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  .review-header h2 {
    font-size: 2rem;
  }
  
  .review-card {
    width: 90%;
  }
}
/* Footer Styles */
footer {
  background: linear-gradient(
    135deg,
    rgba(44, 62, 80, 0.9) 0%,
    rgba(44, 62, 80, 0.9) 100%
  );
  color: var(--white);
  padding: 3rem 5%;
  position: relative;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23f3f4f6" fill-opacity="1" d="M0,256L48,240C96,224,192,192,288,176C384,160,480,160,576,165.3C672,171,768,181,864,192C960,203,1056,213,1152,202.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x;
  background-size: 500px 50px;
  animation: wave 15s linear infinite;
  z-index: 1;
}
@keyframes wave {
  0% {
      background-position-x: 0;
  }
  100% {
      background-position-x: 1000px;
  }
}
.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.footer__col:nth-child(1) { transition-delay: 0.2s; }
.footer__col:nth-child(2) { transition-delay: 0.4s; }
.footer__col:nth-child(3) { transition-delay: 0.6s; }

footer.animate .footer__col {
  opacity: 1;
  transform: translateY(0);
}
.footer__col h4 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 0.5rem;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}
.footer__col:hover h4::after {
  width: 100%;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  transition: all 0.3s ease;
  color: var(--primary-light);
  position: relative;
  padding-left: 15px;
}
.footer__links a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.footer__links a:hover {
  color: var(--primary-color);
  padding-left: 25px;
}

.footer__links a:hover::before {
  opacity: 1;
}
.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__socials a {
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.footer__socials a:hover {
  transform: scale(1.2);
}
/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .footer__container {
      grid-template-columns: 1fr;
  }
  .footer-wave {
      height: 50px;
      background-size: 500px 50px;
  }
}

/* Scroll Animations */
@keyframes slideUp {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}
.animate-on-scroll {
  opacity: 0;
  animation: slideUp 0.8s forwards;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  /* .nav__links {
    display: none;
  } */

  .nav__menu__btn {
    display: block;
  }

  .header__container h1 {
    font-size: 2.5rem;
  }

  .header__flex {
    flex-direction: column;
  }

  .service-grid,
  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .services__card {
    height: 350px;
  }
}






/* Floating Container */
.fab-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
  z-index: 999;
}

/* Main Button */
.fab {
  width: 65px;
  height: 65px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.fab:hover {
  background-color: #1ebd5d;
  transform: scale(1.1);
}

/* Options Hidden by Default */
.fab-options {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

/* Show Options */
.fab-container.active .fab-options,
.fab-container:hover .fab-options {
  display: flex;
  animation: fadeInUp 0.3s ease forwards;
}

/* Each Option */
.fab-option {
  background-color: #ffffff;
  color: #333;
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.fab-option:hover {
  background-color:var(--secondary-color);
  color: white;
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}