 .modal-container {
            max-height: 90vh;
            overflow-y: auto;
            scroll-behavior: smooth;
        }
        
        /* optional scrollbar styling */
        .modal-container::-webkit-scrollbar {
            width: 6px;
        }
        .modal-container::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 10px;
        }
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 999;
        }
        
        .modal-container {
            width: 100%;
            max-width: 420px;
            background: #fff;
            border-radius: 14px;
            padding: 25px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .modal-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 22px;
            cursor: pointer;
        }
        
        .form-title {
            text-align: center;
            font-size: 22px;
            font-weight: 600;
        }
        
        .form-sub {
            text-align: center;
            color: #777;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px;
            border-radius: 10px;
            border: 1px solid #ddd;
            font-size: 14px;
            background: #f7f7f7;
            outline: none;
        }
        
        .form-group input:focus,
        .form-group select:focus {
            border-color: #007bff;
            background: #fff;
        }
        
        .btn-submit {
            width: 100%;
            background: #0b1c3d;
            color: #fff;
            padding: 14px;
            border-radius: 10px;
            border: none;
            font-size: 16px;
            cursor: pointer;
            margin-top: 10px;
        }
        
        .btn-whatsapp {
            display: block;
            text-align: center;
            margin-top: 12px;
            padding: 12px;
            border-radius: 10px;
            background: #e9f9f0;
            color: #25d366;
            text-decoration: none;
            font-weight: 500;
        }
        
        .privacy-text {
            text-align: center;
            font-size: 12px;
            color: #888;
            margin-top: 10px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #F9F9F9;
            color: #1E1E1E;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Hero image fix - no right gap */
        .hero-image {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        .hero-image img {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            .hero-image {
                justify-content: center;
            }
            .hero-content {
                margin: 0 auto;
            }
            .hero-buttons {
                justify-content: center;
            }
        }
        .hero-content {
                margin-left: 20px;
            }

        /* ---------- SUPER COMPACT & MODERN POPUP (borderless inputs, flex row, minimal spacing) ---------- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(6px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0.2s, opacity 0.2s ease;
        }
        .modal-overlay.active {
            visibility: visible;
            opacity: 1;
        }
        .modal-container {
            background: #ffffff;
            max-width: 520px;
            width: 90%;
            border-radius: 10px;
            box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.25);
            padding: 1.6rem 1.6rem 1.8rem;
            position: relative;
            animation: modalFadeIn 0.25s ease;
        }
        @keyframes modalFadeIn {
            from {
                transform: translateY(-12px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        .modal-close {
            position: absolute;
            top: 0.9rem;
            right: 1.2rem;
            font-size: 1.5rem;
            font-weight: 500;
            color: #9aa3b0;
            cursor: pointer;
            transition: color 0.2s;
            line-height: 1;
        }
        .modal-close:hover {
            color: #D61F26;
        }
        .modal-container h3 {
            font-size: 1.5rem;
            color: #0B3C6D;
            margin-bottom: 0.2rem;
            font-weight: 700;
        }
        .modal-sub {
            color: #6c7a8e;
            font-size: 0.8rem;
            margin-bottom: 1.2rem;
            border-left: 3px solid #D61F26;
            padding-left: 0.7rem;
        }
        /* Two column grid for inputs */
        .form-row {
            display: flex;
            gap: 1rem;
            margin-bottom: 0.9rem;
        }
        .form-field {
            flex: 1;
            position: relative;
        }
        /* modern borderless input with bottom border only */
        .form-field input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1.5px solid #e2e8f0;
            padding: 0.6rem 0.2rem 0.5rem 0;
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.2s;
            outline: none;
            color: #1a2634;
        }
        .form-field input:focus {
            border-bottom-color: #D61F26;
        }
        .form-field input::placeholder {
            color: #a0abb9;
            font-weight: 400;
            font-size: 0.85rem;
        }
        /* error messages compact */
        .error-msg {
            display: block;
            font-size: 0.65rem;
            color: #e53e3e;
            margin-top: 0.2rem;
            min-height: 0.9rem;
            line-height: 1.2;
        }
        .btn-submit-form {
            width: 100%;
            background: #D61F26;
            border: none;
            color: white;
            padding: 0.7rem;
            font-weight: 700;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 0.5rem;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
        }
        .btn-submit-form:hover {
            background: #b0101a;
            transform: translateY(-1px);
        }
        .form-success {
            text-align: center;
            color: #0f7b3a;
            background: #e6f9ef;
            padding: 0.5rem;
            border-radius: 40px;
            margin-top: 0.8rem;
            font-weight: 500;
            font-size: 0.75rem;
        }
        @media (max-width: 480px) {
            .modal-container {
                padding: 1.2rem;
            }
            .form-row {
                flex-direction: column;
                gap: 0.7rem;
            }
            .form-field input {
                padding: 0.55rem 0.1rem 0.45rem 0;
            }
        }

        /* existing styles for rest of site (kept simple) */
        .stat-label {
          font-size: 1rem;
          color: white!important;
          text-transform: uppercase;
          letter-spacing: 0.5px;
        }
        .stats {
          background: #3d4087!important;
          padding: 3rem 0;
          border-bottom: 1px solid #eee;
        }
        .stat-number {
          font-size: 2.5rem;
          font-weight: 700;
          color: #faf318!important;
          line-height: 1.2;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }
        @media (max-width: 768px) {
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .hero-tagline {
            background: rgba(214, 31, 38, 0.1);
            color: #D61F26;
            display: inline-block;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            margin-bottom: 1.5rem;
        }
        .btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            border: 2px solid transparent;
        }
        .btn-primary {
            background: #D61F26;
            color: #fff;
            box-shadow: 0 10px 20px rgba(214, 31, 38, 0.2);
        }
        .btn-primary:hover {
            background: #b0101a;
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #0B3C6D;
            color: #0B3C6D;
        }
        .btn-outline:hover {
            background: #0B3C6D;
            color: #fff;
        }
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-subtitle {
            display: inline-block;
            font-size: 1rem;
            font-weight: 600;
            color: #D61F26;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }
        .section-header h2 {
            font-size: 2rem;
            color: #0B3C6D;
        }
        .about-grid, .services-grid, .countries-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            justify-content: center;
        }
        .about-card, .service-card, .country-card {
            background: white;
            padding: 1.5rem;
            border-radius: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            flex: 1 1 240px;
        }
        .life-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .life-grid { grid-template-columns: 1fr; }
        }
        .cta {
            background: #0B3C6D;
            padding: 3rem;
            text-align: center;
            color: white;
            border-radius: 20px;
            margin: 3rem auto;
        }
        .cta .btn-primary {
            background: #D61F26;
        }
        
        
        
        
        /*---------Our-Reach----------------------*/

.Our-Reach {
  display: flex;
  width: 100%;
  gap: 30px;
  padding: 50px 8%;
  box-sizing: border-box;
  background: #3d4087;
}

.left-box,
.right-box {
  width: 50%;
}

.left-box h2,
.right-box h2 {
    text-align: center;
    color: #fff112;
  font-size: 32px;
  margin-bottom: 20px;
}

.left-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.right-box h3 {
    color: #fff112;
  font-size: 24px;
  margin-bottom: 15px;
}

.right-box p {
  font-size: 16px;
  line-height: 1.7;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .Our-Reach {
    flex-direction: column;
    padding: 30px 5%;
  }

  .left-box,
  .right-box {
    width: 100%;
  }

  .left-box h2,
  .right-box h2 {
    font-size: 26px;
  }
}
.deemed-btn{
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f2e91e, #3d4087);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(61, 64, 135, 0.3);
    letter-spacing: 0.5px;
}

.deemed-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(61, 64, 135, 0.4);
    background: linear-gradient(135deg, #3d4087, #f2e91e);
}

.deemed-btn:active{
    transform: scale(0.98);
}
