    @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Fira+Sans+Extra+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rowdies:wght@300;400;700&display=swap');



    body {
      margin: 0;
      font-family: "Fira Sans Extra Condensed", sans-serif;
      overflow-x: hidden;
    }

    .custom-heading-color {
        color: #134a8f;
    }

    /* Header */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      padding: 15px 40px;
      /* position: fixed; */
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }
    .logo img {
        height: 100px;
        min-height: 100px;
        max-height: 100px;
        width: auto;
    }
    .call-btn {
        position: relative;
        overflow: hidden;
        background: #134a8f;
        color: #fff;
        font-weight: 700;
        border-radius: 6px;
        padding: 10px 22px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        transition: all 0.4s ease;
        box-shadow: 0 4px 12px rgba(19, 74, 143, 0.25);
    }

        /* Shine effect on hover */
        .call-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                120deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.5) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transition: all 0.6s ease;
        }

        .call-btn:hover {
            background: linear-gradient(135deg, #0b72e7, #134a8f);
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(11, 114, 231, 0.4);
        }

        /* Animate the shine */
        .call-btn:hover::before {
            left: 120%;
        }

        @media (max-width: 576px) {
          .call-btn {
              padding: 6px 5px;
              font-size: 7px;
          }
      }

    .menu-toggle {
      background: none;
      border: none;
      cursor: pointer;
    }
    .menu-toggle i {
      color: #134a8f;
      font-size: 28px;
    }

    /* Overlay Menu */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      display: flex;
      transform: translateX(100%);
      transition: 0.5s ease;
      z-index: 2000;
    }
    .overlay.active {
      transform: translateX(0);
    }

    .overlay .image-side {
      flex: 0.35;
      background: url('../assets/images/Lexus-RX-Gallery-7.jpg') center center/cover no-repeat;
    }

    .overlay .menu-side {
      flex: 0.4;
      background: #fefdf5;
      color: #134a8f;
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }

    .overlay .info-side {
      flex: 0.25;
      background: #134a8f;
      color: #fff;
      padding: 50px 50px;
      position: relative;
    }
    .a-color{
        color: #134a8f;
    }
    .a-color:hover{
        color: #adb5bd;
    }

    .close-btn {
      position: absolute;
      top: 40px;
      right: 40px;
      font-size: 36px;
      color: #fff;
      cursor: pointer;
    }

    .menu-side {
      background: #fefcf3;
      padding: 60px;
      width: 400px;
      min-height: 100vh;
      position: relative;
    }

    .menu-side ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .menu-side ul li {
      font-size: 28px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 25px;
      cursor: pointer;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .menu-side ul li i {
      font-size: 20px;
      color: #134a8f;
      margin-left: 15px;
      transition: transform 0.3s ease;
    }

    /* Dropdown */
    .submenu {
      display: none;
      list-style: none;
      margin-top: 10px;
      margin-left: 15px;
    }

    .submenu li {
      font-size: 18px !important;
      font-weight: normal;
      text-transform: none;
      margin-bottom: 10px;
      color: #134a8f;
      cursor: pointer;
    }

    .submenu.show {
      display: block;
      background-color: #efefef;
      padding: 30px;
    }

    .menu-side ul li.active i {
      transform: rotate(45deg);
    }

    /* Footer */
    .get-touch {
      position: absolute;
      bottom: 40px;
      left: 60px;
      transition: all 0.3s ease-in-out;
    }

    /* When checkbox checked → show submenu */
    #serviceToggle:checked + label + .submenu {
      display: block;
    }

    /* Hide get-touch when submenu is open */
    #serviceToggle:checked ~ .get-touch {
      opacity: 0;
      visibility: hidden;
      height: 0;
      overflow: hidden;
    }

    .get-touch small {
      font-weight: bold;
      display: block;
      margin-top: 10px;
    }

    .get-touch h5 {
      margin: 5px 0;
      color: #134a8f;
    }

    /* Right Info Panel */
    .info-side h6 {
      font-weight: 700;
      margin-bottom: 10px;
    }
    .info-side p {
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 25px;
    }

    .info-side a.btn {
      background: #fff;
      color: #134a8f;
      font-weight: 700;
      border: none;
    }

    .info-section {
        color: #fff;
        font-family: 'Montserrat', sans-serif;
    }

    .info-section h6 {
        font-size: 18px;
        font-weight: 700;
        margin: 30px 0 15px;
        color: #ffffff;
    }

    .info-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }

    .info-links a {
        color: #ffffff;
        font-size: 15px;
        text-decoration: none;
        font-weight: 500;
    }

    .info-links a:hover {
        opacity: 0.8;
    }


    @media (max-width: 992px) {
      .overlay {
        flex-direction: column;
      }
      .overlay .image-side {
        height: 200px;
        flex: none;
      }
      .overlay .menu-side, .overlay .info-side {
        flex: none;
        padding: 40px;
      }
    }
    /* Carousel Section */
    .carousel-item {
      height: 100vh;
      min-height: 650px;
      background-size: cover;
      background-position: center;
      position: relative;
      color: #fff;
    }

    .carousel-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 1;
    }

    .carousel-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .left-content h5 {
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .left-content h1 {
      font-size: 3rem;
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .btn-book {
      background: #134a8f;
      color: #fff;
      border: none;
      padding: 12px 30px;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-book:hover {
      background: #134a8f;
    }

    /* Right white box */
    .right-box {
      background: #fff;
      color: #134a8f;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    .right-box small {
      color: #134a8f;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
    }

    .right-box h2 {
      color: #134a8f;
      font-weight: 800;
      font-size: 2rem;
      margin: 10px 0 20px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(1);
      width: 2rem;
      height: 2rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .carousel-item {
        height: auto;
        padding: 80px 0;
      }

      .left-content,
      .right-box {
        text-align: center;
      }

      .right-box {
        margin-top: 30px;
      }

      .left-content h1 {
        font-size: 2rem;
      }
    }
    @media (max-width: 768px) {
        .image-side {
            display: none;
        }
    }
    .carousel-control-next, .carousel-control-prev {
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 5% !important;
        padding: 0;
        color: #fff;
        text-align: center;
        background: 0 0;
        border: 0;
        opacity: .5;
        transition: opacity .15s ease;
    }

    /* Custom Styles for Feature Cards */
        .card-default {
            background-color: #134a8f;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); 
        }

        .card-active {
            background-color: #6c757d;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); 
        }

        .feature-card:hover:not(.card-active) {
            background-color: #6c757d !important; 
            cursor: pointer;
        }

        .booking-box {
            background-color: white;
            padding: 2rem;
            position: absolute;
            top: 50%;
            right: 15%;
            transform: translateY(-50%);
            max-width: 350px;
        }

        @media (max-width: 992px) {
            .booking-box {
                position: static; 
                transform: none;
                margin-top: 2rem;
                margin-bottom: 2rem;
            }
        }

        .section-wrapper {
            background: #f8fafc;
            padding: 60px 0;
        }

        .section-heading {
            font-weight: 800;
            color: #134a8f;
            font-size: 1.6rem;
        }

        .section-subheading {
            font-weight: 700;
            color: #333;
            font-size: 1.4rem;
        }

    .text-highlight {
      font-weight: 600;
    }

    .info-box {
      background-color: #eaeef2;
      padding: 2rem;
      border-radius: 4px;
      text-align: center;
      font-weight: 700;
      color: #222;
    }

    .info-box img {
      width: 100%;
      object-fit: cover;
      opacity: 0.8;
    }

    .btn-book {
      background-color: #134a8f;
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      padding: 10px 25px;
    }

    .btn-book:hover {
      background-color: #134a8f;
      color: #fff;
    }

    .call-text {
      font-weight: 700;
      color: #134a8f;
    }

    .feature-list i {
      color: #333;
      margin-right: 10px;
    }

    .car-img {
      width: 100%;
      border-radius: 6px;
    }

    .bottom-grey {
      background-color: #777;
      height: 40px;
    }

    .top-bar-section {
        background-color: #3c3f4480;
        color: white;
        height: 150px;
        position: relative;
        z-index: 5; 
        padding-top: 4%;
        overflow: hidden;
    }

        .top-bar-text {
            font-size: 1.1rem;
            font-weight: 500;
            opacity: 0.8;
            letter-spacing: 0.5px;
            padding-left: 20px;
        }

        .contact-btn {
            background-color: #f1f1f1; 
            color: #3C3F44;
            border: none;
            font-weight: bold;
            padding: 8px 25px;
            font-size: 0.9rem;
            border-radius: 20px;
        }

        .contact-btn:hover {
            background-color: #134a8f; 
            color: #f7f7f7;
            border: none;
            font-weight: bold;
            padding: 8px 25px;
            font-size: 0.9rem;
            border-radius: 20px;
        }

        .main-content-wrapper {
            position: relative;
            z-index: 10;
            margin-top: -60px;
            background-color: transparent;
        }

        .content-row {
            position: relative;
            z-index: 2; 
            padding: 40px 0;
        }

        .small-title { 
            font-size: 0.7rem;
            text-transform: uppercase;
            color: #6c757d;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .main-heading-text {
            font-size: 2.2rem;
            font-weight: 900; 
            color: #3C3F44;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .blue-text {
            color: #134a8f; 
        }

        .feature-item {
            margin-bottom: 25px;
            padding-left: 25px; 
            position: relative;
        }

        .feature-headline {
            font-weight: bold;
            color: #3C3F44;
            margin-bottom: 3px;
            display: block;
        }


        .feature-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 10px;
            height: 10px;
            border: 1.5px solid #3C3F44; 
            border-radius: 50%;
            background-color: white;
        }

        .feature-description {
            font-size: 0.9rem;
            color: #6c757d;
            line-height: 1.4;
        }
        
        .image-container {
            padding-top: 60px;
        }

        /* Exact background color from the image */
        .custom-footer {
            background-color: #134a8f; 
            color: #495057;
            padding: 40px 0 20px 0;
            font-size: 0.95rem;
        }


        .footer-heading {
            font-size: 1rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .heading-underline {
            display: block;
            width: 50px;
            height: 2px;
            background-color: #adb5bd;
            margin-top: -10px;
            margin-bottom: 20px;
        }

        .footer-link {
            display: block;
            color: #ffffff;
            text-decoration: none;
            margin-bottom: 5px;
            transition: color 0.2s;
            font-size: 0.9rem;
            line-height: 30px;
        }

        .footer-link:hover {
            color:#6c757d;
            text-decoration: dotted;
        }


        .column-one-text {
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 20px;
            color: #fff;
        }

        .contact-graphic {
            font-size: 2.2rem;
            color: #adb5bd;
            margin-bottom: 10px;
        }
        
        .contact-number {
            font-size: 1.3rem;
            font-weight: bold;
            color: #6c757d;
        }

        .footer-bottom {
            border-top: 1px solid #e9ecef;
            padding-top: 15px;
            margin-top: 30px;
            font-size: 0.8rem;
            color: #6c757d;
        }

        .policy-links a {
            color: #6c757d;
            text-decoration: none;
            margin-left: 15px;
        }

        .policy-links a:hover {
            text-decoration: underline;
        }
        

        .row-cols-5 > * {
            flex: 0 0 auto;
            width: 20%;
        }
        
        .first-column-heading {
             padding-top: 0.25rem;
        }


        /* About */

        .banner-hero {
            background-image: url('../assets/images/Untitled-design-1.png'); 
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            position: relative;
            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .banner-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #134b8f7c; 
            z-index: 1;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            color: white;
            padding: 20px;
        }

        .main-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-top: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .breadcrumb-text {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 0.9rem;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .breadcrumb-text a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
        }
        
        @media (max-width: 767px) {
            .banner-hero {
                height: 300px;
                margin-top: 60px;
            }
            .main-title {
                font-size: 1.8rem;
            }
        }

        #features-section .card {
        background-color: #f8f9fa;
        border: none;
        transition: all 0.3s ease;
        min-height: 250px;
        padding: 20px;
        position: relative;
        overflow: hidden;
    }

    #features-section .card:hover {
        background-color: #134a8f !important;
        color: white !important;
        cursor: pointer;
    }

    #features-section .card:hover h5,
    #features-section .card:hover p,
    #features-section .card:hover a {
        color: white !important;
    }

    #features-section .card a {
        color: #134a8f;
        transition: color 0.3s ease;
    }
    
    .feature-icon-img {
        position: absolute;
        top: 50%;
        right: -30px;
        transform: translateY(-50%);
        width: 150px;
        height: 150px;
        opacity: 0.15;
        transition: opacity 0.3s ease;
    }

    #features-section .card:hover .feature-icon-img {
        opacity: 0.1;
    }

    .main-heading {
        color: #134a8f;
        font-weight: bold;
    }

    .content-box {
        background-color: rgba(0, 0, 0, 0.6);
        padding: 40px;
        border-radius: 8px;
        text-align: center;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .content-left {
        flex-grow: 1;
        text-align: center;
        padding-right: 30px;
    }

    .content-right {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .content-wrapper {
            align-items: center;
            width: 100%;
            max-width: 1200px;
            padding: 0 15px;
            margin-top: 10%;
    }

    .small-logo-on-banner {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 80px;
        height: auto;
    }

    @media (max-width: 768px) {
        .hero-banner {
            height: 400px;
        }
        .content-box {
            padding: 25px;
            max-width: 90%;
        }
        .content-wrapper {
            flex-direction: column;
            align-items: center;
            margin: 24% 0% 0% 8%
        }
        .content-left {
            text-align: center;
            padding-right: 0;
            margin-bottom: 20px;
        }
        .small-logo-on-banner {
             top: 10px;
             left: 10px;
             width: 60px;
        }
    }

    .btn-custom-blue {
        background-color: #134a8f;
        border-color: #134a8f;
        color: white;
        padding: 10px 25px;
        font-weight: bold;
        min-width: 180px;
    }
    .btn-custom-blue:hover {
        background-color: #0a58ca;
        border-color: #0a58ca;
    }

    .text-light-grey {
        color: rgba(255, 255, 255, 0.7);
    }

    .main-banner-title {
        font-size: 3rem;
        font-weight: bold;
        line-height: 1.2;
    }
     @media (max-width: 768px) {
        .main-banner-title {
            font-size: 2rem;
        }
    }
    .service-1-banner {
        position: relative;
        width: 100%;
        height: 500px;
        background-image: url('../assets/images/Silver-Service-Taxis-Sydney-Airport.png');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .banner-overlay-service-1 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .section-title {
      font-weight: 700;
      color: #4a4a4a;
    }
    .sub-heading {
      text-transform: uppercase;
      font-size: 14px;
      color: #666;
      letter-spacing: 1px;
    }
    .content-section {
      padding: 60px 15px;
    }
    .icon-box {
      display: flex;
      align-items: start;
      gap: 10px;
      margin-top: 25px;
    }
    .icon-box i {
      font-size: 28px;
      color: #134a8f;
    }
    .icon-box h6 {
      font-weight: 700;
      color: #4a4a4a;
      margin-bottom: 8px;
    }
    .contact-box {
      background: #f8f9fa;
      border-left: 4px solid #134a8f;
      padding: 15px 20px;
      margin-top: 25px;
      border-radius: 6px;
    }
    .contact-box h5 {
      font-weight: 700;
      color: #000;
      margin-bottom: 5px;
    }
    .contact-box small {
      color: #666;
    }
    img {
      border-radius: 8px;
    }

    .hero-banner {
        position: relative;
        width: 100%;
        height: 550px;
        background-image: url('../assets/images/CTC.jpg'); 
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-banner-book-taxi {
        position: relative;
        width: 100%;
        height: 550px;
        background-image: url('../assets/images/Lexus-RX-Gallery-7.jpg'); 
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-banner-melb{
        position: relative;
        width: 100%;
        height: 550px;
        background-image: url('../assets/images/Lexus-ES-hybridbackground-styles-desktop-1440x283-LEX-STK-CY23-0013.avif'); 
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .content-box {
        background-color: rgba(255, 255, 255, 0.9);
        padding: 40px;
        border-radius: 8px;
        text-align: left;
        max-width: 800px;
        color: #333;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .content-wrapper-ser {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .small-logo-on-banner {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 60px;
        height: auto;
    }

    .main-banner-title {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1.1;
        margin-top: 15px;
        color: #134a8f;
    }
    .text-subheading {
        color: #6c757d;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        margin-left: 70px;
    }

    .btn-blue-solid {
        background-color: #134a8f; /* Dark navy blue from the brand identity */
        border-color: #134a8f;
        color: white;
        padding: 10px 25px;
        font-weight: bold;
        min-width: 180px;
        transition: background-color 0.2s;
    }
    .btn-blue-solid:hover {
        background-color: #003366;
        border-color: #003366;
        color: #fff;
    }

    .btn-outline-blue-box {
        border: 2px solid #134a8f; /* Dark navy border */
        color: #134a8f;
        padding: 10px 25px;
        font-weight: bold;
        min-width: 180px;
        transition: all 0.2s;
    }
    .btn-outline-blue-box:hover {
        background-color: #134a8f;
        color: white;
    }

    /* 8. Responsiveness */
    @media (max-width: 768px) {
        .hero-banner {
            height: 400px;
        }
        .content-box {
            padding: 0px 10px;
            max-width: 95%;
        }
        .content-wrapper {
            flex-direction: column; 
            align-items: center;
            text-align: center; 
        }
        .content-left {
            text-align: center; 
            margin-bottom: 20px;
        }
        .main-banner-title {
            font-size: 2rem;
        }
        .content-right {
            align-items: center;
        }
        .small-logo-on-banner {
             top: 15px;
             left: 50%;
             transform: translateX(-50%);
        }
        .text-subheading {
            margin-left: 0;
            text-align: center;
            margin-top: 50px;
        }
    }

    /* Service Cards */
    .service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    }


    /* Hover effect */
    .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .service-card img {
      border-radius: 8px;
      width: 100%;
      height: auto;
    }
    .service-content {
      padding: 30px;
    }
    .service-content h5 {
      font-weight: 700;
      color: #333;
      margin-bottom: 10px;
    }
    .service-content h6 {
      color: #555;
      font-weight: 600;
      margin-bottom: 15px;
    }
    .service-content p {
      font-size: 15px;
      line-height: 1.7;
      color: #555;
    }
    .read-more {
      display: inline-block;
      margin-top: 10px;
      font-weight: 600;
      color: #134a8f;
      text-decoration: none;
    }
    .read-more:hover {
      text-decoration: underline;
    }

    @media (max-width: 767px) {
      .hero {
        height: 60vh;
      }
      .hero-content h1 {
        font-size: 1.8rem;
      }
    }














    /* Gradient Background */
    .gradient-bg {
        background: linear-gradient(135deg, #e8f1ff, #cfe3ff, #e6f0ff);
        padding: 80px 0;
        border-radius: 0 0 40px 40px;
    }

    /* Title */
    .section-title {
        font-weight: 800;
        font-size: 38px;
        color: #0a2b6c;
    }

    /* Soft highlight */
    .highlight-text {
        letter-spacing: 2px;
        font-size: 13px;
        color: #5279c3;
        font-weight: 600;
        text-transform: uppercase;
    }

    /* Glassmorphism Card */
    .glass-box {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 35px;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
        transition: 0.3s;
    }

    .glass-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
    }

    /* Icons */
    .feature-icon {
        width: 46px;
        height: 46px;
        background: #0d47a1;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 12px;
        font-size: 22px;
        margin-right: 12px;
    }

    /* Bullet List */
    .info-list li {
        margin-bottom: 12px;
        font-size: 16px;
        display: flex;
        align-items: center;
    }

    .info-list li i {
        color: #0d47a1;
        margin-right: 10px;
        font-size: 18px;
    }

    /* Fade animation */
    .fade-up {
        opacity: 0;
        transform: translateY(25px);
        animation: fadeUp 0.8s ease forwards;
    }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    ul.columnsDevide {
        column-count: 2;
    }

