  /* ── RESET & BASE ── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --navy: #00102e;
      --blue: #1a6fd4;
      --blue-light: rgba(26, 111, 212, .08);
      --red: #f1474a;
      --green: #00c48c;
      --warm: #e89c10;
      --grad-brand: linear-gradient(135deg, #0f6194, #91c82B);
      --grad-blue: linear-gradient(135deg, #1a6fd4, #8b5cf6);
      --grad-warm: linear-gradient(135deg, #e89c10, #f1474a);
      --grad-green: linear-gradient(135deg, #00c48c, #1a6fd4);
      --text-muted: #5a6a8a;
      --border: rgba(0, 16, 46, .08);
      --card-bg: #fff;
      --surface: rgba(0, 16, 46, .02);
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--navy);
      background: #fff;
      overflow-x: hidden;
      line-height: 1.6
    }

    a {
      color: inherit;
      text-decoration: none
    }

    img {
      max-width: 100%;
      display: block
    }
    .nav-logo img{
      width:250px;
    }
    button {
      cursor: pointer;
      border: none;
      outline: none
    }

    /* ── UTILITY ── */
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px
    }

    .pad {
      padding: 96px 0
    }

    .sec-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(26, 111, 212, .08);
      color: var(--blue);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 8px 16px;
      border-radius: 100px;
      margin-bottom: 20px
    }

    .sec-title {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 500;
      line-height: 1.2;
      color: var(--navy);
      margin-bottom: 16px
    }

    .sec-title em {
      font-family: 'Dancing script', sans-serif;
      font-style: normal;
      background: var(--grad-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .sec-sub {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 640px;
      line-height: 1.75;
      margin-bottom: 48px
    }

    .divider {
      width: 60px;
      height: 4px;
      border-radius: 4px;
      background: var(--grad-blue);
      margin-bottom: 48px
    }

    .btn-g {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--grad-brand);
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      padding: 16px 32px;
      border-radius: 100px;
      transition: .2s
    }

    .btn-g:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(241, 71, 74, .3)
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 2px solid rgba(255, 255, 255, .3);
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      padding: 14px 28px;
      border-radius: 100px;
      transition: .2s
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, .1)
    }

    /* ── TOPBAR ── */
    .topbar {
      background: var(--navy);
      color: rgba(255, 255, 255, .7);
      font-size: 12px;
      padding: 10px 0;
      display: flex;
      justify-content: center;
      gap: 32px
    }

    .topbar a {
      color: rgba(255, 255, 255, .7)
    }

    .topbar a:hover {
      color: #fff
    }

    /* ── NAVBAR ── */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 0
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 82px
    }

    .nav-logo {
      font-family: 'Manrope', sans-serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--navy)
    }

    .nav-logo em {
      font-style: normal;
      background: var(--grad-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none
    }

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      transition: .2s
    }

    .nav-links a:hover {
      color: var(--navy)
    }

    .nav-cta {
      background: var(--grad-brand);
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      padding: 10px 22px;
      border-radius: 100px
    }

    .nav-cta:hover {
      opacity: .9
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      gap: 0;
      background: #fff;
      border-top: 1px solid var(--border);
      padding: 16px 24px
    }

    .mobile-nav a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 0;
      font-weight: 600;
      border-bottom: 1px solid var(--border);
      color: var(--navy)
    }

    .mobile-nav .mnav-cta {
      background: var(--grad-brand);
      color: #fff;
      padding: 14px 24px;
      border-radius: 12px;
      justify-content: center;
      margin-top: 8px;
      border: none
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: .3s
    }
    
    
    
      /* ── CONTACT ── */
    .contact-section {
      background: var(--surface)
    }

    .contact-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 48px;
      margin-top: 48px
    }

    .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 24px
    }

    .ci-item {
      display: flex;
      align-items: flex-start;
      gap: 16px
    }

    .ci-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--grad-brand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0
    }

    .ci-item h4 {
      font-family: 'Manrope', sans-serif;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 4px
    }

    .ci-item a,
    .ci-item p {
      font-size: 14px;
      color: var(--text-muted)
    }

    .ci-item a:hover {
      color: var(--blue)
    }

    .contact-form-box {
      background: #fff;
      border-radius: 24px;
      padding: 36px;
      box-shadow: 0 4px 32px rgba(0, 16, 46, .08)
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px
    }

    .fg label {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--navy)
    }

    .fg input,
    .fg select,
    .fg textarea {
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: 10px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      color: var(--navy);
      transition: .2s;
      background: #fff
    }

    .fg input:focus,
    .fg select:focus,
    .fg textarea:focus {
      outline: none;
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(26, 111, 212, .1)
    }

    .fg textarea {
      height: 100px;
      resize: vertical
    }

    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--grad-brand);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      border-radius: 12px;
      transition: .2s;
      font-family: 'Manrope', sans-serif
    }

    .form-submit:hover {
      opacity: .9;
      transform: translateY(-2px)
    }

    /* ── FOOTER ── */
    .footer {
      background: var(--navy);
      color: rgba(255, 255, 255, .7);
      padding: 64px 0 32px
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px
    }

    .footer-brand {
      font-family: 'Manrope', sans-serif;
      font-size: 22px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 16px
    }

    .footer-brand em {
      font-family: 'Dancing script', sans-serif;
      font-style: normal;
      background: var(--grad-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .footer-desc {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 20px
    }

    .footer-socials {
      display: flex;
      gap: 12px
    }

    .fs-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transition: .2s
    }

    .fs-icon:hover {
      background: var(--red);
      color: #fff
    }

    .footer h4 {
      font-family: 'Manrope', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 1.5px
    }

    .footer ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .footer ul li a {
      font-size: 13px;
      color: rgba(255, 255, 255, .55);
      transition: .2s
    }

    .footer ul li a:hover {
      color: #fff
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: gap
    }

    .footer-bottom p {
      font-size: 12px
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px
    }

    .footer-bottom-links a {
      font-size: 12px;
      color: rgba(255, 255, 255, .4)
    }

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease
    }

    .reveal.visible {
      opacity: 1;
      transform: none
    }

    .d1 {
      transition-delay: .1s
    }

    .d2 {
      transition-delay: .2s
    }

    .d3 {
      transition-delay: .3s
    }

    /* ── BACK TO TOP ── */
    .back-top {
      position: fixed;
      bottom: 80px;
      right: 24px;
      width: 44px;
      height: 44px;
      background: var(--grad-brand);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 4px 16px rgba(241, 71, 74, .4);
      cursor: pointer;
      opacity: 0;
      transform: translateY(16px);
      transition: .3s;
      z-index: 99
    }

    .back-top.show {
      opacity: 1;
      transform: none
    }

    /* Whatsap float */
    /* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float svg{
 width:80%;
}
/* Hover & Pulsing Effect */
.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.4);
}

  