



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Geist', sans-serif;
            line-height: 1.6;
            background-color: #f8fafc; /* Added background for clarity */
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section (from original CSS) */
        .hero {
            background: #f8fafc;
            padding: 4rem 0;
            text-align: left;
            margin-top: 3rem;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 150px;
        }

        .containe{
            margin: 0px 4rem;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            color: #1e3a5f;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 600px;
        }

        /* Contact Info Section (from original CSS) */
        .contact-info {
            padding: 4rem 0;
            background: #ffffff;
        }

        .contact-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-card {
            text-align: center;
            padding: 1rem;
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: #1e3a5f;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
        }

        .contact-icon svg {
            width: 32px;
            height: 32px;
        }

        .contact-title {
            font-size: 1.25rem;
            font-weight: bold;
            color: #1e3a5f;
            margin-bottom: 1rem;
        }

        .contact-detail {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 0.25rem;
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 4rem 0;
        }

        .form-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .form-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #1e3a5f;
            margin-bottom: 2rem;
        }

        .contact-form {
            margin: 0 3rem;
            min-width: 400px;
        }

        .form-group {
            margin-bottom: 2rem;
            position: relative;
        }

        .form-input, .form-select, .form-textarea {
            padding: 12px;
            border: 1px solid orangered;
            border-radius: 4px;
            background-color: #efefef;
            font-size: 16px;
            font-family: 'Geist', sans-serif;
            font-weight: 400;
            color: #8a8a8a;
            width: 100%;
            transition: all 0.3s ease;
        }

        .form-textarea{
            height: 250px;
        }

        input[type="ratio"], input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            border: 1px solid orangered;
            background: orangered;
            transition: all 0.3s ease;
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border: 1px dashed orangered;
            color: #113554;
        }

        .form-textarea {
            min-height: 100px;
            resize: vertical;
        }

        .dropdown-wrapper {
            position: relative;
        }

        .order-btn {
            background-color: #e44a1b;
            color: #fdfeff;
            padding: 16px 28px;
            border: none;
            border-radius: 28px;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            width: fit-content;
        }

        .order-btn:hover {
            background-color: #c73e17;
            transform: translateY(-2px);
        }

        /* NEW BASE-SELECT STYLING (Chrome 119+, Safari 17+, Edge 119+) */
        @supports (appearance: base-select) {
            .form-select {
                appearance: base-select;
            }

            .form-select::picker(select) {
                appearance: base-select;
                margin-top: 4px;
                border: none;
                border-radius: 12px;
                background: #fff;
                box-shadow: 0 8px 24px rgba(0,0,0,.18);
                overflow: hidden;
            }

            .form-select::picker(select)::-webkit-scrollbar { 
                width: 6px; 
            }
            
            .form-select::picker(select)::-webkit-scrollbar-thumb { 
                background: orangered; 
                border-radius: 6px; 
            }

            .form-select option {
                padding: 12px 16px;
                font-size: 1rem;
                transition: background .2s;
            }

            .form-select option:hover,
            .form-select option:focus,
            .form-select option:checked {
                background: #fff0eb;
                color: orangered;
            }

            .form-select option:checked::before {
                content: "✓";
                float: right;
                font-weight: bold;
                color: orangered;
            }
        }

        .dropdown-arrow {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 22px;
            pointer-events: none;
        }

        .country-select {
            padding-left: 50px;
        }

        .country-flag {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 26px;
            height: 22px;
        }

        .form-image {
            text-align: center;
            height: 100%;
        }

        .form-image img {
            width: 100%;
            max-width: 500px;
            height: 80%;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .phone-input-wrapper{
            display: flex;
            align-items: center;
        }

        .country-code-display{
            padding: 8px 5px;
            background: orangered;
            border-bottom: 1px solid orangered;
            border-left: 1px solid orangered;
            color: white;
            border-top: 1px solid orangered;
            border-top-left-radius: 5px;
            border-bottom-left-radius: 5px;
            display: flex;
            align-items: center;
        }

        .flag-emoji{
            display:none
        }

  /* CTA Section */
        .cta-section {
            margin: 110px 2rem 68px 2rem;
        }

        .cta-container {
            
            background: url('../images/img_close_36px.png'), #325573;
            background-size: cover;
            background-position: center;
            border-radius: 30px;
            padding: 30px 20px;
            text-align: center;
        }

        .cta-image {
            width: 100%;
            max-width: 1414px;
            height: 250px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 64px;
        }

        .cta-title {
            font-size: 32px;
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            color: #fdfeff;
            margin-bottom: 32px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #e44a1b;
            color: #fdfeff;
            padding: 18px 24px ;
            border-radius: 32px;
            text-decoration: none;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            line-height: 21px;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background-color: #c73e17;
            transform: translateY(-2px);
        }

        .cta-btn-icon {
            width: 24px;
            height: 24px;
        }

/* Responsive Design */
        @media (max-width: 768px) {
             .cta-title {
                padding: 0 20px;
            }
            .header-content {
                padding: 0 16px;
            }
            
            .containe {
                margin: 0px 1rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .contact-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            
            .form-content {
                display: block !important;
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .form-title {
                font-size: 2rem;
                text-align: center; /* Center form title on mobile */
            }
            
            /* FIX: Ensure contact-form is centered and takes full width */
            .contact-form {
                margin: 0 auto !important; /* Use !important to override any conflicting margins */
                min-width: unset !important;
                max-width: 100% !important;
                width: 100% !important;
                padding: 0 1rem; /* Add some padding to the form itself */
            }
            
            /* FIX: Ensure form-image is visible and properly sized */
            .form-image {
                display: block !important; /* Ensure it's displayed */
                text-align: center;
                margin-top: 2rem;
            }
            
            .form-image img {
                width: 100%;
                max-width: 400px;
                height: auto;
                min-height: 200px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 2rem 0;
            }
            
            .contact-info,
            .contact-form-section {
                padding: 2rem 0;
            }
            
            .contact-cards {
                grid-template-columns: 1fr;
            }
            
            .contact-icon {
                width: 60px;
                height: 60px;
            }
            
            .contact-icon svg {
                width: 24px;
                height: 24px;
            }
            
            /* Additional mobile fixes for very small screens */
            .containe {
                margin: 0px 0.5rem;
            }
            
            .contact-form {
                padding: 0 0.5rem; /* Reduce padding for very small screens */
            }
            
            .form-title {
                font-size: 1.8rem;
            }
            
            .form-image img {
                max-width: 300px;
            }
        }

        @media (min-width: 1024px) {
            .hamburger{
                display: none;
            }
            
            .header-content {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 15px 150px;
            }
        }