/* =========================
   RESET & GLOBAL
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fredoka', sans-serif;
}

body {
    background: #fff;
    color: #222;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* =========================
   NAVBAR — FINAL STABLE VERSION (FIXED)
   ========================= */
:root {
  --primary-color: #1A4FA2;
  --secondary-color: #e34a2e;
  --nav-font-size: 18px;
}

/* -------------------------
   BASE NAVBAR
-------------------------- */
nav {
  background: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: var(--nav-font-size);
  transition: 0.3s;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 10px 20px;
  position: relative;
}

/* -------------------------
   LOGO
-------------------------- */
.nav-logo img {
  height: 75px;
}

/* -------------------------
   MENU LINKS
-------------------------- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary-color);
}

.nav-links a.active::before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: -0.8rem;
}

/* -------------------------
   RIGHT BUTTONS
-------------------------- */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-plan-btn {
  background: var(--primary-color);
  color: #fff;
  padding: 8px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-plan-btn:hover {
  background: #163175;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  gap: 8px;
  transition: background 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.whatsapp-btn img {
  width: 18px;
  height: 18px;
}

/* -------------------------
   DROPDOWN MENU
-------------------------- */
.dropdown {
  position: relative;
}

.dropdown > a {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fdf0f5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 330px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Dropdown items */
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #fff;
  color: var(--secondary-color);
}

/* Hover dropdown for desktop */
.dropdown:hover .dropdown-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------
   HAMBURGER TOGGLE
-------------------------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 4000;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* =========================
   MOBILE NAVIGATION (max-width: 900px)
   ========================= */
@media (max-width: 900px) {

  /* Hide desktop layout spacing */
  .nav-container {
    padding: 12px 20px;
  }

  /* Mobile menu panel */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 80px 0px;
    gap: 30px;
    transition: right 0.4s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 9999;
    overflow-y: auto;
  }

   .nav-menu .nav-links li 
   
   {

    border-bottom: 1px solid #efefef;

   }

  /* Slide-in active */
  .nav-menu.active {
    right: 0;
  }



  


  /* ===================================
       Hamburger Button
  =================================== */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 25px;
    z-index: 10000;
  }

  .nav-toggle span {
    width: 28px;
    height: 3px;
    background: #1A4FA2;
    border-radius: 3px;
    transition: 0.3s ease;
  }

  /* Hamburger Animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* ===================================
       Mobile Nav Links
  =================================== */
  .nav-links {
    flex-direction: column;
    gap: 22px;
  }

  .nav-links li a {
    font-size: 16px;
    color: #1A4FA2;
    font-weight: 500;
            display: block;
  }

  /* ===================================
        Dropdown – Mobile Only
  =================================== */

  /* Hide submenu by default */
  .dropdown-menu {
    display: none;
    flex-direction: column;
    background: none;
    box-shadow:none;
    left: -60px;
  
  }

  /* Dropdown Open */
  .dropdown.open .dropdown-menu {
    display: flex;
  }

  /* Arrow icon styling */
  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


  .dropdown.open .dropdown-toggle::after {
    transform: rotate(90deg);
  }

  /* ===================================
       Buttons Section
  =================================== */
  .nav-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 20px;
  }

  .nav-plan-btn,
  .whatsapp-btn {
    width: 100%;
    text-align: center;
    padding: 10px 10px;
  }

  
}


.open {

    margin-left: 40px;
  }

  .open .sst {

    margin-left: 80px;

  }


/* Desktop dropdown (works normally) */
.dropdown-menu {
  position: absolute;
  background: #fff;
  display: none;
  z-index: 9999;
}

/* Mobile FIX: make dropdown push content below */
@media (max-width: 768px) {

  .dropdown-menu {
    position: static !important;  /* removes overlapping */
    display: none;
    width: 100%;
    background: #fff;

  }

  .dropdown-menu.open {
    display: block !important;
  }

  /* Ensure buttons stay below the menu */
  .nav-buttons {
    margin-top: 15px;
    position: relative;
    z-index: 1;
  }


  

}




/* =========================
   CONTAINER
   ========================= */
.container {
    width: 100%;
    max-width: 1100px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* =========================
   HERO SECTION (ANIMATED)
   ========================= */
/* =========================
   HERO SECTION (BOTTOM TO TOP ANIMATION)
   ========================= */
.hero {
  background: #fff5f8;
  padding: 0;
  overflow: hidden;
}

.hero-flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 50vh;
  animation: slideUp 1.2s ease-out forwards;
  opacity: 0;
}

/* ---------- Left Side Image ---------- */
.hero-left {
  flex: 2;
  height: 100%;
  overflow: hidden;
  animation: fadeUp 1.2s ease-in-out forwards;
}

.hero-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateY(60px);
  opacity: 0;
  animation: slideUp 1.2s ease-in-out forwards;
  animation-delay: 0.2s;
}

/* ---------- Right Side ---------- */
.hero-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transform: translateY(80px);
  opacity: 0;
  animation: slideUp 1.2s ease-out forwards;
  animation-delay: 0.4s;
}


.background-main-slidr
{
   background: url('../img/hero-back.jpg') no-repeat center center;
       background-size: cover;
}


/* keep text above overlay */
.hero-right > * {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease-out forwards;
}

/* ---------- Headings ---------- */
.hero-right h1 {
  font-size: 3.5rem;
  color: #ff4081;
  margin-bottom: 15px;
  line-height: 1.3;
  animation-delay: 0.6s;
}

.hero-right h1 span {
  color: #1A4FA2;
}

.hero-right h2 {
  font-size: 1.5rem;
  color: #1A4FA2;
  margin-bottom: 15px;
  line-height: 1.3;
  animation-delay: 0.8s;
}

.hero-right h3 {
  font-size: 2rem;
  color: #1A4FA2;
  margin-bottom: 0px;
  margin-top: 15px;
  line-height: 1.3;
  animation-delay: 1s;
}

/* ---------- Buttons ---------- */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  animation-delay: 1.2s;
}

.call-btn,
.plan-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  color: #fff;
}

.call-btn {
  background: #D15129;
}

.call-btn:hover {
  background: #cf3628;
  transform: scale(1.05);
}

/* ---------- Keyframes ---------- */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left img {
    height: auto;
    max-height: 500px;
    border-radius: 5px;
  }

  .hero-right {
    padding: 2rem;
    text-align: center;
    border-radius: 0;
    background: none;
  }

  .hero-buttons {
    justify-content: center;
  }
}

.swiper-button-next, .swiper-button-prev

{
      padding: 40px;
}

/* ---------- Feature Boxes ---------- */
/* ---------- Layout ---------- */
.feature-boxes .container {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 60px auto;
}

/* ---------- Feature Box ---------- */
.feature-box {
    flex: 1 1 30%;
    display: flex;
    align-items: center;
    background: #C9DEFF;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* animation default state */
    opacity: 0;
    transform: translateY(60px);
}

/* hover effect */
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ---------- Icon Styling (Font Awesome) ---------- */
.feature-icon i {
    font-size: 45px;
    margin-right: 25px;
    color: #ff4081; /* theme color */
}

/* ---------- Text Styling ---------- */
.feature-text h3 {
    font-size: 1.25rem;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .feature-boxes .container {
        flex-direction: column;
        gap: 20px;
    }

    .feature-box {
        flex: 1 1 100%;
    }
}

/* ---------- Animation: Slide Up on Scroll ---------- */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* add show class when visible */
.feature-box.show {
  animation: slideUp 0.8s ease-out forwards;
}

/* stagger effect */
.feature-box:nth-child(1).show { animation-delay: 0.1s; }
.feature-box:nth-child(2).show { animation-delay: 0.3s; }
.feature-box:nth-child(3).show { animation-delay: 0.5s; }




/* ---------- Services Section ---------- */
.services-section {
    padding: 60px 0;
    background: #fdf0f5;
}

/* ---------- Two icons with text in between ---------- */
.service-icons-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: nowrap;
    margin-bottom: 45px;
}

/* each icon */
.service-icons-text .service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icons-text .service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-icons-text .service-icon img:hover {
    transform: scale(1.1);
}

/* text wrapper sits naturally between icons */
.service-text-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* actual text (centered and inline) */
.service-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #506C97;
    text-align: center;
    margin: 0;
    padding: 0 10px;
    white-space: nowrap;
}

/* ---------- Responsive adjustments ---------- */
@media (max-width: 900px) {
    .service-icons-text {
        gap: 15px;
        flex-wrap: nowrap; /* keep them in one row */
    }

    .service-icons-text .service-icon img {
        width: 50px;
        height: 50px;
    }

    .service-text {
        font-size: 1.2rem;
    }
}

/* ---------- Mobile view: keep 2 icons + text in middle ---------- */
@media (max-width: 480px) {
    .service-icons-text {
        display: grid;
        grid-template-columns: 1fr auto 1fr; /* icon | text | icon */
        align-items: center;
        justify-items: center;
        gap: 10px;
        margin-bottom: 30px;
    }

    .service-icons-text .service-icon img {
        width: 42px;
        height: 42px;
    }

    .service-text {
        font-size: 1.1rem;
        text-align: center;
        white-space: normal;
    }
}



/* ===============================
   SERVICE BOXES GRID
================================ */
.service-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ===============================
   INDIVIDUAL BOX STYLE
================================ */
.service-box {
    display: flex;
    align-items: center;
    background: #F8FBFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ===============================
   IMAGE SIDE
================================ */
.box-img {
    flex: 1;
    height: 100%;
}

.box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===============================
   TEXT SIDE
================================ */
.box-text {
    flex: 1;
    padding: 20px;
}

.box-text h3 {
    font-size: 1.4rem;
    color: #506C97;
    margin-bottom: 10px;
}

.box-text h2 {
        font-size: 1rem;
    }

.box-text h2 span{
        font-size: 1rem;
        color: #D15129
    }
.box-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 10px;
}

.box-text ul {
    margin: 10px 0 0 18px;
    padding: 0;
    list-style-type: disc;
}

.box-text ul li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
    .service-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    .box-img {
        width: 100%;
    }

    .box-img img {
        width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: cover;
        border-radius: 12px;
    }

    .box-text {
        padding: 15px 10px 10px;
    }

    .box-text h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .box-text p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .box-text ul {
        margin-top: 8px;
        margin-left: 0;
        padding-left: 0;
        list-style-position: inside;
    }

    .box-text ul li {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
}

/* Extra small devices (phones under 576px) */
@media (max-width: 576px) {
    .box-img img {
        max-height: 220px;
    }

    .box-text h3 {
        font-size: 1.2rem;
    }

    .box-text p,
    .box-text ul li {
        font-size: 0.9rem;
    }

    .service-box {
        padding: 10px;
    }
}

/* ===============================
   SCROLL TRIGGER ANIMATION
================================ */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Initially hidden before scroll */
.service-box {
  opacity: 0;
  transform: translateY(60px);
}

/* Visible state */
.service-box.show {
  animation: slideUp 0.8s ease-out forwards;
}

/* Staggered delays for each box */
.service-box:nth-child(1).show { animation-delay: 0.1s; }
.service-box:nth-child(2).show { animation-delay: 0.3s; }
.service-box:nth-child(3).show { animation-delay: 0.5s; }
.service-box:nth-child(4).show { animation-delay: 0.7s; }
.service-box:nth-child(5).show { animation-delay: 0.9s; }
.service-box:nth-child(6).show { animation-delay: 1.1s; }

/* =========================
   THEME SECTION
   ========================= */
.theme-section {
  padding: 80px 0; /* vertical spacing only */
  background: transparent; /* remove any bg outside container */
}

.theme-section .container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 50px;
  border-radius: 15px;
  overflow: hidden;
  background: url('../img/background.jpg') center/cover no-repeat;
}

.theme-section .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 79, 162, 0.5); /* dark overlay for readability */
  z-index: 0;
  border-radius: 15px;
}

.theme-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1; /* content stays above overlay */
}

.theme-image {
  flex: 1;
}

.theme-image img {
  width: 100%;
  max-width: 450px;
}

.theme-text {
  flex: 1;
  color: #fff;
}

.theme-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.theme-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.theme-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.theme-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  color: #fff;
}

.whatsapp-btn {
  background: #25D366;
  gap: 8px;
}

.whatsapp-btn img {
  width: 18px;
  height: 18px;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.call-btn {
  background: #D15129;
}

.call-btn:hover {
  background: #cf3628;
}

/* Responsive */
@media (max-width: 900px) {
  .theme-content {
    flex-direction: column;
    text-align: center;
    gap: 20px; /* add spacing between image and text */
  }

  .theme-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .theme-image img {
    max-width: 90%; /* image adapts to screen width */
    height: auto;
    object-fit: cover;
  }

  .theme-text {
    margin-top: 15px;
    width: 100%;
    padding: 0 10px; /* add some horizontal padding */
    font-size: 0.95rem; /* slightly smaller text for mobile */
    line-height: 1.5; /* better readability */
  }

  .theme-text h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .theme-text p {
    font-size: 0.95rem;
  }
  .theme-section .container {
    border-radius: 5px;
  }
  .theme-section .container::before {
    border-radius: 5px;
 }
   .theme-buttons {
    justify-content: center;
  }

  .theme-buttons a {
    width: 100%;
    max-width: 250px;
  }
}
/* ===============================
   SCROLL TRIGGER ANIMATION — THEME SECTION
================================ */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide before scroll */
.theme-image,
.theme-text {
  opacity: 0;
  transform: translateY(60px);
}

/* Animate when visible */
.theme-image.show,
.theme-text.show {
  animation: slideUp 1s ease-out forwards;
}

/* Stagger effect */
.theme-image.show {
  animation-delay: 0.1s;
}

.theme-text.show {
  animation-delay: 0.4s;
}


/* =========================
   SERVICES HIGHLIGHT
   ========================= */
.services-highlight {
  padding: 60px 0;
  background: #fdf0f5;
}

.highlight-heading {
  text-align: center;
  font-size: 2rem;
  color: #1A4FA2;
  margin-bottom: 40px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Columns */
  gap: 25px;
  justify-items: center;
  /* Safety to prevent grid blowout on smaller screens */
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 15px; /* Prevents cards touching edge of screen */
}

.highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 390px;
  
  /* --- FIX #1: Responsive Width --- */
  width: 100%;         /* Fill the grid cell */
  max-width: 370px;    /* But don't get bigger than 370px */
  /* ------------------------------- */
  
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Overlay */
/* 1. Increase the initial height slightly so the link fits */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 135px; /* CHANGED: Increased from 110px to 135px */
  background: rgba(30, 86, 173, 0.9);
  border-top-right-radius: 80px; 
  color: #fff;
  padding: 20px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: flex-start;
  overflow: hidden;
  backdrop-filter: blur(3px);
}

/* 2. Ensure the Link is visible (Opacity 1) */
.card-overlay a {
  margin-top: 8px;       /* Space between Title and Link */
  font-size: 0.9rem;
  color: #ffffff;        /* Gold color stands out on blue */
  text-decoration: none;
  font-weight: 700;      /* Make it bold */
  opacity: 1;            /* CHANGED: Was 0, now 1 (Visible) */
  transition: opacity 0.4s ease, color 0.3s ease;
  text-transform: uppercase; /* Optional: Makes it look more like a button */
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.card-overlay a:hover {
  color: #fff; /* Turn white when hovered */
}

/* 3. Keep the paragraph hidden initially */
.card-overlay p {
  font-size: 0.95rem;
  margin-top: 15px;
  line-height: 1.5;
  opacity: 0;            /* Hidden */
  max-height: 0;         /* Takes 0 space */
  display: none;         /* CHANGED: Hides it completely from layout flow */
  transition: opacity 0.4s ease;
}

/* --- HOVER STATE UPDATES --- */

.highlight-card:hover .card-overlay {
  height: 100%;
  width: 100%;
  background: rgba(30, 86, 173, 0.95);
  border-radius: 0;
  justify-content: center;
  padding: 30px;
}

/* When hovering, reveal the paragraph */
.highlight-card:hover .card-overlay p {
  display: block;        /* CHANGED: Bring it back into layout */
  opacity: 1;
  max-height: 200px;
  margin-bottom: 15px;   /* Push the link down below the text */
  animation: fadeIn 0.5s ease forwards; /* Smooth entry */
}

/* Add this animation for smoother text appearance */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet (2 Columns) */
@media (max-width: 992px) {
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (1 Column) */
@media (max-width: 600px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    height: 350px; /* Slightly smaller height for mobile */
    max-width: 100%; /* Allow full width on mobile */
  }

  /* Optional: Make title smaller on mobile so it fits */
  .card-overlay h3 {
      font-size: 1.1rem;
  }
}

/* ===============================
   SCROLL TRIGGER ANIMATION — SERVICES HIGHLIGHT
================================ */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hidden before scroll */
.highlight-card {
  opacity: 0;
  transform: translateY(60px);
}

/* Show when visible */
.highlight-card.show {
  animation: slideUp 0.8s ease-out forwards;
}

/* Staggered animation delays */
.highlight-card:nth-child(1).show { animation-delay: 0.1s; }
.highlight-card:nth-child(2).show { animation-delay: 0.3s; }
.highlight-card:nth-child(3).show { animation-delay: 0.5s; }
.highlight-card:nth-child(4).show { animation-delay: 0.7s; }
.highlight-card:nth-child(5).show { animation-delay: 0.9s; }
.highlight-card:nth-child(6).show { animation-delay: 1.1s; }

/* Optional: subtle hover lift enhancement */
.highlight-card:hover {
  transform: translateY(-8px) scale(1.02);
}


/* =========================
   TESTIMONIAL SECTION
   ========================= */
/* --- NEW TESTIMONIAL STYLES --- */

/*Wrapper: Added more padding (80px) to create space for buttons */
.testimonial-wrapper-custom {
    position: relative;
    padding: 0 100px; 
    max-width: 1200px;
    margin: 0 auto; /* Centers the whole section */
}

/* The White Card */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    box-sizing: border-box;
    border: 1px solid #f0f0f0;
    user-select: none;
    text-align: left;
}

/* Blue Stars */
.stars {
    color: #4353FF;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: right;
}

/* Review Text */
.quote-text {
    font-size: 16px;
    line-height: 1.6;
    color: #111827;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.author-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.author-info span {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

/* Badge */
.platform-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #1f2937;
}

.icon-circle {
    background-color: #5C66FF;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* --- FIXED BUTTON POSITIONS --- */
.custom-next, .custom-prev {
    background-color: white;
    width: 50px; /* Slightly larger */
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: #4353FF;
    transition: all 0.3s ease;
    z-index: 20; /* Ensure they are on top */
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Center Vertically */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #eee;
}

/* Pin them to the empty space we created */
.custom-prev { left: 10px; }
.custom-next { right: 10px; }

.custom-next:hover, .custom-prev:hover {
    background-color: #4353FF;
    color: white;
    border-color: #4353FF;
}

/* RESPONSIVE: Hide buttons on mobile (swipe only) */
@media (max-width: 768px) {
    .testimonial-wrapper-custom {
        padding: 0 15px; /* Remove side padding on mobile */
    }
    .custom-next, .custom-prev {
        display: none; /* Hide buttons */
    }
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================
   FOOTER
   ========================= */
.site-footer {
    text-align: center;
    color: white;
    font-family: 'Fredoka', sans-serif;
}

/* Full-width backgrounds */
.footer-address {
    background-color: #4A6B9E; /* lighter blue */
    padding: 30px 10px;
    font-size: 17px;
    line-height: 1.5;
}

/* Center content inside the container */
.footer-address div {
    max-width: 1200px;
    margin: 0 auto;
}

/* Full-width bottom section */
.footer-bottom {
    background-color: #25406B; /* darker blue */
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .footer-address,
    .footer-bottom {
        padding: 20px 15px;
        font-size: 14px;
    }
}

/* =========================
   ABOUT US PAGE
   ========================= */

/* ABOUT US HEADING ON TOP */
.about-heading-section {
    background: #fff5f8;
    padding: 40px 0;
    margin-bottom: 20px;
}
.about-heading {
    font-size: 40px;
    color: #ff4081;
    text-align: center;
    margin-bottom: 40px;
}

/* =========================
   MAIN ABOUT US SECTION
   ========================= */
.about-main-section {
    background: #ffffff;
    overflow: hidden; /* hide overflow during animation */
    padding: 60px 0;
}

.about-main-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 40px;
}

/* =========================
   IMAGE
   ========================= */
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);

    /* animation */
    opacity: 0;
    transform: translateY(80px);
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

.about-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* =========================
   TEXT CONTENT
   ========================= */
.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;

    /* animation */
    opacity: 0;
    transform: translateY(80px);
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

.about-text h1 {
    font-size: 34px;
    color: #1A4FA2;
    margin-bottom: 15px;
    margin-right: 90px;
}

.about-text h1 span {
    font-size: 38px;
    color: #ff4081;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text p span {
    color: #1A4FA2;
}

/* =========================
   ANIMATION KEYFRAMES
   ========================= */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
    .about-main-flex {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text h1 {
        margin-right: 0;
    }

    .about-image img {
        height: 350px;
    }
}

/* MISSION & VISION SECTION */
.mission-vision-section {
    padding: 60px 0;
    background: #fff5f8;
}
.mission-vision-flex {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.mission-box,
.vision-box {
    flex: 1 1 45%;
    background: #F8FBFF;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.mission-box .icon,
.vision-box .icon {
    font-size: 50px;
    color: #ff4081;
    margin-bottom: 15px;
}
.mission-box h3,
.vision-box h3 {
    font-size: 24px;
    color: #1A4FA2;
    margin-bottom: 15px;
}
.mission-box p,
.vision-box p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

/* WHAT SETS US APART */
.sets-us-apart-section {
    padding: 60px 0;
    background: #ffffff;
}
.section-title {
    text-align: center;
    font-size: 36px;
    color: #d94f6f;
    margin-bottom: 50px;
}
.apart-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    border-left: 3px solid #d94f6f;
    padding-left: 20px;
}
.apart-item .icon {
    font-size: 40px;
    color: #ff4081;
    margin-top: 5px;
    flex-shrink: 0;
}
.apart-item .text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1A4FA2;
}
.apart-item .text p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* WHY PICK US SECTION */
.why-choose {
  padding: 60px 20px;
  background: #F8FBFF;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}
.why-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.why-box i {
  font-size: 35px;
  color: #ff4e9b;
  margin-bottom: 15px;
}
.why-box h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}
.why-box p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* SERVICE LOCATIONS */
.service-locations {
  padding: 60px 20px;
  background: #f9f9ff;
  text-align: center;
}
.service-intro {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #1A4FA2;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}
.location-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}
.location-list li {
  font-size: 1rem;
  color: #000000;
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  border-bottom: 1px dashed #eee;
}
.location-list li:last-child {
  border-bottom: none;
}
.location-list i {
  color: #ff4e9b;
  font-size: 18px;
  margin-top: 3px;
}

/* COMMITMENT + CTA */
.commitment-section {
    background: #fdf0f5;
    text-align: center;
    padding: 5px 0;
}
.about-cta {
    color: #1A4FA2;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0 0;
}
.about-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
}
.about-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #000;
}
.theme-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.theme-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}
.whatsapp-btn {
    background: #25d366;
    color: #fff;
}
.whatsapp-btn:hover {
    background: #1ebe5d;
}
.call-btn {
    background: #ff6b6b;
    color: #fff;
}
.call-btn:hover {
    background: #e55656;
}
.theme-buttons img {
    width: 20px;
    height: 20px;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 992px) {
    .about-main-flex {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-text h1,
    .about-text p {
        margin-right: 0;
    }
    .mission-box,
    .vision-box {
        flex: 1 1 100%;
    }
    .apart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        padding-left: 0;
    }
    .service-icons-text {
        flex-direction: column;
        gap: 15px;
    }
}
@media (max-width: 576px) {
    .about-heading {
        font-size: 28px;
        margin-bottom: 25px;
    }
    .about-cta h3 {
        font-size: 24px;
    }
    .about-cta p {
        font-size: 15px;
    }
    .theme-buttons a {
        width: 100%;
        justify-content: center;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Contact Page ---------- */
/* =========================
   CONTACT SECTION
   ========================= */
.contact-section {
  padding: 60px 0;
  background-color: #fff;
  overflow: hidden;
}

.contact-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* IMAGE */
.contact-img {
  flex: 1 1 45%;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}

.contact-img.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-img img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* TEXT */
.contact-text {
  flex: 1 1 50%;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease-out;
}

.contact-text.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-text h2 {
  font-size: 38px;
  color: #1A4FA2;
  margin-bottom: 15px;
}

.contact-text h2 span {
  font-size: 38px;
  color: #ff4081;
}

.contact-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
    text-align: center;
  }

  .contact-text p {
    text-align: center;
  }

  .contact-img img {
    width: 90%;
  }
}

/* ===========================
   CONTACT VENUES
   =========================== */
/* ===========================
   Redesigned Venue Section
   =========================== */
.contact-venues {
  margin: auto;
  max-width: auto;
  background: #F8FBFF;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-venues:hover {
  transform: translateY(-5px);
}

.contact-venues h2 {
  color: #1A4FA2;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.contact-venues h2 i {
  color: #E94F89;
  margin-right: 10px;
}

/* Grid for venue items */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 15px 20px;
  margin-bottom: 25px;
}

/* Each venue box */
.venue-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px;
  font-weight: 500;
  font-size: 1.05rem;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  transition: all 0.3s ease;
}

.venue-item i {
  color: #E94F89;
  font-size: 1.2rem;
}

.venue-item:hover {
  background: #E94F89;
  color: #fff;
}

.venue-item:hover i {
  color: #fff;
}

.venue-note {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #222;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .contact-venues {
    padding: 30px 20px;
  }

  .contact-venues h2 {
    font-size: 1.5rem;
  }

  .venue-item {
    font-size: 1rem;
  }
}

/* ===========================
   CONTACT INFO
   =========================== */
.contact-info-section {
  padding: 50px 0;
  background: #f8f9fc;
  text-align: center;
}

.contact-info-details p {
  margin: 12px 0;
  font-size: 1.2rem;
  color: #333;
}

.contact-info-details p span {
  color: #1A4FA2;
  font-weight: 500;
}

.contact-info-details i {
  color: #E94F89;
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Buttons */
.contact-buttons {
  margin-top: 30px;
}

.contact-buttons a {
  display: inline-block;
  margin: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-buttons a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
  background: #25D366;
}

.btn-call {
  background: #506C97;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-section {
    padding: 40px 15px;
  }

  .contact-buttons a {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  .contact-info-details p {
    font-size: 1rem;
  }
}


/* ===========================
   CONTACT FORM SECTION
   =========================== */
/* ---------- Inquiry Form Section ---------- */
.inquiry-section {
  padding: 60px 0;
  background: #F8FBFF;
}

.contact-form-section {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 35px 30px;
  max-width: auto;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.contact-form-section:hover {
  transform: translateY(-4px);
}

/* Input fields and textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
   margin-bottom: 10px; /* 👈 adds spacing between fields */
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #666;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1A4FA2;
}

/* Button */
.contact-form button {
  background: #1A4FA2;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #163175;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-form-section {
    padding: 25px 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }
}

/* ===========================
   CONTACT MAP
   =========================== */
.contact-map-section {
  padding: 60px 0;
  background-color: #fff5f8;
}

.contact-map-section iframe {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-map-section iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .contact-map-section {
    padding: 40px 0;
  }

  .contact-map-section iframe {
    height: 380px;
    border-radius: 10px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .contact-intro { font-size: 1rem; padding: 0 10px; }
  .contact-venues, .contact-areas, .contact-info, .contact-form-section, .contact-map, .contact-cta {
    padding: 20px;
  }
  .contact-form input, .contact-form textarea {
    font-size: 0.95rem;
  }
}

/* ===========================
   TWO COLUMN CONTACT LAYOUT
   =========================== */

.contact-two-column {
  padding: 60px 0;
  background: #fff5f8;
}

.two-col-flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;          /* Ensures equal height */
  gap: 40px;
  flex-wrap: nowrap;             /* Prevents auto-wrapping on desktop */
}

/* LEFT BOX – CONTACT INFO */
.left-contact-info-box {
  flex: 1;
  background: #f8f9fc;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Ensures balanced space */
}

/* Text inside left box */
.left-contact-info-box p {
  margin: 12px 0;
  font-size: 1.2rem;
  color: #333;
}

.left-contact-info-box p span {
  color: #1A4FA2;
  font-weight: 600;
}

.left-contact-info-box i {
  color: #E94F89;
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Buttons inside left box */
.left-contact-info-box .theme-buttons {
  margin-top: 20px;
}

.left-contact-info-box .theme-buttons a {
  display: inline-block;
  margin: 8px 8px 0 0;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.left-contact-info-box .theme-buttons a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.whatsapp-btn { background: #25D366; }
.call-btn { background: #506C97; }

/* RIGHT BOX – INQUIRY FORM */
.right-inquiry-form-box {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}

/* Inputs & Textarea */
.right-inquiry-form-box input,
.right-inquiry-form-box textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #666;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.right-inquiry-form-box input:focus,
.right-inquiry-form-box textarea:focus {
  border-color: #1A4FA2;
}

/* Submit Button */
.right-inquiry-form-box button {
  background: #1A4FA2;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.right-inquiry-form-box button:hover {
  background: #163175;
}

/* Headings (Both Boxes) */
.left-contact-info-box h2,
.right-inquiry-form-box h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1A4FA2;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.left-contact-info-box h2::after,
.right-inquiry-form-box h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #E94F89;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .two-col-flex {
    flex-direction: column;
    gap: 25px;
    flex-wrap: wrap;     /* Allow stacking */
  }

  .left-contact-info-box,
  .right-inquiry-form-box {
    flex: 1 1 100%;
    width: 100%;
  }
}





/* =========================
   BIRTHDAY MAIN SECTION
   ========================= */
.birthday-main-section {
  background: #ffffff;
  padding: 10px 0;
  font-family: 'Fredoka', sans-serif;
}

.birthday-main-section .container {
  max-width: auto;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== FLEX LAYOUT ===== */
.birthday-main-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* ===== LEFT IMAGE ===== */
.birthday-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.birthday-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.birthday-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ===== RIGHT TEXT ===== */
.birthday-text {
  flex: 1;
  min-width: 300px;
}

.birthday-text h1 {
  font-size: 34px;
  color: #1A4FA2;
  margin-bottom: 20px;
  line-height: 1.2;
}

.birthday-text h1 span {
  color: #ff4081;
}

.birthday-text p {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}
.birthday-text p span {
    color: #1A4FA2;
}
/* ===== LIST STYLE ===== */
.birthday-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.birthday-text ul li {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.birthday-text ul li::before {
  content: "\f0a9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #ff4081;
  position: absolute;
  left: 0;
  top: 0;
}

/* ===== ANIMATION ===== */
.birthday-text,
.birthday-image {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

.birthday-image {
  animation-delay: 0.2s;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .birthday-main-flex {
    flex-direction: column;
    text-align: center;
  }

  .birthday-text h1 {
    font-size: 36px;
  }

  .birthday-text p {
    font-size: 17px;
  }

  .birthday-image img {
    max-width: 90%;
  }

  .birthday-text ul li {
    padding-left: 25px;
  }
}

@media (max-width: 600px) {
  .birthday-text h1 {
    font-size: 30px;
  }
}


/* =========================
   BIRTHDAY PACKAGE SECTION
   ========================= */
.package-section {
  background: linear-gradient(180deg, #fff9fb 0%, #fef4f5 100%);
  padding: 100px 0;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
}

.package-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== FLEX BOX ===== */
.package-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== PACKAGE BOX ===== */
.package-box {
  background: #fff;
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 800px;
}

.package-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

/* ===== ICON ===== */
.package-box .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #ff4081;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 35px;
  box-shadow: 0 8px 20px rgba(227, 74, 46, 0.3);
}

/* ===== HEADING & TEXT ===== */
.package-box h3 {
  font-size: 32px;
  color: #1A4FA2;
  margin-bottom: 15px;
  font-weight: 700;
}

.package-box p {
  font-size: 18px;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* ===== TABLE STYLE ===== */
.package-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 17px;
}

.package-table th {
  background: #1A4FA2;
  color: #fff;
  padding: 15px;
  border-radius: 10px 10px 0 0;
  font-weight: 600;
  text-transform: uppercase;
}

.package-table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  color: #444;
}

.package-table tr:nth-child(even) {
  background: #f8faff;
}

.package-table tr:hover {
  background: #ffeef0;
  transition: 0.3s;
}

/* ===== ADD-ONS TEXT ===== */
.package-box .mt-3 {
  margin-top: 25px;
  font-size: 17px;
  color: #222;
}

.package-box strong {
  color: #ff4081;
}

/* ===== ANIMATION ===== */
.package-box {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.9s ease forwards;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .package-box {
    padding: 40px 25px;
  }

  .package-box h3 {
    font-size: 26px;
  }

  .package-box p,
  .package-box td,
  .package-box th {
    font-size: 16px;
  }

  .package-box .icon {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }
}


.hero-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  /* padding: 60px 0; */
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left img {
  width: 100%;
  max-width: 520px;
}

.hero-right h1 {
  font-size: 42px;
  line-height: 1.2;
}

.hero-right span {
  color: #ff0055;
}

.hero-buttons .call-btn {
  background: #ff0055;
  color: #fff;
  padding: 12px 26px;
  font-size: 18px;
  display: inline-block;
  border-radius: 8px;
  text-decoration: none;
}

.hero-prev, .hero-next {
  color: #fff;
}

@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
  }
  .hero-left img {
    max-width: 100%;
  }
  .hero-right h1 {
    font-size: 30px;
  }
}


.inline-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.inline-menu li {
    display: inline-block;
    margin-right: 12px;
    position: relative;
}

.inline-menu li::after {
    content: "|";
    margin-left: 12px;
}

.inline-menu li:last-child::after {
    content: "";
}
