  :root {
    --primary: #021363;
    --accent: #05abec;
    --gradient: linear-gradient(135deg, #021363 0%, #05abec 100%);
    --text-dark: #0a1628;
    --text-mid: #4a5568;
    --bg-light: #f7f9fc;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
  }

  /* NAVBAR */
  .navbar {
    top: 0;
    left: 0;
    z-index: 100;
    padding: 0;
    background: transparent;
  }

  .left-holder img {
    max-width: 125px;
  }

  .right-holder {
    width: 100%;
    display: flex;
    justify-content: end;
  }

  header.site-header {
    background: linear-gradient(135deg,#021363,#0560b0);
    padding: 25px 15px;
  }

  .site-header .left-holder img {
    background: #fff;
    padding: 15px;
    position: relative;
    top: -15px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0px 3px 10px hsl(0deg 0% 5.88% / 36%);
  }

  .left-holder {
    position: absolute;
    z-index: 9;
    top: -10px;
  }

  .site-header .container {
    position: relative;
  }

  .nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin-bottom: 0;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }

 /* .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
  }*/

  .nav-links a:hover {
    color: var(--accent);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  /* HERO */
  .hero {
    position: relative;
    width: 100%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
  }

  .hero-tagline-wrap {
    position: absolute;
    left: 4%;
    bottom: 13%;
    max-width: 42%;
  }

  .hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
  }

  .hero-tagline span {
    color: var(--accent);
  }

  .hero-sub {
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* SECTIONS */
  section {
    padding: 80px 0;
  }

  .section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .divider {
    width: 48px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    margin-bottom: 24px;
  }

  .section-logo {
    width: 100px;
    opacity: 0.1;
    position: absolute;
    bottom: 24px;
    right: 30px;
  }

  /* ABOUT */
  #about {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
  }

  #about::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(5, 171, 236, 0.08) 0%, transparent 70%);
    border-radius: 50%;
  }

  .about-card {
    background: white;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 4px 30px rgba(2, 19, 99, 0.07);
    border-left: 4px solid var(--accent);
    height: 100%;
  }

  .gradient-card {
    background: var(--gradient);
    border-radius: 16px;
    padding: 32px 36px;
    color: white;
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .gradient-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
  }

  .gradient-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: white;
  }

  .gradient-card p,
  .gradient-card li {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
  }

  .gradient-card ul {
    padding-left: 18px;
  }

  .core-value-card {
    background: white;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(2, 19, 99, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border-top: 3px solid var(--accent);
  }

  .core-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(2, 19, 99, 0.13);
  }

  .value-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(5, 171, 236, 0.12), rgba(2, 19, 99, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--primary);
  }

  .core-value-card h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

  .core-value-card p {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.6;
  }

  /* SERVICES */
  #services {
    background: #fff;
  }

  .service-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 30px 28px;
    transition: all 0.3s;
    border: 1px solid rgba(2, 19, 99, 0.07);
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .service-card:hover {
    background: white;
    box-shadow: 0 8px 32px rgba(2, 19, 99, 0.1);
    transform: translateY(-4px);
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 18px;
  }

  .service-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    font-size: 1rem;
  }

  .service-card ul {
    list-style: none;
    padding: 0;
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.9;
  }

  .service-card ul li::before {
    content: '\2192';
    color: var(--accent);
    margin-right: 7px;
    font-weight: 600;
  }

  /* WHY */
  .why-section {
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
  }

  .why-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
  }

  .why-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 18px 22px;
    backdrop-filter: blur(10px);
    margin-bottom: 14px;
    transition: background 0.3s;
  }

  .why-item:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .why-check {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
    flex-shrink: 0;
  }

  .why-item span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
  }

  /* TESTIMONIALS */
  #testimonials {
    background: var(--bg-light);
  }

  .testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(2, 19, 99, 0.07);
    height: 100%;
    transition: transform 0.3s;
    position: relative;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(5, 171, 236, 0.12);
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
  }

  .stars {
    color: #f5a623;
    font-size: 0.85rem;
    margin-bottom: 14px;
  }

  .testimonial-text {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .testimonial-author strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
  }

  .testimonial-author small {
    font-size: 0.78rem;
    color: var(--accent);
  }

  /* CONTACT */
  #contact {
    background: #fff;
  }

  .contact-info-card {
    background: var(--gradient);
    border-radius: 20px;
    padding: 44px 40px;
    color: white;
    height: 100%;
  }

  .contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .contact-info-card .tagline-line {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    font-style: italic;
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    color: white;
  }

  .contact-detail-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
  }

  .contact-detail-text strong {
    color: white;
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }

  .contact-form-wrap {
    background: white;
    border-radius: 20px;
    padding: 44px 40px;
    box-shadow: 0 8px 40px rgba(2, 19, 99, 0.08);
    height: 100%;
  }

  .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .form-control {
    border: 1.5px solid #e8edf5;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.88rem;
  }

  .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(5, 171, 236, 0.12);
    outline: none;
  }

  .btn-send {
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s, transform 0.2s;
    width: 100%;
  }

  .btn-send:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white;
  }

  /* FOOTER */
  .footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0 24px;
    text-align: center;
  }

  .footer-logo {
    width: 100px;
    opacity: 0.85;
    margin-bottom: 16px;
    /*filter: invert(1);*/
  }

  .footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
    font-style: italic;
  }

  .footer-links {
    margin-bottom: 20px;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.78rem;
    margin: 0 14px;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: var(--accent);
  }

  .footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
  }

  .hero {
    padding: 0;
  }

  .hero-text-container {
    position: absolute;
    top: 30%;
    width: 100%;
  }

  span.carousel-control-prev-icon {
    background-color: #1b1b1b;
    margin-left: -79px;
    border-radius: 100%;
    padding: 20px;
    background-size: 25px;
  }

  .carousel-control-next-icon {
    background-color: #1b1b1b;
    margin-right: -79px;
    border-radius: 100%;
    padding: 20px;
    background-size: 25px;
  }

  .hero-tagline {
    padding-left: 60px;
    text-shadow: 0px 1px 0px rgb(0 0 0 / 31%);
}

  @media (max-width: 992px) {
    .hero-tagline {
      font-size: 36px;
    }

    .carousel-control-next-icon {
      margin-right: 0;
    }

    span.carousel-control-prev-icon {
      margin-left: 0;
    }

  }

  @media (max-width: 768px) {
    .nav-links {
      gap: 10px;
    }

    .nav-links a {
      font-size: 0.75rem;
      letter-spacing: 0.8px;
    }

    .section-title {
      font-size: 1.6rem;
    }

    .hero-tagline {
        font-size: 22px;
        margin-left: 0;
        padding-left: 70px;
    }

    .hero-tagline-wrap {
      max-width: 60%;
    }

    .contact-form-wrap,
    .contact-info-card {
      padding: 30px 24px;
    }

    .core-value-card {
      margin-bottom: 16px;
    }

    .navbar-collapse {
      position: absolute;
      right: 27px;
      top: 46px;
      z-index: 99;
      background: #021266;
      width: 199px;
      border-radius: 20px;
      padding: 15px;
      box-shadow: 0px 10px 8px rgb(7 7 7 / 57%);
    }

    button.navbar-toggler {
      background: #fff;
    }

    .nav-links {
      margin-bottom: 0;
      flex-direction: column;
      padding-left: 0;
    }
    header.site-header {
    padding: 15px;
}

    .hero-text-container {
        position: initial;
        text-align: center;
        background: #044595;
        color: #fff;
        padding: 20px 15px;
    }
    .hero-tagline {
        margin-left: 0;
        padding-left: 0;
                color: #fff;
    }
    .hero-tagline span {
    color: #ffffff;
}
.carousel-control-next, .carousel-control-prev {
    top: -130px;

  }
  section {
    padding: 30px 0;
}
.mb-5 {
    margin-bottom: 1rem !important;
}

}

.responseMsg{
  padding-top{
    padding-top: 20px;
  }
}

.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    text-align:center;
    font-size:32px;
    line-height:60px;
    box-shadow:0 4px 12px rgba(0,0,0,.3);
    z-index:9999;
    transition:all .3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    color:#fff;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    padding-bottom: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #05abec;
    color: #fff;
}
/* Error Message */ label.error { color: #dc3545; font-size: 13px; margin-top: 5px; display: block; font-weight: 500; } /* Invalid Field */ .form-control.error, select.error, textarea.error { border: 1px solid #dc3545 !important; box-shadow: none; } /* Valid Field */ .form-control.valid, select.valid, textarea.valid { border: 1px solid #198754 !important; box-shadow: none; }
.email-error,.error{ color:#dc3545; }
#responseMsg{
  display: block;
    margin-top: 20px;  
}
    