body {
                font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
                background: #ffffff;
                color: #333333;
                overflow-x: hidden;
            }

            .scope-section {
                min-height: 100vh;
                padding: 60px 20px;
                position: relative;
                margin-top: -60px;
            }

            .scope-container {
                max-width: 1400px;
                margin: 0 auto;
                position: relative;
            }

            .section-header {
                text-align: center;
                margin-bottom: 60px;
                opacity: 0;
                transform: translateY(50px);
                animation: fadeInUp 1s ease-out 0.3s forwards;
            }

            .section-title {
                font-size: clamp(3rem, 8vw, 5rem);
                font-weight: 800;
                margin-bottom: 20px;
                color: #006094;
                position: relative;
                display: inline-block;
            }

            .section-title::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
                width: 100px;
                height: 4px;
                background: linear-gradient(90deg, #006094, #0080c7);
                border-radius: 2px;
            }

            .section-subtitle {
                font-size: 1.2rem;
                color: #666666;
                max-width: 600px;
                margin: 30px auto 0;
                line-height: 1.6;
            }

            .scope-timeline {
                position: relative;
                margin-top: 50px;
            }

            .timeline-line {
                position: absolute;
                left: 50%;
                top: 0;
                bottom: 0;
                width: 4px;
                background: linear-gradient(180deg, #006094, #0080c7, #006094);
                transform: translateX(-50%);
                border-radius: 2px;
            }

            .timeline-line::before {
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 20px;
                height: 20px;
                background: #006094;
                border-radius: 50%;
                box-shadow: 0 0 0 6px #ffffff, 0 0 0 10px rgba(0, 96, 148, 0.2);
            }

            .timeline-line::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 20px;
                height: 20px;
                background: #006094;
                border-radius: 50%;
                box-shadow: 0 0 0 6px #ffffff, 0 0 0 10px rgba(0, 96, 148, 0.2);
            }

            .scope-item {
                position: relative;
                margin-bottom: 100px;
                opacity: 0;
                animation: slideIn 0.8s ease-out forwards;
            }

            .scope-item:nth-child(1) {
                animation-delay: 0.5s;
            }

            .scope-item:nth-child(2) {
                animation-delay: 0.7s;
            }

            .scope-item:nth-child(3) {
                animation-delay: 0.9s;
            }

            .scope-item:nth-child(4) {
                animation-delay: 1.1s;
            }

            .scope-item:nth-child(5) {
                animation-delay: 1.3s;
            }

            .scope-item:nth-child(6) {
                animation-delay: 1.5s;
            }

            .scope-item:nth-child(odd) .scope-content {
                margin-right: 60%;
                text-align: right;
            }

            .scope-item:nth-child(even) .scope-content {
                margin-left: 60%;
                text-align: left;
            }

            .scope-content {
                background: #ffffff;
                padding: 25px;
                border-radius: 20px;
                box-shadow: 0 10px 40px rgba(0, 96, 148, 0.1);
                border: 2px solid transparent;
                position: relative;
                transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                cursor: pointer;
            }

            .scope-content::before {
                content: '';
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                background: linear-gradient(135deg, #006094, #0080c7, #006094);
                border-radius: 20px;
                opacity: 0;
                transition: opacity 0.4s ease;
                z-index: -1;
            }

                /* .scope-content:hover::before {
                    opacity: 1;
                }

                .scope-content:hover {
                    transform: translateY(-10px) scale(1.02);
                    box-shadow: 0 20px 60px rgba(0, 96, 148, 0.2);
                } */

            .scope-icon-wrapper {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 550px;
                height: auto;
                border-radius: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                /* box-shadow: 0 10px 30px rgba(0, 96, 148, 0.3); */
                z-index: 10;
                overflow: hidden;
                padding: 8px;
                
            }
            .scope-icon-wrapper video{
                border-radius: 30px;
            }

            .scope-item:nth-child(odd) .scope-icon-wrapper {
                right: 0;
            }

            .scope-item:nth-child(even) .scope-icon-wrapper {
                left: 0;
            }

            /* .scope-icon-wrapper:hover {
                transform: translateY(-50%) scale(1.1) rotate(10deg);
            } */

            .scope-icon {
                width: 54px;
                height: 54px;
                background: #ffffff;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                overflow: hidden;
            }

            .scope-icon img {
                width: 40px;
                height: 40px;
                object-fit: contain;
                display: block;
            }

            .scope-number {
                position: absolute;
                top: -15px;
                font-size: 3rem;
                font-weight: 900;
                color: rgba(0, 96, 148, 0.1);
                /* z-index: -1; */
            }

            .scope-item:nth-child(odd) .scope-number {
                right: 20px;
            }

            .scope-item:nth-child(even) .scope-number {
                left: 20px;
            }

           .scope-content:hover{
            background-color: #006094;
           }
            .scope-title {
                font-size: 1.8rem;
                font-weight: 700;
                margin-bottom: 15px;
                color: #006094;
                transition: color 0.4s ease;
            }

            .scope-content:hover .scope-title {
                color: #fff;
            }
            .scope-content:hover .scope-number {
                color: #4fbdfc;
            }

            .scope-description {
                color: #666666;
                line-height: 1.7;
                font-size: 1rem;
                transition: color 0.4s ease;
            }

            .scope-content:hover .scope-description {
                color: #dbf1ff;
            }

            .scope-tags {
                margin-top: 20px;
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
            }

            .scope-item:nth-child(odd) .scope-tags {
                justify-content: flex-end;
            }

            .scope-item:nth-child(even) .scope-tags {
                justify-content: flex-start;
            }

            .tag {
                background: rgba(0, 96, 148, 0.1);
                color: #006094;
                padding: 6px 12px;
                border-radius: 20px;
                font-size: 0.85rem;
                font-weight: 500;
                transition: all 0.3s ease;
            }

            .scope-content:hover .tag {
                background: #006094;
                color: #ffffff;
            }

            .floating-shapes {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                pointer-events: none;
                z-index: -1;
            }

            .floating-shape {
                position: absolute;
                opacity: 0.05;
                animation: floatShape 8s ease-in-out infinite;
            }

            .floating-shape:nth-child(1) {
                top: 10%;
                left: 5%;
                width: 100px;
                height: 100px;
                background: #006094;
                border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
                animation-delay: 0s;
            }

            .floating-shape:nth-child(2) {
                top: 30%;
                right: 10%;
                width: 80px;
                height: 80px;
                background: #0080c7;
                border-radius: 50%;
                animation-delay: 2s;
            }

            .floating-shape:nth-child(3) {
                bottom: 20%;
                left: 8%;
                width: 60px;
                height: 60px;
                background: #006094;
                border-radius: 20%;
                animation-delay: 4s;
            }

            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            @keyframes slideIn {
                from {
                    opacity: 0;
                    transform: translateX(100px);
                }

                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }

            .scope-item:nth-child(even) {
                animation-name: slideInLeft;
            }

            @keyframes slideInLeft {
                from {
                    opacity: 0;
                    transform: translateX(-100px);
                }

                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }

            @keyframes floatShape {

                0%,
                100% {
                    transform: translateY(0) rotate(0deg);
                }

                50% {
                    transform: translateY(-30px) rotate(180deg);
                }
            }

            @media (max-width: 768px) {
                .timeline-line {
                    left: 30px;
                }

                .scope-item:nth-child(odd) .scope-content,
                .scope-item:nth-child(even) .scope-content {
                    margin-left: 80px;
                    margin-right: 0;
                    text-align: left;
                }

                .scope-icon-wrapper {
                    width: 60px;
                    height: 60px;
                    padding: 6px;
                }

                .scope-icon {
                    width: 48px;
                    height: 48px;
                }

                .scope-icon img {
                    width: 32px;
                    height: 32px;
                }

                .scope-item:nth-child(odd) .scope-icon-wrapper,
                .scope-item:nth-child(even) .scope-icon-wrapper {
                    left: -30px;
                    right: auto;
                }

                .scope-item:nth-child(odd) .scope-number,
                .scope-item:nth-child(even) .scope-number {
                    left: 20px;
                    right: auto;
                }

                .scope-item:nth-child(odd) .scope-tags,
                .scope-item:nth-child(even) .scope-tags {
                    justify-content: flex-start;
                }

                .scope-content {
                    padding: 20px;
                }
            }
            .animate-on-scroll{
                opacity: 1;
            }
            .animate-bounce-up{
                opacity: 1;
            }
    .dream-temple-section {
                max-width: 1400px;
                margin: 0 auto;
                padding: 60px 20px;
                text-align: center;
                position: relative;
                overflow: hidden;
            }

            .floating-elements {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                pointer-events: none;
                z-index: 1;
            }

            .floating-circle {
                position: absolute;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.1);
                animation: float 6s ease-in-out infinite;
            }

            .floating-circle:nth-child(1) {
                width: 80px;
                height: 80px;
                top: 10%;
                left: 10%;
                animation-delay: 0s;
            }

            .floating-circle:nth-child(2) {
                width: 120px;
                height: 120px;
                top: 20%;
                right: 15%;
                animation-delay: 2s;
            }

            .floating-circle:nth-child(3) {
                width: 60px;
                height: 60px;
                bottom: 20%;
                left: 20%;
                animation-delay: 4s;
            }

            @keyframes float {
                0%, 100% { transform: translateY(0px) rotate(0deg); }
                50% { transform: translateY(-20px) rotate(180deg); }
            }

            .hero-title1 {
                font-size: 5rem !important; 
                font-weight: bolder;
                font-weight: bold;
                color: #006094;
                margin-bottom: 20px;
                position: relative;
                z-index: 2;
            }

            .section-title {
                font-size: 3rem;
                font-weight: 700;
                color: #1e40af;
                margin-bottom: 20px;
                letter-spacing: 2px;
                opacity: 0;
                transform: translateY(30px);
                animation: fadeInUp 1s ease-out 0.2s forwards;
            }

            .section-subtitle {
                font-size: 1.2rem;
                color: #64748b;
                /* margin-bottom: 80px; */
                opacity: 0;
                transform: translateY(20px);
                animation: fadeInUp 1s ease-out 0.4s forwards;
            }

            .steps-container {
                display: flex;
                flex-wrap: wrap; /* Allows steps to wrap on smaller screens */
                justify-content: center;
                align-items: center; /* Vertically align steps and arrows */
                margin-top: 30px;
                position: relative;
                z-index: 1;
                padding: 0 10px; /* Give some horizontal padding for responsiveness */
            }

            .step {
                padding: 0; /* Reset default padding */
                margin: 10px 0; /* Vertical margin for spacing if steps wrap */
                width: 150px; /* Fixed width for steps to enforce wrap and text layout */
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .step:nth-child(1) { animation: fadeInUp 1s ease-out 0.6s forwards; }
            .step:nth-child(2) { animation: fadeInUp 1s ease-out 0.8s forwards; }
            .step:nth-child(3) { animation: fadeInUp 1s ease-out 1s forwards; }
            .step:nth-child(4) { animation: fadeInUp 1s ease-out 1.2s forwards; }
            .step:nth-child(5) { animation: fadeInUp 1s ease-out 1.4s forwards; }

            .step-icon {
                width: 150px;
                height: 150px;
                margin: 0 auto 30px;
                /* background: linear-gradient(135deg, #3b82f6, #1d4ed8); */
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                overflow: hidden;
                transition: all 0.4s ease;
                cursor: pointer;
                border: 3px solid transparent;
                background-clip: padding-box;
                animation: pulse 2s ease-in-out infinite;
                /* margin-top: 70px; */
            }

            .step-icon-image {
                width: 150px;
                height: 150px;
                border-radius: 50%;
                object-fit: cover;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                opacity: 0.9;
                transition: all 0.4s ease;
            }

            .step-icon:hover {
                transform: translateY(-10px) scale(1.05);
                box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
                border-color: #60a5fa;
                animation-play-state: paused;
            }

            .step-icon:hover .step-icon-image {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.1);
            }

            .step-icon::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
                transform: rotate(45deg);
                transition: all 0.6s ease;
                opacity: 0;
            }

            .step-icon:hover::before {
                opacity: 1;
                animation: shimmer 1s ease-in-out;
            }

            .step-number {
                font-size: 2.5rem;
                font-weight: bold;
                color: white;
                z-index: 3;
                position: relative;
                text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
                animation: numberFloat 3s ease-in-out infinite;
            }

            .step-title {
                font-size: 1.3rem;
                font-weight: 600;
                color: #1e40af;
                margin-bottom: 10px;
                transition: color 0.3s ease;
            }

            .step:hover .step-title {
                color: #3b82f6;
            }

            .step-description {
                font-size: 0.95rem;
                color: #64748b;
                line-height: 1.6;
            }

            .connector-arrow-wrapper {
                flex-shrink: 0;
                margin: 0 5px;
            }

            .unique-arrow-svg {
                width: 60px;
                height: 20px;
                fill: none;
                stroke: #006094;
                stroke-width: 3;
                margin-bottom: 80px;
            }

            .unique-arrow-path {
                stroke-dasharray: 5, 5;
                animation: dash 2s linear infinite;
            }

            .simple-arrow-tip {
                fill: #006094;
                stroke: #006094;
                stroke-width: 1;
            }

            .connector-arrow-wrapper .unique-arrow-path {
                fill: none;
                stroke: #006094; /* A lighter, more subtle grey-purple as in image */
                stroke-width: 3; /* Thinner line for a delicate look */
                stroke-linecap: round;
                stroke-linejoin: round;
                stroke-dasharray: 5 5; /* Smaller, tighter dots */
            }


            @keyframes dash {
                to {
                    stroke-dashoffset: -20;
                }
            }

            /* Dash flow animation for the line */
            @keyframes dash-flow {
                from { stroke-dashoffset: 0; }
                to { stroke-dashoffset: 8; } /* Adjusted offset for smaller dashes */
            }

            .connector-arrow-wrapper .dash-part {
                animation: dash-flow 1.5s linear infinite; /* Faster flow */
            }

            /* Simplified Arrowhead - static triangle */
            .connector-arrow-wrapper .simple-arrow-tip {
                fill: #006094; /* Match line color */
            }
            .cta-button {
                background: linear-gradient(45deg, #006094, #4a90e2);
                color: white;
                border: none;
                padding: 15px 30px;
                font-size: clamp(1rem, 2vw, 1.1rem);
                font-weight: 600;
                border-radius: 50px;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 8px 25px rgba(0, 96, 148, 0.3);
                position: relative;
                z-index: 2;
                margin-top: 30px;
            }

            .cta-button:hover {
                transform: translateY(-3px);
                box-shadow: 0 12px 35px rgba(0, 96, 148, 0.4);
                background: linear-gradient(45deg, #4a90e2, #006094);
            }

            .animate-on-scroll {
                opacity: 1;
                transform: translateY(0);
            }

            /* Mobile specific adjustments */
            @media (max-width: 768px) {
                .dream-temple-section {
                    padding: 40px 10px;
                }
                
                .steps-container {
                    gap: 5px;
                    padding: 20px 10px;
                    /* Ensure horizontal scroll on mobile if needed */
                    -webkit-overflow-scrolling: touch;
                }
                
                .step {
                    min-width: 100px;
                    padding: 0 5px;
                }
                
                .step-icon {
                    width: 80px;
                    height: 80px;
                    margin-bottom: 10px;
                }
                
                .step-title {
                    font-size: 0.75rem;
                    max-width: 90px;
                }
                
                .unique-arrow-svg {
                    width: 40px;
                    height: 16px;
                }
                
                .connector-arrow-wrapper {
                    margin: 0 2px;
                }
            }

            /* Very small screens */
            @media (max-width: 480px) {
                .step {
                    min-width: 80px;
                }
                
                .step-icon {
                    width: 80px;
                    height: 80px;
                }
                
                .step-title {
                    font-size: 0.7rem;
                    max-width: 75px;
                }
                
                .unique-arrow-svg {
                    width: 30px;
                    height: 14px;
                }
            }
    .animate-on-scroll {
        transform: translateY(40px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        opacity: 1;
    }


        .scope-icon {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .scope-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }

        .scope-icon video {
            display: block;
            width: 512px;
            height: 512px;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .scope-icon:hover video {
            transform: scale(1.05);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .scope-icon video {
                width: 300px;
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .scope-icon video {
                width: 250px;
                height: 250px;
            }
        }

        @media(max-width:768px){
            .scope-icon-wrapper{
                display: none;
            }
        }


        /* Mobile Styles - Centered Horizontal Layout */
@media (max-width: 768px) {
    .dream-temple-section {
        padding: 40px 0; /* Remove side padding to allow full width */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-align: center;
        padding: 0 20px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 20px;
        text-align: center;
    }

    .steps-container {
        width: 100vw; /* Full viewport width */
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 20px 0;
        margin: 0;
        gap: 15px;
        justify-content: center; /* Center when content fits */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        
        /* Center the scrollable content */
        scroll-behavior: smooth;
        
        /* Add padding to center the first and last items */
        padding-left: calc(50vw - 60px); /* Half screen minus half first item */
        padding-right: calc(50vw - 60px); /* Half screen minus half last item */
    }

    /* Custom scrollbar for better UX */
    .steps-container::-webkit-scrollbar {
        height: 4px;
    }

    .steps-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }

    .steps-container::-webkit-scrollbar-thumb {
        background: #006094;
        border-radius: 2px;
    }

    .step {
        min-width: 120px;
        flex-shrink: 0;
        scroll-snap-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 96, 148, 0.2);
    }

    .step-icon-image {
        width: 80px;
        height: 80px;
        object-fit: cover;
    }

    .step-title {
        font-size: 0.85rem;
        max-width: 100px;
        line-height: 1.3;
        font-weight: 600;
        color: #333;
        text-align: center;
    }

    .connector-arrow-wrapper {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .unique-arrow-svg {
        width: 40px;
        height: 15px;
    }
}

/* Extra Small Mobile - Even more centered */
@media (max-width: 480px) {
    .hero-title1 {
        font-size: 1.5rem;
        padding: 0 15px;
    }

    .section-subtitle {
        padding: 15px 15px;
    }

    .steps-container {
        gap: 10px;
        /* Adjust padding for smaller screens */
        padding-left: calc(50vw - 50px);
        padding-right: calc(50vw - 50px);
    }

    .step {
        min-width: 100px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .step-icon-image {
        width: 80px;
        height: 80px;
    }

    .step-title {
        font-size: 0.75rem;
        max-width: 90px;
    }

    .unique-arrow-svg {
        width: 30px;
        height: 12px;
        margin-bottom: 40px !important;
    }
}

/* Alternative approach for perfect centering */
@media (max-width: 768px) {
    /* If you want the steps to be perfectly centered without scroll padding */
    .steps-container.centered-approach {
        width: 100%;
        padding: 20px 20px;
        justify-content: center;
        align-items: center;
        
        /* If content overflows, allow scrolling but keep centered */
        overflow-x: auto;
    }
    
    /* When content fits in viewport, center everything */
    .steps-container.centered-approach::before,
    .steps-container.centered-approach::after {
        content: '';
        flex: 1;
        min-width: 0;
    }
}

/* JavaScript-enhanced centering (add this class via JS) */
.steps-container.js-centered {
    scroll-snap-type: x mandatory;
}

.steps-container.js-centered .step {
    scroll-snap-align: center;
}

/* Ensure smooth scrolling to center */
.steps-container.js-centered {
    scroll-behavior: smooth;
}

 .scope-of-work-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .section-title-wrapper {
            text-align: center;
            margin-bottom: 50px;
        }

        .hero-title1 {
            color: #006094;
            font-weight: bolder;
            font-size: 2.5rem;
            margin-bottom: 10px;
            animation: bounceUp 1s ease-out;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 20px;
        }

        @keyframes bounceUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            60% {
                opacity: 1;
                transform: translateY(-10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }


     

        



  @media (max-width: 768px) {
            .dream-temple-section {
                padding: 40px 0;
                overflow-x: hidden;
            }

            .hero-title1 {
                font-size: 1.8rem;
                margin-bottom: 15px;
                padding: 0 20px;
            }

            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 30px;
                padding: 20px 20px;
            }

            /* Force horizontal layout with scroll */
            .steps-container {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                justify-content: flex-start;
                align-items: center;
                width: 100%;
                overflow-x: auto;
                overflow-y: hidden;
                padding: 20px 0;
                margin: 0;
                gap: 15px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scroll-behavior: smooth;
                
                /* Add padding to center content better */
                padding-left: 20px;
                padding-right: 20px;
            }

            /* Custom scrollbar */
            .steps-container::-webkit-scrollbar {
                height: 4px;
            }

            .steps-container::-webkit-scrollbar-track {
                background: #f1f1f1;
                border-radius: 2px;
            }

            .steps-container::-webkit-scrollbar-thumb {
                background: #006094;
                border-radius: 2px;
            }

            .step {
                min-width: 120px;
                max-width: 120px;
                flex-shrink: 0;
                scroll-snap-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .step-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 12px;
                border: 2px solid #006094;
            }

            .step-icon-image {
                width: 80px;
                height: 80px;
            }

            .step-title {
                font-size: 0.9rem;
                line-height: 1.2;
                font-weight: 600;
                color: #333;
                margin: 0;
                word-wrap: break-word;
                hyphens: auto;
            }

            .connector-arrow-wrapper {
                flex-shrink: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 5px;
            }

            .unique-arrow-svg {
                width: 40px;
                height: 15px;
                 margin-bottom: 40px !important;
            }
        }

        /* Extra small mobile devices */
        @media (max-width: 480px) {
            .hero-title1 {
                font-size: 1.5rem;
                padding: 0 15px;
            }

            .section-subtitle {
                font-size: 0.95rem;
                padding: 10px 15px;
            }

            .steps-container {
                gap: 10px;
                padding-left: 15px;
                padding-right: 15px;
            }

            .step {
                min-width: 100px;
                max-width: 100px;
            }

            .step-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 10px;
            }

            .step-icon-image {
                width: 80px;
                height: 80px;
            }

            .step-title {
                font-size: 0.8rem;
            }

            .unique-arrow-svg {
                width: 30px;
                height: 12px;
            }

            .connector-arrow-wrapper {
                margin: 0 2px;
            }
        }

        /* Ensure no vertical stacking on any mobile device */
        @media (max-width: 768px) {
            .steps-container {
                flex-direction: row !important;
                flex-wrap: nowrap !important;
            }
            
            .step {
                display: flex !important;
                flex-direction: column !important;
            }
            .hero-title1{
                font-size: 2rem !important;
            }
        }



        .scope-item1 {
                position: relative;
                margin-bottom: 50px;
                opacity: 0;
                animation: slideIn 0.8s ease-out forwards;
            }
            .card-inner:nth-child(1) {
                animation-delay: 0.5s;
            }
            .card-inner:nth-child(2) {
                animation-delay: 0.7s;
            }
            .card-inner:nth-child(3) {
                animation-delay: 0.9s;
            }
           

 .details-section1 {
            padding: 60px 40px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .section-header1 {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1.5s ease forwards;
        }

        .main-title2 {
            font-size: 4.5rem;
            font-weight: 100;
            color: #fff;
            letter-spacing: 16px;
            text-transform: uppercase;
            margin-bottom: 20px;
            position: relative;
            font-family: 'Times New Roman', serif;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        }

        .title-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
            z-index: -1;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .title-center {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 0 50px;
            display: inline-block;
            position: relative;
        }

        .title-center::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
            border-radius: 10px;
            z-index: -1;
            opacity: 0;
            animation: rainbowGlow 3s ease-in-out infinite alternate;
        }

        .subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
            letter-spacing: 6px;
            text-transform: uppercase;
            margin-top: 20px;
            animation: shimmer 2s ease-in-out infinite alternate;
        }

        .established {
            position: absolute;
            right: 0;
            top: 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 3px;
            text-transform: uppercase;
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }

        

        .cards-container1 {
            display: flex;
            gap: 40px;
            padding: 40px 0;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            position: relative;
            width: 100%;
            justify-content: flex-start;
            padding-left: 40px; /* To make the first card align with the section padding */
            padding-right: 40px; /* To make the last card align with the section padding */
            scroll-snap-type: x mandatory; /* For smooth snapping when scrolling */
        }

        .cards-container1::-webkit-scrollbar {
            display: none;
        }

        .magical-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent, 
                #ff6b6b 20%, 
                #4ecdc4 40%, 
                #45b7d1 60%, 
                #96ceb4 80%, 
                transparent);
            transform: translateY(-50%);
            z-index: 1;
            animation: flowingLine 4s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
        }

        .card1 {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            width: 280px; /* Slightly increased card width */
            height: 200px; /* Slightly increased card height */
            position: relative;
            transition: all 0.4s ease-out; /* Smoother transition */
            cursor: pointer;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 25px 20px;
            /* opacity: 0; */
            transform: translateY(30px) scale(0.95); /* More subtle initial state */
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            scroll-snap-align: center; /* Snap cards to center when scrolling */
        }

        .card1::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); /* Reduced opacity for subtlety */
            transition: left 0.6s ease-out; /* Faster shimmer */
        }

        .card1::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%); /* Reduced opacity for subtlety */
            opacity: 0;
            transition: opacity 0.4s ease; /* Faster glow */
            pointer-events: none;
        }

        .card1:hover::before {
            left: 100%;
        }

        .card1:hover::after {
            opacity: 1;
        }

        .card1.animate {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .card1:hover {
            transform: translateY(-10px) scale(1.02); /* More subtle lift and scale */
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); /* Refined shadow */
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
        }

        .card-number1 {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2.5rem;
            font-weight: 100;
            color: rgba(255, 255, 255, 0.2);
            font-family: 'Times New Roman', serif;
            transition: all 0.4s ease-out; /* Smoother transition */
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.3;
        }

        .card1:hover .card-number1 {
            opacity: 1;
            transform: scale(1.1) rotate(5deg); /* More subtle scale and rotation */
            text-shadow: 0 0 15px rgba(255, 107, 107, 0.6); /* Reduced glow */
        }

        .card-title1 {
            font-size: 1.4rem;
            font-weight: 300;
            color: #fff;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
            font-family: 'Times New Roman', serif;
            letter-spacing: 1px;
            line-height: 1.3;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .card-title1::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 25px;
            height: 2px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            transition: all 0.4s ease-out; /* Smoother transition */
            border-radius: 2px;
        }

        .card1:hover .card-title1::after {
            width: 50px; /* Slightly smaller width */
            box-shadow: 0 0 10px rgba(255, 107, 107, 0.6); /* Reduced glow */
        }

        .card-description1 {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            position: relative;
            z-index: 2;
            font-weight: 300;
            letter-spacing: 0.5px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        }

        .connection-dots {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 40px;
            z-index: 2;
            pointer-events: none;
            width: 100%;
        }

        .connection-dot {
            width: 10px; /* Slightly smaller dot */
            height: 10px; /* Slightly smaller dot */
            border-radius: 50%;
            opacity: 0;
            animation: dotPulse 4s ease-in-out infinite;
            box-shadow: 0 0 15px currentColor; /* Reduced glow */
        }

        /* Adjusted animation delays for connection dots */
        .connection-dot:nth-child(1) { background: #ff6b6b; animation-delay: 0s; }
        .connection-dot:nth-child(2) { background: #4ecdc4; animation-delay: 0.5s; } /* Adjusted delay */
        .connection-dot:nth-child(3) { background: #45b7d1; animation-delay: 1s; } /* Adjusted delay */
        .connection-dot:nth-child(4) { background: #96ceb4; animation-delay: 1.5s; } /* Adjusted delay */
        .connection-dot:nth-child(5) { background: #ffeaa7; animation-delay: 2s; } /* Adjusted delay */

        .floating-particles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 3px; /* Slightly smaller particles */
            height: 3px; /* Slightly smaller particles */
            background: rgba(255, 255, 255, 0.5); /* Reduced opacity */
            border-radius: 50%;
            animation: floatParticle 10s ease-in-out infinite; /* Slower, more subtle float */
            box-shadow: 0 0 8px currentColor; /* Subtle glow */
        }

        /* Adjusted particle positions and delays for a more organic feel */
        .particle:nth-child(1) { top: 15%; left: 15%; animation-delay: 0s; background: #ff6b6b; }
        .particle:nth-child(2) { top: 70%; left: 25%; animation-delay: 2.5s; background: #4ecdc4; }
        .particle:nth-child(3) { top: 40%; right: 20%; animation-delay: 5s; background: #45b7d1; }
        .particle:nth-child(4) { top: 85%; right: 10%; animation-delay: 7.5s; background: #96ceb4; }
        .particle:nth-child(5) { top: 5%; left: 50%; animation-delay: 1s; background: #ffeaa7; }
        .particle:nth-child(6) { top: 50%; right: 5%; animation-delay: 3s; background: #ff6b6b; }
        .particle:nth-child(7) { top: 25%; left: 70%; animation-delay: 6s; background: #4ecdc4; }
        .particle:nth-child(8) { top: 90%; left: 60%; animation-delay: 9s; background: #45b7d1; }

        .scroll-indicator {
            position: fixed;
            bottom: 40px;
            right: 40px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeInUp 2s ease 2s forwards;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 25px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 10; /* Ensure it's above other elements */
        }

        .scroll-arrow {
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
            position: relative;
            animation: arrowFlow 2s ease-in-out infinite;
        }

        .scroll-arrow::after {
            content: '';
            position: absolute;
            right: -2px;
            top: -4px;
            width: 10px;
            height: 10px;
            border-right: 2px solid #4ecdc4;
            border-top: 2px solid #4ecdc4;
            transform: rotate(45deg);
        }

        /* Keyframe Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes rainbowGlow {
            0% { opacity: 0; }
            50% { opacity: 0.5; } /* Reduced peak opacity */
            100% { opacity: 0; }
        }

        @keyframes shimmer {
            0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
            100% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.3); } /* Reduced max shimmer */
        }

        @keyframes flowingLine {
            0%, 100% { 
                background: linear-gradient(90deg, transparent, #ff6b6b 20%, #4ecdc4 40%, #45b7d1 60%, #96ceb4 80%, transparent);
            }
            50% { 
                background: linear-gradient(90deg, transparent, #4ecdc4 20%, #45b7d1 40%, #96ceb4 60%, #ffeaa7 80%, transparent);
            }
        }

        @keyframes dotPulse {
            0%, 100% {
                opacity: 0.2; /* Reduced min opacity */
                transform: scale(1);
            }
            50% {
                opacity: 0.8; /* Reduced peak opacity */
                transform: scale(1.3); /* Reduced scale */
            }
        }

        @keyframes floatParticle {
            0%, 100% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
                opacity: 0.3; /* Subtle opacity range */
            }
            25% {
                transform: translateY(-15px) translateX(8px) rotate(45deg); /* More subtle movement */
                opacity: 0.8;
            }
            50% {
                transform: translateY(-30px) translateX(-8px) rotate(90deg);
                opacity: 0.5;
            }
            75% {
                transform: translateY(-15px) translateX(12px) rotate(135deg);
                opacity: 0.8;
            }
        }

        @keyframes arrowFlow {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(8px); /* More subtle movement */
            }
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .main-title2 {
                font-size: 3.5rem;
                letter-spacing: 12px;
            }

            .cards-container1 {
                gap: 30px;
                padding: 30px 20px; /* Adjust padding for smaller screens */
            }

            .card1 {
                width: 260px;
                height: 190px;
            }
        }

        @media (max-width: 768px) {
            .details-section1 {
                padding: 40px 20px;
            }

            .section-header1 {
                margin-bottom: 60px;
            }

            .main-title2 {
                font-size: 2.8rem;
                letter-spacing: 8px;
            }

            .subtitle {
                font-size: 0.9rem;
                letter-spacing: 4px;
            }

            .cards-container1 {
                gap: 25px;
                padding: 20px 15px; /* Further adjusted padding */
            }

            .card1 {
                width: 220px; /* Further reduced card size */
                height: 170px;
                padding: 20px 15px;
            }

            .card-title1 {
                font-size: 1.2rem;
                margin-bottom: 10px;
            }

            .card-description1 {
                font-size: 0.8rem;
                -webkit-line-clamp: 3; /* Keep 3 lines for description */
            }

            .card-number1 {
                font-size: 2rem;
                top: 10px;
                right: 15px;
            }

            .established,
            .pinkies-up {
                position: relative; /* Change to relative for mobile */
                text-align: center;
                margin: 15px auto; /* Center them */
                writing-mode: horizontal-tb; /* Change text orientation */
            }

            .scroll-indicator {
                bottom: 20px;
                right: 20px;
                padding: 12px 20px;
                font-size: 0.8rem;
                gap: 10px;
            }

            .scroll-arrow {
                width: 30px;
            }
        }

        @media (max-width: 480px) {
            .details-section1 {
                padding: 30px 15px;
            }

            .section-header1 {
                margin-bottom: 40px;
            }

            .main-title2 {
                font-size: 2rem;
                letter-spacing: 6px;
                padding: 0 30px; /* Adjust padding for title-center */
            }

            .title-center {
                padding: 0 30px;
            }

            .subtitle {
                font-size: 0.8rem;
                letter-spacing: 3px;
            }

            .cards-container1 {
                flex-direction: column; /* Stack cards vertically on very small screens */
                align-items: center; /* Center stacked cards */
                gap: 20px;
                padding: 20px 0; /* Remove horizontal padding, let cards manage width */
                scroll-snap-type: y mandatory; /* Change snap direction */
            }

            .card1 {
                width: 90%; /* Make cards take most of the width */
                max-width: 300px; /* Limit max width for readability */
                height: auto; /* Allow height to adjust based on content */
                min-height: 160px; /* Ensure a minimum height */
                padding: 20px;
            }

            .card-title1 {
                font-size: 1.1rem;
            }

            .card-description1 {
                font-size: 0.75rem;
                -webkit-line-clamp: unset; /* Remove line clamp for full description */
                overflow: visible;
            }

            .established,
            .pinkies-up {
                margin: 10px auto;
            }

            .connection-dots {
                display: none; /* Hide connection dots on very small screens */
            }

            .scroll-indicator {
                bottom: 15px;
                right: 15px;
                padding: 10px 15px;
                font-size: 0.7rem;
            }
        }




        .cards-container {
            display: grid !important;
            grid-template-columns: repeat(3, 1fr) !important;
            gap: 2rem !important;
        }

        .card-wrapper {
            perspective: 1000px !important;
            height: 400px !important;
        }

        .card {
            position: relative !important;
            width: 100% !important;
            height: 100% !important;
            transform-style: preserve-3d !important;
            transition: transform 0.6s !important;
            cursor: pointer !important;
        }

        .card-wrapper:hover .card {
            transform: rotateY(180deg) !important;
        }

        .card-wrapper.flipped .card {
            transform: rotateY(180deg) !important;
        }

        .card-front,
        .card-back {
            position: absolute !important;
            width: 100% !important;
            height: 100% !important;
            backface-visibility: hidden !important;
            border-radius: 20px !important;
            overflow: hidden !important;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
        }

        .card-front {
            background: white !important;
            z-index: 2 !important;
        }

        .card-back {
            background: linear-gradient(135deg, #006094, #45b7d1, #96ceb4) !important;
            background-size: 400% 400%  !important;
            animation: gradientShift 6s ease infinite !important;
            transform: rotateY(180deg) !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            padding: 2rem !important;
            color: white !important;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .card-image {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            display: block !important;
        }

        .card-overlay {
            position: absolute !important;
            bottom: 0 !important;
            left: 0 !important;
            right: 0 !important;
            background: linear-gradient(transparent, rgba(0,0,0,0.8)) !important;
            color: white !important;
            padding: 2rem !important;
        }

        .card-title {
            font-size: 2rem !important;
            font-weight: bold !important;
            margin-bottom: 0.5rem !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
            color: #fff !important;
        }

        .card-subtitle {
            font-size: 1rem !important;
            opacity: 0.9 !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
        }

        .card-description {
            text-align: center !important;
            color: white !important;
            font-size: 1.1rem !important;
            line-height: 1.6 !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
        }

        .card-description p {
            font-size: 1.8rem !important;
            margin-bottom: 1rem !important;
            font-weight: bold !important;
            color: #fff !important;
            line-height: 1.4 !important;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem !important;
                margin-bottom: 2rem !important;
            }
            
            .cards-container {
                grid-template-columns: 1fr !important;
                gap: 1.5rem !important;
            }
            
            .card-wrapper {
                height: 300px !important;
            }
            
            .card-overlay {
                padding: 1.5rem !important ;
            }
        }

        @media(max-width:768px){
            .card-description p{
                font-size: 1.2rem !important;
            }
        }


     /* Inquiry-Section */

         .inquiry-section {
            position: relative;
            text-align: center;
            padding: 100px 20px;
            margin: 50px auto;
            max-width: 1200px;
            background: linear-gradient(135deg, #667eea 0%, #006094 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        /* Animated background particles */
        .inquiry-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:white;stop-opacity:0.1"/><stop offset="100%" style="stop-color:white;stop-opacity:0"/></radialGradient></defs><circle cx="20" cy="20" r="2" fill="url(%23a)"><animate attributeName="cy" values="20;80;20" dur="4s" repeatCount="indefinite"/></circle><circle cx="80" cy="80" r="2" fill="url(%23a)"><animate attributeName="cy" values="80;20;80" dur="3s" repeatCount="indefinite"/></circle><circle cx="50" cy="50" r="1.5" fill="url(%23a)"><animate attributeName="cx" values="50;30;70;50" dur="5s" repeatCount="indefinite"/></circle></svg>');
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Content wrapper */
        .inquiry-content {
            position: relative;
            z-index: 2;
        }

        /* Heading styles */
        .inquiry-heading {
            font-size: 3rem;
            color: #fff;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideInUp 1s ease-out;
        }

        .inquiry-subheading {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: slideInUp 1s ease-out 0.3s both;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Button container */
        .button-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 40px;
            animation: slideInUp 1s ease-out 0.6s both;
        }

        /* Primary button */
        .inquiry-button {
            position: relative;
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
        }

        .inquiry-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .inquiry-button:hover::before {
            left: 100%;
        }

        .inquiry-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
        }

        /* Secondary button */
        .inquiry-button-secondary {
            position: relative;
            display: inline-block;
            padding: 18px 40px;
            background: transparent;
            color: #fff;
            text-decoration: none;
            border: 2px solid #fff;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .inquiry-button-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #fff;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .inquiry-button-secondary:hover::before {
            width: 100%;
        }

        .inquiry-button-secondary:hover {
            color: #667eea;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

        /* Floating elements */
        .floating-element {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatAround 8s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-delay: -2s;
        }

        .floating-element:nth-child(3) {
            bottom: 15%;
            left: 20%;
            animation-delay: -4s;
        }

        .floating-element:nth-child(4) {
            bottom: 10%;
            right: 10%;
            animation-delay: -6s;
        }

        @keyframes floatAround {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.5;
            }
            25% {
                transform: translateY(-20px) rotate(90deg);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-10px) rotate(180deg);
                opacity: 0.3;
            }
            75% {
                transform: translateY(-30px) rotate(270deg);
                opacity: 0.6;
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .inquiry-section{
                width: 90%;
                /* padding: 20px 20px; */
            }
            .inquiry-heading {
                font-size: 2.2rem;
                
            }
            
            .inquiry-subheading {
                font-size: 1rem;
            }
            
            .button-container {
                flex-direction: column;
                align-items: center;
            }
            
            .inquiry-button,
            .inquiry-button-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            
            .floating-element {
                width: 40px;
                height: 40px;
            }
        }

        /* Pulse animation for attention */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .inquiry-button {
            animation: pulse 3s ease-in-out infinite;
        }

        .inquiry-button:hover {
            animation: none;
        }

        /* Additional decorative elements */
        .inquiry-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 50%;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translateX(-50%);
            animation: ripple 3s ease-in-out infinite;
        }

        @keyframes ripple {
            0% {
                transform: translateX(-50%) scale(0.8);
                opacity: 1;
            }
            100% {
                transform: translateX(-50%) scale(1.5);
                opacity: 0;
            }
        }
        


        @media(min-width:810px) and (max-width:1200px){
            .scope-icon-wrapper{
                width: 450px !important;
            }
            .inquiry-section{
                width:90% !important; 
            }
            .inquiry-heading{
                line-height: 1;
            }
        }

        @media(max-width:820px){
             .scope-icon-wrapper{
               width: 350px !important;
            }
        }

      