    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #ffffff;
      font-family: "Ubuntu", sans-serif;
    }

    /* =============================NAVBAR=============================== */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      /* fully transparent at start */
      box-shadow: none;
      /* no shadow initially */
      border-bottom: none;
      /* prevent any thin line */
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: background 0.4s ease, box-shadow 0.4s ease;
    }

    /* When scrolled */
    nav.scrolled {
      background: #ffffff;
      /* white background */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      /* soft shadow only after scroll */
    }



    /* Left section = logo + links */
    .nav-left {
      display: flex;
      align-items: center;
      gap: 30px;
      padding: 0px 5px;
    }

    .mainlogo img {
      height: 62px;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .nav-links li a {
      text-decoration: none;
      color: #333;
      font-size: 16px;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 6px 12px;
      border-radius: 8px;
    }

    .nav-links li a:hover {
      color: #ff8300
    }

    /* Right section = CTA button + phone */
    .nav-right {
      position: relative;
      /* make it the container */
      padding: 7px;
      text-align: center;
      border-radius: 100% 0% 71% 29% / 0% 100% 0% 100%;
      background: rgba(255, 255, 255, 0);
      /* base white */
      color: #333;

      display: flex;
      align-items: center;
      gap: 10px;

      overflow: hidden;
      /* ⬅️ keeps animation INSIDE shape */
      transition: color 0.5s ease;
    }

    /* gradient overlay */
    .nav-right::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      /* start at right edge */
      width: 0%;
      /* hidden initially */
      height: 100%;
      background: #ff8300;
      border-radius: inherit;
      /* match nav-right shape */
      z-index: 0;
      transition: width 1s ease-in-out;
    }

    .nav-right:hover::before {
      width: 100%;
      /* expands fully from right → left */
    }

    .nav-right * {
      position: relative;
      /* keep text/icon above gradient */
      z-index: 1;
    }

    .nav-right .phone {
      color: #000000;
      transition: color 1.5s ease;
    }

    .nav-right:hover .phone {
      color: white;
    }

    .agent-icon img {
      display: block;
      height: 45px;
      margin-left: 35px;
      transition: filter 3s ease;
    }

    .nav-right:hover .agent-icon img {
      filter: brightness(0) invert(1);
      /* turns white */
    }




    /* Mobile toggle */
    .menu-toggle {
      display: none;
      font-size: 28px;
      color: #333;
      cursor: pointer;
    }

    @media (max-width: 900px) {
      .nav-left {
        flex: 1;
        justify-content: space-between;
      }
      .mainlogo img {
        height: 50px;
      }

      /* Mobile Nav - Slide in from right */
      .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;

        position: fixed;
        top: 0;
        right: -100%;
        /* hidden off-screen */
        height: 100vh;
        width: 70%;
        background: #fff;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        padding: 60px 30px;

        transition: right 0.4s ease-in-out, opacity 0.4s ease-in-out;
        opacity: 0;
        z-index: 1001;
        /* higher than overlay */
      }

      .nav-links.active {
        right: 0;
        opacity: 1;
      }

      /* Each nav item animation */
      .nav-links li {
        border: none;
        transform: translateX(30px);
        opacity: 0;
        transition: all 0.4s ease;
      }

      .nav-links.active li {
        transform: translateX(0);
        opacity: 1;
      }

      .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
      }

      .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
      }

      .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
      }

      .nav-links li a {
        display: block;
        font-size: 20px;
        font-weight: 600;
        color: #333;
        padding: 12px 0;
        transition: color 0.3s ease;
      }

      .nav-links li a:hover {
        color: #ff8300;
      }

      /* Hamburger stays */
      .menu-toggle {
        display: block;
        font-size: 30px;
        cursor: pointer;
        color: #ff8300;
        z-index: 1002;
        /* above overlay */
      }

      /* Overlay behind menu */
      .nav-overlay {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 1000;
      }

      .nav-links.active~.nav-overlay {
        opacity: 1;
        pointer-events: auto;
        /* clickable */
      }

      /* Hide CTA on mobile */
      .nav-right {
        display: none;
      }
    }


    /* ==================================END NAVBAR=============================== */


















    /* =================STICKYBUTTON================= */
    .sticky-quote-btn {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: linear-gradient(135deg, #ff7b00, #ff9500);
      color: #fff;
      font-size: 1.1rem;
      font-weight: 600;
      padding: 16px 35px;
      border-radius: 50px;
      box-shadow: 0 8px 20px rgba(255, 123, 0, 0.3);
      text-decoration: none;
      transition: all 0.3s ease, opacity 0.4s ease;
      z-index: 999;
      animation: pulseBtn 2s infinite;

      opacity: 0;
      /* hidden initially */
      pointer-events: none;
      /* not clickable */
    }

    .sticky-quote-btn.show {
      opacity: 1;
      pointer-events: auto;
    }

    /* Hover effect */
    .sticky-quote-btn:hover {
      background: linear-gradient(135deg, #e96a00, #ff7b00);
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 12px 28px rgba(255, 123, 0, 0.35);
    }

    /* Subtle pulsing animation */
    @keyframes pulseBtn {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 123, 0, 0.4);
      }

      70% {
        box-shadow: 0 0 0 20px rgba(255, 123, 0, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(255, 123, 0, 0);
      }
    }

    /* ==============STICKYBUTTONEND================== */






















    /* =================================MAIN=============================== */
    /* Hero Layout */
    .hero {
      position: relative;
      display: flex;
      flex-direction: column;
      /* stack vertically */
      justify-content: center;
      /* center vertically */
      align-items: center;
      /* center horizontally */
      padding: 80px 8%;
      min-height: 100vh;
      overflow: hidden;
      /* Layered background: static center + animated edges */
      background:
        radial-gradient(circle at center, #ffffff 60%, transparent 100%),
        /* bigger calm center */
        linear-gradient(-45deg, #f69153, #f9fafc, #fff4eb, #e99b4d);
      background-size: 100% 100%, 500% 500%;
      /* bigger spread */
      background-position: center, top right;
      animation: edgeDiagonalMove 16s ease-in-out infinite;
      /* slower + smoother */
      text-align: center;
    }

    .hero-text-sections {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 0 auto 35px auto;
      min-height: 60px;
      position: relative;
    }

    .text-group {
      display: none;
      justify-content: center;
      gap: 20px;
    }

    .text-group.active {
      display: flex;
      animation: fadeIn 1s ease-in-out;
    }


.text-item {
  flex: 1;
  background: linear-gradient(135deg, #0a1f44, #003366);
  padding: 15px;
  border-radius: 22px;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Center text vertically & horizontally */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; /* just in case multi-line */
}


    .text-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    /* visible by default on load */
    .text-item span {
      display: inline-block;
      opacity: 1;
      transform: translateY(0);
      transition: opacity 350ms ease, transform 350ms ease;
      will-change: opacity, transform;
    }

    /* apply to fade OUT */
    .text-item span.hidden {
      opacity: 0;
      transform: translateY(10px);
    }


    @keyframes fadeInText {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }






    /* Gradient animation */
    @keyframes edgeDiagonalMove {
      0% {
        background-position: center, top right;
      }

      50% {
        background-position: center, bottom left;
      }

      100% {
        background-position: center, top right;
      }
    }

    /* Left Text */
    .hero-left {
      max-width: 900px;
      z-index: 2;
      animation: fadeUp 1s ease-out forwards;

    }

    .hero-left h1 {
      font-size: 2.4rem;
      color: #0a1f44;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 600;
      position: relative;
      /* background: linear-gradient(135deg, #ff7b00, #ff9f40); */
      padding: 20px;
      border-radius: 40px;
      overflow: hidden;
      /* ensure shine stays inside box */
    }

    /* Shine overlay */
    .hero-left h1::before {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      /* start off-screen */
      width: 20%;
      height: 100%;
      background: linear-gradient(120deg,
          rgba(255, 255, 255, 0.2) 0%,
          rgba(255, 255, 255, 0.6) 50%,
          rgba(255, 255, 255, 0.2) 100%);
      transform: skewX(-25deg);
      animation: shine 3s infinite;
    }

    /* Keyframes for shine */
    @keyframes shine {
      0% {
        left: -75%;
      }

      100% {
        left: 125%;
      }
    }

    .hero-slider {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      opacity: 0;
      transition: opacity 2s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
      z-index: 2;
    }

    #heroSlider1 {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
      opacity: 1;
      transition: opacity 3s ease-in-out;
    }

    .fade-out1 {
      opacity: 0;
    }


    #heroSlider2 {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
      opacity: 1;
      transition: opacity 3s ease-in-out;
    }

    .fade-out2 {
      opacity: 0;
    }

    .hero-circle-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
      opacity: 1;
      transition: opacity 3s ease-in-out;
      /* keep 3s if you want slow fade */
      will-change: opacity;
    }

    /* single fade class used for all images */
    .fade-outcircle {
      opacity: 0;
    }

    .hero-left p {
      font-size: 1.15rem;
      color: #555;
      margin-bottom: 35px;
      line-height: 1.6;
    }

    /* Call-to-action button */
    .hero-left .cta-btn {
      padding: 15px 40px;
      font-size: 1.1rem;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      background: linear-gradient(135deg, #ff7b00, #ff9500);
      color: white;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: pulses 2s infinite;
      /* only glow, no scaling */
    }

    .hero-left .cta-btn:hover {
      background: linear-gradient(135deg, #e96a00, #ff7b00);
      transform: translateY(-3px) scale(1.05);
      /* scale only on hover */
      box-shadow: 0 12px 28px rgba(255, 123, 0, 0.35);
    }

    @keyframes pulses {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 123, 0, 0.4);
      }

      70% {
        box-shadow: 0 0 0 25px rgba(255, 123, 0, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(255, 123, 0, 0);
      }
    }


    /* Right Main Image */
    .hero-right {
      width: 400px;
      height: 400px;
      border-radius: 50%;
      overflow: hidden;
      justify-content: center;
      margin-right: 150px;
      opacity: 0;
      transform: translateX(60px);
      animation: slideInRight 1.2s ease-out forwards;
      animation-delay: 0.6s;
      position: absolute;
      top: 20%;
      right: 70%;
    }


    .hero-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    /* Extra Large Floating Circles */
    .hero-extra-img {
      position: absolute;
      border-radius: 50%;
      overflow: hidden;
      animation: float 8s ease-in-out infinite;
      opacity: 0;
      transform: translateX(60px);
      animation: slideInRight 1.2s ease-out forwards;
      animation-delay: 0.6s;
    }

    .hero-extra-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }

    /* Positioning */
    .hero-extra1 {
      width: 280px;
      height: 280px;
      top: 7%;
      right: 100px;
    }

    .hero-extra2 {
      width: 240px;
      height: 240px;
      bottom: 8%;
      right: 4%;
    }

    /* Slide-in keyframes */
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-80px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(80px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Floating Shapes */
    .shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.15;
    }

    /* Floating Shapes - repositioned */
    .shape1 {
      width: 120px;
      height: 120px;
      background: #ff7b00;
      top: 7%;
      left: 30%;
    }

    .shape2 {
      width: 80px;
      height: 80px;
      background: #2a5298;
      bottom: 12%;
      right: 20%;
    }

    .shape3 {
      width: 60px;
      height: 60px;
      background: #1e3c72;
      top: 70%;
      left: 10%;
    }

    .shape4 {
      width: 60px;
      height: 60px;
      background: #1e3c72;
      top: 80%;
      left: 30%;
      transform: translateX(-50%);
    }

    .shape5 {
      width: 60px;
      height: 60px;
      background: #ff7b00;
      top: 25%;
      right: 30%;
    }



    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }



    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-20px);
      }
    }

   



/* For 1366x768 (standard laptop) */
@media (max-width: 1366px) and (max-height: 768px) {
  .hero-right {
    width: 300px;
    height: 300px;
    right: 66%;
    top: 18%;
  }

  .hero-extra1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 80px;
  }

  .hero-extra2 {
    width: 180px;
    height: 180px;
    bottom: 6%;
    right: 6%;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .hero-left p {
    font-size: 1rem;
  }

  .text-item {
    font-size: 0.9rem;
    padding: 12px;
  }

  .hero-left .cta-btn {
    font-size: 1rem;
    padding: 12px 30px;
  }
}



/* For 2352x1323 (~150% scaling monitors) */
@media (max-width: 2352px) and (max-height: 1323px) {
  .hero-right {
    width: 250px;
    height: 250px;
    right: 68%;
    top: 18%;
  }
}

/* For 1920x1080 (Full HD) */
@media (max-width: 1920px) and (min-width: 1600px) and (max-height: 1200px) {
  .hero-right {
    width: 400px;
    height: 400px;
    right: 69%;
    top: 18%;
  }
}
@media (max-width: 1024px) {
.hero-right {
        width: 280px;
        height: 280px;
        margin: 0 auto;
      }


    }
 /* Responsive Layout */
    /* Tablet */
    @media (max-width: 992px) {
      .hero {
        flex-direction: row;
        align-items: center;
        padding: 50px 5%;
        gap: 40px;
        text-align: center;
      }

      .hero-right img {
        display: none;
      }

      .hero-left img {
        width: 300px
      }

      .hero-left {
        flex: 1;
        max-width: 60%;
        padding: 0px 10px;
        margin-top: 200px;
      }

      .hero-left h1 {
        font-size: 2rem;
      }

      .hero-left p {
        font-size: 1rem;
      }

      .hero-right {
        width: 280px;
        height: 280px;
        margin: 0 auto;
      }

      .hero-extra1,
      .hero-extra2 {
        width: 140px;
        height: 140px;
        opacity: 0.6;
        display: none;
      }

      .text-item {
        font-size: 0.6rem;
      }
    }

    @media (max-width: 820px) {
            .hero-left {
        margin-bottom: 290px;
      }
    }

    /* Mobile phones */
    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        justify-content: center;
        /* centers vertically */
        align-items: center;
        /* centers horizontally */
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
      }

      .hero-left {
        max-width: 100%;
        margin-top: 200;
        /* remove earlier push-down */
      }

      .hero-left h1 {
        font-size: 1.8rem;
        margin-top: 0;
      }
    }

    /* Very small phones */
    @media (max-width: 480px) {
      .hero {
        padding: 30px 15px;
        justify-content: center;
      }

      .hero-left {
        margin-top: 290px;
      }

      .hero-left h1 {
        font-size: 1.6rem;
        line-height: 1.3;
      }
    }
    @media (max-width: 400px) {
      .hero {
        padding: 30px 15px;
        justify-content: center;
      }

      .hero-left {
        margin-top: 200px;
      }

      .hero-left h1 {
        font-size: 1.6rem;
        line-height: 1.3;
      }
    }


    /* =========================END MAIN=========================== */


















    /* =========================LOGO-SLIDER========================= */
    .infinite-slider-com {
      width: 100%;
      overflow: hidden;
      background: #ffffff;
      padding: 20px 0;
      position: relative;
    }

    .slider-track-com {
      display: flex;
      will-change: transform;
    }

    .slide-com {
      width: 200px;
      flex-shrink: 0;
      margin: 0 20px;
      text-align: center;
      color: rgb(0, 0, 0);
      font-family: Arial, sans-serif;
    }

    .slide-com img {
      width: 70%;
      filter: grayscale(100%);
      transition: filter 0.2s ease;
    }

    .slide-com:hover img {
      filter: grayscale(0%);
    }

    .slide-com h3 {
      margin-top: 12px;
      font-size: 18px;
    }

    .partners-title-com {
      text-align: center;
      font-size: 42px;
      /* Bigger */
      font-weight: 800;
      /* Bolder */
      margin-bottom: 40px;
      color: #183153;
      font-family: 'Segoe UI', sans-serif;
    }

    .partners-title-com::after {
      content: "";
      display: block;
      width: 250px;
      height: 4px;
      background: linear-gradient(90deg, #ff7e5f, #feb47b);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    /* Tablet */
    @media (max-width: 992px) {
      .partners-title-com {
        font-size: 42px;
        margin-bottom: 30px;
      }

      .partners-title-com::after {
        width: 180px;
        height: 3px;
      }

      .slide-com {
        width: 160px;
        margin: 0 15px;
      }

      .slide-com h3 {
        font-size: 16px;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .partners-title-com {
        font-size: 32px;
        margin-bottom: 25px;
      }

      .partners-title-com::after {
        width: 140px;
        height: 3px;
      }

      .slider-track-com {
        gap: 10px;
      }

      .slide-com {
        width: 130px;
        margin: 0 10px;
      }

      .slide-com h3 {
        font-size: 14px;
      }
    }

    /* Small phones */
    @media (max-width: 480px) {
      .partners-title-com {
        font-size: 24px;
        margin-bottom: 20px;
      }

      .partners-title-com::after {
        width: 100px;
        height: 2px;
      }

      .slide-com {
        width: 100px;
        margin: 0 8px;
      }

      .slide-com h3 {
        font-size: 12px;
      }
    }




    /* =========================END-LOGO-SLIDER===================== */























    /* =========================CARDS======================== */
    /* Feature Section */
    .feature-section {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      padding: 80px 8%;
      background: none;
      position: relative;
      overflow: hidden;
    }

    /* Floating background blobs */
    .feature-section::before,
    .feature-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.35;
      z-index: 0;
    }


    /* Responsive */
    @media (max-width: 1200px) {
      .feature-section {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 700px) {
      .feature-section {
        grid-template-columns: 1fr;
      }
    }

    /* Feature Card */
    .feature-card {
      position: relative;
      background: rgba(255, 255, 255, 0.92);
      border-radius: 22px;
      padding: 34px 26px;
      text-align: center;
      border: 1px solid rgba(0, 0, 0, 0.05);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      transition: all 0.35s ease;
      z-index: 1;
    }

    /* --- Scroll animation initial state --- */
    .feature-card {
      opacity: 0;
      transform: translateY(60px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    /* --- When visible --- */
    .feature-card.visible {
      opacity: 1;
      transform: translateY(0);
    }


    .feature-card:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12),
        0 0 12px rgba(255, 123, 0, 0.3);
      border-color: rgba(255, 123, 0, 0.3);
    }

    /* Icon Circle */
    .icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: white;
      background: linear-gradient(135deg, #ff7b00, #ff9f40);
      box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.4),
        0 6px 16px rgba(255, 123, 0, 0.4);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .icon-circle:hover {
      transform: scale(1.12) rotate(6deg);
      box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.6),
        0 8px 20px rgba(255, 123, 0, 0.5);
    }

    /* Heading */
    .feature-card h3 {
      font-size: 1.35rem;
      margin-bottom: 16px;
      font-weight: 700;
      color: #222;
      position: relative;
      display: inline-block;
    }

    .feature-card h3::after {
      content: "";
      display: block;
      width: 40%;
      height: 3px;
      background: linear-gradient(90deg, #ff7b00, #ffb347);
      margin: 6px auto 0;
      border-radius: 2px;
    }

    .feature-card h3 span {
      color: #ff7b00;
    }

    /* List */
    .feature-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
    }

    .feature-card ul li {
      margin: 8px 0;
      font-size: 0.95rem;
      color: #444;
      position: relative;
      padding-left: 24px;
    }

    .feature-card ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #0072ff;
      font-weight: bold;
      text-shadow: 0 0 6px rgba(255, 180, 70, 0.4);
    }

    /* Button */
    .btn {
      border: none;
      padding: 12px 26px;
      border-radius: 30px;
      color: #fff;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
      background: linear-gradient(135deg, #ff7b00, #ff9f40);
      position: relative;
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.3);
      transform: skewX(-25deg);
      transition: left 0.6s ease;
    }

    .btn:hover::after {
      left: 200%;
    }

    .btn:hover {
      transform: scale(1.07) translateY(-3px);
      box-shadow: 0 10px 22px rgba(255, 123, 0, 0.35);
    }

    .feature-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      /* pushes button down */
      height: 100%;
    }

    /* Keep button at bottom */
    .feature-card .btn {
      margin-top: auto;
      /* pushes it to bottom */
      align-self: center;
      /* centers button horizontally */
    }


    /* =====================CARDS-END======================== */

    .fullcard {
      background: linear-gradient(135deg, #fffaf5, #f7f7f7 60%, #fff);
      padding: 20px 0px;
    }

    /* =================QUOTE================= */
    .quote-section {
      max-width: 1600px;
      margin: 60px auto;
      padding: 60px;
      border-radius: 24px;
      background: linear-gradient(90deg, #ffffff 30%, rgba(200, 200, 200, 0.4) 100%);
      box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      overflow: hidden;
      transition: all 0.35s ease;

      /* 👇 start hidden for scroll animation */
      opacity: 0;
      transform: translateY(40px);
    }

    .quote-section.show {
      opacity: 1;
      transform: translateY(0);
    }

    .quote-section:hover {
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12),
        0 0 12px rgba(255, 123, 0, 0.3);
      border-color: rgba(255, 123, 0, 0.3);
    }

    /* optional subtle blurred "shine" */
    .quote-section::after {
      content: "";
      position: absolute;
      right: -20%;
      top: -20%;
      width: 70%;
      height: 140%;
      background: radial-gradient(circle, rgba(180, 180, 180, 0.4) 0%, transparent 70%);
      filter: blur(60px);
    }

    .quote-content {
      position: relative;
      z-index: 1;
    }

    .quote-content h2 {
      font-size: 2rem;
      color: #000000;
      font-weight: 600;
      margin: 0 0 10px;
    }

    .quote-content p {
      font-size: 1rem;
      color: #000000;
      margin: 0 0 20px;
    }

    .quote-content button {
      border: none;
      padding: 12px 26px;
      border-radius: 30px;
      color: #fff;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
      background: linear-gradient(135deg, #ff7b00, #ff9f40);
      position: relative;
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .quote-content a {
      text-decoration: none;
    }

    .quote-highlight {
      color: #ff7b00;
    }

    .quote-content button::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.3);
      transform: skewX(-25deg);
      transition: left 0.6s ease;
    }

    .quote-content button:hover::after {
      left: 200%;
    }


    .quote-content button:hover {
      transform: scale(1.07) translateY(-3px);
      box-shadow: 0 10px 22px rgba(255, 123, 0, 0.35);
    }

    /* 📱 Responsive */
    @media (max-width: 768px) {

      .fullcard {
        padding: 0px 10px;
      }

      .quote-section {
        padding: 40px 30px;
      }

      .quote-content h2 {
        font-size: 1.5rem;
        text-align: center;
      }

      .quote-content p {
        font-size: 0.95rem;
        text-align: center;
      }

      .quote-content {
        text-align: center;
        width: 100%;
      }

      .quote-content button {
        margin: 0 auto;
        display: block;
      }
    }

    /* ====================QUOTE-END====================== */




















    /* ===========================ZIGZAG==========================*/
    .zigzag-section {
      position: relative;
      padding: 60px 20px;
      /* reduced padding */
      overflow: hidden;
      background: linear-gradient(-45deg, #f69153, #f9fafc, #fff4eb, #e99b4d);
      background-size: 400% 400%;
      animation: gradientMove 10s ease infinite;
    }

    /* Gradient animation */
    @keyframes gradientMove {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* Decorative background shapes */
    .zigzag-section::before,
    .zigzag-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      opacity: 0.15;
      z-index: 0;
    }

    .zigzag-section::before {
      width: 300px;
      height: 300px;
      background: #ff8c00;
      top: -100px;
      left: -100px;
    }

    .zigzag-section::after {
      width: 400px;
      height: 400px;
      background: #ffa733;
      bottom: -150px;
      right: -150px;
    }

    /* Heading */
    .zigzag-header {
      text-align: center;
      margin-bottom: 50px;
      color: #333;
      position: relative;
      z-index: 1;
    }

    .zigzag-heading {
      font-size: 34px;
      font-weight: bold;
      color: #1e3c72;
      margin-bottom: 12px;
    }

    .zigzag-subheading {
      font-size: 17px;
      color: #555;
      max-width: 650px;
      margin: 0 auto;
      /* centers it */
      line-height: 1.6;
    }

    /* Container */
    .zigzag-container {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 70px;
      /* less spacing between items */
      max-width: 1000px;
      /* slightly smaller width */
      margin: auto;
    }

    /* Zigzag items */
    .zigzag-item {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 40px;
      width: 100%;
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .zigzag-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .zigzag-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    /* Icon styling */

    .zigzag-icon {
      flex-shrink: 0;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff7b00, #ff9f40);
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      cursor: pointer;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      /* idle pulsing */
    }

    .zigzag-icon img {
      width: 65%;
    }

    .zigzag-icon:hover {
      transform: scale(1.12) rotate(6deg);
      box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.6),
        0 8px 20px rgba(255, 123, 0, 0.5);
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.08);
      }
    }



    @keyframes bounce {

      0%,
      100% {
        transform: translateY(0) scale(1.15);
      }

      50% {
        transform: translateY(-12px) scale(1.15);
      }
    }

    /* Content */
    .zigzag-content {
      max-width: 450px;
      background-color: #ffffff49;
      padding: 20px;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .zigzag-content::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      transform: skewX(-25deg);
      transition: left 0.6s ease;
    }

    .zigzag-content:hover::after {
      left: 200%;
    }

    .zigzag-content:hover {
      transform: scale(1.07) translateY(-3px);
      box-shadow: 0 10px 22px rgba(255, 123, 0, 0.35);
    }

    .zigzag-item:nth-child(even) .zigzag-content {
      text-align: right;
    }

    /* Text styling */
    .zigzag-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #1e3c72;
    }

    .zigzag-text {
      color: #555;
      line-height: 1.6;
      font-size: 17px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .zigzag-heading {
        font-size: 26px;
      }

      .zigzag-subheading {
        font-size: 15px;
        padding: 0 15px;
      }

      .zigzag-item {
        flex-direction: column !important;
        text-align: center;
        gap: 15px;
      }

      .zigzag-content {
        max-width: 100%;
        text-align: center !important;
      }

      .zigzag-title {
        font-size: 22px;
      }

      .zigzag-text {
        font-size: 15px;
      }

      .zigzag-icon {
        width: 120px;
        height: 120px;
      }

      .zigzag-container {
        gap: 40px;
      }
    }

    /* ========================ZIGZAG-END======================== */















    /* ============= Insurance Section Styles ============= */
.insurance-section {
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;

  background: linear-gradient(
  340deg,
  #ffffff 5%,
  #003366 70%,
  #0a2540 90%
);


  background-size: 120% 120%;
  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.insurance-section {
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    340deg,
    #ffffff 5%,
    #003366 70%,
    #0a2540 90%
  );
  background-size: 120% 120%;
  animation: gradientMove 6s ease infinite;
}





    /* Right background image */
    .insurance-section::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 50%;
      background: url('assets/m.webp') no-repeat center right;
      background-size: cover;
      z-index: 0;
    }

    .insurance-container {
      width: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 50px;
      position: relative;
      z-index: 1;
      /* content above background */
    }

    .insurance-content {
      max-width: 1200px;
    }

    /* Headings */
    .insurance-content h1,
    .insurance-content h2 {
      opacity: 0;
      transform: translateY(30px) scale(0.95);
      transition: all 0.8s ease;
    }

    .insurance-content h1.visible,
    .insurance-content h2.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .insurance-content h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      margin-left: 200px;
    }

    .insurance-content h2 {
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 30px;
      margin-left: 200px;
    }

    /* Glass effect box */
    .insurance-glass-box {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 16px;
      padding: 30px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1000px;
      margin-left: 200px;

      /* scroll effect */
      opacity: 0;
      transform: translateY(40px) scale(0.95);
      transition: all 0.9s ease;
    }

    .insurance-glass-box.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .insurance-glass-box a{
      text-decoration: none;
      color: inherit;
    }
.insurance-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;

  /* make cards adapt to longer text */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.insurance-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px 4px rgba(255, 255, 255, 0.4),
              0 0 40px 8px rgba(255, 255, 255, 0.408);
}


    .insurance-card:active,
    .insurance-card:focus {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .insurance-card h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .insurance-card p {
      font-size: 1.1rem;
      color: #444;
    }

    /* ========== ICON ANIMATIONS ========== */
    .icon {
      width: 30px;
      height: 30px;
      color: #ff7b00;
      /* primary orange */
      flex-shrink: 0;
      transition: transform 0.4s ease, color 0.3s ease;
    }

    /* Hover / tap techy rotate + scale + color */
    .insurance-card:hover .icon,
    .insurance-card:active .icon,
    .insurance-card:focus .icon {
      transform: rotate(20deg) scale(1.2);
      color: #ff9f40;
      /* hover orange */
    }

    /* Footer buttons */
    .insurance-footer {
      margin-top: 20px;
      display: flex;
      gap: 10px;
      margin-left: 200px;

      /* scroll effect */
      opacity: 0;
      transform: translateY(30px) scale(0.95);
      transition: all 0.8s ease;
    }

    .insurance-footer.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .insurance-btn {
      border: none;
      padding: 12px 26px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      margin-top: 10px;
    }

    .insurance-btn.primary {
      background: linear-gradient(135deg, #ff7b00, #ff9f40);
      color: #fff;
    }

    .insurance-btn.primary::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.3);
      transform: skewX(-25deg);
      transition: left 0.6s ease;
    }

    .insurance-btn.primary:hover::after {
      left: 200%;
    }

    .insurance-btn.primary:hover {
      transform: scale(1.07) translateY(-3px);
      box-shadow: 0 10px 22px rgba(255, 123, 0, 0.35);
    }

    .insurance-btn.outline {
      background: #fff;
      border: 1px solid #ddd;
      color: #333;
      text-decoration: none;
    }
    .pdf-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.9rem;
  color: #ff7b00;
  font-weight: 500;
}

.pdf-link:hover {
  text-decoration: none;
}
    .insurance-btn.outline::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.3);
      transform: skewX(-25deg);
      transition: left 0.6s ease;
    }

    .insurance-btn.outline:hover::after {
      left: 200%;
    }

    .insurance-btn.outline:hover {
      transform: scale(1.07) translateY(-3px);
      box-shadow: 0 10px 22px rgba(255, 123, 0, 0.15);
    }

    .insurance-btn.outline:hover,
    .insurance-btn.outline:active,
    .insurance-btn.outline:focus {
      background: #f7f7f7;
    }

    /* ================= RESPONSIVE DESIGN ================= */

    /* Tablets */
    @media (max-width: 992px) {

      .insurance-content h1,
      .insurance-content h2,
      .insurance-glass-box,
      .insurance-footer {
        margin-left: 100px;
      }

      .insurance-glass-box {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
      }

      .insurance-content h1 {
        font-size: 2rem;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .insurance-section {
        background: #0a1f44;
      }

      .insurance-section::after {
        display: none;
        /* remove right image on small screens for clarity */
      }

      .insurance-container {
        padding: 30px 20px;
        justify-content: center;
      }

      .insurance-content h1,
      .insurance-content h2,
      .insurance-glass-box,
      .insurance-footer {
        margin-left: 0;
        text-align: center;
      }

      .insurance-glass-box {
        grid-template-columns: 1fr;
        max-width: 100%;
      }

      .insurance-footer {
        justify-content: center;
        flex-wrap: wrap;
      }
      .insurance-card h3{
        font-size: 1.2rem;
      }
    }


    /* ==================== Insurance Types  /END ============== */













/* ==================== Difference ============================ */
.insurance-comparison {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #fffaf5, #f7f7f7 60%, #fffaf5);
  color: #222;
}

.insurance-comparison h2 {
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
  font-weight: bold;
  margin-bottom: 8px;
}

.insurance-comparison .subtitle {
  color: #555;
  font-size: clamp(0.9rem, 1vw + 0.6rem, 1rem);
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Table Layout */
.comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  border-collapse: collapse;
  border: none;
  overflow-x: auto;
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  align-items: stretch;
  border-bottom: 1px solid #ddd;
  min-width: 320px;
}

/* ALL cells (header + row) behave the same */
.table-header .col,
.table-row .col {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  padding: 16px; /* unified padding */
}

/* ================= Ethos Column ================= */
.table-header .ethos,
.table-row .ethos {
  background: linear-gradient(135deg, #ff7b00, #ff9f40);
  color: white;
}

.table-header .ethos {
  border-radius: 12px 12px 0 0;
}

.table-row:last-child .ethos {
  border-radius: 0 0 12px 12px;
}

/* ================= Traditional Column ================= */
.table-header .traditional,
.table-row .traditional {
  background: #f9f9f9;
  color: #222;
}

.table-header .traditional {
  border-radius: 12px 12px 0 0;
}

.table-row:last-child .traditional {
  border-radius: 0 0 12px 12px;
}

/* Feature column (optional: allow scaling) */
.table-row .feature,
.table-header .feature {
  flex: 1;
}

/* Checkmark */
.checkmark {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #004aad, #0072ff);
  color: white;
  border-radius: 50%;
  line-height: 22px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

/* Shrink checkmark on small screens */
@media (max-width: 480px) {
  .checkmark {
    width: 18px;
    height: 18px;
    font-size: 12px;
    line-height: 18px;
  }
}

/* Button */
.btn {
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(135deg, #ff7b00, #ff9f40);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  margin-top: 10px;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.btn:hover::after {
  left: 200%;
}

.btn:hover {
  transform: scale(1.07) translateY(-3px);
  box-shadow: 0 10px 22px rgba(255, 123, 0, 0.35);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1366px) {
  .insurance-comparison {
    padding: 50px 15px;
  }
  .comparison-table {
    max-width: 800px;
  }
}

@media (max-width: 1024px) {
  .insurance-comparison {
    padding: 40px 15px;
  }
  .comparison-table {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .insurance-comparison {
    padding: 30px 12px;
  }
  .comparison-table {
    max-width: 100%;
  }
  .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .insurance-comparison h2 {
    font-size: 1.2rem;
  }
  .insurance-comparison .subtitle {
    font-size: 0.85rem;
  }
  .table-row .col {
    font-size: 0.85rem;
    padding: 12px;
  }
}
/* Tablet */
@media (max-width: 1024px) {
  .insurance-section {
    background: linear-gradient(
      340deg,
      #ffffff 8%,
      #003366 65%,
      #0a2540 85%
    );
  }
}

/* Mobile */
@media (max-width: 600px) {
  .insurance-section {
    background: linear-gradient(
      340deg,
      #ffffff 12%,
      #003366 60%,
      #0a2540 80%
    );
  }
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============ Difference /END ==================== */















    /* ======================STAT SEC============================ */
    .stats-section {
      display: flex;
      justify-content: center;
      gap: 120px;
      padding: 100px 20px;
      background: #fff;
      font-family: "Inter", sans-serif;
      text-align: center;
      flex-wrap: wrap;
      /* allow wrapping on smaller screens */
    }

    .stat-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      opacity: 0;
      transform: translateX(-50px);
      transition: all 0.8s ease-out;
      padding: 0 40px;
    }

    .stat-box.show {
      opacity: 1;
      transform: translateX(0);
    }

    /* Number + symbol side by side */
    .stat-box .stat-number {
      display: flex;
      align-items: baseline;
      justify-content: center;
    }

    .stat-box .counter {
      font-size: 4rem;
      font-weight: 600;
      color: #ff7b00;
      line-height: 1;
    }

    .stat-box .symbol {
      font-size: 2rem;
      font-weight: 500;
      margin-left: 4px;
      color: #1e3c72;
    }

    /* Labels */
    .stat-box p {
      margin-top: 12px;
      font-size: 1.3rem;
      font-weight: 400;
      color: #ff7b00;
      letter-spacing: 0.5px;
    }

    /* Add borders only to the center box (desktop only) */
    .stat-box:nth-child(2) {
      border-left: 3px solid #1e3c72;
      border-right: 3px solid #1e3c72;
    }

    /* 📱 Responsive tweaks */
    @media (max-width: 900px) {
      .stats-section {
        gap: 60px;
      }

      .stat-box .counter {
        font-size: 3rem;
      }
    }

    @media (max-width: 600px) {
      .stats-section {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
      }

      .stat-box {
        padding: 0;
      }

      .stat-box:nth-child(2) {
        border: none;
        /* remove borders on mobile */
      }

      .stat-box .counter {
        font-size: 2.5rem;
      }

      .stat-box .symbol {
        font-size: 1.5rem;
      }

      .stat-box p {
        font-size: 0.9rem;
      }
    }

    /*===================================STAT SEC END================================  */


















    /* =====================FORM======================== */
    .ins-wrapper {
      font-family: 'Segoe UI', sans-serif;
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .ins-orange-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 300px;
      background: #ff8300;
      z-index: 0;
    }

    .ins-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 70px;
      max-width: 1300px;
      width: 100%;
      padding: 40px;
      position: relative;
      z-index: 1;
    }

    .ins-circle-img {
      border: 2px solid #d4d4d4;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
      flex-shrink: 0;
    }

    .ins-circle-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ins-right {
      max-width: 480px;
      width: 100%;
    }

    .ins-logos {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 20px;
    }

    .ins-logos img {
      height: 50px;
      object-fit: contain;
    }

    .ins-hero h1 {
      font-size: 28px;
      font-weight: 700;
      color: #1e3c72;
      margin: 10px 0;
    }

    .ins-hero p {
      font-size: 15px;
      line-height: 1.6;
      color: #444;
      margin-bottom: 25px;
    }

    /* 🔹 Form Container */
    .ins-form {
      background: #f9f9fb;
      padding: 35px 30px;
      border-radius: 20px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
      width: 100%;
      animation: insFadeIn 0.8s ease-in-out;
      margin-bottom: 50px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .ins-form:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    }

    /* 🔹 Animation */
    @keyframes insFadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* 🔹 Heading */
    .ins-form h2 {
      font-size: 24px;
      font-weight: 700;
      color: #0a2540;
      margin-bottom: 25px;
      text-align: center;
      letter-spacing: 0.5px;
    }

    /* 🔹 Labels */
    .ins-form label {
      display: block;
      font-weight: 600;
      margin: 14px 0 8px;
      color: #222;
      font-size: 15px;
    }

    /* 🔹 Inputs */
    .ins-form input[type="text"],
    .ins-form input[type="email"],
    .ins-form input[type="tel"],
    .ins-form textarea {
      width: 100%;
      padding: 14px 16px;
      border-radius: 12px;
      border: 1px solid #ccc;
      outline: none;
      font-size: 15px;
      background: #fff;
      transition: all 0.3s ease;
    }

    .ins-form input:focus,
    .ins-form textarea:focus {
      border-color: #0056d6;
      box-shadow: 0 0 8px rgba(0, 86, 214, 0.3);
    }

    /* 🔹 Radio Group */
    .ins-radio-group {
      display: flex;
      gap: 25px;
      margin: 10px 0 20px;
      font-size: 15px;
      align-items: center;
    }

    .ins-radio-group input {
      margin-right: 6px;
    }

    /* 🔹 Star Rating */
    .ins-stars {
      display: flex;
      gap: 10px;
      margin: 12px 0;
      justify-content: flex-start;
    }

    .ins-star {
      font-size: 30px;
      color: #d1d5db;
      cursor: pointer;
      transition: transform 0.25s ease, color 0.3s ease;
    }

    .ins-star:hover {
      transform: scale(1.25);
    }

    .ins-star.active {
      color: #0072ff;
    }

    .ins-rating-label {
      font-size: 15px;
      font-weight: 600;
      color: #0056d6;
      margin-top: 6px;
      min-height: 20px;
    }

    /* 🔹 Button */
    .ins-form button {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #ff7b00, #ff9f40);
      color: #fff;
      border: none;
      border-radius: 14px;
      font-size: 17px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 25px;
      letter-spacing: 0.5px;
    }

    .ins-form button:hover {
      background: linear-gradient(135deg, #ff8300, #f69153);
      transform: translateY(-3px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    }


    /* Tablet */
    @media (max-width: 992px) {
      .ins-container {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
        text-align: center;
      }

      .ins-circle-img {
        width: 300px;
        height: 300px;
      }

      .ins-right {
        max-width: 90%;
      }

      .ins-logos {
        justify-content: center;
        flex-wrap: wrap;
      }

      .ins-form {
        max-width: 500px;
        margin: 0 auto 40px;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .ins-container {
        gap: 30px;
        padding: 15px;
      }

      .ins-circle-img {
        width: 220px;
        height: 220px;
      }

      .ins-hero h1 {
        font-size: 22px;
      }

      .ins-hero p {
        font-size: 14px;
      }

      .ins-form {
        padding: 25px 20px;
      }

      .ins-form h2 {
        font-size: 20px;
        margin-bottom: 20px;
      }

      .ins-form button {
        font-size: 15px;
        padding: 14px;
      }
    }

    /* Small phones */
    @media (max-width: 480px) {
      .ins-orange-bg {
        height: 100px;
        /* smaller background strip */
      }

      .ins-circle-img {
        width: 160px;
        height: 160px;
      }

      .ins-logos img {
        height: 35px;
      }

      .ins-hero h1 {
        font-size: 18px;
      }

      .ins-hero p {
        font-size: 13px;
        line-height: 1.4;
      }

      .ins-form {
        padding: 20px 15px;
        border-radius: 15px;
      }

      .ins-form h2 {
        font-size: 18px;
      }

      .ins-form label {
        font-size: 14px;
      }

      .ins-form input,
      .ins-form textarea {
        padding: 12px;
        font-size: 14px;
      }

      .ins-form button {
        font-size: 14px;
        padding: 12px;
      }

      .ins-star {
        font-size: 24px;
      }
    }
    /* Default (desktop) */
.ins-orange-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 300px;
  background: #00337a;
  z-index: 0;
}

/* Tablet */
@media (max-width: 992px) {
  .ins-orange-bg {
    height: 200px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ins-orange-bg {
    height: 150px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .ins-orange-bg {
    height: 100px;
  }
}

    /* ====================FORM-END====================== */















    /* ===================PACKAGES====================== */
    .plans {
      display: flex;
      gap: 40px;
      justify-content: center;
      align-items: stretch;
      padding: 20px 30px;
      flex-wrap: wrap;
    }

    .plansmain {
      background: #ff8300;
      padding: 40px 0px;
    }

    .plansmain p {
      color: #000;
    }

    .plan-card {
      flex: 1 1 380px;
      max-width: 420px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
      padding: 40px 30px;
      text-align: center;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .plan-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    }

    .plan-badge {
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      background: #ff8c00;
      color: #fff;
      font-size: 1rem;
      font-weight: bold;
      padding: 8px 20px;
      border-radius: 40px;
      letter-spacing: 0.5px;
    }

    .plan-badge.blue {
      background: #1e90ff;
    }

    .plan-badge.navy {
      background: #003366;
    }

    .plan-header img {
      width: 200px;
      margin: 30px auto 15px;
      display: block;
    }

    .plan-title {
      font-size: 1.6rem;
      font-weight: 800;
      color: #0056c1;
      margin-bottom: 16px;
    }

    .plan-sub {
      color: #555;
      font-size: 1rem;
    }

    .plan-price {
      font-size: 2.6rem;
      font-weight: 800;
      color: #0a53be;
      margin: 12px 0;
    }

    .plan-price span {
      font-size: 1rem;
      color: #444;
    }

    .plan-coverage {
      font-size: 1.2rem;
      margin-bottom: 28px;
      color: #333;
    }

    .plan-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .plan-actions a {
      text-decoration: none;
    }

    .btn-outline {
      border: 2.5px solid #0056c1;
      background: transparent;
      color: #0056c1;
      padding: 12px 26px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: -3%;
    }

    .btn-outline:hover {
      background: #0056c1;
      color: #fff;
    }


    .btn-fill {
      border: none;
      background: #ff8c00;
      color: #fff;
      padding: 14px 26px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
    }

    .btn-fill:hover {
      background: #e67800;
    }

    .disclaimer {
      text-align: center;
      font-size: 0.9rem;
      color: #666;
      margin-top: 30px;
    }

    /* Initial hidden state */
    .plan-card {
      opacity: 0;
      transform: translateX(-60px);
      /* start from left */
      transition: all 0.7s ease-out;
    }

    /* Visible state (when scrolled in) */
    .plan-card.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .plans {
        flex-direction: column;
        align-items: center;
      }

      .plan-card {
        max-width: 95%;
      }
      .btn-outline {
        padding: 14px 30px;
      }
    }

    /* =================PACKAGES-END==================== */


















    /* ====================PARAGRAPH==================== */
    .contact-disclaimer {
      background: #f9fafc;
      padding: 60px 20px;
      display: flex;
      justify-content: center;
      box-sizing: border-box;
    }

    /* ✅ Main container */
    .contact-container {
      display: flex;
      align-items: flex-start;
      gap: 30px;
      max-width: 1150px;
      /* controlled width */
      width: 100%;
      background: #ffffff;
      border: 2px solid #ff8300;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      margin: 0 auto;
      flex-wrap: wrap;
      box-sizing: border-box;
      overflow-wrap: break-word;
      word-break: break-word;
      margin-bottom: 50px;
    }

    .contact-container:hover {
      transform: translateY(-4px);
    }

    /* ✅ Image (left side) */
    .contact-image {
      flex-shrink: 0;
      text-align: center;
    }

    .contact-image img {
      max-width: 220px;
      width: 100%;
      border-radius: 16px;
    }

    /* ✅ Text (right side) */
    .contact-text {
      flex: 1 1 300px;
      min-width: 0;
      /* ✅ critical fix for flex overflow */
      font-size: 0.95rem;
      line-height: 1.6;
      color: #000000;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* 🔹 Fix logo inside text */
    .contact-text img {
      max-width: 180px;
      /* ✅ keeps logo small */
      width: 100%;
      height: auto;
      display: block;
      margin: 0 auto 20px;
    }

    .contact-text p {
      margin-bottom: 16px;
    }

    .contact-text .license {
      font-size: 0.85rem;
      margin-top: 10px;
      color: #6b6b6b;
      text-align: center;
    }

    .contact-text .license span {
      color: #e63946;
      font-weight: bold;
      text-align: center;
    }

    /* 🔹 Responsive */
    @media (max-width: 900px) {
      .contact-container {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        max-width: 560px;
      }

      .contact-image img {
        max-width: 180px;
        margin-bottom: 20px;
      }
    }

    @media (max-width: 600px) {
      .contact-disclaimer {
        padding: 40px 15px;
      }

      .contact-container {
        max-width: 95%;
        padding: 20px 15px;
        gap: 15px;
      }

      .contact-text {
        font-size: 0.9rem;
      }

      .contact-text .license {
        font-size: 0.8rem;
      }

      .contact-text img {
        max-width: 140px;
        /* ✅ shrink logo more on small screens */
      }
    }

    /* ================PARAGRAPH-END==================== */
















    /* ==========================Footer Base================================== */
    .footer-section {
      background: #000;
      color: #fff;
      padding: 120px 8% 40px;
      position: relative;
      font-family: Arial, sans-serif;
      overflow: visible;
      text-align: left;
    }


    /* Floating Logo */
    .footer-logo-container {
      position: absolute;
      top: -70px;
      /* Push half outside */
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
    }

    .footer-logo-bg {
      background: #fff;
      /* White background */
      border-radius: 20px;
      padding: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 300px;
      height: 140px;
    }

    .footer-logo {
      max-width: 290px;
      height: auto;
    }


    /* Grid Layout */
    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    /* Titles */
    .footer-column h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      color: #ff8300;
    }

    /* Lists */
    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 12px;
    }

    .footer-column a {
      text-decoration: none;
      color: #ddd;
      transition: color 0.3s;
    }

    .footer-column a:hover {
      color: #ff8300;
    }



    /* Form */
    .footer-form input,
    .footer-form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 12px;
      border-radius: 8px;
      border: none;
      outline: none;
    }

    .footer-form .form-row {
      display: flex;
      gap: 10px;
    }

    .footer-form button {
      background: #ff8300;
      border: none;
      padding: 12px;
      width: 100%;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      color: white;
      transition: background 0.3s;
    }

    .footer-form button:hover {
      background: #ff7b00;
    }

    /* Socials */
    .footer-socials {
      margin-top: 15px;
    }

    .footer-socials a img {
      width: 35px;
      margin-right: 10px;

      transition: transform 0.3s;
    }

    .footer-socials a img:hover {
      transform: scale(1.1);
    }

    /* Bottom */
    .footer-bottom {
      text-align: center;
      border-top: 1px solid #333;
      padding-top: 20px;
      font-size: 0.85rem;
      margin-bottom: 50px;
      color: #aaa;
    }

    /* Scroll animation */
    .animate-rtl {
      opacity: 0;
      transform: translateX(-80px);
      transition: all 0.8s ease;
    }



    .animate-rtl.show {
      opacity: 1;
      transform: translateX(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-form .form-row {
        flex-direction: column;
      }

      .footer-logo {
        max-width: 200px;
      }
    }