@import url("../../assets/colors/shared_color.css");
@import url("../../assets/fonts/shared_font.css");


*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  padding: 0%;
  margin: 0%;
  background-color: #FFFFFF;
  scroll-behavior: smooth;
}




/* =============================Hero Section========================*/
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../../assets/images/bjk.jpg');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 1;
  color: var(--text-white);
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: var(--font-primary);
  animation: fadeInUp 1.5s ease-out;
}

.hero-content h1,
.hero-content h2,
.hero-content h4 {
  margin: 0;
  padding: 0;
}

.hero-content h1 {
  font-size: 5em;
  font-family: cursive;
  animation: slideInFromTop 1.2s ease-out;
}

.hero-content h2 {
  font-size: 2em;
  margin-bottom: 0.22em;
  margin-top: -0.4em;
  animation: fadeIn 2s ease-in;
}

.hero-content h4 {
  font-size: 1.2em;
  margin-bottom: 1.2em;
  animation: fadeIn 2.5s ease-in;
}

.hero-content .hero-section-button {
  width: 300px;
  height: 100px;
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
  border-radius: 10px;
  background-color: transparent;
  border: 2px solid #f5be33;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  animation: fadeIn 3s ease-in;
}

.hero-content .hero-section-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  z-index: -1;
  transition: left 0.4s ease;
  border-radius: 10px;
}

.hero-content .hero-section-button:hover::before {
  left: 0;
}

.hero-section .hero-section-contact-button {
  position: fixed;
  right: 0%;
  top: 30%;
  z-index: 1;
  animation: fadeInRight 1.5s ease-in;
}

.hero-section .hero-section-contact-button button {
  width: 60px;
  height: 50px;
  color: var(--text-white);
  background: var(--primary-gradient);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-color: var(--text-faint-gold);
}

/* Floating Buttons and Phone Popup */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.floating-buttons button {
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.phone-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: white;
  color: black;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: bold;
  display: none;
  z-index: 1001;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

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

@keyframes slideInFromTop {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 10px;
  }

  .hero-content h1 {
    width: 100%;
    font-size: 2em;
    font-weight: 900;
  }

  .hero-content h2 {
    font-size: 0.9em;
  }

  .hero-content h4 {
    font-size: 0.7em;
  }

  .hero-content .hero-section-button {
    width: 200px;
    height: 60px;
    font-size: 1.1em;
  }

  .hero-section .hero-section-contact-button {
    top: auto;
    bottom: 10%;
    right: 10px;
  }

  .hero-section .hero-section-contact-button button {
    width: 50px;
    height: 50px;
  }

  .floating-buttons {
    bottom: 15px;
    right: 15px;
  }

  .floating-buttons button {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .phone-popup {
    bottom: 80px;
    right: 15px;
    font-size: 14px;
  }
}




/* ================= About us section =========================*/
.about-us-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100vh;
}

.about-us-section-left-col {
  background: transparent;
  width: 100%;
  height: 100%;
  position: relative;
}

.about-us-section-right-col {
  display: flex;
  flex-direction: column;
  background: transparent;
  width: 100%;
  height: 100%;
  text-align: left;
  font-family: var(--font-primary);
  padding: 0% 20px;
  align-items: center;
  justify-content: center;
}

.about-us-section-left-col .design-outer {
  position: absolute;
  width: 90%;
  height: 70%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 2px solid #f5be33;
}

.about-us-section-left-col .design-inner {
  position: absolute;
  width: 70%;
  height: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border: 2px solid #f5be33;
}

.about-us-section-left-col .image {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.about-us-section-left-col .image img{
  width: 100%;
  height: 100%;
  object-fit: fill;
  overflow: hidden;

}





.about-us-section-right-col h2 {
  font-size: 2.5em;
  font-family: var(--font-cursive-1);
  margin-bottom: 20px;
  color: var(--text-faint-gold);
  text-align: center;
  position: relative; /* Set position to relative */
}

.about-us-section-right-col h2::after {
  content: ""; /* Required to create the pseudo-element */
  display: block; /* Make it a block element */
  width: 70%; /* Adjust the width of the underline */
  height: 4px; /* Adjust the thickness of the underline */
  background-color: var(--text-faint-gold); /* Color of the underline */
  margin: 10px auto 0; /* Center the underline and add some space above */
  border-radius: 2px; /* Optional: rounded edges for the underline */
}

.about-us-section-right-col p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 15px;
  color: black;
}


/* ======================whyus css ======================*/
.why-us-section {
  width: 100%;
  height: 100vh;
  display: flex;
  padding: 0px 0px;
  gap: 10px;
}

.why-us-section .left-col {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  color: white;
  position: relative;
  background-image: url('../../assets/images/whyus_bg_left.jpg'); /* <-- Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  
}

.why-us-section .left-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Black overlay with 50% opacity */
  z-index: 0;
}

.why-us-section .left-col * {
  position: relative;
  z-index: 1; /* Keeps your text above the overlay */
}


.why-us-section .left-col .section-title {
  font-size: 2.5em;
  font-family: var(--font-cursive-1);
  color: var(--text-faint-gold);
  text-align: center;
  max-width: fit-content;
  max-height: fit-content;
  padding: 0 10px;
}

.why-us-section .left-col .section-title::after {
  content: "";
  display: block;
  width: 70%;
  height: 4px;
  background-color: var(--text-faint-gold);
  border-radius: 2px;
  margin-top: 10px;
  margin: 10px auto 0;
}

.why-us-section .left-col .slogan {
  font-size: 1.3em;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  font-family: var(--font-primary);
}

.why-us-section .left-col .key-points {
  margin-top: 20px;
  font-size: 1.2em;
  font-family: var(--font-primary);
}

.why-us-section .left-col .key-points li {
  margin-bottom: 10px;
  line-height: 1.5;
  font-family: var(--font-primary);
}
.why-us-section .why-us-points
{
  width: 90%;
}

.why-us-section .right-col {
  width: 50%;
  height: 100%;
  padding: 10px;
}

.card {
  background-image: url("../../assets/images/ChatGPT\ Image\ May\ 2\,\ 2025\,\ 05_56_43\ PM.png");
  background-size: cover;         /* Optional: scales image to cover card */
  background-position: center;    /* Optional: centers image */
  backdrop-filter: blur;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0.7, 0.7, 0.7, 0.7);
  width: 100%;
  height: 70%;
  padding: 20px;
  margin: auto auto;
}


.card .icon {
  width: 230px;
  height: 180px;
  margin-bottom: 5px;
  border-radius: 10px;
}

.card .title {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

.card .description {
  font-size: 1.1em;
  color: #666;
  font-family: var(--font-primary);
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-y: scroll;
  padding: 10px;
  width: 100%;
  height: 30%;
 
  margin: 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory; /* Enable snapping */
  scrollbar-width: none; /* Hide scrollbar (optional) */
 
  position: relative;
}

.course-card {
  position: relative;
  flex: 0 0 calc(25% - 20px); /* 4 cards per row with gap */
  height: 150px;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0.7, 0.7, 0.7, 0.7);
  cursor: pointer;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  scroll-snap-align: start; /* Ensure cards snap to position */
  
}

.card-card:first-child{
  margin-left: 10px;
}


.course-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  object-fit: contain;
}

.course-card h3 {
  font-size: 1em;
  color: #333;
  margin: 0;
  line-height: 1.2em;
  text-align: center;
  word-wrap: break-word;
  max-height: 2.4em; /* Max 2 lines of text */
  overflow: hidden;
}

.carousel .course-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s;
}








/* =============================service section============================ */
.services-section {
  display: flex;
  width: 100%;
  height: 100vh;
}

.s-section-title{
  font-size: 2.5em;
  font-family: var(--font-cursive-1);
  margin-bottom: 20px;
  color: var(--text-faint-gold);
  text-align: center;
  position: relative;
}

.section-title{
  font-size: 2.5em;
  font-family: var(--font-cursive-1);
  margin-bottom: 20px;
  color: var(--text-faint-gold);
  text-align: center;
  position: relative;
}

.s-section-title::after {
  content: "";
  display: block;
  width: 70%;
  height: 4px;
  background-color: var(--text-faint-gold);
  border-radius: 2px;
  margin-top: 10px;
  margin: 10px auto 0;
}


/* splash.css */
.splash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(238, 166, 9, 0.6) 10%, transparent 90%);
  pointer-events: none;
  z-index: 9999;
  animation: splashAnimation 1s ease-out forwards;
  opacity: 0;
}

@keyframes splashAnimation {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}



.services-section .right-col {
  width: 50%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;/* Center horizontally */
 
  position: relative;
  background-image: url('../../assets/images/salonservice.jpg'); /* <-- Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;

}

.services-section .right-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Black overlay with 50% opacity */
  z-index: 0;
}

.services-section .right-col * {
  position: relative;
  z-index: 1; /* Keeps your text above the overlay */
}

.serive-cards-wrapper{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.services-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Equal column width */
  gap: 10px;
  width: fit-content;
  height: fit-content;
  padding: 20px;
}


@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 174, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 174, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 174, 0, 0);
  }
}

.service-card {
  box-shadow: 0 4px 8px rgba(0.9, 0.9, 0.9, 0.9);
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  background-color: #ffffff;
  text-align: center;
  width: 120px;
  animation: pulse-border 2s infinite;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover makes card jump and glow */
.service-card:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(255, 174, 0, 0.6);
}

/* Optional: Pointer icon hint at bottom-right */
.service-card::after {
  content: "Click Me";
  color: var(--text-faint-gold);
  font-weight: bold;
  /* position: absolute;
  bottom: 1px;
  right: 8px;
  font-size: 16px;
  animation: bounceHand 1.5s infinite;
  pointer-events: none;
   */
  
}

@keyframes bounceHand {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}





.service-card img {
  width: 70px; /* Decreased size */
  height: 70px; /* Decreased size */
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto;
}

.service-card h3 {
  font-size: 12px; /* Smaller font */
  margin-top: 10px;
  text-align: center;
  color: #030000;
  font-family: var(--font-primary);
}

.services-section .left-col {
  display: flex;
  flex-direction: column;
  overflow: scroll;
  padding: 20px;
  width: 50%;
  height: 100%;

}

.subservices-cards {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr); 2 cards per row */
  gap: 15px;
  display: flex;
  flex-direction: column;
  /* margin-top: 15px; */
}

.subservice-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 4px 8px rgba(0.7, 0.7, 0.7, 0.7);
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  overflow: auto;
}

.subservice-card-heading{
  display: flex;
  gap: 20px;
}

.subservice-card img {
  width: 20%;
  height: 120px; /* Reduced height */
  object-fit: cover;
  border-radius: 6px;
}

.subservice-card h4 {
  font-size: 2em; /* Smaller heading */
  margin-top: 6px;
  font-family: var(--font-primary);
  margin: auto 0px;
}

.subservice-card p {
  font-size: 12px; /* Smaller paragraph */
  color: #555;
  margin-top: 4px;
  font-family: var(--font-primary);
}

/* ================== Responsive Layout ================== */
@media (max-width: 1024px) {
  .services-section {
    flex-direction: column;
    height: auto;
  }

  .services-section .left-col,
  .services-section .right-col {
    width: 100%;
    height: auto;
    padding: 15px;
  }

  .serive-cards-wrapper {
    padding: 10px 0;
  }

  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    width: 100%;
  }

  .service-card {
    width: 140px;
    padding: 10px;
  }

  .service-card img {
    width: 80px;
    height: 80px;
  }

  .service-card h3 {
    font-size: 14px;
  }

  .subservice-card-heading {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .subservice-card img {
    width: 100%;
    height: auto;
  }

  .subservice-card h4 {
    font-size: 1.2em;
  }

  .subservice-card p {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .services-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .service-card {
    width: 100%;
  }

  .subservice-card {
    padding: 10px;
  }

  .section-title {
    font-size: 1.8em;
  }

  .services-section .left-col,
  .services-section .right-col {
    padding: 10px;
  }

  .subservice-card-heading {
    gap: 10px;
  }

  .subservice-card h4 {
    font-size: 1.1em;
  }

  .subservice-card p {
    font-size: 12px;
  }
}


/* vision mission css */

.vission-mission-section{
  padding: 0px 20px;
  gap: 10px;
}

.vision-mission-intro {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
  font-family: var(--font-primary);
}

.vision-mission-content {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap; /* Makes it responsive on smaller screens */
  font-family: var(--font-primary);
}

.vision, .mission {
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Card shadow */
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  text-align: left;
  transition: transform 0.3s ease;
}

.vision-heading {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 1.5em;
  margin-bottom: 5px;
  font-family: var(--font-primary);
  color: var(--text-faint-gold);
}

.mission-heading {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 1.8em;
  margin-bottom: 5px;
  font-family: var(--font-primary);
  color: var(--text-faint-gold);

}



.vision:hover, .mission:hover {
  transform: translateY(-5px); /* Subtle hover effect */
}


.vision h3, .mission h3 {
  font-size: 1.5rem;
  color: #b3795d;
  margin-bottom: 10px;
  font-family: var(--font-primary);
}



//* founder info */
.founder-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  height: 100%;
  text-align: center;
  color: black;
  font-family: var(--font-primary);
}

.founder-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f5be33;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-details {
  text-align: center;
}

.founder-details h3 {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--text-faint-gold);
}

.founder-details .designation {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #555;
  font-family: var(--font-primary);
}

.founder-details .highlight {
  font-size: 1em;
  margin-bottom: 10px;
  line-height: 1.5;
}




/* review section */
.reviews-section {
  padding: 5% 8%;
  text-align: center;
}

.reviews-title {
  font-size: 2.5em;
  margin-bottom: 30px;

  align-items: center;
  justify-content: center;
  font-family: var(--font-cursive-1);
  color: var(--text-faint-gold);
  gap: 10px;
  position: relative;
}

.reviews-title::after{
  content: ""; /* Required to create the pseudo-element */
  display: block; /* Make it a block element */
  width: 20%; /* Adjust the width of the underline */
  height: 4px; /* Adjust the thickness of the underline */
  background-color: var(--text-faint-gold); /* Color of the underline */
  margin: 10px auto 0; /* Center the underline and add some space above */
  border-radius: 2px;
}

.google-logo {
  width: 24px;

  height: 24px;
}

.google-logo-inline {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-left: 6px;
}


.reviews-carousel {
  display: flex;
  gap: 20px;
  overflow-x: scroll; /* Enable horizontal scrolling */
  scroll-behavior: smooth;
  padding: 30px;
  background-color: #f0eded;
  scroll-snap-type: x mandatory; /* Ensures smooth snapping when scrolling */
 

}

.review-card {
  
  flex: 0 0 33.33%; /* Show 3 cards at a time */
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  min-width: 300px; /* Adjust the width of each card */
  min-height: 200px;
  box-sizing: border-box;
  scroll-snap-align: start; /* Align each card at the start when scrolled */
}



/* To hide the part of the 4th card */
.carousel-container {
  position: relative;
 
  overflow: hidden; /* Hide the overflow */
}

@media screen and (max-width: 1024px) {
  /* For tablets, show 2 cards */
  .review-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media screen and (max-width: 768px) {
  /* For mobile, show 1 card */
  .review-card {
    flex: 0 0 calc(100% - 20px);
  }
}



.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.customer-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

.reviewer-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-primary);
}

.stars {
  color: #fbc02d;
  font-size: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  font-family: var(--font-primary);
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000b0;
  color: white;
  font-size: 1.5rem;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1;
}

.carousel-button.left {
  left: -10px;
}

.carousel-button.right {
  right: -10px;
}


/* milestone section */
.milestone-section {
  padding: 0px 20px;
  background-color: #fefefe;
  text-align: center;
}

.milestone-title {
  font-size: 2.5rem;
  font-family: var(--font-cursive-1);
  color: var(--text-faint-gold);
  margin-bottom: 50px;
  position: relative;
}

.milestone-title::after{
  content: ""; /* Required to create the pseudo-element */
  display: block; /* Make it a block element */
  width: 15%; /* Adjust the width of the underline */
  height: 4px; /* Adjust the thickness of the underline */
  background-color: var(--text-faint-gold); /* Color of the underline */
  margin: 10px auto 0; /* Center the underline and add some space above */
  border-radius: 2px;
}

.milestone-counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.counter-box {
  width: 220px;
  padding: 30px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.milestone-icon {
  font-size: 2.5rem;
  color: #e9ba1e;
  margin-bottom: 10px;
}

.counter-box h3 {
  font-size: 2.2rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-primary);
}

.counter-box p {
  font-size: 1rem;
  color: #555;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .counter-box {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .counter-box {
    width: 100%;
  }

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

  .milestone-icon {
    font-size: 2rem;
  }
}



/* gallery section */

.gallery-section {
  padding: 5% 0%;
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  overflow: scroll;
}

.gallery-title {
  font-size: 2.5rem;
  font-family: var(--font-cursive-1);
  color: var(--text-faint-gold);
  margin-bottom: 10px;
  position: relative;
}

.gallery-title::after{
  content: ""; /* Required to create the pseudo-element */
  display: block; /* Make it a block element */
  width: 13%; /* Adjust the width of the underline */
  height: 4px; /* Adjust the thickness of the underline */
  background-color: var(--text-faint-gold); /* Color of the underline */
  margin: 10px auto 0; /* Center the underline and add some space above */
  border-radius: 2px;
}



.gallery-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  font-family: var(--font-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Force 4 images per row */
  gap: 7px; /* Increased spacing between items */
  padding: 0 30px; /* Optional: side padding */
  
}

.gallery-item {
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fefefe;

}

.gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10; /* Slightly wider image display */
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-section {
  overflow: hidden;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

/* Responsive Spacing */
@media (max-width: 600px) {
  .gallery-title {
    font-size: 2rem;
  }

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

  .gallery-grid {
    gap: 15px;
  }
}

/* Gallery Responsive Columns */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


.contact-title {
  text-align: center;
  font-size: 2.5em;
  font-family: var(--font-cursive-1);
  color: var(--text-faint-gold);
  margin-bottom: 40px;
}



.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
  font-size: 1.1em;
  line-height: 1.8;
  color: #333;
}

.contact-info h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--text-faint-gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 20px;
}

.input-icon {
  position: relative;
  margin-bottom: 10px;
}

.input-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.input-icon input,
.input-icon textarea {
  width: 100%;
  padding: 14px 14px 14px 40px;
  font-size: 1em;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fdfdfd;
  transition: border-color 0.3s;
}

.input-icon input:focus,
.input-icon textarea:focus {
  border-color: var(--text-faint-gold);
  outline: none;
}

.contact-form button {
  padding: 12px;
  background-color: var(--text-faint-gold);
  color: #fff;
  font-size: 1em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;

}

.contact-form button:hover {
  background-color: #b89c57; /* darker gold tone */
}

.toast {
  display: none;
  margin-top: 10px;
  background-color: #4BB543;
  color: white;
  padding: 10px;
  border-radius: 4px;
  text-align: center;
  animation: fadeInOut 3s forwards;
}

/* Animation */
@keyframes fadeInOut {
  0% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; display: none; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .contact-title {
    font-size: 2em;
  }

  .contact-info,
  .contact-form {
    font-size: 1em;
  }
}




/* about */
@media (max-width: 1024px) {
  .about-us-section {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .about-us-section-left-col {
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-us-section-left-col .image {
    position: relative;
    width: 180px;
    height: 180px;
    top: 0;
    left: 0;
    transform: none;
    z-index: 3;
  }

  .about-us-section-left-col .design-outer {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid #f5be33;
    z-index: 1;
  }

  .about-us-section-left-col .design-inner {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid #f5be33;
    z-index: 2;
  }

  .about-us-section-right-col {
    padding: 20px;
    text-align: center;
    height: auto;
  }

  .about-us-section-right-col h2 {
    font-size: 2em;
  }

  .about-us-section-right-col p {
    font-size: 1em;
  }
}

@media (max-width: 600px) {
  .about-us-section-left-col {
    height: 200px;
  }

  .about-us-section-left-col .image {
    width: 150px;
    height: 150px;
  }

  .about-us-section-left-col .design-outer {
    width: 170px;
    height: 170px;
  }

  .about-us-section-left-col .design-inner {
    width: 130px;
    height: 130px;
  }

  .about-us-section-right-col h2 {
    font-size: 1.6em;
  }

  .about-us-section-right-col p {
    font-size: 0.95em;
  }
}


@media (max-width: 1024px) {
  .why-us-section {
    flex-direction: column;
    height: auto;
  }

  .why-us-section .left-col,
  .why-us-section .right-col {
    width: 100%;
    height: auto;
  }

  .why-us-section .left-col {
    padding: 30px 15px;
    text-align: center;
  }

  .why-us-section .left-col .section-title {
    font-size: 2em;
  }

  .why-us-section .left-col .slogan {
    font-size: 1.1em;
  }

  .why-us-section .left-col .key-points {
    font-size: 1em;
  }

  .why-us-section .right-col {
    padding: 20px;
  }

  .card {
    height: auto;
    padding: 15px;
  }

  .card .title {
    font-size: 1.5em;
  }

  .card .description {
    font-size: 1em;
  }

  .carousel {
    height: auto;
    flex-wrap: nowrap;
    overflow-x: scroll;
  }

  .course-card {
    flex: 0 0 60%;
    height: auto;
  }
}

@media (max-width: 600px) {
  .why-us-section{
    height: fit-content;
  }
  .why-us-section .why-us-points{
    display: none;
  }
  .why-us-section .left-col .section-title {
    font-size: 1.6em;
  }

  .why-us-section .left-col .slogan,
  .why-us-section .left-col .key-points {
    font-size: 0.95em;
  }

  .card {
    padding: auto auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: #000000b0 solid 2px;
  }

  .card .title {
    font-size: 1.3em;
  }
  .card .icon{
    border: #d18888b0 solid 2px;
  }
  .card .description {
    font-size: 0.95em;
  }

  .carousel {
    gap: 10px;
    padding: 10px;
  }

  .course-card {
    flex: 0 0 80%;
    max-width: 100px;
    border: #000000b0 solid 1px;
  }

  .course-card img {
    width: 40px;
    height: 40px;
  }

  .course-card h3 {
    font-size: 0.95em;
  }
}
