body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0340f9, #11cb81, #25bbfc);
  margin: 0;
  padding: 0;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: white;
  padding: 1em 3em;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and text */
}

.logo img {
  width: 150px;   /* adjust size */
  height: auto;  /* keeps aspect ratio */
}
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;
}

 /* Dropdown styling */
/* ul.dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  background: #ffffff;
  border: 1px solid #ccc;
  min-width: 140px;   
  font-size: 0.85rem; 
}

ul.dropdown li {
  padding: 6px 10px; 
}

ul.dropdown li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 0.85rem; 
}

ul.dropdown li a:hover {
  background: #f0f0f0;
}
 */
.hero {
  text-align: center;
  padding: 5em 2em;
  
  color: white;
}

.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.2rem, 4vw, 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;     
   @keyframes shimmer {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
   }
}

.hero-text p span{
  font-size: clamp(1.1rem, 1.4em, 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;     
   @keyframes shimmer {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
   }
}
.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-text button {
  position: relative;
  background: linear-gradient(135deg, #2575fc, #00c853); 
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
  
  border: 4px solid transparent;
  border-radius: 25px;
  padding: 0.8em 1.5em;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  outline: none;
  border-image-source: inherit;
  border-image: linear-gradient(
    270deg,
    #FFD700, 
    #FFC107, 
    #FFB700, 
    #FFA500, 
    #FFD700  
  ) 1;
  border-image-slice: 1;
  z-index: 2;
}

.hero-text button::before {
  content: "";
  position: absolute;
  inset: 0; 
  border-radius: 25px;
  background: linear-gradient(
    270deg,
    #FFD700, 
    #daff07, 
    #00ccff, 
    #00ff5e, 
   
  );
  background-size: 400% 400%;
  animation: goldenRun 6s linear infinite; 
  z-index: -1;
}

.hero-text button:hover {
  transform: scale(1.05);
}


@keyframes goldenRun {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
 */ 


.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;
}

/* Fade-in animation */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

section {
  padding: 2em;
}
.promise h2 span{
  font-size:  clamp(1rem, 3vw, 2rem);
  font-weight: bold;
  
 /* background: linear-gradient(
    45deg,
   #f7d841,#FDD017,
  #f4d02f,    
    #FFDF00,
    
#f5cd04,
    #cef99f,
     #cff806,
   #eeee15,
   #f6f639, #f3ea86
  ); 
   
  -webkit-background-clip: text;  
  -webkit-text-fill-color: transparent;
  background-clip: text;          
  color: transparent; 
  text-shadow: 
        1px 1px 2px rgba(244, 191, 58, 0.303),   
        -1px -1px 2px rgba(254, 216, 3, 0); 
   animation: shine 5s linear infinite;     
   @keyframes shimmer {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
   } */
    
   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; /* allows wrapping on smaller screens */
      gap: 20px;
      justify-content: center;
    }

    .card {
      flex: 0 0 150px; /* flexible width, minimum 250px */
      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: #6987f5;
    }


    @media (max-width: 600px) {
      .card h3 {
        font-size: 1rem;
      }
    }


       .chevron-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
 
   /* .chevron {
      position: relative;
      background: #f9fbfc; 
      padding: 20px 40px;
      border-radius: 4px;
      flex: 1 1 80px;
      text-align: center;
    } */

    /* .chevron::after {
      content: "";
      position: absolute;
      top: 0;
      right: -20px;
      width: 0;
      height: 0;
      border-top: 40px solid transparent;
      border-bottom: 40px solid transparent;
      border-left: 20px solid #f0f4f8;
    } */
     .chevron {
  position: relative;
  flex: 1 1 180px;
  min-width: 200px;
  padding: 30px 40px;
  /* padding: 20px; */
  margin: 5px;
  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: -60px; /* 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 */
}
    /* Last chevron should not have arrow */
    /* .chevron:last-child::after {
      display: none;
    } */

    @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 a {
  color: #FFD700;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
 /*  border-top: 1px solid #333;
  margin-top: 20px; */
  padding-top: 10px;
  font-size: 20px;
}

/* @media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .card-scroll {
    flex-direction: column;
    overflow-x: visible;
  }
  nav ul {
    flex-direction: column;
  }
}
.card {
  transition: transform 0.3s ease;
}
.card:hover {
  transform: scale(1.05);
} */

.hero-text h1 {
  animation: fadeInDown 1s ease;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
    