        :root {
            --primary-blue: #1e3a8a;
            --secondary-blue: #3b82f6;
            --orange: #f97316;
            --dark-bg: #0f172a;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: var(--primary-blue);
            padding: 1rem 0;
        }
        
        .navbar-brand img {
            height: 40px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            margin: 0 15px;
            font-weight: 500;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--orange) !important;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: white;
            position: relative;
        }
        
        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-section h1 .highlight {
          background: linear-gradient(to right,#ff6a14, #fff);
          background-clip: text;
          -webkit-text-fill-color: transparent;
            color: var(--orange);
        }
        
        .hero-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn-orange {
            background-color: var(--orange);
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            border: none;
            font-weight: 600;
            margin-right: 15px;
        }
        
        .btn-orange:hover {
            background-color: #ea580c;
            color: white;
        }
        
        .btn-whatsapp {
            background-color: #25d366;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            border: none;
            font-weight: 600;
        }
        
        .btn-whatsapp:hover {
            background-color: #1fb855;
            color: white;
        }
        
        .stats-box {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin-top: 40px;
        }
        
        .stats-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .stats-box p {
            margin: 0;
            font-size: 0.9rem;
        }
        
        .hero-image {
            text-align: right;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }
        
        /* Why Choose Us Section */
        .why-choose-section {
            padding: 80px 0;
       
        }
        .awards-section .section-title  {
            margin-bottom: 60px;
        }
        .section-title {
           
            font-size: 2.5rem;
            font-weight: 700;
            
            
        }
        
        .section-subtitle {
            color: #64748b;
            margin-bottom: 50px;
        }
        
        .feature-card {
            height: 100%;
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
          
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            box-shadow: 0px 10px 20px #F4F8FD;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }
        
        .feature-card h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-blue);
        }
        
        /* Awards Section */
        .awards-section {
          
            background: white;
        }
        
        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .award-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
        }
        
        /* Recommendations Section */
        .recommend-section {
            padding: 80px 0;
            background-color: #fff;
        }
        .recommend-card {
          background: #f8fafc;
          padding: 30px;
          border-radius: 10px;
          box-shadow: 0 43px 33.2px -40px rgba(0, 0, 0, 0.15);
          height: 100%;
          transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
          will-change: transform, box-shadow;
      }
        .recommend-card:hover {
          transform: translateY(-6px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
          background: #ffffff;
        }
      
        
        .recommend-badge {
            background-color: #fef3c7;
            color: var(--orange);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .recommend-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-blue);
        }
        
        /* Plans Section */
        .plans-section {
            padding: 80px 0;
            background: white;
        }
        
        .plan-card {
          box-shadow: 0 43px 33.2px -40px rgba(0, 0, 0, 0.15);
          justify-content: space-between !important;
          min-height: 150px;
          background: var(--primary-blue);
          color: white;
          padding: 20px;
          border: 2px solid #fff;
          border-radius: 10px;
          transition: transform 0.3s;
          height: 100%;
          display: flex;
          flex-direction: column;
        }

          .plan-card:hover {
            transform: translateY(-5px);
        }
        
        .plan-card h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .plan-card a {
            color: white;
            text-decoration: none;
            font-weight: 500;
        }
        
        .plan-card.light {
            background: #e2e8f0;
            color: var(--primary-blue);
        }
        
        .plan-card.light a {
            color: var(--primary-blue);
        }
        
        /* Achievers Section */
        .achievers-section {
            padding: 80px 0;
            background-color: #f8fafc;
        }
        
        .achiever-main {
            background: white;
            border-radius: 10px;
            padding: 40px;
            display: flex;
            gap: 40px;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .achiever-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .achiever-info h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 5px;
        }
        
        .achiever-info .position {
            color: var(--orange);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Contact Section */
        .contact-section {
           
            background: white;
        }
        
        .contact-info {
           
            padding: 30px;
            border-radius: 10px;
        }
        
        .contact-item {
            display: flex;
            align-items: start;
            margin-bottom: 25px;
        }
        
        .contact-item i {
            font-size: 1.5rem;
            color: var(--secondary-blue);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-item h5 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--primary-blue);
        }
        
        .contact-form .form-control {
            border-radius: 5px;
            padding: 12px;
            margin-bottom: 15px;
        }
        
        .contact-form textarea {
            min-height: 120px;
        }
        
        /* Footer */
        footer::before{
          content: '';
          position: absolute;
          bottom: 100%;
          left: 0;
          width: 100%;
          height: 100%;
         
          z-index: -10;
            background: var(--dark-bg);
        }
        .footer {
          position: relative;
            width: 100%;
            
            background: var(--dark-bg);
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-logo {
            height: 50px;
            margin-bottom: 20px;
        }
        
        .footer-contact i {
            color: var(--orange);
            margin-right: 10px;
        }
        
        .footer-contact p {
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .achiever-main {
                flex-direction: column;
                text-align: center;
            }
            
            .stats-box {
                margin-bottom: 20px;
            }
        }
        /*Extra*/
        .contact-section {
      max-width: 950px;
      background: #fff;
      margin: 60px auto;
      display: flex;
      flex-wrap: wrap;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      overflow: hidden;
    }
  
    .contact-info {
      flex: 1;
      padding: 40px;
      min-width: 320px;
    }

    .contact-info p {
      color: #666;
      font-size: 14px;
      margin-bottom: 30px;
    }

    .info-item {
      margin-bottom: 20px;
    }

    .info-item i {
      color: #0A3FF2;
      margin-right: 8px;
      font-size: 18px;
      vertical-align: middle;
    }

    .info-item strong {
      display: block;
      margin-bottom: 4px;
      color: #000;
    }

    .contact-info a {
      color: #000;
      text-decoration: none;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    .office-hours {
      font-weight: 600;
      margin-top: 20px;
    }

    .office-hours span {
      color: #0A3FF2;
    }

    .contact-form {
      flex: 1;
     
      padding: 40px;
      min-width: 300px;
      
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 10px 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    .contact-form button {
      width: 100%;
      padding: 12px;
      background: #0A3FF2;
      border: none;
      color: white;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
    }

    .contact_formsquare {
      border: 1px solid powderblue;
      border-radius: 15px; 
    padding: 50px;
    background-color: #f5f5f5;
    }

    .contact-form button:hover {
      background: #002bb8;
    }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }
      .contact-form {
        border-left: none;
        border-top: 1px solid #eee;
      }
    }

    /*Team Carousel Section*/

    @import url(https://fonts.bunny.net/css?family=jura:300,500);
    @layer base, demo;
    
    @layer demo {
    
    .carousel{
      /* prev & next buttons */
      --nav-btn-size: 40px;
      --nav-btn-bg: rgb(15, 23, 43);
      --nav-btn-txt: white;
      
      /* item markers */
      --nav-marker-bg: 20px;
      --nav-marker-bg: rgb(15, 23, 43);
      
      width: min(calc(100% - 2rem), 700px);
      list-style: none;
      padding-block: 2rem; /* create space for drop shadows */
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 250px; 
      gap:0;
      /*outline: 1px dashed red;*/
      anchor-name: --carousel;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      overscroll-behaviour-x: contain; 
      scroll-behavior: smooth; /* keep things smooth (should probably be wihtin a prefers query) */
      scrollbar-width: none;
    
      /* empty pseudo elements to push first and last items to the middle */
      &::before,
      &::after{
          content: '';
      }
      
      
      /**************** MARKERS GROUP *******************/
      /* the item markers will be dynamically placed within this element */
      scroll-marker-group: after; /* place after elements*/
      &::scroll-marker-group{
        position: absolute;
        position-anchor: --carousel;
        inline-size: min(90cqi, 400px);
        display: flex;
        align-items: center;
        justify-content: center;
        justify-self: center;
        gap: .25rem;
        padding-block-start: 1rem;
        top: anchor( bottom );
        left: calc(anchor(left) - 10%);
        right: calc(anchor(right) - 10%);
      }
      /* carousel item*/
      > div{
        position: relative;
        scroll-snap-align: center; /* centers snap */
        scroll-snap-stop: always; /* ensures that the scroll stops at each element */
        container-type: scroll-state; /* define container for child animations */
         
        display: grid;
        grid-template-areas: 'img' 'title' 'desc';
        text-align: center;
        
        /* scroll to this item on load */
        &.scroll-start {
            scroll-initial-target: nearest;
        }
        > * {
          /*outline: 1px dashed red;*/
        }
        /* item title/name */
        > h2{
          grid-area: title;
          margin: 1rem 0 0 0;
          font-size: 1.3rem;
          white-space: nowrap;
          transition: all 300ms ease-in-out;
          /* not current item */
          @container not scroll-state(snapped: inline) {
            scale: .5;
            opacity: .5;
            translate: 0 -100px;
          }
        }
        > p{
          grid-area: desc;
          margin: 0;
          white-space: nowrap;
          transition: all 300ms ease-in-out;
          @container not scroll-state(snapped: inline) {
            scale: .5;
            opacity: 0;
            /*translate: 0 100px;*/
          }
        }
        > .img{
          grid-area: img;
          width: 100%;
          aspect-ratio:3/4;
          transition: all 300ms ease-in-out;
          transform-origin: center center;
          /* not current item */
          @container not scroll-state(snapped: inline) {
            scale: .5;
            opacity: .5;
          }
          & > img{
            width:100%;
            height: 100%;
            object-fit:contain;
            border-radius: 20px;
            box-shadow: 0 10px 20px  rgba(0 0 0 / .25);
          }
          
        }
    
    
        /************** MARKERS **************/
        &::scroll-marker{
          content: ' ';
          height:20px;
          aspect-ratio: 1;
          background-color: var(--nav-marker-bg);
          border-radius:50%;
          transition: 150ms ease-in-out;
          scale: .75;
          opacity: .25;
        }
        /* current item marker */
        &::scroll-marker:target-current{
          opacity: 1;
          scale: 1;
        }
        /* hover and keyboard focus */
        &::scroll-marker:where(:hover,:focus-visible){
          opacity: 1;
        }
        /* keybaord focus-*/
        &::scroll-marker:focus-visible{
          outline: 1px dashed var(--nav-marker-bg);
          outline-offset: 4px;
        }
      }
    
      
      /************* NAV BUTTONS(left and right) ************/
      &::scroll-button(*){
        position: absolute;
        position-anchor: --carousel;
        width: var(--nav-btn-size);
        aspect-ratio: 1/1;
        font: inherit;
        background-color: var(--nav-btn-bg);
        display: grid;
        place-content: center;
        color: #FFF;
        border:none;
        border-radius: 50%;
        opacity: 0.7;
        cursor: pointer;
        transition: all 150ms ease-in-out;
        outline: 1px dashed transparent;
        outline-offset: 0px;
      }
      /* button - prev */
      &::scroll-button(inline-start){
        content: '❮';
        left: calc(anchor(left) - var(--nav-btn-size));
      }
      /* button - next */
      &::scroll-button(inline-end){
        content: '❯';
        right: calc(anchor(right) - var(--nav-btn-size));
      }
      /* hover and keyboard focus */
      &::scroll-button(*):not(:disabled):where(:hover,:focus-visible){
        opacity: 1;
        scale: 1.1;
      }
      /* keyboard focus*/
      &::scroll-button(*):focus-visible{
        outline: 1px dashed var(--nav-btn-bg);
        outline-offset: 4px;
      }
      /* disabled */
      &::scroll-button(*):disabled{
        opacity: .25;
        cursor: unset;
      }
    }
      
      /* general styling not relevant for this demo */
    @layer base {
      * {
        box-sizing: border-box;
      }
      :root {
        color-scheme: light dark;
        --bg-dark: rgb(16, 24, 40);
        --bg-light: rgb(248, 244, 238);
        --txt-light: rgb(10, 10, 10);
        --txt-dark: rgb(245, 245, 245););
        --line-light: rgba(0 0 0 / .25);
        --line-dark: rgba(255 255 255 / .25);
        /*
        --clr-bg: light-dark(var(--bg-light), var(--bg-dark));
        --clr-txt: light-dark(var(--txt-light), var(--txt-dark));
        --clr-lines: light-dark(var(--line-light), var(--line-dark));
        */
      }
     
      .body {
        background-color: #FFF;
        color: var(--txt-light);
        min-height: 100svh;
        margin: 0;
        padding: 2rem;
        font-family: "Jura", sans-serif;
        font-size: 1rem;
        line-height: 1.5;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        & > * {
          /*outline: 1px dashed red;*/
        }
      }
      h1 {
        margin: 0;
        font-size: 1.2rem;
      }
    
      .msg-supports {
        font-size: 0.8rem;
        /*
        @supports (animation-timeline: scroll()) {
          display: none;
        }
        @supports (order:sibling-index()) {
          display: none;
        }
        @supports (x: attr(x type(*))) {
          display: none;
        }
        */
        @supports selector(::scroll-marker-group) {
          display: none;
        }
      }
    }
    