
    body {
      font-family: 'Poppins', sans-serif;
    }

    /* Navbar Styling */
    .navbar {
      background: #ffffff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      padding: 15px 0;
    }

    .navbar-brand {
      font-weight: 600;
      font-size: 1.5rem;
      color: #0d6efd;
    }

    .navbar-nav .nav-link {
      position: relative;
      font-weight: 500;
      margin: 0 12px;
      color: #333;
      transition: color 0.3s ease;
    }

    /* Hover underline animation */
    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      width: 0;
      height: 2px;
      background: #0d6efd;
      left: 50%;
      bottom: 0;
      transition: all 0.4s ease;
      transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after {
      width: 100%;
    }

    .navbar-nav .nav-link:hover {
      color: #0d6efd;
    }

    /* Active link */
    .navbar-nav .nav-link.active {
      color: #0d6efd;
    }

    /* Button */
    .nav-btn {
      background: #0d6efd;
      color: #fff;
      border-radius: 30px;
      padding: 8px 20px;
      transition: all 0.3s ease;
      text-decoration: none;
      font-weight: 500;
    }

    .nav-btn:hover {
      background: #084298;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(13,110,253,0.3);
    }


   /* HERO GLASS SECTION */
.hero-glass {
  width: 100%;
  position: relative;
  background: linear-gradient(120deg, #0d6efd, #6f42c1, #0dcaf0);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
  color: #fff;
  overflow: hidden;
}

/* Animated gradient */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* LEFT TEXT */
.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-text span {
  color: #ffd43b;
}

.hero-text p {
  margin: 25px 0 35px;
  font-size: 1.1rem;
  max-width: 520px;
  opacity: 0.95;
}

/* Buttons */
.hero-actions .btn {
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.35s ease;
}

.hero-actions .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.hero-actions .btn-outline-light:hover {
  background: #fff;
  color: #000;
  transform: translateY(-4px);
}

/* FLOATING GLASS CARDS */
.hero-cards {
  height: 420px;
}

.glass-card {
  position: absolute;
  width: 240px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
  animation: floatCard 5s ease-in-out infinite;
}

.glass-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.glass-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.glass-card:hover {
  transform: translateY(-12px) scale(1.05);
}

/* Card positions */
.card-1 { top: 40px; left: 80px; animation-delay: 0s; }
.card-2 { top: 170px; left: 200px; animation-delay: 1s; }
.card-3 { top: 280px; left: 60px; animation-delay: 2s; }

/* Floating animation */
@keyframes floatCard {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-text {
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cards {
    display: none;
  }
  }

  /* WHO WE ARE SECTION */
.who-we-are {
  width: 100%;
  background: linear-gradient(90deg, #ffffff 60%, #f4f7ff 40%);
  padding: 80px 0;
  overflow: hidden;
}

/* LEFT CONTENT */
.who-content {
  padding: 0 80px;
  animation: fadeUp 1.2s ease forwards;
}

.section-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 12px;
  position: relative;
}

.section-tag::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #0d6efd;
  transform: translateY(-50%);
}

.who-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}

.who-content h2 span {
  color: #0d6efd;
}

.who-content p {
  margin-top: 20px;
  font-size: 1.05rem;
  color: #555;
  max-width: 520px;
}

.who-content .muted {
  opacity: 0.8;
}

/* RIGHT CARDS */
.who-cards {
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.identity-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Accent hover line */
.identity-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: #0d6efd;
  transition: height 0.4s ease;
}

.identity-card:hover::before {
  height: 100%;
}

.identity-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 45px rgba(13, 110, 253, 0.2);
}

.identity-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.identity-card p {
  color: #555;
  margin: 0;
}

/* ANIMATION */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .who-we-are {
    background: #ffffff;
  }

  .who-content,
  .who-cards {
    padding: 30px;
  }

  .who-content {
    text-align: center;
  }

  .who-cards {
    margin-top: 40px;
  }
}


/* SERVICES SECTION */
.services-section {
  padding: 90px 0;
  background: #f8f9ff;
}

/* Section Header */
.section-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 15px auto 50px;
}

/* Service Card */
.service-card {
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Icon */
.service-card i {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 18px;
  display: inline-block;
  transition: transform 0.4s ease;
}

/* Title */
.service-card h5 {
  font-weight: 600;
  color: #1a1a1a;
}

/* Hover Effects */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 45px rgba(13, 110, 253, 0.3);
}

.service-card:hover i,
.service-card:hover h5 {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.service-card:hover i {
  transform: scale(1.2);
}

/* Button */
.services-btn {
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.35s ease;
}

.services-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.35);
}

/* Responsive */
@media (max-width: 767px) {
  .section-header h2 {
    font-size: 2.1rem;
  }
}
/* NEWSLETTER SECTION */
.newsletter-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8f9ff, #eef1ff);
}

.newsletter-box {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  animation: fadeUp 1.2s ease forwards;
}

.newsletter-box h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-box p {
  color: #666;
  margin-bottom: 30px;
}

/* Inputs */
.newsletter-box .form-control {
  border-radius: 12px;
  padding: 12px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-box .form-control:focus {
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

/* Subscribe button */
.subscribe-btn {
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.35s ease;
}

.subscribe-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.35);
}

/* Link */
.newsletter-box a {
  font-size: 0.95rem;
  color: #0d6efd;
  text-decoration: none;
}

.newsletter-box a:hover {
  text-decoration: underline;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ SECTION */
.faq-section {
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(135deg, #f8f9ff, #eef1ff);
}

/* Header */
.faq-section .section-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
}

.faq-section .section-header p {
  color: #666;
  max-width: 600px;
  margin: 15px auto 50px;
}

/* Accordion */
.faq-accordion .accordion-item {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Hover effect */
.faq-accordion .accordion-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13, 110, 253, 0.2);
}

/* Button */
.faq-accordion .accordion-button {
  font-weight: 600;
  padding: 20px 24px;
  background: transparent;
  color: #1a1a1a;
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #0d6efd;
  background: #f1f5ff;
}

/* Icon animation */
.faq-accordion .accordion-button::after {
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Body */
.faq-accordion .accordion-body {
  padding: 20px 24px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Remove default focus */
.accordion-button:focus {
  box-shadow: none;
}

/* Responsive */
@media (max-width: 767px) {
  .faq-section .section-header h2 {
    font-size: 2.1rem;
  }
}

/* CONTACT SECTION */
.contact-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #eef1ff, #ffffff);
}

/* LEFT CONTENT */
.contact-section h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.contact-section p {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #666;
}

/* FORM BOX */
.contact-form-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-form-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(13, 110, 253, 0.2);
}

/* FORM ELEMENTS */
.contact-form-box .form-control,
.contact-form-box .form-select,
.contact-form-box textarea {
  border-radius: 12px;
  padding: 12px 15px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus,
.contact-form-box textarea:focus {
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

/* BUTTON */
.contact-btn {
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.35s ease;
}

.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(13, 110, 253, 0.35);
}

/* Responsive */
@media (max-width: 991px) {
  .contact-section h2 {
    text-align: center;
  }

  .contact-section p,
  .contact-info {
    text-align: center;
  }
}


footer h4, footer h5 {
  color: #ffffff;
}

footer a {
  color: #ffffff;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffdd57;
}

footer .btn-light {
  color: #143d47;
  font-weight: 500;
  transition: all 0.3s ease;
}

footer .btn-light:hover {
  background-color: #ffdd57;
  color: #143d47;
}
