/* ========================================== HOME BANNER START ======================================== */
/* --- 1. Main Section Layout --- */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 85vh; /* Updated height as requested */
  min-height: 450px; /* Prevents it from getting too small on mobile landscape */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  font-family: 'Poppins', sans-serif;
}

/* --- 2. Background Image & Animation --- */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  /* Smooth Zoom Effect */
  animation: slowZoom 20s infinite alternate ease-in-out;
}

/* --- 3. Overlay (Depth & Readability) --- */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Modern gradient: darker at bottom */
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 2;
}

/* --- 4. Content Container --- */
.hero-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 800px;
  height: 250px; /* Fixed height container for slides */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* --- 5. Slide Logic --- */
.slide-item {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Perfectly centered */
  opacity: 0;
  /* 15s Total Loop */
  animation: slideCycle 15s infinite;
}

/* Stagger Delays */
.slide-item:nth-child(1) { animation-delay: 0s; }
.slide-item:nth-child(2) { animation-delay: 5s; }
.slide-item:nth-child(3) { animation-delay: 10s; }

/* --- 6. Typography & Premium Animation --- */
.slide-item h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  
  /* Animation Start State */
  opacity: 0;
  /* Animate In */
  animation: textReveal 2s infinite;
}

.slide-item p {
  font-size: 1.25rem;
  color: #e0e0e0;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  
  /* Animation Start State */
  opacity: 0;
  /* Animate In with delay */
  animation: textReveal 2s infinite;
  animation-delay: 0.2s;
}

/* --- 7. Keyframe Animations --- */

/* Slide Visibility Cycle */
@keyframes slideCycle {
  0%   { opacity: 0; pointer-events: none; }
  5%   { opacity: 1; pointer-events: auto; }
  33%  { opacity: 1; pointer-events: auto; } 
  38%  { opacity: 0; pointer-events: none; }
  100% { opacity: 0; pointer-events: none; }
}

/* Text Reveal (Blur + Scale + Fade) */
@keyframes textReveal {
  0% { 
    opacity: 0; 
    transform: translateY(30px) scale(0.9); 
    filter: blur(8px);
  }
  15% { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
    filter: blur(0px);
  }
  35% { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
    filter: blur(0px);
  }
  40% { 
    opacity: 0; 
    transform: translateY(-20px); 
    filter: blur(4px);
  }
  100% { opacity: 0; }
}

/* Background Zoom */
@keyframes slowZoom {
  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.1);
  z-index: 4;
}

.progress-fill {
  height: 100%;
  background: #ffffff;
  width: 0%;
  animation: fillBar 5s linear infinite;
}

@keyframes fillBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* --- 9. Device Responsiveness --- */

/* Tablet (iPad, etc.) */
@media screen and (max-width: 1024px) {
  .hero-slider-section { height: 70vh; min-height: 400px; } /* Adjust height slightly for tablets */
  .slide-item h2 { font-size: 3rem; }
}

/* Mobile (Phones) */
@media screen and (max-width: 768px) {
  .hero-slider-section { 
    height: 85vh; /* Keep 85vh on mobile as requested */
    min-height: 400px;
  }
  
  .slide-item h2 { 
    font-size: 2.2rem; /* Smaller heading */
    margin-bottom: 0.8rem;
  }
  
  .slide-item p { 
    font-size: 1rem; /* Readable paragraph size */
    padding: 0 20px; /* Add padding so text doesn't touch edges */
  }
}

/* Small Mobile (iPhone SE, etc.) */
@media screen and (max-width: 480px) {
  .slide-item h2 { font-size: 1.8rem; }
  .hero-content { width: 95%; }
}
/* ========================================== 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.5rem;
  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: 35px 30px;
  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: 260px;
}

.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: 240px;
}

.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: 100%;
  height: auto;
  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;
  }
}
/* ========================================== HOME FOUNDER END ======================================== */

/* ========================================== HOME WHY CHOOSE US START ======================================== */
/* =========================
   Section Layout
========================= */
.feature-list-section {
  padding: 100px 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: 40px;
}

.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: 700;
  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: 60px 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: 50px;
  padding: 0 20px;
}

.reviews-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #ff9700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.reviews-header h2 {
  font-size: 2.5rem;
  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 ======================================== */
