/* 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);
}

/* ------------------------------
   RESPONSIVE DESIGN
------------------------------ */
@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;
  }
}


.block1 {
  background: url("images/img4.jpg") center center / cover no-repeat;
  height: 300px;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.2s ease-in-out;
}

.block1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}


.bl {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  animation: slideUp 1.2s ease-out;
}

.head {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  animation: fadeDown 1.5s ease-out;
}

.bl p {
  font-size: 1rem;
  font-weight: 300;
  color: #f2f2f2;
  margin-bottom: 30px;
  line-height: 1.6;
  animation: fadeIn 1.8s ease-in-out;
}

/* .btn1 {
  display: inline-block;
  background-color: #ff4500;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.btn1:hover {
  background-color: #0f0f0f;
  color: #ff4500;
  border: 1px solid #ff4500;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 69, 0, 0.4);
} */


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 🖥️ Large Screens / Monitors */
@media (min-width: 1200px) {
  .block1 {
    height: 400px;
  }

  .head {
    font-size: 3.2rem;
  }

  .bl p {
    font-size: 1.1rem;
  }

}

/* 💻 Laptops & Tablets */
@media (max-width: 1024px) {
  .block1 {
    height: 400px;
  }

  .head {
    font-size: 2.4rem;
  }

  .bl p {
    font-size: 0.95rem;
  }
}

/* 📱 Mobile Devices */
@media (max-width: 600px) {
  .block1 {
    height: 400px;
    background-attachment: scroll;
    padding: 20px;
  }

  .head {
    font-size: 1.8rem;
  }

  .bl p {
    font-size: 0.9rem;
  }

}


.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 80px 20px;
}

/* Card Styling */
.stat-card {
  background: #fff;
  width: 240px;
  border-radius: 18px;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  animation: fadeInUp 1.2s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

/* Icon Styles */
.icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: #fff;
}

.icon.blue { background-color: #e4edff; color: #2563eb; }
.icon.green { background-color: #d9fbe7; color: #22c55e; }
.icon.purple { background-color: #f3e8ff; color: #8b5cf6; }
.icon.orange { background-color: #fff4e0; color: #f97316; }

/* Number & Text */
.stat-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 0.95rem;
  color: #555;
  font-weight: 400;
}

/* ================================
   ✨ Animations
================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   🌐 Responsive Design
================================ */

/* Large screens */
@media (min-width: 1200px) {
  .stat-card {
    width: 260px;
    padding: 35px 25px;
  }

  .stat-card h2 {
    font-size: 2.2rem;
  }
}

/* Laptops & Tablets */
@media (max-width: 1024px) {
  .stats-section {
    gap: 20px;
  }

  .stat-card {
    width: 220px;
    padding: 25px 15px;
  }

  .stat-card h2 {
    font-size: 1.8rem;
  }
}

/* Mobile phones */
@media (max-width: 600px) {
  .stats-section {
    flex-direction: column;
    gap: 25px;
    padding: 50px 10px;
  }

  .stat-card {
    width: 90%;
    max-width: 300px;
  }

  .stat-card h2 {
    font-size: 1.7rem;
  }
}



@import url('https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css');

/* SECTION BASE */
.core-values {
  position: relative;
  padding: 100px 5%;
  background: linear-gradient(145deg, #dbe8ff, #f0f6ff);
  overflow: hidden;
}

/* Floating glowing orbs for background */
.core-values::before,
.core-values::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: 0;
}

.core-values::before {
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: #a0c4ff;
  animation: floatOrb 8s infinite alternate ease-in-out;
}

.core-values::after {
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: #ffd6a5;
  animation: floatOrb 9s infinite alternate ease-in-out;
}

@keyframes floatOrb {
  from { transform: translate(0, 0); }
  to { transform: translate(40px, 40px); }
}

/* CONTENT CONTAINER */
.container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* HEADINGS */
.values-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 10px;
  animation: fadeDown 1s ease forwards;
}

.values-subtitle {
  color: #475569;
  font-size: 1.15rem;
  margin-bottom: 60px;
  animation: fadeIn 1.2s ease forwards;
}

/* GRID LAYOUT */
.values-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 35px;
  justify-content: center;
}

/* VALUE ITEM (Glass Card) */
.value-item {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: translateY(0);
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.value-item:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 40px rgba(13, 27, 42, 0.15);
}

/* Floating highlight */
.value-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #0d6efd, #f4b400, #0aad5c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-item:hover::before {
  transform: scaleX(1);
}

/* ICONS */
.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  color: #fff;
  transition: all 0.5s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-icon.pink {
  background: linear-gradient(135deg, #ff9eb5, #ff477e);
}

.value-icon.teal {
  background: linear-gradient(135deg, #5eead4, #0ea5e9);
}

.value-icon.gold {
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
}

/* Rotate icon on hover */
.value-item:hover .value-icon {
  transform: rotateY(360deg);
}

/* TEXTS */
.value-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.value-item p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 10px;
}

/* ANIMATIONS */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .values-title { font-size: 2.2rem; }
  .values-subtitle { font-size: 1rem; margin-bottom: 40px; }
  .core-values { padding: 70px 5%; }
}

@media (max-width: 480px) {
  .value-item {
    padding: 30px 20px;
  }

  .value-icon {
    width: 65px;
    height: 65px;
    font-size: 2rem;
  }

  .value-item h3 {
    font-size: 1.2rem;
  }

  .value-item p {
    font-size: 0.9rem;
  }
}




/* ===== Base Styling ===== */
.about-loan {
  padding: 60px 20px;
  background:whitesmoke; /* Dark navy background */
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-con {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  width: 100%;
}

/* ---------- About Card ---------- */
.about-card {
  background: linear-gradient(145deg, #10213b, #0f2a50); /* Gradient for depth */
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 207, 255, 0.15); /* Subtle neon glow */
  padding: 30px;
  text-align: center;
  flex: 1 1 450px;
  min-height: 320px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease forwards;
}

/* Stagger animation */
.about-card:nth-child(1) {
  animation-delay: 0.2s;
}
.about-card:nth-child(2) {
  animation-delay: 0.5s;
}
.about-card:nth-child(3) {
  animation-delay: 0.8s;
}

.about-card:hover {
  transform: translateY(-15px) scale(1.05) rotateZ(1deg);
  box-shadow: 0 20px 40px rgba(0, 207, 255, 0.35);
  background: linear-gradient(145deg, #0f2a50, #001022);
}

/* ---------- Icon ---------- */
.about-card .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #00cfff; /* Neon cyan */
  background: #10213b; /* Darker circle */
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.about-card .icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.3), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-card:hover .icon {
  transform: rotate(20deg) scale(1.2);
  background: linear-gradient(145deg, #00cfff, #0ff3d4);
  color: #0d1b2a;
}

.about-card:hover .icon::after {
  opacity: 1;
  animation: neonPulse 1.5s infinite;
}

/* ---------- Text ---------- */
.about-card h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.about-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #a0bcd1; /* Soft blue for contrast */
  transition: color 0.3s ease;
}

.about-card:hover h3 {
  color: #00cfff;
}

.about-card:hover p {
  color: #c0e8ff;
}

/* ===== Keyframe Animations ===== */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 207, 255, 0.5); }
  50% { box-shadow: 0 0 20px 8px rgba(0, 207, 255, 0.35); }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .about-card { flex: 1 1 400px; }
}

@media (max-width: 768px) {
  .about-card { flex: 1 1 100%; padding: 25px; }
  .about-card h3 { font-size: 1.4rem; }
  .about-card p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .about-loan { padding: 40px 15px; }
  .about-card { padding: 20px; border-radius: 15px; }
  .about-card h3 { font-size: 1.2rem; }
  .about-card p { font-size: 0.9rem; }
  .about-card .icon { width: 60px; height: 60px; font-size: 24px; }
}




section {
      padding: 80px 10%;
      text-align: center;
      animation: fadeIn 1.5s ease;
    }

    h2 {
      font-size: 2rem;
      font-weight: 700;
      color: #0a1f44;
      margin-bottom: 10px;
    }

    p.subtitle {
      color: #5b6b82;
      font-size: 1rem;
      margin-bottom: 50px;
    }

    /* ---------- Grid Layout ---------- */
    .values-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
      align-items: stretch;
    }

    /* ---------- Card ---------- */
    .value-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 35px 25px;
      transition: all 0.4s ease;
      position: relative;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.6s ease;
      transform: translateY(50px) scale(0.95);
      opacity: 0;
      animation: fadeSlideIn 1s ease forwards;
    }

    .value-card.visible{
        transform: translateY(0);
        opacity: 1;
       
    }
    .value-card:nth-child(1) {
      animation-delay: 0.2s;
    }
    .value-card:nth-child(2) {
      animation-delay: 0.4s;
    }
    .value-card:nth-child(3) {
      animation-delay: 0.6s;
    }

    .value-card:hover {
        transform: scale(1.05);
      transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    /* ---------- Icon ---------- */
    .icon {
      width: 60px;
      height: 60px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin: 0 auto 20px auto;
      transition: all 0.3s ease;
    }

    .value-card:nth-child(1) .icon {
      background: #e6eeff;
      color: #4361ee;
    }

    .value-card:nth-child(2) .icon {
      background: #fff0f6;
      color: #ff4d6d;
    }

    .value-card:nth-child(3) .icon {
      background: #e8fff3;
      color: #00c853;
    }

    .value-card:hover .icon {
      transform: rotate(10deg) scale(1.1);
    }

    /* ---------- Text ---------- */
    .value-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #0a1f44;
      margin-bottom: 10px;
    }

    .value-card p {
      color: #5b6b82;
      font-size: 0.95rem;
    }

    /* ---------- Animations ---------- */
 @keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


    /* ---------- Responsive ---------- */
    @media (max-width: 768px) {
      section {
        padding: 60px 6%;
      }

      h2 {
        font-size: 1.7rem;
      }

      .value-card {
        padding: 25px 20px;
      }
    }

    @media (max-width: 480px) {
      .icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
      }
    }
   


.dreamhome-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8%;
  flex-wrap: wrap;
  gap: 40px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  animation: slideUp 1.2s ease-out;
}

.content {
  flex: 1 1 500px;
}

.content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111827;
}

.content h2 span {
  color: #007bff;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature {
  width: 650px;
  display: flex;
  gap: 15px;
  background: #f5f7fa;
  border-radius: 12px;
  padding: 15px 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.icon {
  background: #007bff;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.feature:hover .icon {
  background: #0056b3;
}

.text h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #111827;
}

.text p {
  color: #4b5563;
  font-size: 0.90rem;
}

.image-container {
  flex: 1 1 400px;
  text-align: center;
}

.image-container img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.6s ease;
}

.image-container img:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

@keyframes slideUp {
  from {opacity: 0; transform: translateY(50px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive Design */
@media (max-width: 992px) {
  .dreamhome-section {
    flex-direction: column;
    padding: 40px 5%;
    text-align: center;
  }

  .features {
    align-items: center;
  }

  .feature {
    width: 100%;
    max-width: 500px;
  }

  .image-container {
    order: -1;
  }

  .content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .content h2 {
    font-size: 1.5rem;
  }

  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .text h3 {
    font-size: 1rem;
  }
}

.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;
  }
}
