* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff4f7;
  /* Move the font-family to the body so it applies everywhere */
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

/* --- HEADER CONTAINER --- */
.header {
  width: 100%;
  height: 70px; /* Defined height to contain items nicely */
  background-color: rgba(255, 244, 247, 0.85); /* Slightly more opaque */
  backdrop-filter: blur(8px); /* Modern glass frosting effect */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100; /* Increased z-index to stay above everything */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}

/* Flexbox replaces float for perfect alignment */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto; /* Centers the container */
}

.logo {
  height: 50px; /* Controls image size proportionally */
  display: block;
}

/* --- NAVIGATION LIST --- */
.list {
  display: flex;
  list-style: none;
  gap: 30px; /* Spacing between links without needing margins */
}

.list li a {
  color: #333; /* Slightly softer than pure black */
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px; /* Creates breathing room for the underline */
  transition: color 0.3s ease;
}

.list li a:hover {
  color: #f05e85;
}

/* --- HOVER UNDERLINE ANIMATION --- */
.list li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #f05e85;
  transition: width 0.3s ease-in-out;
  border-radius: 2px;
}

/* Triggers the underline on hover AND for the active page */
.list li a.active::after,
.list li a:hover::after {
  width: 100%;
}

/* --- MOBILE MENU ICON --- */
.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.mobile-menu .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}

/* --- RESPONSIVE DESIGN (Tablets & Phones) --- */
@media (max-width: 900px) {
  /* Show the hamburger menu */
  .mobile-menu {
    display: flex;
  }

  /* Transform the nav into a dropdown menu */
  .nav-menu {
    position: absolute;
    top: 70px;
    left: -100%; /* Hides the menu off-screen by default */
    width: 100%;
    background-color: rgba(255, 244, 247, 0.98);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.05);
    transition: left 0.4s ease;
  }

  /* When the class 'active' is added via JavaScript, slide the menu in */
  .nav-menu.active {
    left: 0;
  }

  .list {
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 25px;
  }
}
/* Keeps the Home link pink and underlined by default */
.list li a.active {
  color: #f05e85;
}

.list li a.active::after {
  width: 100%;
}

/* Mobile Menu Logic */
@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .nav-menu {
    display: none; /* Hide by default on mobile */
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #fff4f7;
    border-bottom: 2px solid #f05e85;
  }

  /* When JavaScript adds the 'open' class, the menu appears! */
  .nav-menu.open {
    display: block;
  }

  .list {
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }
}
/* --- HOME / HERO SECTION --- */
.home-parent {
  width: 100%;
  height: 100vh;
  /* Added a dark overlay so the white text pops */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(../photos/photo1.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-title {
  color: #fff4f7;
  font-size: clamp(35px, 8vw, 60px); /* Responsive font size */
  margin-bottom: 10px;
}

.home-p {
  color: #fff4f7;
  font-size: 20px;
  margin: 10px 0;
}

.home-btn {
  margin: 20px 10px;
  width: 140px;
  height: 45px;
  background-color: #fff4f7;
  border: 2px solid #f05e85;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease; /* Smooth hover transition */
}

.home-btn:hover {
  background-color: #f05e85;
  color: #fff4f7;
  border-color: black;
  /* transform: scale makes it grow without "jumping" or shifting layout */
  transform: scale(1.1);
}

/* --- MONEY SECTION (FLEXBOX) --- */
.money-container {
  width: 85%;
  max-width: 1200px;
  margin: 100px auto;
}

.money-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 100px;
}

/* This allows us to flip the image/text order on desktop */
.money-row.reverse {
  flex-direction: row;
}

.money-text {
  flex: 1;
  text-align: center;
}

.money-text h2 {
  font-size: 35px;
  line-height: 1.2;
}

.money-h2 {
  color: #f05e85; /* Using your primary pink */
}

.money-text p {
  font-size: 18px;
  margin: 30px 0;
  line-height: 1.6;
  color: #555;
}

.read-more-btn {
  padding: 12px 30px;
  background-color: #ffc0cb;
  border: 2px solid black;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.read-more-btn:hover {
  background-color: #fff4f7;
  border-color: #f05e85;
  color: #f05e85;
  transform: translateY(-5px); /* Gentle lift effect */
  box-shadow: 0 10px 20px rgba(240, 94, 133, 0.2);
}

.money-img {
  flex: 1;
  text-align: center;
}

.money-img img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  border: 10px solid #ffc0cb;
  transition: 0.5s;
}

.money-img img:hover {
  transform: rotate(3deg) scale(1.02);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
  .money-row,
  .money-row.reverse {
    flex-direction: column; /* Stack vertically on small screens */
    text-align: center;
    gap: 30px;
  }

  .home-title {
    font-size: 40px;
  }

  .money-img img {
    width: 250px; /* Smaller images for mobile */
  }
}
/* --- SECTION CONTAINER --- */
.Elevate-container {
  width: 100%;
  padding: 80px 0;
  background-color: #fff4f7;
  text-align: center;
}

.Elevate-wrapper {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

.Elevate-container h2 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 45px;
  margin-bottom: 10px;
}

.Elevate-line {
  width: 100px;
  height: 4px;
  background-color: #ffc0cb;
  margin: 0 auto 50px auto;
}

/* --- THE GRID (Magic happens here) --- */
.Elevate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 30px; /* Space between cards */
}

/* --- ITEM STYLING --- */
.Elevate-item {
  padding: 40px 30px;
  border: 4px solid #ffc0cb;
  position: relative;
  z-index: 1;
  background-color: transparent;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.Elevate-item i {
  font-size: 40px;
  color: #ffc0cb;
  margin-bottom: 20px;
  transition: 0.5s;
}

.Elevate-item h3 {
  font-size: 28px;
  margin-bottom: 15px;
  transition: 0.5s;
}

.Elevate-item p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 25px;
  transition: 0.5s;
}

.elevate-link {
  font-size: 19px;
  text-decoration: none;
  color: #ffc0cb;
  font-weight: bold;
  transition: 0.5s;
}

/* --- HOVER EFFECT --- */
.Elevate-item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f05e85;
  transition: 0.5s ease;
  z-index: -1;
}

.Elevate-item:hover::after {
  width: 100%;
}

/* Change all text/icon colors to white on hover */
.Elevate-item:hover i,
.Elevate-item:hover h3,
.Elevate-item:hover p,
.Elevate-item:hover .elevate-link {
  color: #fff4f7;
}

/* Subtle link grow effect without layout shift */
.elevate-link:hover {
  transform: translateX(5px);
  display: inline-block;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
  .Elevate-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .Elevate-grid {
    grid-template-columns: 1fr; /* 1 column on phones */
  }

  .Elevate-container h2 {
    font-size: 32px;
  }
}
/* --- SECTION CONTAINER --- */
.unlock-container {
  width: 100%;
  background-color: #ffc0cb;
  padding: 100px 0; /* Let padding define the height instead of 100vh */
}

.unlock-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.unlock-container h2 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(28px, 5vw, 45px); /* Responsive font size */
  text-align: center;
  color: #333;
}

.unlock-line {
  width: 100px;
  height: 4px;
  background-color: #fff4f7;
  margin: 15px auto 60px auto;
}

/* --- THE WHITE CONTENT BOX --- */
.unlock-content {
  background-color: #fff4f7;
  padding: 60px 20px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- THE ITEMS --- */
.unlock-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers everything horizontally */
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.unlock-icon-circle {
  width: 80px;
  height: 80px;
  background-color: #ffc0cb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

.unlock-icon-circle i {
  font-size: 35px;
  color: #333;
}

.unlock-item p {
  font-size: 20px;
  margin: 30px 0;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  color: #444;
  min-height: 50px; /* Keeps text aligned even if lengths differ */
}

.unlock-arrow {
  font-size: 35px;
  color: #ffc0cb;
  transition: 0.4s ease;
}

/* --- HOVER EFFECTS --- */
.unlock-item:hover .unlock-icon-circle {
  transform: translateY(-10px);
  background-color: #f05e85; /* Darker pink on hover */
}

.unlock-item:hover .unlock-icon-circle i {
  color: #fff;
}

.unlock-item:hover .unlock-arrow {
  transform: translateX(10px); /* Arrow slides right on hover */
  color: #f05e85;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .unlock-content {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid on tablets */
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .unlock-content {
    grid-template-columns: 1fr; /* 1 column on phones */
    padding: 40px 10px;
  }

  .unlock-item p {
    margin: 20px 0;
  }
}
/* --- SECTION CONTAINER --- */
.works-section {
  width: 100%;
  padding: 100px 0;
  margin-top: 100px; /* Offset for previous sections */
  position: relative;
  z-index: 1;
}

.works-wrapper {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- THE HEADER (Left-Aligned) --- */
.works-header {
  text-align: center;
}

.works-header h2 {
  font-size: 45px;
  color: #333;
}

.works-line {
  width: 100px;
  height: 4px;
  background-color: #ffc0cb;
  margin: 10px auto 60px auto; /* Align left: 0 margin on left/right */
}

/* --- THE GRID (Modern Responsive Layout) --- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 30px; /* Space between photos */
}

/* --- ITEM BOX (BIGGER IMAGES) --- */
.works-item {
  position: relative;
  height: 450px; /* Force larger defined height */
  overflow: hidden; /* For future hover effects like zoom */
  border-radius: 10px; /* Optional softener */
}

/* --- IMAGE SCALING (NO CUTTING) --- */
.works-item img {
  width: 100%;
  height: 100%;
  /* No Cut: Scaled full image inside the column, touching edges */
  object-fit: fill;
  display: block;
  transition: transform 0.6s ease;
}

/* --- OVERLAY --- */
.works-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(240, 94, 133, 0); /* Start transparent */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  transition: 1s ease; /* Smooth transition */
  z-index: 5;
  opacity: 0;
}

/* --- HOVER ACTIONS --- */
.works-item:hover .works-overlay {
  background-color: rgba(240, 94, 133, 0.85); /* Smooth fade to pink */
  opacity: 1;
}

/* Optional gentle interaction */
.works-item:hover img {
  transform: rotate(2deg) scale(1.03);
}

/* --- OVERLAY TEXT & ICONS --- */
.overlay-text {
  /* Text starts slightly lower and invisible */
  transform: translateY(30px);
  transition: transform 0.4s ease-out;
}

.works-item:hover .overlay-text {
  transform: translateY(0); /* Text floats up on hover */
}

.works-overlay h3 {
  color: #fff4f7;
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.works-overlay p {
  color: #fff4f7;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* --- ICON GROUP --- */
.works-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.works-icons a {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 244, 247, 0.15); /* Frosty background */
  color: #fff4f7;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
}

/* Icon Hover */
.works-icons a:hover {
  background-color: #fff4f7; /* Background shifts to light pink */
  color: #f05e85; /* Icon color shifts to dark pink */
  transform: scale(1.1);
}

/* --- RESPONSIVE DESIGN (Media Queries) --- */
@media (max-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .works-header h2 {
    font-size: 35px;
  }

  .works-item {
    height: 350px; /* Slightly shorter on mobile */
  }
}

@media (max-width: 600px) {
  .works-grid {
    grid-template-columns: 1fr; /* 1 column on mobile phones */
  }
}
/* --- CONTAINER --- */
.offer-container {
  width: 100%;
  padding: 100px 0;
  background-color: #fff4f7;
}

.offer-wrapper {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- HEADER  --- */
.offer-header {
  text-align: center;
}

.offer-container h2 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 45px;
  color: #333;
}

.offer-line {
  width: 100px;
  height: 4px;
  background-color: #ffc0cb;
  margin: 10px auto 60px auto;
}

/* --- THE GRID --- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 30px; /* Space between boxes */
}

/* --- THE ITEMS --- */
.offer-item {
  padding: 40px 25px;
  border: 4px solid #ffc0cb;
  position: relative;
  z-index: 1;
  display: flex; /* Flexbox to put icon next to text */
  align-items: flex-start;
  gap: 20px;
  transition: 0.5s ease;
  overflow: hidden;
}

.offer-item i {
  font-size: 33px;
  color: #ffc0cb;
  transition: 0.5s;
}

.offer-content h3 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  margin-bottom: 10px;
  transition: 0.5s;
}

.offer-content p {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: #555;
  transition: 0.5s;
}

/* --- HOVER BACKGROUND FILL --- */
.offer-item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f05e85;
  transition: 0.5s ease;
  z-index: -1;
}

.offer-item:hover::after {
  width: 100%;
}

/* Color change on hover */
.offer-item:hover i,
.offer-item:hover h3,
.offer-item:hover p {
  color: #fff4f7;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .offer-container h2 {
    font-size: 35px;
  }

  .offer-grid {
    grid-template-columns: 1fr; /* 1 column on phones */
  }

  .offer-item {
    padding: 30px 20px;
  }
} /* --- WHY CHOOSE US --- */
.choose-container {
  width: 85%;
  max-width: 1200px;
  margin: 150px auto;
}

.choose-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.choose-content1,
.choose-content2 {
  flex: 1; /* Both sides take equal width */
}

.section-title-left {
  font-size: 45px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-align: left;
}

.choose-line {
  width: 100px;
  height: 4px;
  background-color: #ffc0cb;
  margin: 10px 0 30px 0; /* Aligned left */
}

.choose-content1 h3 {
  font-size: 27px;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* Row-based list for perfect icon alignment */
.choose-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.choose-row i {
  font-size: 24px;
  color: #ffc0cb;
  transition: 0.3s;
}

.choose-row p {
  font-size: 19px;
  letter-spacing: 0.5px;
}

.choose-row:hover i {
  color: #f05e85;
  transform: scale(1.2);
}

/* Image & Dots */
.choose-img-wrapper {
  text-align: center;
}

.choose-content2 img {
  max-width: 100%;
  height: 80vh;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.choose-pagination {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #ffc0cb;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active,
.dot:hover {
  background-color: #f05e85;
}

/* --- STAR CONTAINER (STATS) --- */
.star-container {
  width: 100%;
  min-height: 350px;
  background-image: url(../photos/photo11.jpg);
  background-size: cover;
  background-attachment: fixed; /* Parallax effect */
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.star-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.star-parent {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap; /* Allows stacking on mobile */
  width: 85%;
  margin: 0 auto;
}

.star-content {
  text-align: center;
  padding: 20px;
  transition: 0.4s;
}

.star-content i {
  font-size: 45px;
  color: #ffc0cb;
  margin-bottom: 15px;
}

.star-number {
  font-size: 40px;
  color: #fff4f7;
  font-weight: bold;
  margin-bottom: 10px;
}

.star-item {
  font-size: 20px;
  color: #ffc0cb;
}

.star-content:hover {
  transform: translateY(-10px);
}

.star-content:hover i {
  color: #f05e85;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
  .choose-flex {
    flex-direction: column; /* Stack vertically on mobile */
    text-align: center;
  }

  .section-title-left,
  .choose-line {
    text-align: center;
    margin: 10px auto;
  }

  .choose-row {
    justify-content: center;
  }

  .star-content {
    width: 50%; /* 2x2 grid on tablets */
  }
}

@media (max-width: 600px) {
  .star-content {
    width: 100%; /* 1 column on small phones */
  }
} /* --- PRICING SECTION --- */
.price-container {
  width: 85%;
  max-width: 1200px;
  margin: 150px auto;
  padding-bottom: 50px;
}

.price-header {
  text-align: center;
}

.price-container h2 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 45px;
  color: #333;
}

.price-line {
  width: 100px;
  height: 4px;
  background-color: #ffc0cb;
  margin: 10px auto 60px auto;
}

/* The Grid replaces Floats */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-content {
  background-color: transparent;
  border: 4px solid #ffc0cb;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s ease;
}

.price-content h3 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 30px;
  transition: 0.5s;
}

.price-circle {
  width: 110px;
  height: 110px;
  border: 3px solid #ffc0cb;
  border-radius: 50%;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.5s;
}

.price-money {
  font-size: 28px;
  font-weight: bold;
}

.price-month {
  font-size: 14px;
}

.price-item p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.enroll-btn {
  width: 150px;
  height: 45px;
  margin-top: 20px;
  border: 2px solid black;
  background-color: #ffc0cb;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Hover Effects */
.price-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #f05e85;
  transition: 0.5s ease;
  z-index: -1;
}

.price-content:hover::after {
  height: 100%;
}

.price-content:hover {
  border-color: black;
}

.price-content:hover h3,
.price-content:hover p {
  color: #fff4f7;
}

.price-content:hover .price-circle {
  background-color: #fff4f7;
  border-color: black;
}

.price-content:hover .price-money,
.price-content:hover .price-month {
  color: #f05e85;
}

.enroll-btn:hover {
  background-color: #fff4f7;
  color: #f05e85;
  transform: scale(1.1); /* Smooth grow */
}

/* --- CEO SECTION --- */
.CEO-container {
  width: 100%;
  min-height: 400px; /* Use min-height so it expands if text is long */
  background-image: url(../photos/photo13.jpg);
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.CEO-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75); /* Dark tint from your photo */
}

.CEO-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 60px; /* Spacing between the two people */
  margin: auto;
}

.CEO-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 25px; /* Spacing between the circle and the text */
}

.CEO-img img {
  width: 110px; /* Adjusted to match photo proportions */
  height: 110px;
  border-radius: 50%;
  border: 3px solid #ffc0cb;
  object-fit: cover;
}

.CEO-text {
  text-align: left; /* Ensures text stays left-aligned */
}

.CEO-text h3 {
  color: #fff4f7;
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: bold;
}

.CEO-job {
  color: #ffc0cb; /* The pinkish color from your photo */
  font-size: 18px;
  margin-bottom: 15px;
}

.CEO-p {
  color: #fff4f7;
  font-size: 16px;
  line-height: 1.4;
  max-width: 350px; /* Prevents text from stretching too wide */
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
  .CEO-wrapper {
    flex-direction: column; /* Stacks the two people on tablets/phones */
    gap: 60px;
  }

  .CEO-content {
    justify-content: center; /* Centers the whole block on mobile */
  }
  .price-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .price-grid,
  .CEO-wrapper {
    grid-template-columns: 1fr;
    flex-direction: column; /* Stacks everything on mobile */
  }

  .CEO-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .price-container h2 {
    font-size: 32px;
  }

  .price-line {
    margin: 10px auto 40px auto; /* Center line on mobile */
  }

  .price-header {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .CEO-content {
    flex-direction: column; /* Stacks image on top of text for small phones */
    text-align: center;
  }

  .CEO-text {
    text-align: center;
  }
}
/* --- TEAM SECTION --- */
.team-container {
  width: 85%;
  max-width: 1200px;
  margin: 150px auto;
  text-align: center;
}

.team-header {
  text-align: center;
}

.team-container h2 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 45px;
  color: #333;
}

.team-line {
  width: 100px;
  height: 4px;
  background-color: #ffc0cb;
  margin: 10px auto 60px auto;
}

/* --- THE GRID --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-content {
  border: 4px solid #ffc0cb;
  padding: 20px;
  background-color: transparent;
  transition: 0.5s ease;
  position: relative;
  text-align: center; /* Centers name and title */
}

/* --- IMAGE & OVERLAY --- */
.team-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* Makes the image area a perfect square */
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents image stretching */
  display: block;
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Hidden by default */
  transition: 0.5s ease;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.team-overlay a {
  width: 40px;
  height: 40px;
  background-color: #f05e85;
  color: #fff4f7;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.team-overlay a:hover {
  background-color: #fff4f7;
  color: #f05e85;
  transform: translateY(-5px);
}

/* --- HOVER EFFECTS --- */
.team-content:hover .team-overlay {
  opacity: 1;
}

.team-content:hover {
  background-color: rgba(0, 0, 0, 0.03); /* Subtle depth on hover */
  border-color: #f05e85;
}

.team-info h3 {
  margin-top: 25px;
  font-size: 26px;
  transition: 0.3s;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.team-content:hover h3 {
  color: #f05e85;
}

.team-info p {
  margin-top: 10px;
  font-size: 18px;
  color: #666;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .team-header {
    text-align: center;
  }

  .team-line {
    margin: 10px auto 40px auto;
  }

  .team-grid {
    grid-template-columns: 1fr; /* 1 column on phones */
  }
}
/* --- CONTAINER --- */
.stories-container {
  width: 85%;
  max-width: 1200px;
  margin: 150px auto;
}

.stories-header {
  text-align: center;
}

.stories-container h2 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 45px;
  color: #333;
}

.stories-line {
  width: 100px;
  height: 4px;
  background-color: #ffc0cb;
  margin: 10px auto 60px auto;
}

/* --- THE GRID --- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stories-content {
  border: 4px solid #ffc0cb;
  padding-bottom: 30px;
  background-color: #fff; /* White background for the card */
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
}

.stories-img img {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Ensures photos fill the area perfectly */
  display: block;
}

/* --- METADATA (Icons & Text) --- */
.stories-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

.stories-meta i {
  color: #ffc0cb;
  margin-right: 5px;
  transition: 0.3s;
}

.stories-content h3 {
  text-align: center;
  margin: 20px 15px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 22px;
  transition: 0.3s;
}

.stories-content p {
  text-align: center;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  flex-grow: 1; /* Pushes the 'Read More' link to the bottom */
}

.read-more {
  text-align: center;
  margin-top: 20px;
  text-decoration: none;
  color: #ffc0cb;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
}

/* --- HOVER EFFECTS --- */
.stories-content:hover {
  transform: translateY(-10px); /* Lifts the card */
  box-shadow: 0 15px 30px rgba(240, 94, 133, 0.15);
  border-color: #f05e85;
}

.stories-content:hover h3,
.stories-content:hover .read-more,
.stories-content:hover i {
  color: #f05e85;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 768px) {
  .stories-header {
    text-align: center;
  }

  .stories-line {
    margin: 10px auto 40px auto;
  }

  .stories-grid {
    grid-template-columns: 1fr; /* 1 column on phones */
  }
}
/* --- QUOTE SECTION --- */
.quote-container {
  width: 100%;
  min-height: 100vh; /* Use min-height so it grows if text is long */
  background-color: #ffc0cb; /* Your primary pink background */
  margin-top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.quote-box {
  width: 85%;
  max-width: 900px; /* Keeps the quote box looking like a card */
  background-color: #fff4f7; /* Light pink background */
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.quote-box i {
  font-size: 50px;
  color: #ffc0cb;
  margin-bottom: 20px;
}

.quote-text {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
}

/* --- AUTHOR STYLING --- */
.quote-author {
  margin-top: -60px; /* Pulls the image up to overlap the box slightly */
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

.author-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 8px solid #fff4f7; /* Thick border makes the photo pop */
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures portrait isn't squished */
}

.author-name {
  font-size: 20px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  color: #333;
  font-weight: bold;
  text-align: center;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
  .quote-box {
    width: 90%;
    padding: 40px 20px;
  }

  .quote-text {
    font-size: 18px; /* Smaller text for mobile */
  }

  .author-img {
    width: 120px;
    height: 120px;
    border-width: 5px;
  }

  .author-name {
    font-size: 16px;
  }
} /* --- APPLY CONTAINER --- */
.apply-container {
  width: 85%;
  max-width: 1200px;
  margin: 150px auto;
}

.apply-header {
  text-align: center;
}

.apply-container h2 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 45px;
}

.apply-line {
  width: 100px;
  height: 4px;
  background-color: #ffc0cb;
  margin: 10px auto 60px auto;
}

/* --- FORM GRID --- */
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 30px;
}

.apply-group input,
.apply-group select {
  display: block;
  width: 100%;
  height: 50px; /* Slightly taller for better touch targets */
  margin-bottom: 25px;
  padding: 0 15px;
  border: 2px solid black;
  background-color: #ffc0cb;
  font-size: 18px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  transition: 0.3s;
}

.apply-group input:focus,
.apply-group select:focus {
  background-color: #fff4f7;
  border-color: #f05e85;
  outline: none;
  box-shadow: 0 0 10px rgba(240, 94, 133, 0.2);
}

/* --- PRICING SECTION --- */
.apply-pricing {
  margin-top: 40px;
  text-align: center;
}

.pricing-label {
  font-size: 30px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  display: block;
  margin-bottom: 20px;
}

.radio-group {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  cursor: pointer;
}

/* --- FOOTER & BUTTON --- */
.apply-footer {
  margin-top: 50px;
  text-align: center;
}

.terms-label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 30px;
  cursor: pointer;
}

.apply-btn {
  display: block;
  margin: 0 auto;
  width: 160px;
  height: 50px;
  font-size: 24px;
  border: 3px solid black;
  border-radius: 10px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  background-color: #ffc0cb;
  cursor: pointer;
  transition: 0.4s ease;
}

.apply-btn:hover {
  background-color: #f05e85;
  color: #fff4f7;
  transform: scale(1.1);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  .apply-header {
    text-align: center;
  }

  .apply-line {
    margin: 10px auto 40px auto;
  }

  .apply-grid {
    grid-template-columns: 1fr; /* Stacks columns on mobile */
  }

  .pricing-label {
    font-size: 24px;
  }

  .radio-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
} /* --- FOOTER CONTAINER --- */
.footer-container {
  width: 100%;
  background-color: #ffc0cb;
  padding: 80px 0 50px 0; /* Vertical padding instead of fixed height */
  margin-top: 150px;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* --- LOGO STYLING --- */
.footer-logo img {
  width: 180px;
  height: auto;
  margin-bottom: 40px;
}

/* --- SOCIAL ICONS --- */
.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* Modern spacing instead of margins */
  flex-wrap: wrap; /* Allows icons to wrap on small screens */
  margin-bottom: 40px;
}

.footer-icons a {
  text-decoration: none;
}

.footer-icons i {
  width: 55px;
  height: 55px;
  font-size: 26px;
  background-color: #fff4f7;
  color: #f05e85;
  line-height: 55px; /* Centers the icon vertically */
  border-radius: 50%;
  text-align: center;
  transition: all 0.4s ease;
  display: block;
}

/* Hover Effect: Modern and Smooth */
.footer-icons i:hover {
  color: #fff4f7;
  background-color: #f05e85;
  transform: translateY(-8px) scale(1.1); /* Lifts the icon up slightly */
  box-shadow: 0 5px 15px rgba(240, 94, 133, 0.3);
}

/* --- COPYRIGHT TEXT --- */
.copyright {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
  color: #333;
  letter-spacing: 1px;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 600px) {
  .footer-container {
    padding: 60px 20px;
  }

  .footer-icons {
    gap: 10px;
  }

  .footer-icons i {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 45px;
  }

  .copyright {
    font-size: 15px;
  }
}
