/* General Styles */
.banner_cable {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #f2f2f2;
}

.banner_cable img {
    width: 100%;
    max-height: 600px;
    height: auto;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .banner_cable img {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .banner_cable img {
        max-height: 300px;
    }
}

#contact {
    padding: 50px 0;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 3.5rem;
    color: #206382;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1.5rem;
    color: #777;
}

/* Contact Grid Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Contact Card Styles */
.contact-card {
    text-align: center;
    background-color: #e1dfdf;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.contact-card h2 {
    font-size: 2.8rem;
    color: #c90303;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1.7rem;
    color: #fe0e0e;
}

.contact-details p {
    margin: 10px 0;
    font-size: 1.5rem;
    color: #000000;
}

.contact-details i {
    color: #007bff;
    margin-right: 10px;
}

.contact-card a {
    color: #007bff;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 3rem;
    }

    .contact-header p {
        font-size: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-card h2 {
        font-size: 2.8rem;
    }

    .contact-card p{
        font-size: 1.8rem;
    }

    .contact-details p {
        font-size: 1.4rem;
    }
}


