/* ========== HERO BANNER - SMALL, SIMPLE ========== */
.hero-banner {
    background: rgb(238, 238, 238); /* replace with any color you want */
    /* background-image removed */
    min-height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.hero-overlay {
    width: 100%;
    text-align: center;
}

.hero-content {
    color: #ffffff;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.hero-content h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, #FFD700, #f5c518);
    border-radius: 5px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.breadcrumb-box {
    font-size: 14px;

}

.breadcrumb-box a {
    color: rgb(255, 128, 0);
    text-decoration: none;
}

.breadcrumb-box a:hover {
    opacity: 0.8;
}

.breadcrumb-box span {
    margin: 0 8px;
    opacity: 0.7;
	color: black;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== CONTACT CARD – MODERN LAYOUT ========== */
.contact-section {
    margin: 80px auto;
}

.contact-card {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-card .row {
    min-height: 500px;
}

/* Left side – info section */
.contact-info {
    background: linear-gradient(145deg, #1a2a3a, #0f1a24);
    color: #fff;
    padding: 40px 35px;
    position: relative;
    z-index: 1;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path fill="none" d="M0 0h100v100H0z"/><circle cx="20" cy="20" r="2"/><circle cx="80" cy="80" r="2"/><circle cx="50" cy="30" r="1.5"/><circle cx="70" cy="15" r="1"/><circle cx="15" cy="70" r="1"/></svg>') repeat;
    pointer-events: none;
    z-index: -1;
}

.info-content {
    position: relative;
    z-index: 2;
}

.info-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.info-content .lead {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 25px;
    line-height: 1.5;
}

.info-content hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 25px 0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 18px;
    transition: 0.2s;
}

.info-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.info-item span {
    font-size: 15px;
    font-weight: 500;
}

.social-links {
    margin-top: 35px;
}

.social-links h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    margin-right: 12px;
    transition: all 0.25s;
}

.social-links a:hover {
    background: #FFD700;
    color: #0f1a24;
    transform: translateY(-3px);
}

/* Right side – form */
.contact-form {
    background: #fff;
    padding: 40px 40px;
}

.form-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e2a36;
    margin-bottom: 30px;
    letter-spacing: -0.3px;
}

.form-control {
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.2s;
    background: #f9fafc;
}

.form-control:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
    background: #fff;
    outline: none;
}

.btn-primary {
    background: linear-gradient(95deg, #1a2a3a, #0f1a24);
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 40px;
    font-size: 16px;
    transition: all 0.25s;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(95deg, #0f1a24, #1a2a3a);
}

/* ========== MAP SECTION ========== */
.contact-map-section {
    width: 100%;
    height: 380px;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-banner {
        min-height: 260px;
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .contact-info,
    .contact-form {
        padding: 30px 25px;
    }

    .contact-map-section {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 240px;
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h1::after {
        width: 50px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .breadcrumb-box {
        font-size: 12px;
    }

    .contact-section {
        margin: 50px auto;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-icon {
        margin-bottom: 10px;
    }

    .social-links a {
        margin-bottom: 8px;
    }

    .contact-map-section {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 220px;
        padding: 20px 15px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
}