    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f5f8fa;
      color: #050F4A;
      scroll-behavior: smooth;
    }
    
  .footer-section {
    background: linear-gradient(135deg, #0B3D91 0%, #092c6d 100%);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .footer-link {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color:#fff;
  }

  .footer-link:hover {
    color: #ffc107;
    transform: translateX(5px);
  }

  .text-gradient {
    background: linear-gradient(to right, #ffc107, #f76e11);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  @media (max-width: 767px) {
    .footer-section {
      text-align: center;
    }
    .navbar-toggler{background: #2477b9 important;}
    .usp {
  text-align: left;
  font-size: 20px;
}

    .footer-link {
      display: block;
    }
  }

   /* Custom color for navbar links */
   /* Base navbar style */
.navbar {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #f0f0f0;
}

.navbar-nav .nav-link {
  color: #0B3D91;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #062c6e;
}

.navbar-nav .nav-link::after {
  content: '';
  display: none;
  height: 2px;
  width: 0%;
  background: #0B3D91;
  transition: width 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: #0B3D91;
  font-weight: 600;
}

.custom-nav {
  color: #0B3D91 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.custom-nav:hover,
.custom-nav.active {
  color: #063073 !important; /* Slightly darker shade for hover/active */
}
    /* Hero Banner */
#hero {
  background: linear-gradient(135deg, #050F4A, #0B3D91);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#hero h1 {
  font-size: 38px !important;;
  font-weight: 700;
  line-height: 1.2;
}

#hero p.lead {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 30px;
}

#hero i {
  color: #00bcd4;
}

#hero .btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

#hero .btn:hover {
  background-color: #00acc1;
  color: white;
}

#hero img {
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  #hero {
    text-align: center;
    padding: 60px 15px;
  }

  #hero h1 {
    font-size: 30px;
  }

  #hero .btn {
   padding: 8px 25px !important;
    margin-top: 20px;
    width: auto;
  }

  #hero img {
    max-height: 300px;
    margin-top: 30px;
  }
}


    /* Section titles */
    .section-title {
      text-align: center;
      color: #050F4A;
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 50px;
      position: relative;
    }

    .section-title::after {
      content: '';
      display: block;
      
      margin: 12px auto 0 auto;
      border-radius: 2px;
    }

    .about-section {
  background: linear-gradient(to bottom, #f9f9f9, #ffffff);
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
}

.about-section .lead {
  font-size: 1.1rem;
  color: #333;
}

.ceo-box {
  border-left: 4px solid #0B3D91;
  padding-left: 15px;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .section-title {
    text-align: center;
  }

  .ceo-box {
    text-align: center;
    border-left: none;
    border-top: 4px solid #0B3D91;
    margin-top: 20px;
    padding-top: 15px;
  }
}


    /* Mission & Vision */
    #mission-vision {
      background: linear-gradient(to right, #e3f2fd, #cfd8dc);
      padding: 70px 20px;
      text-align: center;
      color: #050F4A;
    }

    #mission-vision .item {
      max-width: 600px;
      margin: 0 auto 50px auto;
    }

    #mission-vision h3 {
      font-weight: 700;
      margin-bottom: 20px;
      font-size: 1.8rem;
    }

    #mission-vision p {
      font-size: 1.15rem;
      line-height: 1.6;
    }

    /* Services */
    #services {
      padding: 80px 20px;
      
    }

    #services .service-card {
      border: 2px dashed #050F4A;
      border-radius: 12px;
      padding: 30px 25px;
      height: 100%;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: default;
    }

    #services .service-card:hover {
      background-color: #e3f2fd;
      transform: translateY(-6px);
      box-shadow: 0 12px 25px rgba(5, 15, 74, 0.15);
    }

    #services .service-card h4 {
      color: #050F4A;
      font-weight: 700;
      margin-bottom: 15px;
    }

    #services .service-card i {
      color: #00bcd4;
      font-size: 28px;
      margin-bottom: 12px;
    }

    #services .service-card p {
      font-size: 1rem;
      line-height: 1.5;
      color: #333;
    }

    /* Team */
    #team {
      background-color: #f8fafc;
      padding: 80px 20px;
      text-align: center;
    }

    #team .member-card {
      background: white;
      padding: 25px 15px 40px;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.3s ease;
      max-width: 280px;
      margin: 0 auto;
    }

    #team .member-card:hover {
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    }

    #team img {
      border-radius: 50%;
      width: 120px;
      height: 120px;
      object-fit: cover;
      margin-bottom: 15px;
      border: 4px solid #00bcd4;
    }

    #team h5 {
      font-weight: 700;
      margin-bottom: 5px;
      color: #050F4A;
    }

    #team p {
      font-style: italic;
      color: #555;
    }

    /* Testimonials */
    #testimonials {
      padding: 80px 20px;
      background-color: white;
      margin: 0 auto;
      text-align: center;
    }

    #testimonials .testimonial-card {
      background-color: #e3f2fd;
      padding: 30px 25px;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(5, 15, 74, 0.1);
      margin-bottom: 30px;
      font-style: italic;
      color: #222;
      max-width: 650px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }

    #testimonials .testimonial-card::before {
      content: "â€œ";
      font-size: 3.5rem;
      color: #00bcd4;
      position: absolute;
      top: 15px;
      left: 20px;
      font-weight: 700;
      opacity: 0.2;
    }

    #testimonials .testimonial-card strong {
      display: block;
      margin-top: 20px;
      font-weight: 700;
      font-style: normal;
      color: #050F4A;
    }

    /* Contact */
    #contact {
      background-color: #f8fafc;
      padding: 80px 20px;
    }

    #contact h2 {
      text-align: center;
      font-weight: 700;
      margin-bottom: 50px;
      color: #050F4A;
    }

    #contact .form-container,
    #contact .info-container {
      max-width: 500px;
      margin: 0 auto 40px auto;
    }

    #contact form {
      background: white;
      padding: 30px 25px;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(5, 15, 74, 0.1);
    }

    #contact form label {
      font-weight: 600;
      color: #050F4A;
    }

    #contact form input,
    #contact form textarea {
      margin-bottom: 20px;
      border-radius: 8px;
      border: 1px solid #ccc;
      padding: 12px 15px;
      font-size: 1rem;
      resize: none;
    }
    .map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
  }

  .map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 10px;
    border: 0;
  }

    #contact form button {
      background-color: #050F4A;
      color: white;
      border: none;
      padding: 12px 30px;
      font-weight: 700;
      border-radius: 50px;
      transition: background-color 0.3s ease;
      width: 100%;
    }

    #contact form button:hover {
      background-color: #004080;
    }

    #contact .info-container p {
      font-size: 1.1rem;
      margin-bottom: 15px;
      color: #050F4A;
    }

    #contact .info-container strong {
      color: #050F4A;
    }

    .map-responsive {
      overflow: hidden;
      padding-bottom: 56.25%;
      position: relative;
      height: 0;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(5, 15, 74, 0.1);
      margin-top: 20px;
    }

    .map-responsive iframe {
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      position: absolute;
      border-radius: 15px;
      border: 0;
    }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* WhatsApp Icon */
.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

/* Greeting Message */
.wa-greeting {
  position: absolute;
  bottom: 60px;
  right: 10px;
  background: rgba(37, 211, 102, 0.9);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  max-width: 460px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  display: none;
  animation: fadeSlideIn 5s forwards;
}

/* Flexbox Layout */
.wa-content {
  display: flex;
  gap: 8px;
  align-items: center;
}

.wa-emoji {
  font-size: 20px;
}

/* Animation */
@keyframes fadeSlideIn {
  0% { opacity: 0; transform: translateY(10px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); display: none; }
}

/* Responsive */
@media (max-width: 480px) {
  .wa-greeting {
    max-width: 180px;
    font-size: 13px;
  }
}
  #mission-vision .card:hover {
    background-color: #d0eaff;
    transform: translateY(-8px);
    transition: all 0.3s ease;
  }
  #mission-vision p {
    line-height: 1.6;
  }
  

  #cta .btn {
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  #cta .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.5);
  }

  #cta .btn-light:hover {
    background-color: #e0f7fa;
    color: #050f4a;
  }
/* General footer styling */
footer {
  background: linear-gradient(to right, #0B3D91, #1E90FF); /* Optional gradient */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Footer sections layout */
footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* Each column */
footer .footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

/* Headings */
footer .footer-column h5 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Links */
footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-column ul li {
  margin-bottom: 10px;
}

footer .footer-column ul li a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

footer .footer-column ul li a:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  footer .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  footer .footer-column {
    width: 100%;
    margin-bottom: 20px;
        text-align:left;
  }

  footer .footer-column ul li a {
    font-size: 15px;
    text-align:left;
    width: :100%;
  }
}

.dual { color: #0dcaf0; }
    .banner {
      background: linear-gradient(135deg, #050F4A, #00bcd4);
      color: white;
      padding: 4rem 0;
    }
    .info-section {
      padding: 3rem 0;
    }
    .info-box {
      background: #fff;
      border: 1px dashed #00bcd4;
      padding: 2rem;
      border-radius: 8px;
      margin-bottom: 2rem;
    }
    .info-box h5 {
      font-weight: 600;
      color: #050F4A;
    }
    .info-box p {
      font-size: 0.95rem;
      color: #555;
    }
/* Footer bottom area */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}


    /* Responsive */
    @media (max-width: 991.98px) {
      #about {
               padding: 0px 15px;
      }
    }

    @media (max-width: 575.98px) {
      .hero h1 {
        font-size: 2rem;
      }

      #mission-vision h3 {
        font-size: 1.5rem;
      }

      #services .service-card {
        padding: 20px 15px;
      }
      
    }

    .custom-heading {
  color: #0f3270;
  position: relative;
  display: inline-block;
  font-size: 2rem;
  letter-spacing: 0.5px;
}

.custom-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background-color: #0f3270;
  border-radius: 2px;
}

<style>
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #f9f9f9;
      color: #222;
    }

    /* HEADER */
    header {
      background: linear-gradient(to right, #0B3D91, #1f5fa5);
      color: #fff;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }
   

    /* MAIN CONTENT */
    main {
      max-width: 960px;
      margin: 40px auto;
      background: #fff;
      padding: 30px 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      border-radius: 8px;
    }
   
   
    p {
      margin-bottom: 1.2em;
      line-height: 1.7;
    }

  
    /* MOBILE */
    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
      }
      header {
        flex-direction: column;
        align-items: flex-start;
      }
      main {
        margin: 20px;
        padding: 20px;
      }
     
    }

avbar-nav .dropdown-menu {
    border: none;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
  }

  .navbar-nav .dropdown-menu a {
    padding: 0.6rem 1.5rem;
    border-bottom: 1px dotted #ccc;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .navbar-nav .dropdown-menu a:hover {
    background-color: #f9f9f9;
    color: #007bff;
  }

  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .transition-arrow {
  transition: transform 0.3s ease;
  margin-top: 6px;
}

.dropdown.show #aboutArrow {
  transform: rotate(180deg);
}

.dual { color: #00bcd4; }
.banner {
  background: linear-gradient(135deg, #050F4A, #00bcd4);
  color: white;
  padding: 4rem 0;
}
.accordion-button:not(.collapsed) {
  background-color: #00bcd4;
  color: white;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item {
  border-left: 4px dashed #00bcd4;
  border-radius: 8px;
  margin-bottom: 1rem;
}
 .dual {
      color: #00bcd4;
    }
    .section-title {
      font-weight: 700;
      font-size: 2.5rem;
    }
    
    .dashed-box {
      border: 2px dashed #00bcd4;
      padding: 2rem;
      border-radius: 10px;
      background: #fff;
    }
    .vision-mission-block {
      padding: 4rem 2rem;
      background: #f9f9f9;
      text-align: center;
    }

    /* Digital Section */
.digital-section {
  padding: 80px 0;
  background: #f9fafc;
}

.digital-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.digital-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.digital-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

.digital-text .green {
  color: #2e7d32;
}

.digital-text .blue {
  color: #0048ff;
}

.digital-right {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.phone-wrapper {
  flex: 0 0 220px;
  animation: float 3s ease-in-out infinite;
}

.phone-img {
  width: 100%;
  max-width: 220px;
  display: block;
  border-radius: 12px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-list li {
  background: #fff;
  border-left: 5px solid #2e7d32;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  transform: translateX(5px);
  background-color: #e3f5eb;
}

.feature-list i {
  color: #2e7d32;
  font-size: 18px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 768px) {
  .digital-row {
    flex-direction: column;
    text-align: center;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .digital-text h2 {
    font-size: 1.7rem;
  }
}
.feature-list i {
  width: 24px;
  text-align: center;
}
.phone-img {
  max-width: 100%;
  height: auto;
}

.nav-pills .nav-link {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.nav-pills .nav-link:hover {
  border-color: #0f3270;
  color: #0f3270;
}
.nav-pills .nav-link.active {
  background-color: #0f3270 !important;
  color: #fff !important;
}


.about-image {
  transition: transform 0.3s ease;
}
.about-image:hover {
  transform: scale(1.03);
}
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Global Dual Color */
.dual {
  color: #0dcaf0;
}

/* Section Titles */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f3270;
  text-align: center;
}
.btn-subtext {
    font-size: 11px; /* smaller than normal */
    font-weight: 400;   /* lighter than bold */
     /* slightly dimmed */
    line-height: 1.2;
  }
  
  /* Custom blue toggler */
  .navbar-toggler {
    border: none;
    background-color: #0f3270; /* Dark blue background */
    border-radius: 6px;
    padding: 6px 10px;
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.4); /* soft glow */
  }

  /* White bars for the icon */
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  
  :root {
  --brand: #0f3270;
  --accent: #1976d2;
  --soft: #f4f8ff;
}

/* Banner Section */
.banner {
  background:
    radial-gradient(900px 500px at 85% -20%, rgba(25,118,210,.25), transparent 70%),
    linear-gradient(135deg, var(--brand), #0a1a44);
  color: #fff;
  padding: 84px 0 70px;
  position: relative;
  overflow: hidden;
}
.banner h1 { letter-spacing: .2px; }
.banner .lead {
  color: #eaf1ff;
  max-width: 820px;
  margin: 0 auto;
}

/* KPI Chips */
.kpis { margin-top: 24px; }
.kpis .chip {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: .9rem;
}

/* Info Section */
.info-section {
  background: #f8fafc;
  padding: 56px 0;
}
.grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
}

/* Card Boxes */
.card-lite {
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15,50,112,.06);
  padding: 22px;
  height: 100%;
  transition: .25s ease;
}
.card-lite:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15,50,112,.1);
}
.card-lite .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #56a3ff);
  color: #fff;
  margin-bottom: 12px;
}
.card-lite h5 {
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 8px;
}
.muted { color: #64728f; }

/* Panel Box */
.panel {
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15,50,112,.06);
  padding: 24px;
}

/* Resources */
.resources a { text-decoration: none; }
.resources li { margin-bottom: 10px; }
.resources i { color: var(--accent); }

/* CTA Band */
.cta-band {
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15,50,112,.06);
  padding: 24px;
}
/* Highlight box for registration details */
.reg-highlight {
  background: var(--soft);
}
.highlight-box {
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15,50,112,.08);
  padding: 28px 24px;
}
.detail-chip {
  background: #f4f8ff;
  border: 1px solid #dce6f7;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--brand);
  box-shadow: 0 4px 12px rgba(15,50,112,.05);
  text-align: center;
}
.detail-chip i {
  color: var(--accent);
}
/* Dropdown Menu Styling */
.navbar .dropdown-menu {
  border-radius: 10px;
  border: 1px solid #e0e6f3;
  box-shadow: 0 6px 20px rgba(15, 50, 112, 0.08);
  padding: 8px 0;
}

/* Dropdown Items */
.navbar .dropdown-menu .dropdown-item {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0f3270;
  padding: 10px 16px;
  transition: all 0.2s ease;
}

/* Hover & Active State */
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff !important;
}

/* Divider spacing */
.navbar .dropdown-divider {
  margin: 6px 0;
  border-top: 1px solid #e0e6f3;
}

/* Caret (down arrow) animation */
.transition-arrow {
  transition: transform 0.2s ease;
}
.nav-item.dropdown.show .transition-arrow {
  transform: rotate(180deg);
}

  /* Page-specific polish (can move to style.css if you like) */
  .markets-hero {
    background:
      radial-gradient(900px 500px at 85% -20%, rgba(25,118,210,.25), transparent 70%),
      linear-gradient(135deg, var(--brand), #0a1a44);
    color:#fff; padding:70px 0 56px; text-align:center;
  }
  .markets-hero .lead { color:#eaf1ff; max-width:820px; margin:0 auto; }
  .tab-card {
    background:#fff; border:1px solid #e8eef7; border-radius:18px;
    box-shadow:0 10px 26px rgba(15,50,112,.06); padding:20px;
  }
  .ticker {
    background:#f4f8ff; border:1px solid #dce6f7; border-radius:14px;
    display:flex; align-items:center; justify-content:space-between;
    gap:12px; padding:12px 16px; margin-bottom:16px;
  }
  .ticker .left { display:flex; align-items:center; gap:10px; font-weight:700; color:#0f3270; }
  .ticker .val { font-variant-numeric: tabular-nums; }
  .ticker .chg { color:#1e9b50; font-weight:700; }
  .ticker .up {
    width:28px; height:28px; border-radius:8px; display:grid; place-items:center;
    background:linear-gradient(135deg, #2dbb6f, #7ce0a7); color:#fff;
  }
  .action {
    display:flex; flex-wrap:wrap; gap:8px;
  }
  .action .btn { border-radius:999px; }
  .tab-pane .hint { color:#64728f; }
  
    .sup-hero{
    background:
      radial-gradient(900px 500px at 85% -20%, rgba(25,118,210,.25), transparent 70%),
      linear-gradient(135deg, var(--brand), #0a1a44);
    color:#fff; padding:78px 0 60px; text-align:center;
  }
  .sup-hero .lead{ color:#eaf1ff; max-width:860px; margin:0 auto; }
  .sup-badges .chip{
    background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25);
    color:#fff; backdrop-filter:blur(6px);
    border-radius:999px; padding:8px 14px; font-weight:600; font-size:.9rem;
  }

  .support-section{ background:#f8fafc; padding:56px 0; }
  .card-lite{ background:#fff; border:1px solid #e8eef7; border-radius:18px; box-shadow:0 10px 26px rgba(15,50,112,.06); padding:22px; height:100%; transition:.25s ease; }
  .card-lite:hover{ transform:translateY(-3px); box-shadow:0 14px 32px rgba(15,50,112,.1); }
  .card-lite .icon{ width:44px; height:44px; border-radius:12px; display:grid; place-items:center; background:linear-gradient(135deg, var(--accent), #56a3ff); color:#fff; margin-bottom:12px; }

  .panel{ background:#fff; border:1px solid #e8eef7; border-radius:18px; box-shadow:0 10px 26px rgba(15,50,112,.06); padding:24px; }
  .muted{ color:#64728f; }

  .contact-chip{
    background:#f4f8ff; border:1px solid #dce6f7; border-radius:12px; padding:10px 14px; font-weight:600; color:var(--brand);
    display:inline-flex; align-items:center; gap:8px;
  }
  .contact-chip i{ color:var(--accent); }

  .sup-form .form-label{ font-weight:600; color:var(--brand); }
  .sup-form .btn{ border-radius:999px; }
  .cta-card .btn{ border-radius:999px; }
  /* ===== Company Profile Page Styles ===== */
:root {
  --brand: #0f3270;
  --accent: #1976d2;
  --soft: #f4f8ff;
}

/* Hero Banner */
.hero {
  background:
    radial-gradient(900px 500px at 85% -20%, rgba(25,118,210,.25), transparent 70%),
    linear-gradient(135deg, var(--brand), #0a1a44);
  color: #fff;
  padding: 84px 0 72px;
  text-align: center;
}
.hero .lead {
  color: #eaf1ff;
  max-width: 900px;
  margin: 0 auto;
}
.chips .chip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  backdrop-filter: blur(6px);
}

/* Sections */
.section { padding: 60px 0; }
.section-soft { background: #f8fafc; padding: 60px 0; }

/* Cards */
.card-lite {
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15,50,112,.06);
  padding: 22px;
  height: 100%;
  transition: .25s ease;
}
.card-lite:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(15,50,112,.12);
}
.icon-pill {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #56a3ff);
  color: #fff;
  margin-bottom: 12px;
}
.section-title {
  color: var(--brand);
  font-weight: 800;
}

/* Timeline */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0; bottom: 0;
  width: 2px;
  background: #e6eefb;
}
.tl-item { position: relative; margin-bottom: 16px; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px #e6eefb;
}

/* Panels & Badges */
.panel {
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15,50,112,.06);
  padding: 22px;
}
.badge-soft {
  background: #ecf5ff;
  color: #0f3270;
  border: 1px solid #d6e6ff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

/* CTA Band */
.cta-band {
  background: #fff;
  border: 1px solid #e8eef7;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(15,50,112,.06);
}
.cta-band .btn { border-radius: 999px; }
/* ===== Asaan Connect (Home) ===== */

/* Hero */
.srv-hero {
  background: radial-gradient(900px 500px at 85% -20%, rgba(25,118,210,.25), transparent 70%),
              linear-gradient(135deg, var(--brand), #0a1a44);
  color:#fff;
  padding:78px 0 60px;
  text-align:center;
}
.srv-hero .lead { color:#eaf1ff; max-width:860px; margin:0 auto; }

/* Chips */
.srv-badges .chip {
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  backdrop-filter:blur(6px);
  border-radius:999px;
  padding:8px 14px;
  font-weight:600;
  font-size:.9rem;
}

/* Section */
.srv-section { background:#f8fafc; padding:56px 0; }
.srv-grid { display:grid; gap:20px; }
@media (min-width:768px){ .srv-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1200px){ .srv-grid{ grid-template-columns:repeat(3,1fr); } }

/* Cards */
.srv-card {
  background:#fff;
  border:1px solid #e8eef7;
  border-radius:18px;
  box-shadow:0 10px 26px rgba(15,50,112,.06);
  padding:22px;
  height:100%;
  transition:.25s ease;
  position:relative;
}
.srv-card:hover { transform:translateY(-3px); box-shadow:0 14px 32px rgba(15,50,112,.1); }
.srv-ico {
  width:46px; height:46px; border-radius:12px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, var(--accent), #56a3ff);
  color:#fff; margin-bottom:12px;
}
.srv-card h5 { color:var(--brand); font-weight:800; margin-bottom:6px; }
.srv-card p { color:#64728f; }
.srv-cta .btn { border-radius:999px; font-weight:600; }

/* Badges */
.badge-soft {
  position:absolute; top:16px; right:-6px; transform:rotate(7deg);
  background:#fff; color:#0b5f2e; border:1px solid #cfeedd;
  box-shadow:0 8px 20px rgba(15,50,112,.07);
  font-weight:700; padding:6px 12px; border-radius:12px;
}
.badge-coming {
  position:absolute; top:16px; right:-6px; transform:rotate(7deg);
  background:#fff; color:#8a5b00; border:1px solid #ffe7b8;
  box-shadow:0 8px 20px rgba(15,50,112,.07);
  font-weight:700; padding:6px 12px; border-radius:12px;
}

/* Feature band */
.feature-band {
  background:#fff; border:1px solid #e8eef7; border-radius:18px;
  box-shadow:0 10px 26px rgba(15,50,112,.06); padding:22px;
}
.feature-list li { margin-bottom:8px; color:#44506c; }

/* Comparison table */
.compare {
  background:#fff; border:1px solid #e8eef7; border-radius:18px;
  box-shadow:0 10px 26px rgba(15,50,112,.06);
}
.compare thead th {
  background:#f4f8ff; color:#0f3270; border-bottom:1px solid #e8eef7;
}
.compare td, .compare th { padding:14px; vertical-align:middle; }
.compare .tick { color:#1e9b50; }
.compare .dash { color:#9aa6bf; }

/* FAQ */
.faq .accordion-button { font-weight:600; color:#0f3270; }
.faq .accordion-button:not(.collapsed) { background:#f4f8ff; color:#0f3270; }

/* CTA */
.cta-wide {
  background:#fff; border:1px solid #e8eef7; border-radius:18px;
  box-shadow:0 10px 26px rgba(15,50,112,.06); padding:24px;
}

/* === Levelled Timeline === */
.timeline{
  position:relative; margin-left:6px; padding-left:18px;
}
.tl-item{
  display:flex; gap:14px; position:relative; padding-bottom:18px;
}
.tl-left{
  width:88px; text-align:right; position:relative; padding-right:14px;
}
.tl-level{
  display:inline-block; font-size:.72rem; font-weight:700;
  color:#23406f; background:#eef4ff; border:1px solid #d9e6ff;
  padding:4px 8px; border-radius:999px;
}
.tl-dot{
  position:absolute; right:-6px; top:36px; width:12px; height:12px; border-radius:50%;
  background:#b7c7e6; border:2px solid #fff; box-shadow:0 0 0 4px #eff4ff;
}
.tl-dot-success{ background:#22b271; box-shadow:0 0 0 4px #e8f7ef; }
.tl-dot-info{ background:#3aa0ff; box-shadow:0 0 0 4px #eaf4ff; }
.tl-dot-primary{ background:#185191; box-shadow:0 0 0 4px #e6eef9; }

.tl-body{
  flex:1; background:#fff; border:1px solid #e8eef7; border-radius:14px;
  padding:14px 16px; box-shadow:0 8px 22px rgba(15,50,112,.05);
}
.tl-body h6{ color:var(--brand, #0f3270); font-weight:800; }
.tl-meta{ color:#6e7d9a; }
.muted{ color:#64728f; }
.badge-soft{
  display:inline-block; background:#fff; color:#0b5f2e; border:1px solid #cfeedd;
  padding:6px 10px; border-radius:10px; font-weight:700;
  box-shadow:0 8px 20px rgba(15,50,112,.07);
}

/* ===== Mobile-first fixes & button prominence ===== */
:root{
  --brand:#0f3270; --accent:#1976d2; --soft:#f4f8ff;
}

/* Base spacing on small devices */
@media (max-width: 576px){
  .container, .container-fluid { padding-left: 16px; padding-right: 16px; }
  section, .py-5 { padding-top: 42px !important; padding-bottom: 42px !important; }
  .lead { font-size: 1.02rem; }
  h1.display-5, .display-5 { font-size: 1.75rem; line-height: 1.2; }
  h2 { font-size: 1.4rem; }
}

/* Navbar toggler: blue/white and larger tap target */
.navbar-toggler {
  border: 2px solid var(--accent);
  padding: 8px 10px;
  border-radius: 10px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(25,118,210,.25); }
.navbar-toggler .navbar-toggler-icon{
  background-image: none;
  width: 24px; height: 2px; position: relative; display: inline-block; background: #fff;
}
.navbar-toggler { background: var(--accent); }
.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after{
  content:""; position:absolute; left:0; width:24px; height:2px; background:#fff;
}
.navbar-toggler .navbar-toggler-icon::before{ top:-7px; }
.navbar-toggler .navbar-toggler-icon::after{ top:7px; }

/* Collapse menu: full width and comfy touch targets on mobile */
@media (max-width: 991.98px){
  .navbar .dropdown-menu { border: none; box-shadow: none; }
  .navbar-nav .nav-link { padding: 12px 4px; font-weight: 600; }
  .navbar .dropdown-item { padding: 12px 10px; }
}

/* Buttons: more prominent on mobile */
.btn {
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 18px;
}
.btn i { color: #fff !important; }           /* icons white on colored buttons */
.btn-outline-primary i { color: var(--accent) !important; }
.btn-outline-success i { color: #198754 !important; }

@media (max-width: 576px){
  .btn, .btn-lg, .btn-sm { 
    width: 100%;                   /* full-width buttons on small */
    padding: 12px 16px !important;
    font-size: 0.98rem; 
  }
  .btn + .btn { margin-top: 10px; } /* stack buttons with gap */
}

/* CTA button groups: stack neatly on mobile */
.d-flex.flex-wrap.gap-3,
.d-flex.gap-2,
.d-flex.gap-4 {
  row-gap: 12px;
}
@media (max-width: 576px){
  .d-flex.flex-md-row { flex-direction: column !important; }
}

/* Cards & grids: breathable on small screens */
.service-card, .card, .card-lite, .panel {
  border-radius: 16px;
}
@media (max-width: 576px){
  .row.g-4 > [class*="col-"] { margin-bottom: 8px; }
  .service-card p, .card-lite p, .panel p { font-size: .98rem; }
}

/* Hero images: contain without overflow on mobile */
.img-fluid { max-width: 100%; height: auto; }
.hero img, #hero img { max-height: 360px; object-fit: cover; }

/* Asaan Connect block spacing on mobile */
#ac .ac-actions .btn, #asaan-connect .btn { min-height: 46px; }

/* Chips: reduce size for better fit */
.chip, .ac-chip {
  font-size: .85rem; padding: 6px 10px; border-radius: 999px;
}

/* Footer lists: better tap targets */
footer .footer-link { display: inline-flex; align-items: center; gap: 6px; padding: 6px 0; }

/* Utility: subtle elevated primary buttons */
.btn-primary, .btn-success {
  box-shadow: 0 8px 20px rgba(25,118,210,.22);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-success { box-shadow: 0 8px 20px rgba(25,135,84,.22); }

/* Fix sticky modals on small screens (no horizontal jiggle) */
.modal { -webkit-overflow-scrolling: touch; }
.download-item {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  background: #fff;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.download-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.download-item i {
  font-size: 1.6rem;
  color: #1976d2;
}
.download-item .btn {
  min-width: 160px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.download-item .btn:hover {
  transform: scale(1.05);
}
.download-item .btn i {
  color: #fff !important;
}
/* Limit banner width */
.ac-banner{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15,50,112,.15);
  border: 1px solid #e8eef7;
  background: #fff;
  max-width: 420px;   /* controls size */
  margin: 0 auto;     /* center align */
}

.ac-banner-img{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1);
  transition: transform .35s ease;
}

.ac-banner:hover .ac-banner-img{
  transform: scale(1.03);
}

/* On small screens, allow it to stretch */
@media (max-width: 576px){
  .ac-banner{
    max-width: 100%;
  }
}

/* Floating Asaan Connect Button */
.asaan-float{
  position: fixed;
  left: 18px;
  top: 75%;
  transform: translateY(-50%);
  z-index: 1050; /* above hero */
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #4caf50, #58c747);
  color: #fff;
  text-decoration: none;

  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 12px 28px rgba(15,50,112,.25), 0 4px 10px rgba(15,50,112,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.asaan-float i{
  font-size: 18px; color: #fff;
}

.asaan-float span{
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
  font-size: 14px;
}

.asaan-float i {
  color: #e1f2ff !important;
}

.asaan-float:hover{
  transform: translateY(-50%) translateX(2px);
  box-shadow: 0 16px 36px rgba(15,50,112,.32), 0 6px 14px rgba(15,50,112,.2);
  background: linear-gradient(135deg, #1976d2, #3da2ff);
}

/* Subtle pulse ring */
.asaan-float .pulse{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(25,118,210, 0.45);
  animation: asaanPulse 2.2s infinite;
  pointer-events: none;
}
@keyframes asaanPulse{
  0%   { box-shadow: 0 0 0 0 rgba(25,118,210, 0.45); }
  70%  { box-shadow: 0 0 0 16px rgba(25,118,210, 0); }
  100% { box-shadow: 0 0 0 0 rgba(25,118,210, 0); }
}

/* Keep it readable against dark hero edges */
#hero {
  position: relative; /* ensure context, if needed */
}

/* Responsive: move to bottom-left on small screens & compress label */
@media (max-width: 991.98px){
  .asaan-float{
    top: auto;
    bottom: 16px;
    transform: none;
    padding: 10px 14px;
    left: 12px;
  }
  .asaan-float span{
    font-size: 13px;
  }
}

@media (max-width: 575.98px){
  .asaan-float{
    gap: 8px;
    padding: 10px 12px;
  }
  .asaan-float span{
    font-size: 12px;
  }
}

/* ===== Asaan Connect Full-Width, Mobile-Responsive Hero ===== */
/* ===== Asaan Connect Full-Width, Mobile-Responsive Hero ===== */
.ac-hero{
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
}

/* Background image layer */
.ac-hero-media{
  position: absolute; inset: 0;
  background: url("/assets/images/asaan-inner-banner.png")
              center / cover no-repeat;
  filter: saturate(1.05) contrast(1.02) brightness(.95);
  z-index: -2;
}

/* Readability overlay */
.ac-hero-overlay{
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(25,118,210,.28), transparent 60%),
    linear-gradient(180deg, rgba(5,15,74,.55), rgba(5,15,74,.55));
  z-index: -1;
}

/* Content */
.ac-hero-body{
  color:#fff;
  padding: 64px 100px;   /* ⬅ Added 100px left/right padding */
}
.ac-hero-logo{
  height: 48px; opacity: .95;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.25));
  margin-bottom: 12px;
}
.ac-hero-title{ font-weight:800; letter-spacing:.2px; margin:6px 0 8px; }
.ac-hero-title span{ color:#8fd0ff; }
.ac-hero-sub{ margin:0 auto; max-width:820px; color:#eaf1ff; opacity:.95; }

/* Chips */
.ac-hero-chips .chip{
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; backdrop-filter: blur(6px);
  border-radius: 999px; padding: 8px 14px;
  font-weight: 600; font-size: .92rem;
}

/* CTA */
.ac-cta{
  box-shadow: 0 10px 26px rgba(15,50,112,.20);
  transition: background-color .2s ease, color .2s ease;
}
.ac-cta:hover{
  background-color: #0d6efd;
  color: #fff;
}

/* ===== Responsive crop and type ===== */
@media (max-width: 1200px){
  .ac-hero{ min-height: 380px; }
  .ac-hero-media{ background-position: 55% center; }
}
@media (max-width: 768px){
  .ac-hero{ min-height: 340px; }
  .ac-hero-body{ padding: 48px 40px; }   /* ⬅ Reduce padding on tablets */
  .ac-hero-title{ font-size: 1.6rem; }
  .ac-hero-sub{ font-size: .95rem; }
  .ac-hero-media{ background-position: 50% center; }
}
@media (max-width: 480px){
  .ac-hero{ min-height: 320px; }
  .ac-hero-body{ padding: 32px 20px; }   /* ⬅ Even smaller padding on phones */
  .ac-hero-title{ font-size: 1.35rem; }
  .ac-hero-logo{ height: 40px; }
}


.download-item { border: 1px solid #e0e0e0; border-radius: 10px; padding: 20px; margin-bottom: 15px; background: white; transition: all 0.3s ease; } .download-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-4px); } .download-item i { font-size: 1.6rem; color: #1976d2; } 
      .download-item {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  background: #fff;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.download-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.download-item i {
  font-size: 1.6rem;
  color: #1976d2;
}
.download-item .btn {
  min-width: 160px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.download-item .btn:hover {
  transform: scale(1.05);
}
.download-item .btn i {
  color: #fff !important;
}

