/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  background: #F6F6F6;
  color: #1A1A1A;
  overflow-x: hidden;
}

/* --- Top Bar --- */
.top-bar {
  background: #295fa6;
  color: #ffffff;
  display: flex;
  height: 50px;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 20px;
  font-size: 14px;
}
.top-bar > div {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-bar .logo {
  justify-content: flex-start;
}
.top-bar .contact-info {
  justify-content: center;
  padding-top: 5px;
  padding-left: 380px;
}
.top-bar .location-social {
  justify-content: flex-end;
}
.top-bar img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.top-bar svg {
  fill: #ffffff;
  width: 18px;
  height: 18px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.social-icons svg {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.social-icons svg:hover {
  transform: scale(1.2);
  fill: #27B0A3;
}

/* Base navbar styles */
nav {
  background: #2a95bf;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 30px;
  color: white;
}

nav .logo-large {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 5px;
  display: inline-block;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #FF9F1C;
}

/* Dropdown */
.nav-links li.dropdown > ul.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: white;
  color: #1a1a1a;
  list-style: none;
  padding: 10px 0;
  min-width: 180px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(46,196,182,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-links li.dropdown:hover > ul.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

ul.dropdown-menu li {
  padding: 8px 20px;
}
ul.dropdown-menu li a {
  color: #1a1a1a;
  display: block;
}
ul.dropdown-menu li a:hover {
  background-color: #2EC4B6;
  color: white;
  border-radius: 5px;
}

/* Dropdown arrow */
.nav-links li.dropdown > a::after {
  content: " ▼";
  font-size: 0.6rem;
  margin-left: 5px;
}

/* Login Button */
.login-btn {
  margin-left: 20px;
  padding: 10px 20px;
  background-color: #130a0a;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-btn:hover {
  background-color: #27B0A3;
}

/* Responsive */
/* Mobile Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    background: #2a95bf;
    padding: 10px 20px;
    border-radius: 6px;
  }

  .nav-links li {
    list-style: none;
    width: 100%;
    position: relative;
  }

  .nav-links li a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
  }

  .nav-links li a:hover {
    background: #2381a4;
  }

  /* Dropdown Styling */
  .nav-links li.dropdown > .dropdown-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-radius: 6px;
    margin-top: 5px;
    padding: 10px;
  }

  .nav-links li.dropdown > .dropdown-menu li a {
    color: #1a1a1a;
    padding: 8px 10px;
    background: transparent;
    border-radius: 4px;
  }

  .nav-links li.dropdown > .dropdown-menu li a:hover {
    background-color: #f0f0f0;
  }

  /* Show dropdown on click — use class 'open' toggled via JS */
  .nav-links li.dropdown.open > .dropdown-menu {
    display: flex;
  }
}



.hero {
  display: flex;
  height: 650px;
  background: white;
  overflow: hidden;
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5rem;
  gap: 1.5rem;
}
.hero-left h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.2;
}
.hero-left p {
  font-size: 1.3rem;
  color: #1A1A1A;
  max-width: 400px;
}
.btn-primary {
  background-color:#2a95bf;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.1rem;
  max-width: fit-content;
  cursor: pointer;
  border: none;
  transition: transform 0.6s ease, background-color 0.3s ease;
}
.btn-primary:hover {
  background-color: rgb(32, 112, 218);
  animation: wiggle 0.5s;
}
.hero-right {
  flex: 1;
  background-image: url('./image/WhatsApp\ Image\ 2025-06-02\ at\ 14.14.05.jpeg');
  background-size: cover;
  background-position: center;
  border-top-right-radius: 10px;
  border-top-left-radius: 60px;
  box-shadow: inset -100px 0 100px -40px #2EC4B6;
}
.loan-description {
  margin-top: 2rem;
  color: #1A1A1A;
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 500px;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  animation-delay: 1s;
}
.loan-description h2 {
  color: #2a95bf;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

/* Fade-in animation */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .top-bar {
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
  }
  nav {
    padding: 0.5rem 1rem;
  }
  nav ul {
    gap: 1rem;
  }
  .hero {
    flex-direction: column;
    height: auto;
  }
  .hero-left {
    padding-left: 1.5rem;
    padding-top: 3rem;
  }
  .hero-left h1 {
    font-size: 2.5rem;
  }
  .hero-right {
    border-radius: 0;
    height: 300px;
    box-shadow: none;
  }
}

.flip-card-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 20px 20px;
  background-color: #335c85;
}

.flip-card {
  background: transparent;
  width: 260px;
  height: 280px;
  perspective: 1000px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-card-front img {
  width: 250px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.flip-card-front h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-top: 10px;
}

.flip-card-back {
  transform: rotateY(180deg);
  background-color: #2ec4b6;
  color: #fff;
  font-size: 0.95rem;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}

.flip-card-back p {
  margin: 0;
}

@media (max-width: 768px) {
  .flip-card {
    width: 100%;
    max-width: 300px;
  }
}


section {
  position: relative;
  z-index: 1;
  scroll-margin-top: 100px;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

section[data-aos] {
  will-change: transform, opacity;
}
.about-us {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 0;
  background: #f4f8fc; /* Soft background */
}

.about-left {
  flex: 1;
  background: url('./image/Gemini_Generated_Image_r3yf1tr3yf1tr3yf-min.png') no-repeat center center/cover;
  position: relative;
  min-height: 500px;
}

.about-left .overlay {
  background-color: rgba(41, 95, 166, 0.5); /* Deep blue tint */
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.quote-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  max-width: 300px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.about-right {
  flex: 1;
  padding: 40px;
  background: #fff;
}

.about-right h2 {
  color: #295fa6;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-right h2 span {
  color: #2a95bf;
  font-weight: bold;
}

.about-right p {
  color: #595959;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-points {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
  font-family: 'Segoe UI', sans-serif;
}

.about-points li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  color: #1A1A1A;
  background: #E0FBF8;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-points li:hover {
  transform: translateY(-4px);
  background: #CBF3F0;
}

.about-points i {
  color: #2EC4B6;
  margin-right: 15px;
  font-size: 22px;
}


.highlight-box {
  background: #eaf6fc;
  padding: 20px;
  border-left: 4px solid #2a95bf;
  font-weight: 600;
  color: #2a95bf;
  margin-top: 30px;
}

.highlight-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.highlight-item {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 45%;
  min-width: 200px;
  transition: all 0.3s ease;
  border-left: 4px solid #295fa6;
}

.highlight-item:hover {
  box-shadow: 0 8px 24px rgba(42, 149, 191, 0.2);
  transform: translateY(-5px);
}

.highlight-item .icon {
  font-size: 28px;
  color: #2a95bf;
  margin-bottom: 12px;
}

.highlight-item p {
  font-size: 1rem;
  font-weight: 500;
  color: #595959;
}



/* Loan Section Styles */
/* Section Styles */
.loan-section {
  background-color: white;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-subtitle {
  color: 595959;
  font-size: 20px;
  margin-bottom: 40px;
}

/* Grid layout */
.loan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.loan-box.full-width {
  grid-column: 1 / -1;
}

/* Loan Box */
.loan-box {
  position: relative;
  background: white;
  border: 2px solid #2a95bf;
  border-radius: 16px;
  padding: 30px;
  cursor: pointer;
  overflow: hidden;
  color: #595959;
  transition: color 0.3s ease;
  z-index: 1;
}

/* Hover background image */
.loan-bg-image {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  border-radius: 16px;
  transition: left 0.5s ease;
  z-index: 0;
  filter: brightness(0.6);
}

.loan-box:hover .loan-bg-image {
  left: 0;
}

/* Loan Content */
.loan-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.loan-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.loan-content h3 {
  margin: 0 0 10px;
  color: #2a95bf;
  font-size: 24px;
  transition: color 0.3s ease;
}

.loan-content p {
  margin: 0;
  color: #595959;
  font-size: 16px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

/* On Hover */
.loan-box:hover .loan-content h3,
.loan-box:hover .loan-content p {
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .loan-grid {
    grid-template-columns: 1fr;
  }

  .loan-box.full-width {
    grid-column: auto;
  }

  .loan-content {
    flex-direction: row;
    gap: 15px;
  }

  .loan-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .loan-content h3 {
    font-size: 20px;
  }

  .loan-content p {
    font-size: 14px;
  }

  .loan-icon {
    width: 40px;
    height: 40px;
  }
}




.loan-calculator-section {
  background-color: #295fa6;
  color: white;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 900px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #ffffff;
}

.calculator-wrapper {
  display: flex;
  gap: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
}

.calculator-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calculator-form label {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.calculator-form input {
  margin-top: 8px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
}

.calculator-form button {
  padding: 14px;
  background-color: #ffffff;
  border: none;
  border-radius: 10px;
  color: #295fa6;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.calculator-form button:hover {
  background-color: #2a95bf;
  color: #ffffff;
}

.calculator-result {
  flex: 1 1 300px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.calculator-result h3 {
  margin: 0;
  font-weight: 600;
  font-size: 22px;
}

.calculator-result p {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

/* Responsive */
@media (max-width: 720px) {
  .calculator-wrapper {
    flex-direction: column;
  }
}


/* Highlights Section */
.highlights-section {
  background: url('image/pexels-rdne-8293744.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 80px 20px;
  position: relative;
}

.highlights-section .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  border-radius: 20px;
}

.highlights-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #fff;
}

.highlights-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.highlight {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  width: 200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.highlight .number {
  font-size: 2.5rem;
  color: #FF9F1C;
  font-weight: bold;
  margin-bottom: 10px;
}

.highlight p {
  font-size: 1.1rem;
  color: #fff;
}

.why-us {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}

.why-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 15px;
  width: 200px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.why-box img {
  width: 50px;
  margin-bottom: 10px;
}

.why-box h4 {
  font-size: 2rem;
  color: #2EC4B6;
}

.trusted {
  text-align: center;
  margin-top: 60px;
}

.trusted h3 {
  font-size: 1.8rem;
  color: #fff;
}

.trusted span {
  color: #FF9F1C;
}

.branding-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.branding-icons img {
  width: 60px;
}




.trusted-branding {
  margin-top: 60px;
  padding: 40px 20px;
  background: url('image/pexels-rdne-8293744.jpg') no-repeat center/cover;
  border-radius: 20px;
  text-align: center;
  color: #1A1A1A;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.trusted-branding h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.trusted-branding h3 span {
  color: #2EC4B6;
}

.branding-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.branding-icons img {
  width: 60px;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.branding-icons img.visible {
  opacity: 1;
  transform: scale(1);
}

.branding-icons img:hover {
  filter: drop-shadow(0 4px 12px rgba(46, 196, 182, 0.4));
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .branding-icons {
    gap: 20px;
  }

  .trusted-branding h3 {
    font-size: 1.2rem;
  }

  .branding-icons img {
    width: 40px;
  }
}



.our-process-new {
  padding: 80px 20px;
  background: linear-gradient(135deg, #295fa6 0%, #2a95bf 100%);
  color: #ffffff;
  max-width: 1400px;
  margin: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(41, 95, 166, 0.3);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.process-header {
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff;
}

.process-header h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.process-header h3 {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.process-header p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: auto;
  line-height: 1.5;
  color: #f4f4f4;
}

/* LINE wrapper for cards and the line behind */
.process-line-wrapper {
  position: relative;
  padding: 40px 0 20px;
}

.process-line {
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  height: 4px;
  background: #ffffff;
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 0;
}

.process-cards {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  padding: 0 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.process-cards::-webkit-scrollbar {
  display: none;
}

.process-card {
  background: #ffffff;
  flex: 0 0 180px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  padding: 30px 15px 40px;
  text-align: center;
  transition: all 0.3s ease;
  user-select: none;
  position: relative;
  z-index: 11;
}

.process-card:hover,
.process-card.active {
  box-shadow: 0 8px 20px rgba(42, 149, 191, 0.5);
  transform: translateY(-10px);
  background: #f4f8fc;
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 1px 1px rgba(42, 149, 191, 0.5));
}

.process-card h4 {
  font-size: 1.25rem;
  color: #295fa6;
  margin: 0;
}

/* Small circle below each card */
.process-card::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  border: 4px solid #295fa6;
  box-shadow: 0 0 6px rgba(41, 95, 166, 0.4);
  z-index: 12;
}

/* Highlight circle of active card */
.process-card.active::after {
  background: #ff9f1c;
  border-color: #ffffff;
  box-shadow: 0 0 10px #ff9f1c;
}

.process-detail {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 30px;
  margin-top: 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #295fa6;
}

.process-detail h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.process-detail p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #595959;
}

/* Responsive */
@media (max-width: 600px) {
  .process-cards {
    gap: 15px;
    padding-bottom: 15px;
  }

  .process-card {
    flex: 0 0 140px;
    padding: 20px 10px 35px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
  }

  .process-detail {
    padding: 20px 15px;
  }
}


.faq-section-container {
  display: flex;
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
  gap: 50px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #595959; /* dark gray for general text */
  align-items: center;
  justify-content: center;
}

.faq-content {
  flex: 1;
  max-width: 540px;
}

.faq-content h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #295fa6; /* deep blue */
}

.faq-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #595959; /* dark gray */
}

.faq-item {
  border-bottom: 1px solid #2a95bf; /* medium blue */
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #2a95bf; /* medium blue background */
  border: none;
  padding: 18px 16px;
  font-size: 1.2rem;
  font-weight: 600;
  color: white; /* white text on blue */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(41, 95, 166, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background-color: #295fa6; /* deeper blue on hover */
  box-shadow: 0 4px 14px rgba(41, 95, 166, 0.5);
}

.icon {
  font-size: 1.6rem;
  margin-right: 12px;
  flex-shrink: 0;
  color: white;
}

.faq-icon {
  font-size: 1.6rem;
  transition: transform 0.3s ease;
  color: white;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
  padding: 0 16px;
  color: #595959; /* dark gray */
  font-size: 1rem;
  line-height: 1.5;
  background: #f0f4fb; /* very light blue-ish background */
  border-radius: 0 0 12px 12px;
  box-shadow: 0 1px 6px rgba(41, 95, 166, 0.12);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #295fa6; /* deep blue on active */
  text-shadow: 0 0 6px #295fa6;
}

.faq-image-container {
  margin-left: 100px;
  max-width: 700px;
  margin-top: 130px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
 
  cursor: pointer;
  transition: transform 0.5s ease;
}

.faq-image-container:hover {
  transform: scale(1.05);
}

.faq-image-container img {
  width: 500px;
  height: 400px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  
  mix-blend-mode: multiply;
  pointer-events: none;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-section-container {
    flex-direction: column;
    max-width: 90%;
    gap: 30px;
    padding: 20px;
  }
  .faq-image-container {
    max-width: 100%;
    transform: none !important;
  }
  .faq-content {
    max-width: 100%;
  }
}




.trust-contact-section {
  background: linear-gradient(135deg, #295fa6, #2a95bf);
  color: white;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.trust-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.text-content {
  flex: 1 1 400px;
  min-width: 280px;
}

.text-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #f0f0f0; /* lighter text on blue bg */
}

.text-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  line-height: 1.5;
  font-weight: 500;
  color: #dcdcdc; /* softer white for paragraph */
}

.contact-button {
  background-color: #295fa6; /* deep blue */
  color: #f0f0f0;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 5px 12px rgba(41, 95, 166, 0.6);
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.contact-button:hover {
  background-color: #2a95bf; /* medium blue on hover */
  transform: scale(1.05);
}

.image-content {
  flex: 1 1 400px;
  max-width: 280px;
 
}

.image-content img {
  width: 400px;
  height: 300px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 800px) {
  .trust-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .text-content, .image-content {
    min-width: 100%;
  }
  .text-content h2 {
    font-size: 2.4rem;
  }
  .text-content p {
    font-size: 1.1rem;
  }
}



.footer {
  display: flex;
  flex-wrap: wrap;
  background: #1A1A1A;
  color: #eee;
  padding: 60px 40px 40px 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  gap: 40px;
  position: relative;
}

/* Left side */

.footer-left {
  background-color: #295fa6;
  flex: 1 1 350px;
  padding: 20px 20px;
  height: 500px;
  border-radius: 15px;
 
  animation: slideInLeft 1s ease forwards;
}

.footer-logo {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  color: #1A1A1A;
}

.footer-left p {
  line-height: 1.6;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: #fff;
}

.contact-info h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.contact-info div {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fefefe;
}

.contact-info .icon {
  font-size: 1.2rem;
}

/* Animation */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Right side */
.footer-right {
  flex: 2 1 600px;
  color: #CBF3F0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: slideInRight 1s ease forwards;
}

.footer-sections {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.section h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FF9F1C;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section ul li {
  margin-bottom: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.section ul li a {
  text-decoration: none;
  color: #fafcfc;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
}
.section ul li a:hover {
  color: #FF9F1C;
}
.section ul li:hover {
  color: #FF9F1C;
}

/* Subscribe */
.subscribe-section p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  gap: 15px;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border-radius: 40px;
  border: none;
  outline: none;
  font-size: 1rem;
}

.subscribe-form input[type="email"]:focus {
  box-shadow: 0 0 10px #FF9F1C;
}

.subscribe-form button {
  background-color: #FF9F1C;
  border: none;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  color: #1A1A1A;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #e58700;
  transform: scale(1.1);
}

/* Social Icons */

.social-icons h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FF9F1C;
}


.social-link {
  font-size: 1.8rem;
  margin-right: 25px;
  margin-top: 20px;
  color: #FF9F1C;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.social-link:hover {
  color: #FF9F1C;
  transform: scale(1.2);
}

/* Bottom copyright bar */
.footer-bottom {
  width: 100%;
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #999;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-legal-links a {
  color: #999;
  margin-left: 25px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #FF9F1C;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive */
@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    padding: 40px 20px 20px 20px;
  }
  .footer-right {
    flex-direction: column;
    gap: 40px;
  }
  .footer-left, .footer-right {
    flex: 1 1 100%;
  }
  .footer-sections {
    flex-direction: column;
    gap: 30px;
  }
  .subscribe-form {
    flex-direction: column;
  }
  .subscribe-form input[type="email"], .subscribe-form button {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-legal-links a {
    margin-left: 0;
  }
}



