* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .home-section {
    background: #f8f9fa;
    padding: 0;
    margin-top: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    overflow: hidden;
}

        .home-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(19, 60, 85, 0.4);
            z-index: 1;
        }

        .home-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .home-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 800px;
        }

        .home-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .home-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: #133c55;
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 300px;
            height: 60px;
            object-fit: contain;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #386fa4;
        }

        /* Section 1 - Our Services (matching your image) */
          .section_services {
            background: url('/man.png');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .section_services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(19, 60, 85, 0.8), rgba(56, 111, 164, 0.6));
            z-index: 1;
        }

        .section_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .section_intro_card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 50px;
            border-radius: 25px;
            max-width: 900px;
            margin: 0 auto 60px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .section_title {
            font-size: 3.5rem;
            color: #133c55;
            margin-bottom: 1.5rem;
            font-weight: 300;
            letter-spacing: -1px;
        }

        .section_intro_text {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .section_primary_btn {
            display: inline-block;
            background: linear-gradient(135deg, #133c55, #386fa4);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(19, 60, 85, 0.3);
        }

        .section_primary_btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(19, 60, 85, 0.4);
        }

        .section_tabs_container {
            margin-top: 60px;
        }

        .section_tab_buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .section_tab_button {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 15px 25px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1rem;
            backdrop-filter: blur(10px);
            white-space: nowrap;
        }

        .section_tab_button:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .section_tab_button.active {
            background: white;
            color: #133c55;
            border-color: white;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .section_tab_content {
            position: relative;
            min-height: 400px;
        }

        .section_service_card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            height: 450px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            pointer-events: none;
        }

        .section_service_card.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .section_card_image {
            width: 50%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .section_card_image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(19, 60, 85, 0.8), rgba(56, 111, 164, 0.6));
            z-index: 1;
        }

        .section_card_content {
            width: 50%;
            padding: 40px;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .section_card_icon {
            font-size: 3rem;
            color: #386fa4;
            margin-bottom: 1.5rem;
        }

        .section_card_title {
            font-size: 1.8rem;
            color: #133c55;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .section_card_description {
            color: #666;
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .section_card_btn {
            display: inline-block;
            background: linear-gradient(135deg, #59a5d8, #91c7f7);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(89, 165, 216, 0.3);
        }

        .section_card_btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(89, 165, 216, 0.4);
        }

        .section_service_card:nth-child(1) .section_card_image {
            background: linear-gradient(135deg, #133c55, #386fa4);
        }

        .section_service_card:nth-child(2) .section_card_image {
            background: linear-gradient(135deg, #1e5f74, #59a5d8);
        }

        .section_service_card:nth-child(3) .section_card_image {
            background: linear-gradient(135deg, #386fa4, #59a5d8);
        }

        .section_service_card:nth-child(4) .section_card_image {
            background: linear-gradient(135deg, #59a5d8, #91c7f7);
        }

        .section_service_card:nth-child(5) .section_card_image {
            background: linear-gradient(135deg, #91c7f7, #bee1ff);
        }

        @media (max-width: 768px) {
            .section_services {
                padding: 80px 0 60px;
            }

            .section_intro_card {
                padding: 30px;
                margin: 0 auto 40px;
            }

            .section_title {
                font-size: 2.5rem;
            }

            .section_tab_buttons {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .section_tab_button {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .section_service_card {
                flex-direction: column;
                height: auto;
                min-height: 500px;
                position: relative;
            }

            .section_card_image,
            .section_card_content {
                width: 100%;
            }

            .section_card_image {
                height: 200px;
            }

            .section_card_content {
                padding: 30px;
            }

            .section_tab_content {
                min-height: 500px;
            }
        }
        /* Section 2 - About */
        .about-section {
            padding: 80px 0;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: #133c55;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .about-image {
    height: 400px;
    background: linear-gradient(45deg, #133c55, #386fa4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.about-image::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.6s ease;
}

.about-image:hover::before {
    left: 100%;
}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(19, 60, 85, 0.3);
}

        /* Section 3 - Process */
        .process_section-title {
            font-size: 3.5rem;
            color: #283e5a;
            font-weight: 300;
            letter-spacing: -1px;
            margin-bottom: 2rem;
            text-align: center;
        }
        .process-section {
        padding: 80px 0;
        background-image: url('/city.png'); /* Replace with your image path */
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        }

        .process-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        right: 0; bottom: 0;
        background: rgba(255, 255, 255, 0.5); /* Optional overlay for contrast */
        z-index: -1;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #133c55;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .step-title {
            font-size: 1.2rem;
            color: #133c55;
            margin-bottom: 1rem;
        }

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 60, 85, 0.05), rgba(56, 111, 164, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(19, 60, 85, 0.15);
}

.process-step:hover::before {
    opacity: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #133c55;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-number {
    background: #386fa4;
    transform: rotate(10deg) scale(1.1);
}

        /* Section 4 - Benefits (New Design) */



        .Benefit_section-title {
            font-size: 3.5rem;
            color: #ffffff;
            font-weight: 300;
            letter-spacing: -1px;
            margin-bottom: 2rem;
            text-align: center;
        }


        .benefits-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #133c55 0%, #1e5f74 50%, #386fa4 100%);
            position: relative;
            overflow: hidden;
        }

        .benefits-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .benefits-section .section-title {
            color: white;
            position: relative;
            z-index: 2;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .benefit-card:hover::before {
            left: 100%;
        }

        .benefit-card:hover {
            transform: translateY(-15px) scale(1.05);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .benefit-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 3;
        }

        .benefit-card:hover .benefit-icon {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(10deg) scale(1.1);
        }

        .benefit-title {
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            margin: 0;
        }

        .benefit-description {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.7;
            font-size: 1rem;
            position: relative;
            z-index: 3;
        }

        /* Floating animation for benefit cards */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

       
        /* NEW SECTION - Join Our Company */
        .join-section {
            padding: 100px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .join-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 235, 59, 0.05));
            z-index: 1;
        }

        .join-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .join-content h2 {
            font-size: 3rem;
            color: #133c55;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .join-content p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 3rem;
        }

        .join-highlights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .join-highlight {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .join-highlight:hover {
            transform: translateY(-5px);
        }

        .join-highlight-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }

        .join-highlight h3 {
            color: #133c55;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .join-highlight p {
            color: #666;
            font-size: 0.95rem;
            margin: 0;
        }

        .btn-yellow {
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            color: #333;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
        }

        .btn-yellow:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
            background: linear-gradient(135deg, #ffeb3b, #ffc107);
        }

        /* REDESIGNED CONTACT SECTION */
        

        /* Footer */
        footer {
            background: #133c55;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        .footer-bottom {
            color: #bdc3c7;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-intro {
                font-size: 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .home-content h1 {
                font-size: 2.5rem;
            }

            .home-content p {
                font-size: 1.1rem;
            }

            .benefit-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .join-highlights {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .join-content h2 {
                font-size: 2rem;
            }

            .contact-header h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 1200px) and (min-width: 769px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .join-highlights {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* Additional hover effects for service cards */
        .service-card {
            cursor: pointer;
        }

        .service-card:hover {
            animation: pulse 0.6s ease-in-out;
        }

        @keyframes pulse {
            0% { transform: translateY(-10px) scale(1.02); }
            50% { transform: translateY(-12px) scale(1.03); }
            100% { transform: translateY(-10px) scale(1.02); }
        }

        /* Enhanced Hero Content Styles */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffc107;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.btn-primary {
    background: linear-gradient(135deg, #ffc107, #ffeb3b);
    color: #333;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.2rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

         .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a1929 0%, #1a2f42 25%, #2d4a63 50%, #3e5c7a 75%, #4a6fa5 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(74,144,194,0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(168,208,230,0.08) 0%, transparent 50%);
            opacity: 0.8;
        }

        .contact-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .contact-header {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
            z-index: 2;
        }

        .contact-header h2 {
            font-size: 4rem;
            margin-bottom: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 0%, #a8d0e6 50%, #7bb3d9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(255,255,255,0.1);
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 10px rgba(255,255,255,0.3)); }
            to { filter: drop-shadow(0 0 20px rgba(168,208,230,0.5)); }
        }

        .contact-header p {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 300;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: stretch;
            position: relative;
            z-index: 2;
        }

        .contact-info-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 32px;
            padding: 4rem;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4a90c2 0%, #7bb3d9 50%, #a8d0e6 100%);
            border-radius: 32px 32px 0 0;
        }

        .contact-info-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(74,144,194,0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .contact-info-card:hover::after {
            opacity: 1;
        }

        .contact-info-card:hover {
            transform: translateY(-12px) scale(1.03);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 25px 50px rgba(19, 60, 85, 0.4);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .contact-info-card h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
            font-weight: 700;
        }

        .contact-info-card p {
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .contact-details {
            list-style: none;
            margin-top: 2.5rem;
        }

        .contact-details li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .contact-details li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #4a90c2 0%, #7bb3d9 100%);
            transform: scaleY(0);
            transition: transform 0.4s ease;
        }

        .contact-details li:hover::before {
            transform: scaleY(1);
        }

        .contact-details li:hover {
            transform: translateX(15px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .contact-icon {
            font-size: 1.5rem;
            margin-right: 1.5rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #4a90c2 0%, #7bb3d9 100%);
            border-radius: 20px;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 10px 25px rgba(74, 144, 194, 0.4);
            transition: all 0.3s ease;
        }

        .contact-details li:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 35px rgba(74, 144, 194, 0.6);
        }

        .contact-details strong {
            color: #ffffff;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .contact-details a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .contact-details a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #4a90c2 0%, #7bb3d9 100%);
            transition: width 0.3s ease;
        }

        .contact-details a:hover::after {
            width: 100%;
        }

        .contact-details a:hover {
            color: #a8d0e6;
        }

        .contact-cta {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 32px;
            padding: 4rem;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .contact-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #7bb3d9 0%, #a8d0e6 50%, #d4e6f1 100%);
            border-radius: 32px 32px 0 0;
        }

        .contact-cta::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: 50%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(168,208,230,0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .contact-cta:hover::after {
            opacity: 1;
            bottom: -40%;
        }

        .contact-cta:hover {
            transform: translateY(-12px) scale(1.03);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 25px 50px rgba(19, 60, 85, 0.4);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .contact-cta h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
            font-weight: 700;
        }

        .contact-cta p {
            margin-bottom: 3rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .btn {
            background: linear-gradient(135deg, #4a90c2 0%, #7bb3d9 100%);
            color: white;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(74, 144, 194, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn::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 ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            background: linear-gradient(135deg, #5ba0d2 0%, #8bc3e9 100%);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 35px rgba(74, 144, 194, 0.5);
        }

        .btn-large {
            padding: 1.5rem 3.5rem;
            font-size: 1.2rem;
            border-radius: 30px;
        }

        .quote-btn {
            width: 100%;
            text-align: center;
            margin-top: 2rem;
            font-size: 1.2rem;
            padding: 1.5rem 2rem;
            border-radius: 20px;
        }

        .hero-buttons {
            margin-top: 3rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #e0ca4a 0%, #fdc91e 100%);
            color: white;
            padding: 1.5rem 3rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(255, 232, 21, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::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 ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #e0ca4a 0%, #fdc91e 100%);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 35px rgba(255, 232, 30, 0.5);
        }

        /* Enhanced Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 25, 41, 0.9);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.4s ease;
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
            margin: 2rem;
            padding: 0;
            border-radius: 40px;
            width: 100%;
            max-width: 700px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 50px 100px rgba(19, 60, 85, 0.4);
            animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .modal-content::-webkit-scrollbar {
            display: none;
        }

        .modal-content {
            scrollbar-width: none;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(80px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .close {
            position: absolute;
            right: 2rem;
            top: 2rem;
            font-size: 2rem;
            font-weight: bold;
            color: #133c55;
            cursor: pointer;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(19, 60, 85, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 1001;
        }

        .close:hover {
            background: rgba(19, 60, 85, 0.2);
            transform: rotate(90deg) scale(1.1);
            color: #0a2332;
        }

        .quote-form {
            padding: 5rem;
            padding-top: 6rem;
        }

        .form-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .quote-form h2 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #133c55;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #133c55 0%, #4a90c2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-methods {
            display: flex;
            gap: 3rem;
            margin-bottom: 4rem;
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(19, 60, 85, 0.08) 0%, rgba(74, 144, 194, 0.08) 100%);
            border-radius: 25px;
            border: 1px solid rgba(19, 60, 85, 0.15);
        }

        .contact-method {
            flex: 1;
            text-align: center;
        }

        .contact-method h4 {
            color: #133c55;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .social-icon,
        .social-icon2 {
            display: inline-block;
            width: 60px;
            height: 60px;
            background-color: #f8fbff;
            border-radius: 15px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin: 0 0.5rem;
            cursor: pointer;
            border: 2px solid rgba(19, 60, 85, 0.1);
        }

        .social-icon {
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjQ0NyAyMC40NTJoLTMuNTU0di01LjU2OWMwLTEuMzI4LS4wMjctMy4wMzctMS44NTItMy4wMzctMS44NTMgMC0yLjEzNiAxLjQ0NS0yLjEzNiAyLjkzOXY1LjY2N0g5LjM1MVY5aDMuNDE0djEuNTYxaC4wNDZjLjQ3Ny0uOSAxLjYzNy0xLjg1IDMuMzctMS44NSAzLjYwMSAwIDQuMjY3IDIuMzcgNC4yNjcgNS40NTV2Ni4yODZ6TTUuMzM3IDcuNDMzYy0xLjE0NCAwLTIuMDYzLS45MjYtMi4wNjMtMi4wNjUgMC0xLjEzOC45Mi0yLjA2MyAyLjA2My0yLjA2MyAxLjE0IDAgMi4wNjQuOTI1IDIuMDY0IDIuMDYzIDAgMS4xMzktLjkyNSAyLjA2NS0yLjA2NCAyLjA2NXptMS43ODIgMTMuMDE5SDMuNTU1VjloMy41NjR2MTEuNDUyeiIgZmlsbD0iIzAwNjZDQyIvPgo8L3N2Zz4K');
            background-size: 24px;
            background-repeat: no-repeat;
            background-position: center;
        }

        .social-icon2 {
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI0IDEyLjA3M2MwLTYuNjI3LTUuMzczLTEyLTEyLTEycy0xMiA1LjM3My0xMiAxMmMwIDUuOTkgNC4zODggMTAuOTU0IDEwLjEyNSAxMS45Mjd2LTguNDM3SDcuMDc4di0zLjQ5aDMuMDQ3VjkuNDNjMC0zLjAwNyAxLjc5Mi00LjY2OSA0LjUzMy00LjY2OSAxLjMxMiAwIDIuNjg2LjIzNCAyLjY4Ni4yMzR2Mi45NTNoLTEuNTEzYy0xLjQ5MSAwLTEuOTUzLjkyNS0xLjk1MyAxLjg3NHYyLjI1aDMuMzI4bC0uNTMyIDMuNDloLTIuNzk2djguNDM3QzE5LjYxMiAyMy4wMjcgMjQgMTguMDYyIDI0IDEyLjA3M3oiIGZpbGw9IiMxODc3RjIiLz4KPC9zdmc+');
            background-size: 24px;
            background-repeat: no-repeat;
            background-position: center;
        }

        .social-icon:hover,
        .social-icon2:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(19, 60, 85, 0.3);
            border-color: rgba(19, 60, 85, 0.3);
        }

        .form-row {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .form-group {
            flex: 1;
        }

        .form-group.full-width {
            flex: none;
            width: 100%;
        }

        .form-group label {
            display: block;
            margin-bottom: 1rem;
            color: #133c55;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1.5rem;
            border: 2px solid rgba(19, 60, 85, 0.2);
            border-radius: 20px;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: rgba(255, 255, 255, 0.8);
            color: #133c55;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4a90c2;
            box-shadow: 0 0 0 6px rgba(74, 144, 194, 0.1);
            background: white;
            transform: translateY(-2px);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
            font-family: inherit;
        }

        .submit-btn {
            background: linear-gradient(135deg, #133c55 0%, #4a90c2 100%);
            color: white;
            padding: 1.8rem 5rem;
            border: none;
            border-radius: 20px;
            font-size: 1.3rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            width: 100%;
            margin-top: 2rem;
            box-shadow: 0 10px 30px rgba(19, 60, 85, 0.3);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::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 ease;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 45px rgba(19, 60, 85, 0.4);
            background: linear-gradient(135deg, #0a2332 0%, #3a80b2 100%);
        }

        @media (max-width: 768px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-info-card,
            .contact-cta {
                padding: 3rem;
            }

            .contact-header h2 {
                font-size: 2.8rem;
            }

            .form-row {
                flex-direction: column;
                gap: 1.5rem;
            }

            .contact-methods {
                flex-direction: column;
                gap: 2rem;
            }

            .quote-form {
                padding: 3rem;
                padding-top: 5rem;
            }

            .quote-form h2 {
                font-size: 2.5rem;
            }

            .contact-section {
                padding: 80px 0;
            }

            .container {
                padding: 0 1rem;
            }
        }


        /* testimonial area */

  .testimony-section {
            width: 100%;
            margin: 0;
            text-align: center;
            background: linear-gradient(135deg, #133c55 0%, #0f2942 100%);
            min-height: 100vh;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .testimony-title {
            font-size: 3rem;
            font-weight: bold;
            color: white;
            margin-bottom: 60px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            animation: testimony-fadeInDown 1s ease-out;
        }

        .testimony-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimony-card {
            background: linear-gradient(145deg, rgba(19, 60, 85, 0.15), rgba(19, 60, 85, 0.05));
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 45px 35px;
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 15px 35px rgba(19, 60, 85, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(19, 60, 85, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
            animation: 
                testimony-fadeInUp 0.8s ease-out forwards,
                testimony-cardFloat 4s ease-in-out infinite;
            opacity: 0;
            transform: translateY(50px);
        }

        .testimony-card:nth-child(1) {
            animation-delay: 0.2s;
            animation-duration: 4s;
        }

        .testimony-card:nth-child(2) {
            animation-delay: 0.4s;
            animation-duration: 4.5s;
        }

        .testimony-card:nth-child(3) {
            animation-delay: 0.6s;
            animation-duration: 5s;
        }

        .testimony-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(19, 60, 85, 0.2), transparent);
            transition: left 0.8s ease;
        }

        .testimony-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(19, 60, 85, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .testimony-card:hover::before {
            left: 100%;
        }

        .testimony-card:hover::after {
            opacity: 1;
        }

        .testimony-card:hover {
            transform: translateY(-20px) scale(1.05) rotateX(5deg);
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.25),
                0 25px 50px rgba(19, 60, 85, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border-color: rgba(19, 60, 85, 0.4);
            background: linear-gradient(145deg, rgba(19, 60, 85, 0.25), rgba(19, 60, 85, 0.1));
        }

        .testimony-stars {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            gap: 5px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .testimony-star {
            font-size: 1.8rem;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            animation: testimony-starGlow 2s ease-in-out infinite alternate;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .testimony-star:nth-child(1) { animation-delay: 0s; }
        .testimony-star:nth-child(2) { animation-delay: 0.2s; }
        .testimony-star:nth-child(3) { animation-delay: 0.4s; }
        .testimony-star:nth-child(4) { animation-delay: 0.6s; }
        .testimony-star:nth-child(5) { animation-delay: 0.8s; }

        .testimony-star:hover {
            transform: scale(1.3) rotate(18deg);
        }

        .testimony-text {
            font-size: 1.15rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
            font-style: italic;
            position: relative;
            font-weight: 300;
            letter-spacing: 0.3px;
        }

        .testimony-text::before {
            content: '"';
            font-size: 5rem;
            color: rgba(19, 60, 85, 0.4);
            position: absolute;
            top: -30px;
            left: -20px;
            font-family: serif;
            font-weight: bold;
            z-index: -1;
        }

        .testimony-text::after {
            content: '"';
            font-size: 5rem;
            color: rgba(19, 60, 85, 0.4);
            position: absolute;
            bottom: -50px;
            right: -20px;
            font-family: serif;
            font-weight: bold;
            z-index: -1;
        }

        .testimony-client-info {
            border-top: 2px solid rgba(19, 60, 85, 0.6);
            padding-top: 25px;
            position: relative;
        }

        .testimony-client-info::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #133c55, transparent);
        }

        .testimony-client-name {
            font-size: 1.4rem;
            font-weight: bold;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .testimony-client-title {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
            font-style: italic;
        }

        .testimony-floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            top: 0;
            left: 0;
        }

        .testimony-shape {
            position: absolute;
            background: linear-gradient(45deg, rgba(19, 60, 85, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 50%;
            animation: testimony-float 6s ease-in-out infinite;
        }

        .testimony-shape:nth-child(1) {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .testimony-shape:nth-child(2) {
            width: 180px;
            height: 180px;
            top: 60%;
            right: 5%;
            animation-delay: 2s;
        }

        .testimony-shape:nth-child(3) {
            width: 90px;
            height: 90px;
            bottom: 15%;
            left: 60%;
            animation-delay: 4s;
        }

        .testimony-shape:nth-child(4) {
            width: 60px;
            height: 60px;
            top: 40%;
            left: 5%;
            animation-delay: 1s;
        }

        .testimony-shape:nth-child(5) {
            width: 150px;
            height: 150px;
            bottom: 40%;
            right: 20%;
            animation-delay: 3s;
        }

        @keyframes testimony-cardFloat {
            0%, 100% { 
                transform: translateY(0px) rotateX(0deg);
            }
            50% { 
                transform: translateY(-15px) rotateX(2deg);
            }
        }

        @keyframes testimony-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes testimony-fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes testimony-starGlow {
            0% { 
                transform: scale(1);
                filter: brightness(1);
            }
            100% { 
                transform: scale(1.1);
                filter: brightness(1.2);
            }
        }

        @keyframes testimony-float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg) scale(1);
            }
            33% { 
                transform: translateY(-30px) rotate(120deg) scale(1.1);
            }
            66% { 
                transform: translateY(15px) rotate(240deg) scale(0.9);
            }
        }

        @media (max-width: 768px) {
            .testimony-title {
                font-size: 2.2rem;
                margin-bottom: 40px;
            }

            .testimony-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimony-card {
                padding: 30px 20px;
            }

            .testimony-text {
                font-size: 1rem;
            }
        }

   

    

 .quote-modal_modal1 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .quote-modal_modal1.show_modal1 {
            opacity: 1;
            visibility: visible;
        }

        .modal-content_modal1 {
            background: linear-gradient(135deg, #386fa4 0%, #386fa4 100%);
            border-radius: 15px;
            padding: 40px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
       
       scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none;  /* Internet Explorer 10+ */
        }

        /* Hide scrollbar for Chrome, Safari and Opera */
        .modal-content_modal1::-webkit-scrollbar {
            display: none;
        }
        .close-btn_modal1 {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            color: white;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .close-btn_modal1:hover {
            transform: scale(1.1);
        }

        .form-title_modal1 {
            color: white;
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 30px;
        }

        .form-row_modal1 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group_modal1 {
            display: flex;
            flex-direction: column;
                margin-bottom: 20px;
        }

        .form-group_modal1.full-width_modal1 {
            grid-column: 1 / -1;
        }

        .form-label_modal1 {
            color: white;
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-input_modal1,
        .form-select_modal1,
        .form-textarea_modal1 {
            background: white;
            border: none;
            border-radius: 5px;
            padding: 12px 15px;
            font-size: 16px;
            color: #333;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input_modal1:focus,
        .form-select_modal1:focus,
        .form-textarea_modal1:focus {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .form-select_modal1 {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px;
            padding-right: 40px;
        }

        .form-textarea_modal1 {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }

        .submit-btn_modal1 {
            background: linear-gradient(135deg, #133c55 0%, #4a90c2 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 25px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }

        .submit-btn_modal1:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .submit-btn_modal1:active {
            transform: translateY(0);
        }

        .btn.quote-btn_modal1 {
            background: linear-gradient(135deg, #133c55 0%, #4a90c2 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 20px;
        }

        .btn.quote-btn_modal1:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .form-row_modal1 {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .modal-content_modal1 {
                padding: 20px;
                margin: 10px;
            }
            
            .form-title_modal1 {
                font-size: 24px;
            }
        }


.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .bankruptcy-modal_modal2 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .bankruptcy-modal_modal2.show_modal2 {
            opacity: 1;
            visibility: visible;
        }

        .modal-content_modal2 {
            background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
            border-radius: 15px;
            padding: 40px;
            width: 90%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .modal-content_modal2::-webkit-scrollbar {
            display: none;
        }

        .close-btn_modal2 {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            color: white;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .close-btn_modal2:hover {
            transform: scale(1.1);
        }

        .form-header_modal2 {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-title_modal2 {
            color: white;
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .form-subtitle_modal2 {
            color: #a0c4ff;
            font-size: 16px;
            margin-bottom: 0;
        }

        .form-group_modal2 {
            margin-bottom: 20px;
        }

        .form-label_modal2 {
            color: white;
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 8px;
            display: block;
            text-align: left;
        }

        .form-input_modal2 {
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 8px;
            padding: 15px;
            font-size: 16px;
            color: #333;
            transition: all 0.3s ease;
            outline: none;
            box-sizing: border-box;
        }

        .form-input_modal2:focus {
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .form-input_modal2::placeholder {
            color: #999;
            font-style: italic;
        }

        .submit-btn_modal2 {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 25px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 10px;
        }

        .submit-btn_modal2:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
        }

        .submit-btn_modal2:active {
            transform: translateY(0);
        }

        .required_modal2 {
            color: #ff6b6b;
        }

        @media (max-width: 768px) {
            .modal-content_modal2 {
                padding: 20px;
                margin: 10px;
            }
            
            .form-title_modal2 {
                font-size: 24px;
            }
            
            .btn-primary {
                font-size: 16px;
                padding: 12px 24px;
            }
        }