/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f8f9fb;
  color: #222;
}

header {
  background-color: #6dc0d1;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 3%;
  height: 100px;
}

.logo img {
  height: 160px;
  width: 200px;
}

/* ------------------------------
   NAV LINKS
------------------------------ */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0D1B2A;
}

/* Hover underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ------------------------------
   APPLY NOW BUTTON
------------------------------ */
.nav-links .apply-btn {
  background-color: #FF7F50;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-links .apply-btn:hover {
  background-color: #0047B3;
  color: white;
  transform: scale(1.05);
}

/* ------------------------------
   DROPDOWN MENU
------------------------------ */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #0d1b2a;
  top: 40px;
  left: 0;
  min-width: 180px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
  transition: all 0.35s ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: white;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background: #0d1b2a;
  color: #fff;
}

/* Toggle Dropdown Active */
.dropdown.active .dropdown-menu {
  display: block;
  transform: translateY(0);
}

/* ------------------------------
   MOBILE MENU TOGGLE (HAMBURGER)
------------------------------ */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Hamburger to "X" animation */
/* .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
} */



@media (max-width: 1060px) {
  .navbar {
    padding: 25px 2%;
  }
}

@media (max-width: 990px) {
  .navbar {
    padding: 25px 1%;
  }
}

@media (max-width: 920px) {
  .nav-links {
    position: absolute;
    top:100px;
    left: -100%;
    width: 80%;
    height: 580px;
    flex-direction: column;
    background: #1b263b;
    text-align: center;
    transition: all 0.4s ease;
    color: white;
  }

  .nav-links.open {
    left: 0;
  }

  .nav-links li {
    margin: 13px 0;
  }

  .dropdown-menu {
    position: static;
    background: #2e3a59;
    box-shadow: none;
  }

  .menu-toggle {
    display: flex;
    margin-right: 20px;
  }
}


/* Container */
.cont {
    background-color:aliceblue;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 8%;
  gap: 40px;
}

/* Left Text Section */
.text-section {
  flex: 1;
  min-width: 500px;
  animation: fadeInLeft 1s ease forwards;
}

.text-section h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
}

.text-section h1 span {
  color:#FF7F50;
  animation: colorPulse 2s infinite alternate;
}

.text-section p {
  font-size: 1.2rem;
  margin-top: 20px;
  color: #555;
  line-height: 1.6;
}

/* Buttons */
.button-group {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.button-group a {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #FF7F50;
  color: #fff;
}

.btn-primary:hover {
  background: #1e40af;
  transform: scale(1.05);
}

/* From Uiverse.io by nikk7007 */ 
.bubbles {
  --c1: #fff; /* Recommendation: same background color */
  --c2: #8685ef;
  --size-letter: 17px;
  font-size: var(--size-letter);

  background-color: transparent;
  border: calc(var(--size-letter) / 6) solid var(--c2);
  border-radius: 0.2em;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
}

.bubbles > .text {
  font-weight: 700;
  color: var(--c2);
  position: relative;
  z-index: 1;
  transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
}

.bubbles::before {
  top: 0;
  left: 0;
}

.bubbles::after {
  top: 100%;
  left: 100%;
}

.bubbles::before,
.bubbles::after {
  content: "";
  width: 150%;
  aspect-ratio: 1/1;
  scale: 0;
  transition: 1000ms cubic-bezier(0.76, 0, 0.24, 1);

  background-color: var(--c2);
  border-radius: 50%;

  position: absolute;
  translate: -50% -50%;
}

.bubbles:hover {
  & > span {
    color: var(--c1);
  }
  &::before,
  &::after {
    scale: 1;
  }
}

.bubbles:active {
  scale: 0.98;
  filter: brightness(0.9);
}

/* Right Image Section */
.image-section {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1s ease forwards;
}

.image-section img {
  width: 80%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.image-section img:hover {
  transform: scale(1.05);
}

/* -------------------- Animations -------------------- */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes colorPulse {
  0% { color: #2563eb; }
  100% { color: #1e40af; }
}

/* ----------- Large Screens (Desktops >1200px) ----------- */
@media (min-width: 1200px) {
  .text-section h1 {
    font-size: 3rem;
  }

  .text-section p {
    font-size: 1.3rem;
  }

  .image-section img {
    max-width: 700px;
  }
}

/* ----------- Laptops (992px - 1199px) ----------- */
@media (max-width: 1199px) and (min-width: 992px) {
  .cont {
    padding: 50px 6%;
    gap: 30px;
  }

  .text-section h1 {
    font-size: 2.3rem;
  }

  .text-section p {
    font-size: 1.1rem;
  }

  .image-section img {
    width: 75%;
  }
}

/* ----------- Tablets (768px - 991px) ----------- */
@media (max-width: 991px) and (min-width: 768px) {
  .cont {
    flex-direction: column;
    text-align: center;
    padding: 50px 6%;
  }

  .text-section {
    min-width: auto;
    animation: fadeInUp 1s ease forwards;
  }

  .image-section {
    justify-content: center;
  }

  .image-section img {
    width: 70%;
    max-width: 500px;
  }

  .text-section h1 {
    font-size: 2rem;
  }

  .text-section p {
    font-size: 1rem;
  }

  .button-group {
    justify-content: center;
  }
}

/* ----------- Mobile Devices (481px - 767px) ----------- */
@media (max-width: 767px) and (min-width: 481px) {
  .cont {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }

  .text-section h1 {
    font-size: 1.8rem;
  }

  .text-section p {
    font-size: 0.95rem;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
  }

  .button-group a {
    width: 80%;
    text-align: center;
  }

  .image-section img {
    width: 85%;
  }
}

/* ----------- Small Mobile (up to 480px) ----------- */
@media (max-width: 480px) {
  .cont {
    flex-direction: column;
    text-align: center;
    padding: 30px 4%;
    gap: 25px;
  }

  .text-section {
    min-width: auto;
  }

  .text-section h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .text-section p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .button-group a {
    width: 100%;
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .image-section img {
    width: 90%;
  }
}

/* ----------- Extra Small Devices (below 360px) ----------- */
@media (max-width: 360px) {
  .text-section h1 {
    font-size: 1.4rem;
  }

  .text-section p {
    font-size: 0.85rem;
  }

  .button-group a {
    font-size: 0.9rem;
  }
}

/* Optional: Small Animation for Tablet Layout */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}





/* ---------- Section Title ---------- */
h2 {
  text-align: center;
  color: #0D1B2A; /* Neon cyan for title */
  margin-bottom: 20px;
  font-size: 3rem;
  position: relative;
  animation: slideInDown 1s ease-out;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, #00cfff, #0ff3d4);
  animation: underlineGlow 2s infinite alternate;
}

p.subtitle {
  text-align: center;
  color: #1B263B; /* Soft light blue */
  margin-bottom: 40px;
  font-size: 1rem;
  animation: fadeIn 1.2s ease-in;
}

/* ---------- Grid Container ---------- */
.features-container {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  animation: fadeUp 1.2s ease-in-out forwards;
}

/* ---------- Feature Card ---------- */
.feature-card {
  background: white; /* Dark navy base */
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.6s ease,
              background 0.6s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(153, 197, 207, 0.1), transparent 70%);
  transition: opacity 0.6s ease;
  opacity: 0;
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 1;
  animation: pulseGlow 1s infinite;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.07) rotateZ(0.5deg);
  box-shadow: 0 25px 40px rgba(0, 207, 255, 0.3);
  background: linear-gradient(145deg, rgb(31, 55, 88));
  border: 1px solid #00cfff;
}

/* ---------- Icon ---------- */
.icon {
  font-size: 30px;
  background: #10213b; /* Darker accent */
  color: #00cfff;
  width: 60px;
  height: 50px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 10px;
  position: relative;
  transition: all 0.4s ease;
  z-index: 1;
}

.icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .icon {
  background: linear-gradient(145deg, #00cfff, #0ff3d4);
  color: #0d1b2a;
  transform: rotate(15deg) scale(1.2);
}

.feature-card:hover .icon::after {
  opacity: 1;
  animation: neonPulse 1.5s infinite;
}

/* ---------- Text ---------- */
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #0d1b2a;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.feature-card p {
  color: black;
  font-size: 1rem;
  line-height: 1.5;
  z-index: 1;
  position: relative;
}

.feature-card:hover p{
  color: white;
}
.feature-card:hover h3 {
  color: #00cfff;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatUp {
  0% { opacity: 0; transform: translateY(80px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slideInDown {
  0% { opacity: 0; transform: translateY(-60px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes underlineGlow {
  0% { width: 60px; opacity: 0.6; }
  100% { width: 120px; opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 207, 255, 0.4); }
  50% { box-shadow: 0 0 20px 8px rgba(0, 207, 255, 0.25); }
}

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 207, 255, 0.5); }
  50% { box-shadow: 0 0 15px 6px rgba(0, 207, 255, 0.4); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  h2 { font-size: 2.2rem; }
  .feature-card { padding: 20px; }
}

@media (max-width: 480px) {
  .icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
@media (max-width:320px){
  .feature-card{
    width: 270px;
  }
}

/* Trusted loans  */

.trusted-section {
  text-align: center;
  padding: 60px 20px;
  background-color:rgb(235, 229, 229);
}

.headtrust {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #0a0a0a;
}

.bank-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.bank-logos span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #a3a8b3;
  transition: all 0.3s ease;
  cursor: default;
}

.bank-logos span:hover {
  color: #0a0a0a;
  transform: translateY(-5px);
}

/* 🌐 Responsive Design */

/* For large monitors */
@media (min-width: 1200px) {
  .headtrust {
    font-size: 2rem;
  }

  .bank-logos span {
    font-size: 1.6rem;
    gap: 60px;
  }
}

/* For laptops and tablets */
@media (max-width: 1024px) {
  .headtrust{
    font-size: 1.5rem;
  }

  .bank-logos {
    gap: 30px;
  }

  .bank-logos span {
    font-size: 1.2rem;
  }
}

/* For mobile devices */
@media (max-width: 600px) {
  .headtrust {
    padding: 40px 10px;
  }

  .headtrust {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .bank-logos {
    flex-direction: column;
    gap: 15px;
  }

  .bank-logos span {
    font-size: 1.1rem;
  }
}



/* === Loan Section === */
.loan-section {
  padding: 90px 9%;
  background: #fff;
}

.loan-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* === Image Styling === */
.loan-image img {
  width: 550px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.loan-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* === Text Content === */
.loan-content {
  flex: 1;
  color: #222;
  max-width: 600px;
  animation: slideInRight 1s ease forwards;
}

.loan-content h4 {
  font-size: 2rem;
  
  font-weight: 700;
  margin-bottom: 20px;
  color: #0b1736;
}

.loan-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

/* === Points === */
.loan-points {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.loan-points li {
  position: relative;
  font-size: 1rem;
  color: #222;
  margin-bottom: 10px;
  padding-left: 30px;
}

.loan-points li::before {
  position: absolute;
  left: 0;
  color:#1e40af;
  font-weight: bold;
}

/* === Button === */
.app-btn {
  background: #FF7F50;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(255, 90, 0, 0.3);
}

.app-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 90, 0, 0.4);
  background: #FF7F50;
}

/* === Animations === */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Fade Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive Design === */

/* Large Monitors */
@media (min-width: 1400px) {
  .loan-content h4 {
    font-size: 2.3rem;
  }
}

/* Laptops */
@media (max-width: 1200px) {
  .loan-container {
    gap: 40px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .loan-container {
    flex-direction: column;
    text-align: center;
  }

  .loan-image img {
    max-width: 100%;
  }

  .loan-content h4 {
    font-size: 1.7rem;
  }

  .loan-content p {
    font-size: 0.95rem;
  }

  .loan-points li {
    font-size: 0.95rem;
  }

  .apply-btn {
    font-size: 0.9rem;
    padding: 12px 25px;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .loan-section {
    padding: 50px 20px;
  }

  .loan-content h4 {
    font-size: 1.4rem;
  }

  .loan-content p {
    font-size: 0.9rem;
  }

  .loan-points li {
    font-size: 0.9rem;
  }

  .app-btn {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}





/* ===== SECTION ===== */
.testimonial-section {
  background: linear-gradient(180deg, #f9fbff, #eef4ff);
  text-align: center;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.testimonial-section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 60px;
  animation: fadeInDown 1s ease-out forwards;
}

/* ===== CONTAINER ===== */
.testimonial-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.testimonial.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  position: relative;
}

/* ===== AVATAR ===== */
.avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0056ff, #00c6ff);
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0, 86, 255, 0.3);
}

/* ===== INFO ===== */
.info h3 {
  display: flex;
  text-align: center;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.location {
  color: #666;
  font-size: 0.95rem;
}

/* ===== QUOTE ===== */
.quote {
  font-style: italic;
  color: #333;
  margin-top: 15px;
  line-height: 1.6;
}

/* ===== BUTTONS ===== */
.carousel-controls {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.carousel-controls button {
  background: linear-gradient(135deg, #0056ff, #00c6ff);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 86, 255, 0.25);
}

.carousel-controls button:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #00c6ff, #0056ff);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  .testimonial {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .testimonial-section h2 {
    font-size: 2rem;
  }

  .avatar {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .testimonial {
    padding: 35px 25px;
  }

  .carousel-controls button {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 70px 15px;
  }

  .testimonial {
    padding: 30px 20px;
  }

  .testimonial-section h2 {
    font-size: 1.7rem;
  }
}


/* Hero Section */
.hero {
  height: 350px;
  background:#4AA6AD;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
  transition: all 0.4s ease;
}

.hero-content {
  animation: fadeInUp 1.2s ease-in-out;
}

/* Title */
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  animation: slideDown 1.2s ease forwards;
}

.hero h1 span {
  display: block;
}

/* Subtext */
.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  animation: fadeIn 1.5s ease forwards;
}

/* Buttons */
.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: white;
  color: #1e5af9;
  border: 2px solid white;
}

.btn.primary:hover {
  background-color: #1e5af9;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn.secondary:hover {
  background-color: white;
  color: #1e5af9;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 2.7rem;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: auto;
    padding: 4rem 1rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}


/* faqs */


.faq-section {
  padding: 80px 10%;
  background: linear-gradient(135deg, #ffffff 0%, #e6f0ff 100%);
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.faq-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #0a3d62;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease;
}

.faq-subheading {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
  animation: fadeIn 1.5s ease;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: linear-gradient(90deg, #0a3d62, #1e90ff);
  color: #fff;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.1rem;
  padding: 5px 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease;
}

.faq-question i{
  width: 40px;
  height: 40px;
}
.faq-question:hover {
  background: linear-gradient(90deg, #1e90ff, #0a3d62);
}

.faq-question .icon1 {
  transition: transform 0.3s ease;
}

.faq-item.active .icon1 {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f9faff;
  color: #333;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px;
}

.faq-answer p {
  line-height: 1.6;
  color: #555;
  font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 5%;
  }

  .faq-heading {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-heading {
    font-size: 1.7rem;
  }

  .faq-subheading {
    font-size: 0.9rem;
  }
}

/* Footer Styling */
/* ===============================
   FOOTER BASE STYLES
=============================== */
.footer {
  background-color: #111b31;
  color: #d3d3d3;
  padding: 60px 10%;
  animation: fadeInUp 1.2s ease-in-out;
}

.footer-con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* ===============================
   BRAND SECTION
=============================== */
.footer-section.brand p {
  max-width: 300px;
  line-height: 1.7;
  font-size: 0.95rem;
  color: #b5b5b5;
  transition: color 0.3s ease;
}

.footer-section.brand p:hover {
  color: #fff;
}

/* ===============================
   HEADINGS
=============================== */
.footer-section h2,
.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-section h2 {
  font-size: 1.6rem;
  display: flex;
  gap: 10px;
  transition: color 0.3s ease;
}

.footer-section h3 {
  font-size: 1.2rem;
}

/* ===============================
   QUICK LINKS
=============================== */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #b5b5b5;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-section ul li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* ===============================
   CONTACT INFO
=============================== */
.footer-section.contact ul li {
  margin-bottom: 12px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #b5b5b5;
}

.footer-section.contact i {
  color: #3a7bff;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.footer-section.contact i:hover {
  transform: scale(1.2);
}

/* ===============================
   SOCIAL ICONS
=============================== */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  color: #b5b5b5;
  font-size: 1.1rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: white;
  background-color: #3a7bff;
  transform: translateY(-5px);
}

/* ===============================
   FOOTER BOTTOM
=============================== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #999;
}

.footer-bottom p {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

/* ===============================
   ANIMATIONS
=============================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVE DESIGN
=============================== */
@media (max-width: 1024px) {
  .footer-con {
    justify-content: center;
  }

  .footer-section {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 6%;
  }

  .footer-section {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-section h2 {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .footer-section.brand p {
    margin: 0 auto;
  }

  .footer-section.contact ul li {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 5%;
  }

  .footer-section h2 {
    font-size: 1.4rem;
  }

  .footer-section h3 {
    font-size: 1rem;
  }

  .social-icons a {
    font-size: 1rem;
    padding: 8px;
  }
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  animation: floatPulse 2s infinite ease-in-out;
}

/* Icon Hover Effects */
.whatsapp-float:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
  background-color: #20b358;
}

/* WhatsApp Pulse Animation */
@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  }
}

/* Optional glow ring animation */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  z-index: -1;
  animation: ringGlow 2.5s infinite;
}

@keyframes ringGlow {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Adjust position for mobile */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
}
