
        /* Section 7 Styles */
        .section-7 {
            padding: 60px 0;
        }

        .section-7-grid-wrapper {
            width: 1400px;
            margin: 0 auto;
        }

        .section-7-steps-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items:flex-start;
            justify-content: center;
        }

        /* Sticky Card (Left Side) */
        .section-7-steps-sticky-card {
            height: 611px;
            width: 500px;
            position: sticky;
            top: 80px;
            align-self: start;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding-bottom:36px;
            padding-top:18px;
        }

        .section-7-sticky-card-wrapper {
            background-color:rgb(247, 248, 252);
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            padding:30px;
            gap:20px;
            width: 500px; /* Specified width */
            height: 613px; /* Specified height */
        }


        .section-7-image-wrapper {
            position: relative;
            width: 100%; /* or a fixed width depending on layout */
          }
          
          .section-7-hero-background-image {
            background-image: url('../image/6075041a5cc5c760b623c7e7_Travel004.jpeg'); 
            background-size: cover;
            background-position: center;
            height: 200px;
            width: 462px;
            position: relative;
            overflow: hidden;
            border-radius: 6px;
          }
          
          /* Overlay slices */
          .section-7-image-overlay {
            position: absolute;
            width: 100%;
            height: 50%;
            background-color: white;
            /* background-color: transparent; */
            z-index: 2;
            transition: transform 1.2s ease;
          }
          
          /* Initial */
          .section-7-image-overlay.top {
            top: 0;
            transform: translateY(0%);
            border-top-left-radius: 6px;
            border-top-right-radius: 6px;
          }
          
          .section-7-image-overlay.bottom {
            bottom: 0;
            transform: translateY(0%);
            border-bottom-left-radius: 6px;
            border-bottom-right-radius: 6px;
          }
          
          /* Animate */
          .section-7-hero-background-image.revealed .section-7-image-overlay.top {
            transform: translateY(-100%);
          }
          
          .section-7-hero-background-image.revealed .section-7-image-overlay.bottom {
            transform: translateY(100%);
          }
          

        .section-7-steps-intro {
            display: flex;
            flex-direction: column;
            gap: 20px;
            flex: 1; /* Allow the intro to take remaining space */
        }

        .section-7-steps-description {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .section-7-subtitle-wrapper {
            margin-bottom: 10px;
        }

        .section-7-subtitle {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #081c3a; /* Dark color for subtitle */
        }

        .section-7-steps-description h2 {
            font-size: 36px;
            font-weight: 700;
            color: #081c3a;
            line-height: 1.2;
        }

        .section-7-body-display-large {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
        }

        .section-7-button {
            height: 52px;
            width: 275px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            background-color: #3572ff; 
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
            transform-style: preserve-3d;
        }

        .section-7-button:hover {
            background-color: #5a3de6; /* Slightly darker purple on hover */
        }

        /* Steps (Right Side) */
        .section-7-steps-cards {
            display: flex;
            flex-direction: column;
            gap: 40px;
            position: relative;
        }

        .section-7-subtitle-intro-wrapper {
            margin-bottom: 40px;
        }

        .section-7-horizontal-line {
            margin-left: 150px;
            width: 200px;
            height: 2px;
            background-color: #e6e6f3;
            margin-top: 10px;
        }

        .section-7-steps-tracker {
            position: absolute;
            top: 70px; /* Adjusted to start below "How it works" */
            bottom: 0;
            left: 0; /* Moved to the left edge to separate from cards */
            width: 4px;
            background-color: rgba(192, 192, 211, 0.2); /* Solid line */
            z-index: 0;
        }

        .section-7-how-it-works-fill {
            width: 100%;
            height: 0;
            background-color: #081c3a;
            transition: height 0.5s ease;
        }

        .section-7-steps-card-wrapper {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-left: 48px; /* Offset to separate cards from the vertical line */
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translate3d(0px, 40%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 5deg);
            }
            100% {
                opacity: 1;
                transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
            }
        }

        .section-7-steps-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
            opacity: 0; /* Start hidden */
            width: 618px;
            height: 324px;
        }
        
        /* Apply animation only when the "animate" class is added */
        .section-7-steps-card.animate {
            animation: fadeIn 0.5s ease forwards;
        }
        
        .section-7-steps-card-wrapper .section-7-steps-card:nth-child(1).animate {
            animation-delay: 0.2s;
        }
        .section-7-steps-card-wrapper .section-7-steps-card:nth-child(2).animate {
            animation-delay: 0.8s;
        }
        .section-7-steps-card-wrapper .section-7-steps-card:nth-child(3).animate {
            animation-delay: 1.2s;
        }
        .section-7-steps-card-wrapper .section-7-steps-card:nth-child(4).animate {
            animation-delay: 1.6s;
        }

        /* Staggered animation delays for each step card */
        .section-7-steps-card:nth-child(1) {
            animation-delay: 0.5s;
        }

        .section-7-steps-card:nth-child(2) {
            animation-delay: 1s;
        }

        .section-7-steps-card:nth-child(3) {
            animation-delay: 1.5s;
        }

        .section-7-steps-card:nth-child(4) {
            animation-delay: 2s;
        }

        .section-7-steps-circle {
            position: absolute;
            left: -71px; 
            width: 48px;
            height: 48px;
            background-color: #fff;
            flex-shrink: 0;
        }

        .section-7-steps-circle.center {
            top: 50%;
            transform: translateY(-50%);
        }

        .section-7-steps-circle.end {
            top: 50%;
            transform: translateY(-50%);
        }

        .section-7-steps-dot {
            width: 12px;
            height: 12px;
            background-color: rgba(192, 192, 211, 0.2);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
        }

        /* .section-7-card-arrow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 2px;
            height: 100%;
            background-color: #e6e6f3;
            z-index: 0;
        } */

        .section-7-steps-circle-outline {
            width: 48px;
            height: 48px;
            border: 4px solid rgba(192, 192, 211, 0.2);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            transform-style: preserve-3d;
            animation: scaleIn 0.5s ease forwards;
        }

        @keyframes scaleIn {
            0% {
                transform: translate(-50%, -50%) scale(0);
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
            }
        }

        /* Staggered animation delays for circle outlines */
        .section-7-steps-card:nth-child(1) .section-7-steps-circle-outline {
            animation-delay: 0.2s;
        }

        .section-7-steps-card:nth-child(2) .section-7-steps-circle-outline {
            animation-delay: 0.4s;
        }

        .section-7-steps-card:nth-child(3) .section-7-steps-circle-outline {
            animation-delay: 0.6s;
        }

        .section-7-steps-card:nth-child(4) .section-7-steps-circle-outline {
            animation-delay: 0.8s;
        }

        .section-7-steps-content {
            flex: 1;
        }

        .section-7-steps-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background-color: rgb(247, 248, 252);
            border-radius: 50%;
            font-size: 14px;
            font-weight: 700;
            color: rgb(81, 99, 129);
            margin-bottom: 10px;
        }

        .section-7-steps-description h3 {
            font-size: 24px;
            font-weight: 700;
            color: #081c3a;
            margin-bottom: 10px;
        }

        .section-7-body-display {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
        }
