/* Contact Section */
#infotech-net-bd-contact {
    width: 100%;
    background-color: #ff0; /* Consider using a real pink like #ffc0cb */
    padding: 100px 0px 50px 0px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    text-align: center; /* Center all text inside contact section */
}

.infotech-net-bd-contact-wrapper {
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    padding: 10px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    text-align: center;
}

.infotech-net-bd-contact-wrapper:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.infotech-net-bd-contact-wrapper h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #00f;
    font-weight: 600;
}

.infotech-net-bd-address {
    font-size: 16px;
    line-height: 1.6;
}

.infotech-net-bd-address p {
    margin: 12px 0;
    text-align: center;
}

.infotech-net-bd-address a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease, outline-offset 0.3s ease;
}

.infotech-net-bd-address a:hover,
.infotech-net-bd-address a:focus {
    color: #00f;
    text-decoration: underline;
    outline: none;
}

/* Visible focus outline for accessibility */
.infotech-net-bd-address a:focus-visible {
    outline: 2px dashed #00f;
    outline-offset: 4px;
}

/* Map Section */
.infotech-net-bd-map {
    width: 100vw;
    margin: 0;
    padding: 10px 0px 50px 0px;
    background-color: #fff;
    box-sizing: border-box;
    text-align: center;
}

.infotech-net-bd-map h2 {
    margin-bottom: 20px;
    font-size: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Responsive Map Wrapper */
.infotech-net-bd-map-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.infotech-net-bd-map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Desktop and larger screens: reduce map height */
@media (min-width: 481px) {
    .infotech-net-bd-map-responsive {
        padding-bottom: 28.125%; /* Half height */
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    #infotech-net-bd-contact {
        padding: 80px 5px 5px 5px; /* Top padding 50px, others 5px */
    }

    .infotech-net-bd-contact-wrapper {
        padding: 5px 5px;
    }

    .infotech-net-bd-contact-wrapper h2 {
        font-size: 22px;
    }

    .infotech-net-bd-address {
        font-size: 14px;
    }

    .infotech-net-bd-map {
        width: 100%;
    }

    .infotech-net-bd-map > h2 {
        font-size: 20px;
    }

    .infotech-net-bd-map-responsive {
        border-radius: 6px;
        max-width: 100%;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}