/* =========================================
   MSME GROWTH BOOTCAMP – PREMIUM SaaS UI
========================================= */

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f4f8ff, #eef3ff);
}

/* LEFT HERO */

.hero-content {
    padding-right: 50px;
}

.pre-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #0056d2;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 20px;
}

.section-title span {
    color: #0056d2;
}

.hero-subtext {
    font-size: 18px;
    color: #475569;
    margin-bottom: 30px;
}

/* Bullet Points */

.extra-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.extra-bullets li {
    font-size: 16px;
    margin-bottom: 14px;
    color: #1e293b;
}

.extra-bullets i {
    color: #16a34a;
    margin-right: 10px;
}

/* Urgency */

.urgency-text {
    font-size: 14px;
    font-weight: 600;
    color: #dc2626;
}

.bootcamp-map {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.bootcamp-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;   /* Optional: rounded corners */
}



/* RIGHT FORM CARD */

.custom-shadow-card {
    padding: 45px;
    border-radius: 20px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 80px rgba(0, 86, 210, 0.15);
}

.form-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-title span {
    color: #0056d2;
}

.form-subtext {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 25px;
}

/* Form Inputs */

label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 10px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 12px 14px !important;
    font-size: 14px;
    transition: all 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #0056d2 !important;
    box-shadow: 0 0 0 4px rgba(0, 86, 210, 0.12) !important;
}

/* CTA Button */

.btn-primary {
    background: linear-gradient(135deg, #0056d2, #003d99);
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 86, 210, 0.35);
}

/* Micro Trust */

.micro-trust {
    text-align: center;
    font-size: 12px;
    margin-top: 15px;
    color: #94a3b8;
}

/* Responsive */

@media (max-width: 991px) {

    .section-title {
        font-size: 32px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        padding-top: 30px;
    }

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


/* =========================================
   RESPONSIVE MEDIA QUERIES – ALL DEVICES
========================================= */

/* 4K & Large Screens (1600px+) */
@media (min-width: 1600px) {

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

    .section-title {
        font-size: 52px;
    }

    .hero-subtext {
        font-size: 20px;
    }

    .custom-shadow-card {
        padding: 60px;
    }
}


/* Large Desktops (1400px – 1599px) */
@media (max-width: 1599px) and (min-width: 1400px) {

    .section-title {
        font-size: 46px;
    }
}


/* Standard Desktop / Laptop (1200px – 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {

    .section-title {
        font-size: 42px;
    }

    .hero-content {
        padding-right: 30px;
    }
}


/* Small Laptop (992px – 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {

    .section-title {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .custom-shadow-card {
        padding: 35px;
    }
}


/* Tablets (768px – 991px) */
@media (max-width: 991px) {

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

    .section-title {
        font-size: 30px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .extra-bullets {
        text-align: left;
        display: inline-block;
    }

    .custom-shadow-card {
        padding: 30px;
    }
}


/* Large Mobile (576px – 767px) */
@media (max-width: 767px) {

    .section-title {
        font-size: 26px;
    }

    .hero-subtext {
        font-size: 15px;
    }

    .extra-bullets li {
        font-size: 14px;
    }

    .btn-primary {
        padding: 12px;
        font-size: 15px;
    }
}


/* Small Mobile (400px – 575px) */
@media (max-width: 575px) {

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

    .section-title {
        font-size: 22px;
    }

    .hero-subtext {
        font-size: 14px;
    }

    .custom-shadow-card {
        padding: 25px;
        border-radius: 15px;
    }

    input,
    select,
    textarea {
        font-size: 13px;
        padding: 10px !important;
    }
}


/* Extra Small Devices (<400px) */
@media (max-width: 399px) {

    .section-title {
        font-size: 20px;
    }

    .pre-title {
        font-size: 11px;
    }

    .hero-subtext {
        font-size: 13px;
    }

    .btn-primary {
        font-size: 14px;
        padding: 10px;
    }

    .micro-trust {
        font-size: 11px;
    }
}


/* ----------------------------MSME-Response Page------------------------------------ */

