/* ========================================== HOME BANNER START ======================================== */
/* --- 1. Main Section Layout --- */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  font-family: 'Poppins', sans-serif;
}

/* --- 2. Background Image --- */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  /* Simple zoom effect */
  animation: bgZoom 20s infinite alternate ease-in-out;
}

/* --- 3. Overlay --- */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* --- 4. Content Container --- */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* --- 5. Slide Items --- */
.slide-item {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  /* 15s Cycle (5s per slide) */
  animation: slideCycle 15s infinite;
}

/* --- SLIDE DELAY LOGIC (Synchronized) --- */

/* SLIDE 1: Starts at 0s */
.slide-item:nth-child(1) { animation-delay: 0s; }
.slide-item:nth-child(1) h2 { animation-delay: 0s; }
.slide-item:nth-child(1) p  { animation-delay: 0.3s; } /* Slight drag for P */

/* SLIDE 2: Starts at 5s */
.slide-item:nth-child(2) { animation-delay: 5s; }
.slide-item:nth-child(2) h2 { animation-delay: 5s; }
.slide-item:nth-child(2) p  { animation-delay: 5.3s; }

/* SLIDE 3: Starts at 10s */
.slide-item:nth-child(3) { animation-delay: 10s; }
.slide-item:nth-child(3) h2 { animation-delay: 10s; }
.slide-item:nth-child(3) p  { animation-delay: 10.3s; }

/* --- 6. Typography Styling --- */
.slide-item h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  
  /* Initial State for Animation */
  opacity: 0;
  transform: translateY(30px);
  animation: textReveal 15s infinite;
}

.slide-item p {
  font-size: 1.2rem;
  color: #e0e0e0;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  
  /* Initial State for Animation */
  opacity: 0;
  transform: translateY(30px);
  animation: textReveal 15s infinite;
}

/* --- 7. Keyframe Animations --- */

/* Controls Slide Visibility (Active for 33% of the time) */
@keyframes slideCycle {
  0%   { opacity: 0; pointer-events: none; }
  5%   { opacity: 1; pointer-events: auto; } /* Fade in quickly */
  33%  { opacity: 1; pointer-events: auto; } /* Stay visible until 5s mark */
  38%  { opacity: 0; pointer-events: none; } /* Fade out */
  100% { opacity: 0; pointer-events: none; }
}

/* Controls Text Movement (Syncs with the 33% active window) */
@keyframes textReveal {
  0% { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  5% { 
    opacity: 1; 
    transform: translateY(0); 
  }
  30% { 
    opacity: 1; 
    transform: translateY(0); 
  }
  35% { 
    opacity: 0; 
    transform: translateY(-20px); /* Exits upwards */
  }
  100% { 
    opacity: 0; 
    transform: translateY(-20px); 
  }
}

/* Background Zoom */
@keyframes bgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* --- 8. Progress Bar --- */
.progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.2);
  z-index: 4;
}

.progress-fill {
  height: 100%;
  background: #ffffff;
  width: 0%;
  animation: fillBar 5s linear infinite; /* Runs every 5s to match slide change */
}

@keyframes fillBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* --- 9. Responsiveness --- */
@media screen and (max-width: 768px) {
  .slide-item h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .slide-item p {
    font-size: 1rem;
    max-width: 90%;
  }
}
/* ========================================== HOME BANNER END ======================================== */


/* ========================================== HOME UNIQUE FEATURES START ======================================== */
/* =========================
   Active Background System
========================= */
.re-unique-features-section {
  position: relative;
  padding: 30px 20px;
  background-color: #f8f9fc;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  z-index: 1;
}

.re-unique-features-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.re-unique-features-bg-blob-blue {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(26, 7, 104, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: reUniqueMoveBlue 20s infinite alternate ease-in-out;
}

.re-unique-features-bg-blob-orange {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(255, 151, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: reUniqueMoveOrange 18s infinite alternate ease-in-out;
}

.re-unique-features-bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, #f8f9fc 10px),
    repeating-linear-gradient(#eef1f555, #eef1f5);
}

/* =========================
   Container
========================= */
.re-unique-features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =========================
   Header Styling
========================= */
.re-unique-features-header {
  margin-bottom: 35px;
  text-align: left;
}

.re-unique-features-header h2 {
  color: #1a0768;
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.re-unique-features-header-line {
  width: 70px;
  height: 5px;
  background-color: #ff9700;
  border-radius: 10px;
}

/* =========================
   Grid Layout
========================= */
.re-unique-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 25px;
}

/* =========================
   Card Base Styles
========================= */
.re-unique-features-card {
  border-radius: 24px;
  padding: 10px 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 7, 104, 0.05);
  transition: box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  animation: reUniqueFloat 6s ease-in-out infinite;
  animation-delay: var(--float-delay);
}

.re-unique-features-card:hover {
  box-shadow: 0 25px 60px rgba(26, 7, 104, 0.12);
}

/* --- Small Card --- */
.re-unique-features-card-small {
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 230px;
}

.re-unique-features-icon-circle {
  width: 55px;
  height: 55px;
  background-color: rgba(255, 151, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ff9700;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.re-unique-features-card-small:hover .re-unique-features-icon-circle {
  background-color: #ff9700;
  color: #ffffff;
  transform: scale(1.1);
}

.re-unique-features-card-small h3 {
  color: #1a0768;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.re-unique-features-card-small p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Wide Card --- */
.re-unique-features-card-wide {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  background-color: #1a0768;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px;
}

.re-unique-features-wide-content {
  flex: 1;
  padding-right: 20px;
  z-index: 2;
}

.re-unique-features-wide-content h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #ffffff;
}

.re-unique-features-wide-content p {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.7;
  color: #e0e0e0;
}

.re-unique-features-wide-icon {
  font-size: 7rem;
  color: rgba(255, 255, 255, 0.05);
  transform: rotate(-15deg);
  transition: transform 0.4s ease;
  position: absolute;
  right: 20px;
  bottom: -10px;
}

.re-unique-features-card-wide:hover .re-unique-features-wide-icon {
  transform: rotate(0deg) scale(1.1);
  color: rgba(255, 151, 0, 0.1);
}

/* --- Tall Card --- */
.re-unique-features-card-tall {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #ff9700 0%, #ff7b00 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.re-unique-features-tall-content {
  position: relative;
  z-index: 2;
}

.re-unique-features-tall-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 25px;
}

.re-unique-features-card-tall h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #ffffff;
}

.re-unique-features-card-tall p {
  font-size: 1.05rem;
  opacity: 0.95;
  line-height: 1.7;
  color: #ffffff;
}

.re-unique-features-tall-deco-circle {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

/* =========================
   Animations
========================= */
@keyframes reUniqueMoveBlue {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}

@keyframes reUniqueMoveOrange {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, -50px) scale(1.1); }
}

@keyframes reUniqueFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* =========================
   Responsiveness
========================= */
@media (max-width: 992px) {
  .re-unique-features-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .re-unique-features-card-tall {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 250px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .re-unique-features-tall-icon {
    margin-bottom: 0;
    margin-right: 25px;
  }

  .re-unique-features-card-wide {
    grid-column: 1 / 3;
  }
}

@media (max-width: 768px) {
  .re-unique-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .re-unique-features-card-small,
  .re-unique-features-card-wide,
  .re-unique-features-card-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .re-unique-features-header h2 {
    font-size: 2rem;
  }

  .re-unique-features-card-wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .re-unique-features-wide-icon {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: flex-end;
    font-size: 5rem;
    margin-top: -30px;
  }

  .re-unique-features-card-tall {
    flex-direction: column;
    align-items: flex-start;
  }

  .re-unique-features-tall-icon {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

/* ========================================== HOME UNIQUE FEATURES END ======================================== */

/* ========================================== HOME ABOUT DETAILS START ======================================== */
/* =========================
   Section & Layout
========================= */
.homeabout-section {
  position: relative;
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.homeabout-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 55%;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* =========================
   Background Decorations
========================= */
.homeabout-bg-shape {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: linear-gradient(135deg, rgba(26, 7, 104, 0.03) 0%, transparent 100%);
  border-radius: 50%;
  z-index: 0;
  transform: rotate(-10deg);
}

.homeabout-bg-dots {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#ff9700 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  opacity: 0.2;
  z-index: 0;
}

/* =========================
   Left: Visual Composition
========================= */
.homeabout-visual {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.homeabout-main-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(26, 7, 104, 0.15);
  z-index: 2;
  line-height: 0;
}

.homeabout-main-img img {
  width: 300px;
  height: 450px;
  display: block;
}

.homeabout-accent-line {
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  border-left: 3px solid #ff9700;
  border-bottom: 3px solid #ff9700;
  border-radius: 0 0 0 14px;
  z-index: 1;
}

.homeabout-floating-card {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: #ffffff;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: homeaboutFloat 4s ease-in-out infinite;
}

.homeabout-float-icon {
  width: 32px;
  height: 32px;
  background: rgba(26, 7, 104, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0768;
  font-size: 14px;
}

.homeabout-float-num {
  font-weight: 700;
  font-size: 14px;
  color: #1a0768;
  display: block;
  line-height: 1;
}

.homeabout-float-label {
  font-size: 11px;
  color: #666;
  font-weight: 500;
  line-height: 1;
}

/* =========================
   Right: Text Content
========================= */
.homeabout-content {
  padding-left: 5px;
}

.homeabout-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff9700;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.homeabout-tag-line {
  width: 25px;
  height: 2px;
  background-color: #ff9700;
}

.homeabout-heading {
  font-size: 1.8rem;
  line-height: 1.2;
  color: #1a0768;
  font-weight: 700;
  margin-bottom: 12px;
}

.homeabout-highlight {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #1a0768;
}

.homeabout-highlight::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(255, 151, 0, 0.2);
  z-index: -1;
  border-radius: 3px;
}

.homeabout-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 15px;
}

.homeabout-text strong {
  color: #1a0768;
  font-weight: 600;
}

/* Features */
.homeabout-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.homeabout-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
}

.homeabout-feature i {
  color: #ff9700;
  font-size: 11px;
  background: rgba(255, 151, 0, 0.1);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Button */
.homeabout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1a0768;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(26, 7, 104, 0.15);
}

.homeabout-btn:hover {
  background-color: #ff9700;
  transform: translateY(-2px);
}

/* =========================
   Animations
========================= */
@keyframes homeaboutFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .homeabout-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .homeabout-visual {
    max-width: 100%;
  }

  .homeabout-content {
    padding-left: 0;
  }

  .homeabout-floating-card {
    right: 0;
  }
}

/* ========================================== HOME ABOUT DETAILS END ======================================== */

/* ========================================== HOME FOUNDER START ======================================== */
/* =========================
   Section Layout (Dark Theme)
========================= */
.founder-section-dark {
  position: relative;
  padding: 60px 20px;
  /* BRAND BLUE BACKGROUND */
  background-color: #1a0768; 
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  color: #ffffff;
}

.founder-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 50%; /* Image Left, Text Right */
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Background Pattern (Subtle Lines) */
.founder-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 20px
  );
  z-index: 0;
}

/* Watermark Letter */
.bg-watermark {
  position: absolute;
  top: -50px;
  left: -50px;
  font-size: 400px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03); /* Faint White */
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

/* =========================
   Left: Image Composition
========================= */
.founder-image-wrapper {
  position: relative;
  opacity: 0;
  animation: slideInLeft 1s ease forwards;
}

/* Main Image Box */
.founder-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4); /* Stronger shadow for dark bg */
  z-index: 2;
  height: 500px; /* Portrait Height */
}

.founder-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.founder-image-wrapper:hover .founder-img-box img {
  transform: scale(1.05);
}

/* Orange Frame Outline */
.founder-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid #ff9700; /* Orange Border */
  border-radius: 20px;
  z-index: 1;
  transition: transform 0.4s ease;
}

.founder-image-wrapper:hover .founder-frame {
  transform: translate(15px, 15px);
}

/* Floating Name Tag (White card on Blue BG) */
.name-tag-float {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #ffffff; /* White BG for contrast */
  padding: 15px 30px;
  border-left: 5px solid #ff9700; /* Orange Accent */
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 3;
  border-radius: 0 10px 10px 0;
  animation: floatSimple 4s ease-in-out infinite;
}

.tag-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #1a0768; /* Blue Text */
}

.tag-role {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff9700; /* Orange Text */
  font-weight: 600;
  margin-top: 2px;
}

/* =========================
   Right: Content Styling
========================= */
.founder-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: slideInUp 1s ease forwards 0.3s;
}

/* Label */
.section-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #ff9700; /* Orange */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.badge-line {
  width: 40px;
  height: 2px;
  background-color: #ff9700;
}

/* Heading */
.founder-heading {
  font-size: 2.5rem;
  line-height: 1.25;
  color: #ffffff; /* White Text */
  font-weight: 700;
  margin-bottom: 25px;
}

.highlight-text {
  color: #ff9700; /* Orange Highlight */
  position: relative;
  z-index: 1;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.1); /* Subtle white highlight */
  z-index: -1;
  border-radius: 4px;
}

/* Paragraphs */
.founder-bio {
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0; /* Off-white for readability */
  margin-bottom: 20px;
}

.founder-bio strong {
  color: #ffffff;
  font-weight: 600;
}

/* Footer: Signature Only */
.founder-footer {
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider */
  padding-top: 25px;
}

.signature-text {
  font-family: 'Playfair Display', serif; /* Cursive/Serif font */
  font-style: italic;
  font-size: 28px;
  color: #ff9700; /* Orange Signature */
  font-weight: 400;
}

/* =========================
   Animations
========================= */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatSimple {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* =========================
   Responsiveness
========================= */

/* Tablet (Max 992px) */
@media (max-width: 992px) {
  .founder-container {
    grid-template-columns: 1fr; /* Stack Vertical */
    gap: 50px;
  }
  
  .founder-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .founder-img-box {
    height: 400px; /* Reduce height */
  }

  .founder-heading {
    font-size: 2rem;
  }
}

/* Mobile (Max 576px) */
@media (max-width: 576px) {
  .founder-section-dark {
    padding: 60px 20px;
  }

  .founder-img-box {
    height: 450px;
  }

  .name-tag-float {
    left: 10px; /* Move inside container to avoid cutoff */
    bottom: 20px;
    padding: 10px 20px;
  }

  .tag-name {
    font-size: 16px;
  }
  
  .founder-heading {
    font-size: 1.8rem;
  }
}

/* right founder design start */
/* =========================
   Reverse Layout (Image Right)
========================= */

/* Desktop / Large Screens */
.founder-reverse .founder-container {
  grid-template-columns: 50% 45%; /* Content Left, Image Right */
}

.founder-reverse .founder-content {
  order: 1;
}

.founder-reverse .founder-image-wrapper {
  order: 2;
}

/* =========================
   Laptop Screens (1200px ↓)
========================= */
@media (max-width: 1200px) {
  .founder-reverse .founder-container {
    grid-template-columns: 52% 48%;
  }
}

/* =========================
   Tablet Landscape (992px ↓)
========================= */
@media (max-width: 992px) {
  .founder-reverse .founder-container {
    grid-template-columns: 1fr; /* Stack */
    gap: 50px;
  }

  .founder-reverse .founder-content {
    order: 2; /* Content below image */
  }

  .founder-reverse .founder-image-wrapper {
    order: 1; /* Image first */
  }
}

/* =========================
   Tablet Portrait (768px ↓)
========================= */
@media (max-width: 768px) {
  .founder-reverse .founder-container {
    gap: 40px;
  }

  .founder-reverse .founder-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* =========================
   Mobile Large (576px ↓)
========================= */
@media (max-width: 576px) {
  .founder-reverse .founder-container {
    gap: 35px;
  }

  .founder-reverse .founder-image-wrapper {
    max-width: 100%;
  }

  .founder-reverse .founder-img-box {
    height: 420px;
  }

  .founder-reverse .name-tag-float {
    left: 10px;
    bottom: 15px;
    padding: 10px 18px;
  }

  .founder-reverse .tag-name {
    font-size: 15px;
  }
}

/* =========================
   Small Mobile (420px ↓)
========================= */
@media (max-width: 420px) {
  .founder-reverse .founder-img-box {
    height: 380px;
  }

  .founder-reverse .founder-heading {
    font-size: 1.6rem;
  }

  .founder-reverse .founder-bio {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* =========================
   Extra Small Devices (360px ↓)
========================= */
@media (max-width: 360px) {
  .founder-reverse .founder-img-box {
    height: 350px;
  }

  .founder-reverse .signature-text {
    font-size: 24px;
  }
}

/* right founder design end */
/* ========================================== HOME FOUNDER END ======================================== */

/* ========================================== HOME WHY CHOOSE US START ======================================== */
/* =========================
   Section Layout
========================= */
.feature-list-section {
  padding: 50px 20px;
  background-color: #1a0768; /* Brand Blue Background */
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

.list-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start; /* Aligns header to top */
}

/* =========================
   Left Side: Header
========================= */
.list-header {
  flex: 0 0 35%; /* Takes 35% width */
  position: sticky; /* Keeps it visible while scrolling list */
  top: 90px;
}

.sub-tag {
  color: #ff9700;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 15px;
  display: block;
}

.list-header h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 20px;
}

.highlight-orange {
  color: #ff9700;
}

.list-header p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.deco-line {
  width: 60px;
  height: 4px;
  background-color: #ff9700;
  border-radius: 2px;
}

/* =========================
   Right Side: Interactive List
========================= */
.feature-list-wrapper {
  flex: 1; /* Takes remaining space */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Individual Item Styling */
.feature-item {
  background: rgba(255, 255, 255, 0.05); /* Glassy Blue */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  position: relative;
  
  /* Initial State (Compact) */
  max-height: 90px; 
}

/* HOVER STATE: Expand & Highlight */
.feature-item:hover {
  background: #ffffff; /* Turns White */
  border-color: #ffffff;
  max-height: 200px; /* Expands to show text */
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transform: translateX(-10px); /* Slight shift left */
}

/* Icon */
.f-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 151, 0, 0.15); /* Light Orange */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9700;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .f-icon {
  background: #ff9700; /* Solid Orange */
  color: #ffffff;
}

/* Content Area */
.f-content {
  flex: 1;
}

.f-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #ffffff;
  transition: color 0.3s ease;
  line-height: 40px; /* Aligns vertically with icon initially */
}

.feature-item:hover h3 {
  color: #1a0768; /* Blue Text on White BG */
  line-height: 1.4; /* Normal line height when expanded */
  margin-bottom: 10px;
}

/* Description (Hidden by default via max-height on parent) */
.f-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555555; /* Dark grey text */
  margin: 0;
  opacity: 0; /* Hidden initially */
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s; /* Delay fade in */
}

.feature-item:hover .f-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Arrow Icon */
.f-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover .f-arrow {
  color: #ff9700;
  transform: rotate(45deg); /* Turns plus to x */
}

/* =========================
   Responsiveness
========================= */

/* Tablet (Vertical Layout) */
@media (max-width: 992px) {
  .list-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .list-header {
    flex: none;
    width: 100%;
    position: static;
    text-align: center;
  }
  
  .list-header h2 {
    font-size: 2rem;
  }
  
  .deco-line {
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .feature-list-section {
    padding: 30px 20px;
  }
  
  /* On Mobile: Always Expanded for usability */
  .feature-item {
    max-height: none; /* No expansion animation */
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .f-content h3 {
    line-height: 1.4;
    margin-bottom: 10px;
  }
  
  .f-desc {
    opacity: 1;
    transform: none;
    color: rgba(255, 255, 255, 0.7); /* Light text on dark bg */
  }
  
  .f-arrow {
    display: none; /* Hide arrow on mobile */
  }
  
  /* Hover effect disabled on mobile touch */
  .feature-item:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .feature-item:hover h3 {
    color: #ffffff;
  }
}
/* ========================================== HOME WHY CHOOSE US END ======================================== */

/* ========================================== HOME TESTIMONIALS START ======================================== */
.anvay-reviews-clean {
  position: relative;
  padding: 30px 0;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.reviews-container {
  max-width: 100%;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 5px;
  padding: 0 20px;
}

.reviews-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a0768;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.reviews-header h2 {
  font-size: 2.0rem;
  color: #1a0768;
  font-weight: 700;
  margin-bottom: 15px;
}

.highlight-orange { color: #ff9700; }

.header-deco-line {
  width: 60px;
  height: 4px;
  background-color: #ff9700;
  margin: 0 auto;
  border-radius: 2px;
}

/* Slider Wrapper */
.reviews-slider-wrapper {
  overflow-x: hidden;
  padding: 30px 0;
  cursor: grab;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  touch-action: pan-y;
}

.reviews-slider-wrapper:active { cursor: grabbing; }

.reviews-track {
  display: inline-flex;
  gap: 30px;
  padding-left: 20px;
}

/* Card Design */
.review-card {
  width: 400px;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  position: relative;
  white-space: normal;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  user-select: none;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(26, 7, 104, 0.12);
  border-color: rgba(255, 151, 0, 0.3);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ff9700;
  padding: 2px;
  background: #fff;
  flex-shrink: 0;
}

.reviewer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
}

.reviewer-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a0768;
  margin-bottom: 2px;
}

.reviewer-info span {
  font-size: 12px;
  color: #888;
  display: block;
}

.review-stars { margin-left: auto; color: #ff9700; font-size: 13px; }

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.quote-watermark {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 50px;
  color: rgba(26, 7, 104, 0.03);
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .anvay-reviews-clean { padding: 20px 0; }
  .reviews-header h2 { font-size: 2rem; }
  .review-card {
    width: 85vw;
    max-width: 320px;
    padding: 25px 20px;
  }
}
/* ========================================== HOME TESTIMONIALS END ======================================== */


/* ========================================== HOME BANNER START ======================================== */
/* =========================
   Banner Layout
========================= */
.bannerpage {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

/* =========================
   Background System
========================= */
.bannerpage-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 0;
}

/* Left Half: Solid Blue */
.bannerpage-left {
  width: 50%;
  background-color: #1a0768;
  height: 100%;
}

/* Right Half: Video */
.bannerpage-video {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.bannerpage-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bannerpage-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   Gradient Overlay
========================= */
.bannerpage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    90deg,
    #1a0768 0%,
    #1a0768 55%,
    rgba(26, 7, 104, 0.6) 80%,
    rgba(26, 7, 104, 0) 100%
  );
}

/* =========================
   Content Styling
========================= */
.bannerpage-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* Title */
.bannerpage-title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 10px 0;
  display: flex;
  align-items: baseline;
  gap: 15px;
  opacity: 0;
  animation: bannerpageFadeRight 0.8s ease forwards 0.2s;
}

.bannerpage-stroke {
  -webkit-text-stroke: 2px #ffffff;
  color: transparent;
}

.bannerpage-dot {
  width: 14px;
  height: 14px;
  background-color: #ff9700;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(255, 151, 0, 0.7);
  animation: bannerpagePulse 2s infinite;
}

/* Breadcrumb */
.bannerpage-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 25px;
  opacity: 0;
  animation: bannerpageFadeDown 0.8s ease forwards;
}

.bannerpage-breadcrumb .label { color: #ffffff; }
.bannerpage-breadcrumb i { font-size: 10px; color: #ff9700; }
.bannerpage-breadcrumb .active { color: #ff9700; }

/* Subtitle */
.bannerpage-subwrap {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  animation: bannerpageFadeUp 0.8s ease forwards 0.4s;
}

.bannerpage-line {
  width: 4px;
  height: 40px;
  background-color: #ff9700;
}

.bannerpage-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* =========================
   Animations
========================= */
@keyframes bannerpagePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 151, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 151, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 151, 0, 0); }
}

@keyframes bannerpageFadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bannerpageFadeRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes bannerpageFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   Responsiveness
========================= */
@media (max-width: 992px) {
  .bannerpage-title { font-size: 4rem; }

  .bannerpage-overlay {
    background: linear-gradient(
      90deg,
      #1a0768 0%,
      #1a0768 50%,
      rgba(26, 7, 104, 0) 100%
    );
  }
}

@media (max-width: 768px) {
  .bannerpage {
    height: auto;
    min-height: 250px;
    flex-direction: column;
  }

  .bannerpage-bg {
    flex-direction: column;
  }

  .bannerpage-left {
    width: 100%;
    display: none;
  }

  .bannerpage-video {
    width: 100%;
    height: 100%;
    position: absolute;
  }

  .bannerpage-overlay {
    background: linear-gradient(
      180deg,
      rgba(26, 7, 104, 0.3) 0%,
      rgba(26, 7, 104, 0.9) 60%,
      #1a0768 100%
    );
  }

  .bannerpage-content {
    padding: 80px 20px 40px;
    align-items: center;
    text-align: center;
  }

  .bannerpage-title {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .bannerpage-subwrap {
    flex-direction: column;
    gap: 10px;
  }

  .bannerpage-line {
    width: 40px;
    height: 4px;
  }

  .bannerpage-stroke {
    -webkit-text-stroke: 0.5px #ffffff;
  }
}

/* ========================================== HOME BANNER END ======================================== */

/* ========================================== ABOUT PAGE DETAILS START ======================================== */
/* ==================== CREATIVE SECTION STYLES ==================== */

.creative-about-section {
    padding: 30px 0;
    background-color: #F9F9F9;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.creative-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ----- LEFT CONTENT ----- */
.creative-content-col {
    flex: 1;
    z-index: 2;
}

.creative-subtitle {
    font-size: 12px;
    color: #1a0768; /* GOLD */
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.creative-subtitle::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #ff9700; /* GOLD */
    margin-right: 15px;
    transition: width 0.3s ease;
}

.creative-content-col:hover .creative-subtitle::before {
    width: 60px;
}

.creative-main-title {
    font-size: 40px;
    line-height: 1.2;
    color: #1a0768;
    font-weight: 700;
    margin-bottom: 30px;
}

.script-highlight {
    font-family: 'Dancing Script', cursive;
    color: #ff9700;
    font-weight: 700;
    font-size: 1.1em;
    display: inline-block;
    transition: transform 0.3s ease;
}

.creative-main-title:hover .script-highlight {
    transform: scale(1.1) rotate(-5deg);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.creative-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 20px;
    max-width: 90%;
}

.creative-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #ff9700;
    color: #000000;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.creative-btn:hover {
    background-color: #ff9700;
    color: #FFFFFF;
    box-shadow: 0 5px 15px rgba(234, 171, 28, 0.4);
}

.creative-btn .arrow-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.creative-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* ----- RIGHT IMAGES COMPOSITION ----- */
.creative-images-col {
    flex: 1.2;
    position: relative;
}

.composition-wrapper {
    position: relative;
    height: 550px;
    width: 100%;
}

.img-box {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.img-box:hover img {
    transform: scale(1.1);
}

/* Image 1: Top Left */
.top-img {
    top: 0;
    left: 0;
    width: 55%;
    height: 320px;
    z-index: 1;
    /* Continuous Animation */
    animation: floatVertical 6s ease-in-out infinite;
}

/* Image 2: Bottom Right */
.bottom-img {
    bottom: 0;
    right: 5%;
    width: 50%;
    height: 300px;
    z-index: 2;
    border: 10px solid #ff9700;
    /* Continuous Animation Reverse */
    animation: floatVertical 7s ease-in-out infinite reverse;
}

/* ROTATING BADGE */
.rotating-badge {
    position: absolute;
    top: 20px;
    right: 0;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    z-index: 3;
    transition: transform 0.3s ease;
}

.rotating-badge:hover {
    transform: scale(1.1);
}

.spinner-text {
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
}

.rotating-badge:hover .spinner-text {
    animation-duration: 4s;
}

.spinner-text svg {
    fill: #000000;
    font-weight: 600;
    letter-spacing: 2px;
}

.center-icon {
    position: absolute;
    color: #ff9700;
    font-size: 24px;
}

/* DOODLE ARROW */
.doodle-arrow {
    position: absolute;
    bottom: 20px;
    left: 45%;
    width: 80px;
    height: 80px;
    color: #000000;
    z-index: 3;
    opacity: 0.6;
    transform: rotate(-10deg);
    animation: bounceArrow 3s ease-in-out infinite;
}

/* ==================== ANIMATIONS ==================== */

@keyframes floatVertical {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-10px) rotate(-10deg); }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet (Max 1024px) */
@media (max-width: 1024px) {
    .creative-main-title { font-size: 40px; }
    .composition-wrapper { height: 450px; }
    .top-img { width: 60%; height: 250px; }
    .bottom-img { width: 55%; height: 240px; }
}

/* Mobile (Max 768px) */
@media (max-width: 768px) {
    .creative-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 50px;
    }
    
    .creative-content-col { text-align: center; }
    .creative-subtitle { justify-content: center; }
    .creative-main-title { font-size: 32px; }
    .creative-desc { margin: 0 auto 30px auto; }

    /* Stack images on mobile but keep animation */
    .composition-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-top: 20px;
        padding-bottom: 30px; /* Space for the arrow */
    }
    
    .img-box {
        position: relative;
        width: 100%;
        height: 250px;
        top: auto; left: auto; bottom: auto; right: auto;
    }
    
    .bottom-img { border: none; }

    /* Re-position Badge for Mobile */
    .rotating-badge {
        display: flex; /* Force display on mobile */
        top: -40px; /* Overlap nicely on top image */
        right: 10px;
        width: 90px;
        height: 90px;
    }
    
    .center-icon { font-size: 18px; }

}
/* ========================================== ABOUT PAGE DETAILS END ======================================== */

/* ========================================== ABOUT PAGE MISSION & VISSION START ======================================== */
/* --- Elite Dark Mission/Vision Section --- */

.mission-vision-elite {
    padding: 30px 20px; /* Extra top padding for floating icons */
    background-color: #ffffff; /* BRAND BLUE BACKGROUND */
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Artistic Background Pattern (Subtle geometric dots) */
.elite-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}

.mv-container {
    max-width: 1100px;
    margin: 0 auto;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; /* Wider gap for luxury feel */
}

/* --- Card Design --- */
.elite-card {
    background: #ffffff;
    border-radius: 12px;
    position: relative;
    padding: 0; /* Padding handled by inner content */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); /* Strong shadow for depth */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-top: 30px; /* Space for the floating icon */
}

/* --- The Floating Icon (Half-in, Half-out) --- */
.elite-icon-wrapper {
    position: absolute;
    top: -40px; /* Pulls icon upward out of the card */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: #ff9700; /* BRAND ORANGE */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 151, 0, 0.3); /* Orange glow shadow */
    border: 4px solid #1a0768; /* Dark border to blend with background */
    transition: all 0.4s ease;
    z-index: 2;
}

.elite-icon-wrapper svg {
    width: 36px;
    height: 36px;
}

/* --- Content Styling --- */
.elite-content {
    padding: 60px 40px 50px 40px; /* Top padding clears the icon */
    text-align: center;
}

.elite-card h3 {
    color: #1a0768;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: 0;
}

/* Small divider line */
.elite-divider {
    width: 50px;
    height: 3px;
    background: #ff9700; /* Orange line */
    margin: 0 auto 20px auto;
    transition: width 0.3s ease;
}

.elite-card p {
    color: #555555;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* --- Hover Effects --- */

.elite-card:hover {
    transform: translateY(-10px); /* Lifts up */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.elite-card:hover .elite-icon-wrapper {
    background: #ffffff; /* Icon turns white */
    color: #ff9700; /* Symbol turns orange */
    border-color: #ff9700; /* Border becomes orange */
    transform: translateX(-50%) scale(1.1); /* Enlarge slightly */
}

.elite-card:hover .elite-divider {
    width: 100px; /* Line expands */
}

/* --- Responsive Design --- */
@media screen and (max-width: 991px) {
    .mv-grid {
        gap: 40px;
    }
}

@media screen and (max-width: 767px) {
    .mv-grid {
        grid-template-columns: 1fr; /* Stack vertically */
    }
    
    .elite-card {
        margin-bottom: 50px; /* Space between stacked cards */
        margin-top: 40px;
    }
    
    .mission-vision-elite {
        padding: 80px 20px;
    }
}
/* ========================================== ABOUT PAGE MISSION & VISSION END ======================================== */

/* ========================================== GALLERY PAGES IMAGE & VIDEO START ======================================== */
/* Container Layout - FIXED 4 COLUMNS */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(150px, auto); 
  gap: 8px; 
  max-width: 1200px;
  margin: 50px auto; 
  padding: 0 10px; 
  font-family: sans-serif;
  box-sizing: border-box;
}

/* Individual Card Links */
.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: flex; /* Helps with centering */
  align-items: center;
  justify-content: center;
  text-decoration: none; 
  cursor: pointer;
  background-color: #f0f0f0; /* Fallback background */
}

/* Make images cover the entire cell */
.grid-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  z-index: 1;
}

/* Low Opacity Purple Overlay #4c3c83 */
.grid-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(76, 60, 131, 0.4); /* Brand purple with low opacity */
  z-index: 2;
  transition: background-color 0.3s ease;
}

/* Darken overlay slightly on hover */
.grid-item:hover::after {
  background-color: rgba(76, 60, 131, 0.6);
}

.grid-item:hover img {
  transform: scale(1.1);
}

/* Text Overlay - CENTERED */
.city-label {
  position: relative;
  z-index: 3; /* Above image and overlay */
  text-align: center;
  color: white;
  font-weight: 700;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  
  /* Standard Font Size */
  font-size: clamp(12px, 2.5vw, 18px);
  
  /* Removed Shadows as requested */
  text-shadow: none; 
}

/* --- Sizing Classes --- */

/* Large Block (2x2) */
.grid-item.big {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 300px;
}

/* Wide Block (2x1) */
.grid-item.wide {
  grid-column: span 2;
  min-height: 150px;
}

/* Mobile Responsiveness for Small Devices */
@media (max-width: 600px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile for visibility */
  }
  .grid-item.big, .grid-item.wide {
    grid-column: span 2;
  }
}
/* ========================================== GALLERY PAGES IMAGE & VIDEO END ======================================== */

/* ========================================== BLOG PAGE START ======================================== */
/* --- SECTION & CONTAINER STYLES --- */
.cards-section {
    width: 100%;
    padding: 30px 5%;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.cards-container {
    display: grid;
    /* Creates 4 equal columns */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    /* 'align-items: stretch' ensures all cards in a row are the same height */
    align-items: stretch;
}

/* --- INDIVIDUAL CARD STYLES --- */
.card-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);

    /* Using Flexbox to organize content vertically */
    display: flex;
    flex-direction: column;

    /* This is crucial: it makes the card fill the grid cell's full height */
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* --- IMAGE STYLES (UPDATED) --- */
.card-image {
    width: 100%;
    /* Fixed height is required to keep all cards the same size */
    height: 220px;

    /* Prevents layout shifts */
    flex-shrink: 0;
    overflow: hidden;
    /* Optional: background color for any empty space */
    background-color: #fff;
}

.card-image img {
    width: 100%;
    height: 100%;

    /* --- THE FIX IS HERE --- */
    /* 'contain' ensures the WHOLE image fits inside the box without cropping. */
    /* It will maintain the aspect ratio, so there might be some empty space. */
    object-fit: contain;

    display: block;
    transition: transform 0.3s ease;
}

.card-item:hover .card-image img {
    transform: scale(1.05);
}

/* --- CONTENT AREA (Text & Button) --- */
.card-content {
    padding: 20px;

    /* Flexbox layout for the text area */
    display: flex;
    flex-direction: column;

    /* 'flex-grow: 1' expands this area to fill any remaining space.
       This pushes the button to the bottom. */
    flex-grow: 1;

    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.4;

    /* This pushes the button down to the bottom edge */
    margin-bottom: auto;
}

/* READ MORE Button Styling */
.read-more-btn {
    display: inline-block;
    background-color: #1a0768;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: background-color 0.3s;
    align-self: center;
    /* Adds space above button */
    margin-top: 15px;
}

.read-more-btn:hover {
    background-color: #ff9700;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 20px;
    }

    .cards-section {
        padding: 30px 20px;
    }
}

/* ========================================== BLOG PAGE END ======================================== */

/* ========================================== BLOG PAGE CONTENT START ======================================== */
/* --- BLOG DETAIL SECTION WRAPPER --- */
.blog-detail-section {
    width: 100%;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff; 
    padding-bottom: 50px;
    position: relative; /* Needed for positioning context */
}

/* --- HERO IMAGE CONTAINER --- */
.blog-hero-container {
    position: relative;
    margin: 30px auto; 
    width: 90%; 
    max-width: 1100px; 
    height: auto; 
    background-color: #ffffff; 
    box-shadow: none; 
    border: none;
    border-radius: 10px; 
    overflow: hidden;
}

/* --- HERO IMAGE --- */
.blog-hero-img {
    width: 100%; 
    height: auto; 
    display: block; 
}

/* --- CONTENT WRAPPER --- */
.blog-content-wrapper {
    max-width: 900px; 
    margin: 0 auto; 
    padding: 30px 20px;
    background-color: #ffffff; 
}

/* --- TYPOGRAPHY --- */
.blog-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 30px;
    line-height: 1.3;
    text-align: center;
}

.blog-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a0768; /* Color Code */
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
    text-align: justify; 
}

/* Lists */
.blog-list {
    margin-bottom: 25px;
    padding-left: 20px;
}

.blog-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #444;
    list-style-type: disc; 
}

/* Highlight Box */
.blog-highlight-box {
    background-color: #f4f2fd; 
    border-left: 5px solid #1a0768;
    padding: 30px;
    margin: 5px 0;
    border-radius: 5px;
}

/* --- FIXED FLOATING BUTTON STYLES --- */
.fixed-back-btn {
    position: fixed; /* This makes it stick to the screen */
    bottom: 30px;    /* 30px from bottom */
    right: 30px;     /* 30px from right */
    z-index: 1000;   /* Ensures it stays on top of everything */
    
    background-color: #1a0768; /* Your requested color */
    color: #ffffff;
    
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Drop shadow so it pops out */
    transition: all 0.3s ease;
}

.fixed-back-btn:hover {
    background-color: #ff9700; /* Darker red on hover */
    transform: translateY(-5px); /* Moves up slightly on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* --- RESPONSIVENESS --- */

/* Tablet View */
@media (max-width: 1024px) {
    .blog-hero-container {
        width: 92%; 
        margin-top: 25px;
    }
    .blog-main-title {
        font-size: 1.8rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .blog-hero-container {
        width: 90%; 
        margin-top: 20px;
        border-radius: 10px; 
    }
    
    .blog-content-wrapper {
        padding: 20px;
    }
    
    .blog-main-title {
        font-size: 1.5rem;
        text-align: left; 
    }
    
    .blog-subtitle {
        font-size: 1.3rem;
    }

    .blog-text {
        font-size: 1rem;
        text-align: left; 
    }
    
    /* Adjust Button for Mobile */
    .fixed-back-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
/* ========================================== BLOG PAGE CONTENT END ======================================== */


/* ========================================== CONTACT PAGE START ======================================== */
/* Base Font and Settings */
.contact-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.contact-container {
    display: flex;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
}

/* --- Left Side: Form --- */
.contact-form-wrapper {
    flex: 1 1 600px;
    padding: 10px 50px;
}

.form-header {
    margin-bottom: 30px;
}

.contact-form-wrapper h2 {
    color: #1a0768;
    font-size: 32px;
    margin: 0 0 15px 0;
    font-weight: 800;
}

.contact-form-wrapper p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    max-width: 90%;
    margin: 0;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 0px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative; /* Important for error positioning */
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 0px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 14px 20px;
    border: 1px solid #e1e1e1;
    border-radius: 30px;
    font-size: 14px;
    outline: none;
    background-color: #fff;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
    color: #666;
    font-family: inherit;
}

.form-group textarea {
    border-radius: 20px;
    resize: none;
    height: 120px;
}

.form-group input:focus, 
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1a0768;
}

/* Error Message Styling */
.error-msg {
    color: #d9534f;
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
    margin-left: 15px;
    min-height: 18px;
    display: block;
}

/* Button & Status */
.submit-btn-wrapper {
    display: flex;
    justify-content: center; /* CENTERED BUTTON */
    align-items: center;
    margin-top: 10px;
}

.submit-btn-wrapper button {
    background-color: #1a0768;
    color: #fff;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn-wrapper button:hover {
    background-color: #2c0e8a;
}

.form-status {
    font-size: 14px;
    font-weight: 600;
}
.form-status.processing { color: #1a0768; }
.form-status.success { color: #28a745; }


/* --- Right Side: Contact Card --- */
.contact-info-card {
    flex: 0 0 400px;
    background-color: #1a0768;
    padding: 60px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.contact-info-card h3 {
    font-size: 26px;
    line-height: 1.4;
    margin: 0 0 40px 0;
    font-weight: 700;
}

.info-item {
    margin-bottom: 20px;
}

.info-link {
    display: flex;
    align-items: center;
    background-color: rgba(65, 52, 142, 0.6);
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s, transform 0.2s;
}

.info-link:hover {
    background-color: rgba(85, 72, 162, 0.8);
    transform: translateX(5px);
}

.icon-box {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
}

/* Icon size adjustment */
.icon-box i {
    font-size: 20px; 
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text span {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 4px;
    font-weight: 400;
}

.info-text strong {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.social-connect {
    margin-top: auto;
    padding-top: 40px;
}

.social-connect p {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #fff;
    display: inline-block;
    transition: transform 0.2s;
    font-size: 18px; /* Font size controls icon size now */
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-info-card {
        width: 100%;
        flex: auto;
        padding: 40px 30px;
    }
    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .form-row { flex-direction: column; gap: 0; }
    .form-group { margin-bottom: 15px; }
    
    /* Ensure button is full width on very small screens for better UX */
    .submit-btn-wrapper button {
        width: 100%;
    }
}

/* ========================================== CONTACT PAGE END ======================================== */