body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0340f9, #11cb81, #25bbfc);
  margin: 0;
 padding-top: 80px;
}
header {
  background: linear-gradient(135deg, #0340f9, #11cb81);
  color: white;
  /*  padding: 0.2em 0.5em;  */
  position: fixed;       /* keeps header locked at top */
  top: 0;                /* aligns to top edge */
  left: 0;
  width: 100%;           /* full width */
  z-index: 1000;         /* ensures it stays above other elements */
  display: flex;
  align-items: center;
  justify-content: space-between;
 padding: 5px 20px;  
}
.logo {
  display: flex;
  align-items: center;
  margin-left: -15px;
  gap: 8px; /* space between logo and text */
}

.logo img {
  width: 150px;   /* adjust size */
  height: auto;  /* keeps aspect ratio */
  background:transparent;
}
nav a {
  background: linear-gradient(90deg, #fde37c, #f0c238, #fcdb4d, #f7e98e );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;   /* Firefox */
  text-decoration: none;
  margin: 0 15px;
  font-size: 25px;
  font-weight: bold;
}
nav ul {
  text-decoration: none;
  list-style: none;
  display: flex;
  gap: 1em;
}
 nav ul li {
  position: relative;
}
nav ul li ul.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  background:transparent;
  padding: 0.5em;
  font-size: 0.85rem;
  gap: 1em;
}
nav ul li:hover ul.dropdown {
  display: block;
} 
nav ul li ul.dropdown li a {
  padding: 4px 8px;     /* smaller spacing around text */
  font-size: 1.2rem;   /* smaller text size */
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #FFD700; /* golden icon */
  cursor: pointer;
}

/* Mobile view */
@media (max-width: 768px) {
  header{
    justify-content: flex-start;
    gap: 150px;
  }
  nav {
    display: none; /* hide menu initially */
    position: absolute;
    top: 60px; /* below header */
    left: 0;
    width: 100%;
    background:linear-gradient(135deg, #0340f9, #11cb81, #25bbfc);
    padding: 1em;
  }
  .logo {
    margin-right: 0;
  }

  nav.active {
    display: block; /* show when toggled */
  }

  nav ul {
    flex-direction: column;
    gap: 0.5em;
  }

  .menu-toggle {
    margin-left: 0;
    display: block; /* show hamburger on mobile */
  }
}
.hero {
  text-align: center;
  padding: 5em 2em;
  justify-content: flex-start;
  color: white;
  padding-top: 2em;
}

.hero-text h1 span {
 /*  font-size: 2.8em;
  margin-bottom: 0.5em;
  color: rgb(149, 255, 0);
  animation: fadeInDown 1s ease; */
  /* font-size: 2.8em;
  font-weight: bold;
  color: #FFD700;  *//* Base gold */
 
  font-size:  clamp(1.7rem, 5vw, 3rem);
  font-weight: bold;
 background: linear-gradient(
    45deg,
  #f7d841,#FDD017,
  #f4d02f,   /* Pure gold */
    #FFDF00,
    #f1f17b,
     #DFB722,
   #eeee15,
   #f6f639, #f3ea86
  );
  -webkit-background-clip: text;   /* Chrome, Safari */
  -webkit-text-fill-color: transparent;
  background-clip: text;           /* Firefox (with prefix in older versions) */
  color: transparent; 
  text-shadow: 
        1px 1px 2px rgba(244, 191, 58, 0.303),   /* dark shadow */
        -1px -1px 2px rgba(254, 216, 3, 0); /* highlight */
   animation: shine 5s linear infinite;     
   
}

.hero-text p span{
  font-size: clamp(1.1rem, 1.3em, 2rem);
  font-weight: bold;
  margin-bottom: 1.5em;
  opacity: 0.9;
  background: linear-gradient(
    45deg,
  #f7d841,#FDD017,
  #fafa05e8,   /* Pure gold */
    #FFDF00,
    #fbfbce,
     #f6c103,
   #f58c5f,
   #888804, #f94c02
    
  );
  -webkit-background-clip: text;   /* Chrome, Safari */
  -webkit-text-fill-color: transparent;
  background-clip: text;           /* Firefox (with prefix in older versions) */
  color: transparent; 
  text-shadow: 
        1px 1px 2px rgba(244, 191, 58, 0.303),   /* dark shadow */
        -1px -1px 2px rgba(254, 216, 3, 0); /* highlight */
   animation: shine 5s linear infinite;     
   
}
.hero-text button {
  background: linear-gradient(135deg, #2575fc, #00c853);       /* Blue background */
  color: white;                    /* White text */
  border: 2px solid #FFD700;       /* Yellow outline */
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.hero-text button:hover {
  transform: translateY(-3px) scale(1.05); /* Lift + slight zoom */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);  /* Glow/shadow */
}

/* .hero-slider {
  margin-top: 2em;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.swiper-slide {
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 3em;
  border-radius: 10px;
  text-align: center;
} */
 .hero-slider {
 /*  width: 100%;
  max-width: 900px;   
  margin: auto; */
  margin-top: 50px;   /* pushes the slider down */
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;        /* scale to fit slide box */
  max-height: 400px;  /* limit height */
  object-fit: cover;  /* crop nicely if aspect ratio differs */
  border-radius: 12px;
}


/* Fade-in animation */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

section {
  padding: 0.3em;
}
.promise h2 span{
  font-size:  clamp(1.5rem, 3vw, 2.3rem);
  font-weight: bold;
   background: conic-gradient(from 0deg,
   #edbf49,   
    #f4d83c,   
    #f1e04ae9    
    
   
  );
   background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s infinite linear;
  /* text-shadow: 0 0 8px rgba(255, 215, 0, 0.6),
               0 0 16px rgba(255, 215, 0, 0.4); */
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



 /* .card-container {
      display: flex;
      flex-wrap: wrap; 
      gap: 20px;
      justify-content: center;
    }

    .card {
      flex: 0 0 150px; 
      max-width: 150px;
       height: 250px;
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .card h3 {
      font-size: 1.1rem;
      margin: 0;
      color: #004080;
    }


    @media (max-width: 600px) {
      .card h3 {
        font-size: 1rem;
      }
    }
 */.promise-section {
  text-align: center;
  padding: 60px 20px;
}

.promise-section h2 {
  font-size: 2.2rem;
  color: #060238;
  margin-bottom: 40px;
}

.card-container {
   /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;  */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 4 columns for top row */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}


.card {
  background:white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.card:hover {
  transform: translateY(-8px);
  border-color: #FFD700;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.3);
}

.card h3 {
  color: #09013a;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.card p {
  color: #3a0404;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .promise-section h2 {
    font-size: 1.8rem;
  }
  .card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .promise-section h2 {
    font-size: 1.6rem;
  }
  .card h3 {
    font-size: 1rem;
  }
  .card p {
    font-size: 0.85rem;
  }
}
@media (max-width: 992px) {
  .card {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
  }
}

@media (max-width: 480px) {
  .card {
    grid-template-columns: 1fr; /* stack on mobile */
  }
}

       .chevron-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 2px;
    }
     .chevron {
  position: relative;
  flex: 1 1 180px;
  min-width: 100px;
  padding: 30px 40px;
  /* padding: 20px; */
 
  color: #fff;
  text-align: center;
  border-radius: 2px;
 clip-path: polygon(
    0 0, 
    85% 0, 
    100% 50%, 
    85% 100%, 
    0 100%, 
    15% 50%
  );
  margin-right: -5px; /* overlap arrows neatly */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* vertically center content */
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
 
}

.chevron:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.chevron { background:  #fff; }
   .chevron h3 {
      margin: 0 0 10px;   /* remove default top margin, add small bottom gap */
      font-size: 1.3rem;  /* consistent heading size */
      font-weight: 600;
      color: #004080;     /* blue heading text */
      line-height: 1.3;
    } 
    .chevron p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;         /* better readability */
    color: #333;
    max-width: 90%;           /* prevent overflow */
    word-wrap: break-word;    /* wrap long words */
}
   
    @media (max-width: 600px) {
      .chevron {
        font-size: 0.9rem;
        padding: 15px 25px;
      }
      .chevron::after {
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent;
        border-left: 15px solid #3a8edb;
        right: -15px;
      }
    }
footer {
  background-color: transparent;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-section h3 {
  color: #fae56a; /* golden accent */
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #Edc967;
}

.logo img {
  width: 100px;
  height: auto;
  margin-right: 10px;
}

.logo h2 {
  display: inline-block;
  color: #edc967;
  font-size: 20px;
}

.social-icons {
  position: fixed;
  bottom: 20px;          /* Anchors to bottom */
  right: 20px;           /* Anchors to right */
  display: flex;
  flex-direction: column;/* Vertical alignment */
  gap: 10px;             /* Space between icons */
}

.social-icons a {
  color: #FFD700;        /* Gold color */
  font-size: 18px;
  text-decoration: none;
}
.social-icons img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.social-icons a:hover {
  color: #fff;           /* White on hover */
}

@media (max-width: 600px) {
  .social-icons {
     max-height: 80vh;
     overflow-y: auto;
    bottom: 10px;          /* Slightly higher for mobile */
    right: 10px;           /* Tuck closer to edge */
    gap: 6px;              /* Reduce spacing */
  }

  .social-icons img {
    width: 50px;            /* Smaller icons */
    height: 50px;
  }

  .social-icons a {
    font-size: 16px;
  }
}

.footer-bottom {
  text-align: center;
 /*  border-top: 1px solid #333;
  margin-top: 20px; */
  padding-top: 10px;
  font-size: 20px;
}

.hero-text h1 {
  animation: fadeInDown 1s ease;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
    