:root {
      --blue: #075b82;
      --cyan: #08a9d8;
      --dark: #08384f;
      --light: #eefaff;
      --text: #38515e;
      --white: #fff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: #fff;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit
    }

    .container {
      width: min(1160px, 92%);
      margin: auto
    }

    /* Floating background animation */
    .bg-shape {
      position: fixed;
      border-radius: 50%;
      filter: blur(2px);
      opacity: .14;
      pointer-events: none;
      z-index: -1;
      animation: float 9s ease-in-out infinite;
    }

    .shape1 {
      width: 260px;
      height: 260px;
      background: var(--cyan);
      right: -90px;
      top: 150px
    }

    .shape2 {
      width: 180px;
      height: 180px;
      background: var(--blue);
      left: -70px;
      top: 55%;
      animation-delay: 2s
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0) rotate(0)
      }

      50% {
        transform: translateY(-35px) rotate(12deg)
      }
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(12px);
      box-shadow: 0 3px 20px rgba(0, 50, 80, .09);
    }

    .navbar {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px
    }

    .brand img {
      width: 68px;
      height: 62px;
      object-fit: contain
    }

    .brand-title {
      font-size: 21px;
      font-weight: 800;
      color: var(--blue)
    }

    .brand-sub {
      font-size: 12px;
      color: #6c7d85;
      margin-top: 2px
    }

    nav {
      display: flex;
      gap: 26px
    }

    nav a {
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      position: relative;
      padding: 8px 0;
    }

    nav a:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--cyan);
      transition: .3s;
    }

    nav a:hover:after {
      width: 100%
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      color: #fff;
      padding: 13px 23px;
      border-radius: 30px;
      font-weight: 800;
      box-shadow: 0 10px 24px rgba(8, 130, 170, .22);
      transition: .3s;
      border: 0;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(8, 130, 170, .3)
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: calc(100vh - 82px);
      display: flex;
      align-items: center;
      background:
        radial-gradient(circle at 85% 25%, rgba(8, 169, 216, .15), transparent 28%),
        linear-gradient(135deg, #f6fdff 0%, #e5f8fd 100%);
      overflow: hidden;
    }

    .hero:before {
      content: "";
      position: absolute;
      right: -160px;
      bottom: -190px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      border: 80px solid rgba(7, 91, 130, .08);
      animation: pulseRing 5s ease-in-out infinite;
    }

    @keyframes pulseRing {
      50% {
        transform: scale(1.08)
      }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      align-items: center;
      gap: 55px;
      position: relative;
      z-index: 1;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 15px;
      border-radius: 30px;
      background: #d9f5fc;
      color: var(--blue);
      font-weight: 800;
      font-size: 13px;
      animation: fadeUp .8s ease both;
    }

    .badge i {
      width: 8px;
      height: 8px;
      background: #20c979;
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 0 6px rgba(32, 201, 121, .12)
    }

    h1 {
      margin-top: 20px;
      font-size: clamp(42px, 6vw, 72px);
      line-height: 1.02;
      color: var(--dark);
      animation: fadeUp .9s .12s ease both;
    }

    h1 span {
      color: var(--cyan)
    }

    .hero-text {
      max-width: 650px;
      font-size: 18px;
      line-height: 1.8;
      margin: 24px 0 30px;
      color: #526c78;
      animation: fadeUp .9s .22s ease both;
    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp .9s .32s ease both
    }

    .btn-outline {
      padding: 12px 22px;
      border: 2px solid var(--blue);
      border-radius: 30px;
      color: var(--blue);
      font-weight: 800;
      transition: .3s;
    }

    .btn-outline:hover {
      background: var(--blue);
      color: #fff;
      transform: translateY(-3px)
    }

    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 450px;
      animation: zoomIn 1s .2s ease both;
    }

    /* Slider */
    .hero-slider {
      position: relative;
      width: 100%;
      max-width: 560px;
      height: 420px;
      overflow: hidden;
      border-radius: 25px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    }

    .hero-slider .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.7s ease;
    }

    .hero-slider .slide.active {
      opacity: 1;
      visibility: visible;
    }

    .hero-slider .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Dark overlay */
    .hero-slider .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.05),
          rgba(0, 0, 0, 0.25));
    }

    /* Slider buttons */
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      color: #333;
      font-size: 22px;
      cursor: pointer;
      z-index: 5;
      transition: 0.3s;
    }

    .slider-btn:hover {
      transform: translateY(-50%) scale(1.1);
    }

    .slider-btn.prev {
      left: 15px;
    }

    .slider-btn.next {
      right: 15px;
    }

    /* Dots */
    .slider-dots {
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 5;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.6);
      cursor: pointer;
      transition: 0.3s;
    }

    .dot.active {
      width: 28px;
      border-radius: 10px;
      background: #fff;
    }

    /* Logo card */
    .logo-card {
      position: absolute;
      z-index: 6;
      background: rgba(255, 255, 255, 0.96);
      padding: 20px 28px;
      border-radius: 18px;
      text-align: center;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      backdrop-filter: blur(10px);
    }

    .logo-card img {
      width: 90px;
      height: 90px;
      object-fit: contain;
    }

    .logo-card h3 {
      margin: 8px 0 3px;
    }

    .logo-card p {
      margin: 0;
      font-size: 14px;
      color: #666;
    }

    /* Floating bubbles */
    .floating-bubble {
      position: absolute;
      z-index: 7;
      padding: 12px 18px;
      background: #fff;
      border-radius: 30px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      font-weight: 600;
      font-size: 14px;
    }

    .bubble1 {
      left: 0;
      top: 20%;
    }

    .bubble2 {
      right: 0;
      bottom: 20%;
    }

    /* Mobile */
    @media (max-width: 768px) {

      .hero-visual {
        min-height: 360px;
      }

      .hero-slider {
        height: 330px;
        border-radius: 20px;
      }

      .logo-card {
        padding: 12px 18px;
      }

      .logo-card img {
        width: 65px;
        height: 65px;
      }

      .logo-card h3 {
        font-size: 17px;
      }

      .logo-card p {
        font-size: 12px;
      }

      .floating-bubble {
        font-size: 11px;
        padding: 9px 12px;
      }

      .bubble1 {
        left: -5px;
      }

      .bubble2 {
        right: -5px;
      }
    }

    .logo-card {
      width: min(410px, 100%);
      padding: 35px;
      border-radius: 35px;
      background: rgba(255, 255, 255, .8);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, .9);
      box-shadow: 0 30px 70px rgba(0, 70, 100, .16);
      text-align: center;
      position: relative;
    }

    .logo-card:before {
      content: "";
      position: absolute;
      inset: -10px;
      border-radius: 43px;
      border: 1px solid rgba(8, 169, 216, .18);
      animation: spin 14s linear infinite;
    }

    .logo-card img {
      width: 270px;
      max-width: 90%;
      position: relative
    }

    .logo-card h3 {
      color: var(--blue);
      font-size: 24px;
      margin-top: 12px
    }

    .logo-card p {
      margin-top: 5px;
      color: #71828a
    }

    .floating-bubble {
      position: absolute;
      background: #fff;
      border-radius: 16px;
      padding: 12px 16px;
      font-weight: 800;
      color: var(--blue);
      box-shadow: 0 12px 30px rgba(0, 50, 80, .14);
      animation: bob 4s ease-in-out infinite;
    }

    .bubble1 {
      left: -25px;
      top: 20%;
      animation-delay: 1s
    }

    .bubble2 {
      right: -20px;
      bottom: 18%;
      animation-delay: 2s
    }

    @keyframes bob {
      50% {
        transform: translateY(-13px)
      }
    }

    @keyframes spin {
      to {
        transform: rotate(360deg)
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    @keyframes zoomIn {
      from {
        opacity: 0;
        transform: scale(.85)
      }

      to {
        opacity: 1;
        transform: scale(1)
      }
    }

    /* Stats */
    .stats {
      margin-top: -35px;
      position: relative;
      z-index: 5;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 18px 45px rgba(0, 55, 80, .12);
      overflow: hidden;
    }

    .stat {
      text-align: center;
      padding: 25px 15px;
      border-right: 1px solid #e7f0f3
    }

    .stat:last-child {
      border: 0
    }

    .stat strong {
      display: block;
      font-size: 27px;
      color: var(--blue)
    }

    .stat span {
      font-size: 13px;
      color: #72858d
    }

    /* Sections */
    section {
      padding: 95px 0
    }

    .section-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 50px
    }

    .kicker {
      color: var(--cyan);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 2px
    }

    .section-head h2 {
      font-size: 42px;
      color: var(--dark);
      margin: 8px 0 12px
    }

    .section-head p {
      color: #6c7f88;
      line-height: 1.7
    }

    /* Services */
    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px
    }

    .service {
      position: relative;
      overflow: hidden;
      padding: 32px;
      border: 1px solid #e4eef2;
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 8px 25px rgba(0, 55, 80, .055);
      transition: .35s;
    }

    .service:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
      transform: scaleX(0);
      transform-origin: left;
      transition: .35s;
    }

    .service:hover {
      transform: translateY(-9px);
      box-shadow: 0 20px 40px rgba(0, 55, 80, .12)
    }

    .service:hover:before {
      transform: scaleX(1)
    }

    .icon {
      width: 62px;
      height: 62px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      font-size: 28px;
      background: #e6f8fd;
      margin-bottom: 20px;
      transition: .35s;
    }

    .service:hover .icon {
      transform: rotate(-6deg) scale(1.08)
    }

    .service h3 {
      color: var(--blue);
      font-size: 21px;
      margin-bottom: 9px
    }

    .service p {
      color: #687b84;
      line-height: 1.65
    }

    /* About */
    .about {
      background: linear-gradient(135deg, #f1fbfe, #e8f7fb)
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 55px;
      align-items: center
    }

    .about-image {
      min-height: 400px;
      border-radius: 28px;
      background: #fff;
      display: grid;
      place-items: center;
      box-shadow: 0 20px 50px rgba(0, 70, 100, .1);
      position: relative;
      overflow: hidden;
    }

    .about-image img {
      width: 270px;
      animation: bob 5s ease-in-out infinite
    }

    .about-image:after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border: 35px solid rgba(8, 169, 216, .07);
      border-radius: 50%;
    }

    .about-copy h2 {
      font-size: 42px;
      color: var(--dark);
      margin: 8px 0 18px
    }

    .about-copy p {
      line-height: 1.8;
      color: #5d727c
    }

    .checks {
      list-style: none;
      margin-top: 24px
    }

    .checks li {
      margin: 13px 0;
      font-weight: 700;
      color: var(--dark)
    }

    .checks li:before {
      content: "✓";
      display: inline-grid;
      place-items: center;
      width: 25px;
      height: 25px;
      margin-right: 10px;
      border-radius: 50%;
      color: #fff;
      background: var(--cyan);
      font-size: 13px;
    }

    /* Why */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px
    }

    .why {
      text-align: center;
      padding: 34px;
      border-radius: 20px;
      background: #f7fcfd;
      transition: .3s
    }

    .why:hover {
      transform: translateY(-7px);
      background: #eefaff
    }

    .why .icon {
      margin: 0 auto 18px
    }

    .why h3 {
      color: var(--blue);
      margin-bottom: 8px
    }

    .why p {
      color: #6b7d85
    }

    /* CTA */
    .cta {
      padding: 65px 0;
      background: linear-gradient(135deg, var(--blue), #087ca7);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .cta:before,
    .cta:after {
      content: "";
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .15);
    }

    .cta:before {
      width: 380px;
      height: 380px;
      right: -150px;
      top: -200px
    }

    .cta:after {
      width: 250px;
      height: 250px;
      left: -100px;
      bottom: -150px
    }

    .cta-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      position: relative;
      z-index: 1
    }

    .cta h2 {
      font-size: 38px
    }

    .cta p {
      color: #dceff6;
      margin-top: 8px
    }

    .cta .btn {
      background: #fff;
      color: var(--blue)
    }

    /* Contact */
    .contact {
      background: #f6fbfd
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 35px
    }

    .contact-card,
    .contact-form {
      background: #fff;
      border-radius: 22px;
      padding: 35px;
      box-shadow: 0 12px 35px rgba(0, 55, 80, .07);
    }

    .contact-card h3 {
      font-size: 28px;
      color: var(--blue);
      margin-bottom: 15px
    }

    .contact-item {
      display: flex;
      gap: 15px;
      margin: 22px 0;
      align-items: flex-start
    }

    .contact-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: #e5f8fd;
      flex: none;
    }

    .contact-item strong {
      display: block;
      color: var(--dark)
    }

    .contact-item span {
      color: #687d86;
      font-size: 14px
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 14px 15px;
      border: 1px solid #dce9ed;
      border-radius: 10px;
      font: inherit;
      outline: none;
      margin-bottom: 14px;
      transition: .25s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 4px rgba(8, 169, 216, .1)
    }

    .contact-form textarea {
      min-height: 135px;
      resize: vertical
    }

    .contact-form button {
      width: 100%
    }

    /* Footer */
    footer {
      background: #063b55;
      color: #d9edf4;
      padding: 27px 0
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      font-size: 14px
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(35px);
      transition: opacity .8s ease, transform .8s ease
    }

    .reveal.show {
      opacity: 1;
      transform: none
    }

    /* Mobile */
    @media(max-width:900px) {
      nav {
        display: none
      }

      .hero-grid,
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr
      }

      .hero {
        padding: 70px 0
      }

      .hero-visual {
        margin-top: 20px
      }

      .services,
      .why-grid {
        grid-template-columns: 1fr 1fr
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr
      }

      .stat:nth-child(2) {
        border-right: 0
      }

      .stat:nth-child(-n+2) {
        border-bottom: 1px solid #e7f0f3
      }

      .cta-inner {
        flex-direction: column;
        text-align: center
      }
    }

    @media(max-width:600px) {
      .brand img {
        width: 55px
      }

      .brand-title {
        font-size: 17px
      }

      .navbar>.btn {
        padding: 10px 15px;
        font-size: 13px
      }

      h1 {
        font-size: 44px
      }

      .section-head h2,
      .about-copy h2 {
        font-size: 34px
      }

      .services,
      .why-grid,
      .form-row {
        grid-template-columns: 1fr
      }

      section {
        padding: 70px 0
      }

      .stats {
        margin-top: -20px
      }

      .stat {
        padding: 20px 10px
      }

      .stat strong {
        font-size: 23px
      }

      .floating-bubble {
        display: none
      }
    }


    /* new update */

    .btn-ghost-ae {
      background: transparent;
      /* border: 1px solid black; */
      /* border-color: var(--ocean); */
      color: var(--navy);
      border: 1px solid black;
    }

    .btn-ghost-ae:hover {
      /* border-color: var(--ocean); */
      background: linear-gradient(135deg, var(--blue), var(--cyan));
      transform: translateY(-3px);
    }

    /* ---------------- Floating WhatsApp ---------------- */
    .fab-wa {
      position: fixed;
      right: 1.6rem;
      bottom: 1.6rem;
      z-index: 900;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
      animation: pulse 2.6s infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
      }

      70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    .back-top {
      position: fixed;
      right: 1.6rem;
      bottom: 6rem;
      z-index: 900;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-card);
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: all .35s var(--ease);
    }

    .back-top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }


    /* ---------------- Footer ---------------- */
    footer {
      background: var(--dark);
      color: #CFE3EF;
      padding: 4.5rem 0 0;
      position: relative;
      overflow: hidden;
    }

    footer .fgrid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 2.5rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer .brand .word {
      color: #fff;
    }

    footer .brand .word small {
      color: var(--sky-soft);
    }

    footer p.desc {
      color: #9FB6C7;
      font-size: 0.92rem;
      margin-top: 1rem;
      max-width: 280px;
    }

    footer h5 {
      color: #fff;
      font-family: var(--font-display);
      font-size: 1rem;
      margin-bottom: 1.1rem;
    }

    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 0.7rem;
    }

    footer ul a {
      color: #B9CEDC;
      font-size: 0.92rem;
      transition: color .3s ease, padding-left .3s ease;
    }

    footer ul a:hover {
      color: #fff;
      padding-left: 4px;
    }

    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.6rem 0;
      font-size: 0.82rem;
      color: #82A0B4;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .foot-bottom a {
      color: #82A0B4;
    }

    .social-row {
      display: flex;
      gap: 0.7rem;
      margin-top: 1rem;
    }

    .social-row a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .3s ease, transform .3s ease;
    }

    .social-row a:hover {
      background: var(--sky);
      transform: translateY(-3px);
    }

    .container-nar {
      max-width: 1120px;
      margin-inline: auto;
      padding-inline: 1.25rem;
    }

    /* =========================
   FOOTER RESPONSIVE DESIGN
========================= */

    footer {
      width: 100%;
      overflow: hidden;
    }

    .container-nar {
      width: min(1200px, 92%);
      margin: 0 auto;
    }

    .fgrid {
      display: grid;
      grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
      gap: 45px;
      align-items: start;
    }

    /* Brand */
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .brand img {
      width: 58px;
      height: 58px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .brand .word {
      display: flex;
      flex-direction: column;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.2;
    }

    .brand .word small {
      margin-top: 4px;
      font-size: 11px;
      font-weight: 500;
      opacity: 0.75;
    }

    /* Description */
    .fgrid .desc {
      max-width: 350px;
      line-height: 1.7;
      margin: 18px 0;
    }

    /* Social icons */
    .social-row {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .social-row a {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-row a:hover {
      transform: translateY(-4px);
    }

    /* Footer headings */
    .fgrid h5 {
      margin: 0 0 18px;
      font-size: 18px;
      font-weight: 700;
    }

    /* Footer lists */
    .fgrid ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .fgrid ul li {
      margin-bottom: 11px;
      line-height: 1.6;
      word-break: break-word;
    }

    .fgrid ul li a {
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .fgrid ul li a:hover {
      padding-left: 5px;
    }

    .fgrid ul li i {
      width: 18px;
    }

    /* Bottom footer */
    .foot-bottom {
      margin-top: 40px;
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 15px;
      /* border-top: 1px solid rgba(255, 255, 255, 0.15); */
      font-size: 13px;
    }

    .foot-bottom span {
      line-height: 1.6;
    }

    .foot-bottom strong {
      font-weight: 700;
    }


    /* =========================
   TABLET
========================= */

    @media (max-width: 992px) {

      .fgrid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 30px;
      }

      .fgrid>div:first-child {
        grid-column: 1 / -1;
      }

      .fgrid .desc {
        max-width: 600px;
      }

      .foot-bottom {
        flex-direction: column;
        text-align: center;
      }
    }


    /* =========================
   MOBILE
========================= */

    @media (max-width: 600px) {

      .container-nar {
        width: 90%;
      }

      .fgrid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .fgrid>div:first-child {
        grid-column: auto;
      }

      /* Brand */
      .brand {
        gap: 10px;
      }

      .brand img {
        width: 52px;
        height: 52px;
      }

      .brand .word {
        font-size: 18px;
      }

      .brand .word small {
        font-size: 10px;
      }

      /* Description */
      .fgrid .desc {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
        margin: 15px 0;
      }

      /* Social */
      .social-row {
        gap: 12px;
      }

      .social-row a {
        width: 40px;
        height: 40px;
      }

      /* Sections */
      .fgrid h5 {
        font-size: 17px;
        margin-bottom: 13px;
      }

      .fgrid ul li {
        font-size: 14px;
        margin-bottom: 9px;
      }

      /* Bottom */
      .foot-bottom {
        margin-top: 25px;
        padding: 18px 0;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 12px;
      }
    }


    /* =========================
   VERY SMALL MOBILE
========================= */

    @media (max-width: 380px) {

      .container-nar {
        width: 92%;
      }

      .brand img {
        width: 46px;
        height: 46px;
      }

      .brand .word {
        font-size: 16px;
      }

      .brand .word small {
        font-size: 9px;
      }

      .fgrid {
        gap: 24px;
      }

      .fgrid ul li {
        font-size: 13px;
      }

      .foot-bottom {
        font-size: 11px;
      }
    }


    /* ================================
   FIND US / GOOGLE MAP SECTION
================================ */

    .sec {
      width: 100%;
      padding: 80px 0;
    }

    .sec-tint {
      background: #f7f9fc;
    }

    .container-nar {
      width: min(1200px, 92%);
      margin: 0 auto;
    }

    /* Section Header */
    .sec-head {
      margin-bottom: 40px;
    }

    .sec-head.center {
      text-align: center;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 10px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #e67e22;
    }

    .sec-head h2 {
      margin: 0;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.15;
      font-weight: 800;
      color: #172033;
    }

    /* Google Map Wrapper */
    .ratio {
      position: relative;
      width: 100%;
    }

    .ratio-21x9 {
      aspect-ratio: 21 / 9;
      min-height: 350px;
      background: #e9edf3;
      border-radius: var(--radius-lg, 20px);
      overflow: hidden;
      box-shadow: var(--shadow-card, 0 15px 40px rgba(0, 0, 0, 0.10));
    }

    /* Google Map */
    .ratio-21x9 iframe {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Reveal Animation */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    }

    .reveal.active,
    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* ================================
   TABLET
================================ */

    @media (max-width: 992px) {

      .sec {
        padding: 65px 0;
      }

      .sec-head {
        margin-bottom: 30px;
      }

      .ratio-21x9 {
        aspect-ratio: 16 / 8;
        min-height: 320px;
      }

    }

    /* ================================
   MOBILE
================================ */

    @media (max-width: 576px) {

      .sec {
        padding: 50px 0;
      }

      .container-nar {
        width: 92%;
      }

      .sec-head {
        margin-bottom: 25px;
      }

      .eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
      }

      .sec-head h2 {
        font-size: 28px;
        line-height: 1.25;
      }

      .ratio-21x9 {
        aspect-ratio: 4 / 3;
        min-height: 300px;
        border-radius: 16px;
      }

    }

    /* =================================
   REVIEW QR SECTION
================================= */

.review-section {
  position: relative;
  padding: 90px 20px;
  background: #f7f9fc;
  overflow: hidden;
}

.review-container {
  width: min(1100px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  gap: 70px;
}

/* Left Content */

.review-content {
  max-width: 620px;
}

.review-eyebrow {
  display: inline-block;
  margin-bottom: 14px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #e67e22;
}

.review-content h2 {
  margin: 0 0 20px;

  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 800;

  color: #172033;
}

.review-content > p {
  margin: 0;

  max-width: 570px;

  font-size: 17px;
  line-height: 1.8;

  color: #667085;
}


/* Review Points */

.review-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.review-point {
  display: flex;
  align-items: center;
  gap: 9px;
}

.review-point span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;

  border-radius: 50%;

  background: #e67e22;
  color: #fff;

  font-size: 13px;
  font-weight: 700;
}

.review-point p {
  margin: 0;

  font-size: 14px;
  font-weight: 600;
  color: #344054;
}


/* =================================
   QR CARD
================================= */

.review-qr-card {
  position: relative;

  padding: 35px 30px;

  text-align: center;

  background: #ffffff;

  border-radius: 24px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.10);

  border: 1px solid rgba(0, 0, 0, 0.05);

  overflow: hidden;

  z-index: 1;
}

.qr-glow {
  position: absolute;

  width: 180px;
  height: 180px;

  top: -90px;
  right: -90px;

  border-radius: 50%;

  background: rgba(230, 126, 34, 0.10);

  z-index: -1;
}


/* QR Image */

.qr-image {
  width: 230px;
  height: 230px;

  margin: 0 auto 22px;

  padding: 12px;

  background: #fff;

  border-radius: 16px;

  border: 1px solid #e5e7eb;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.qr-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
}


/* QR Heading */

.review-qr-card h3 {
  margin: 0 0 8px;

  font-size: 22px;
  font-weight: 800;

  color: #172033;
}

.review-qr-card p {
  margin: 0;

  font-size: 14px;

  color: #667085;
}


/* Stars */

.review-stars {
  display: block;

  margin-top: 15px;

  font-size: 20px;
  letter-spacing: 4px;

  color: #f5a623;
}


/* =================================
   HOVER EFFECT
================================= */

.review-qr-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.review-qr-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.14);
}


/* =================================
   TABLET
================================= */

@media (max-width: 900px) {

  .review-container {
    grid-template-columns: 1fr;
    gap: 45px;
    text-align: center;
  }

  .review-content {
    max-width: 700px;
    margin: auto;
  }

  .review-content > p {
    margin: auto;
  }

  .review-points {
    justify-content: center;
  }

  .review-qr-card {
    width: min(400px, 100%);
    margin: auto;
  }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 576px) {

  .review-section {
    padding: 60px 16px;
  }

  .review-content h2 {
    font-size: 32px;
  }

  .review-content > p {
    font-size: 15px;
    line-height: 1.7;
  }

  .review-points {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .review-qr-card {
    padding: 28px 20px;
  }

  .qr-image {
    width: 210px;
    height: 210px;
  }
}