/* General */
body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    background: #ffffff;
}

.navbar-brand {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.navbar-nav .nav-link {
    transition: color 0.3s;
    color: #000;
    font-weight: 500;
}

.active {
    color: #f39c12 !important;
    font-weight: bold !important;
}

.navbar-nav .nav-link:hover {
    color: #f39c12;
    font-weight: 500;
}

.navbar-toggler {
    border-color: rgb(1, 1, 1);
    color: rgba(0, 0, 0, 0.573);
    font-weight: bold;
}

.navbar-toggler-icon {
    filter: invert(1);
}

#navbarNav {
    transition-duration: 0.7s;
}


/*banner section*/

.contact-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/contact (1).png') center/cover no-repeat;
    color: #fff;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.contact-header h1 {
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 2px;
}

.contact-header p {
    font-size: 18px;
}

.contact-header button {
    background-color: #e67e22 !important;
    color: #ffffff;
}
.btn a {
  text-decoration: none;   /* remove underline */
  color: #fff;             /* make text white */
  display: inline-block;   /* ensures padding applies nicely */
  width: 100%;             /* optional: make link fill button */
  height: 100%;            /* optional: make link fill button */
}
/* Tablets (768px and below) */
@media (max-width: 768px) {
    .contact-header {
        height: 50vh;
        padding: 20px;
    }

    .contact-header h1 {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .contact-header button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .contact-header {
        height: 40vh;
        padding: 15px;
    }

    .contact-header h1 {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .contact-header p {
        font-size: 14px;
    }

    .contact-header button {
        font-size: 13px;
        padding: 6px 14px;
    }
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease-in-out;
}

.contact-card2 {
    padding: 3rem;
}

.contact-card2 h3 {
    color: #e67e22;
    font-weight: 900;
}

.contact-card2 p i {
    color: #e67e22;

}

.contact-card2 a i {
    color: #e67e22;

}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card h3 {
    color: #e67e22;
    font-weight: 900;
}

.form-control,
.btn {
    border-radius: 30px;
}

.btn-primary {
    background: #d35400;
    border: none;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #e67e22;
}
.contact-header .btn {
    border-radius: 30px !important;
}

/*Contact*/

/*contact with img*/

.contact-section {
    /* background: url("../images/contact-banner.jpeg") no-repeat center center/cover; */
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-container {
    background: #fff;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Left Form */
.contact-form {
    flex: 1;
    padding: 40px 50px 30px 30px;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0a2a55;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

.contact-form button {
    width: 100%;
    background: #ff7b00;
    color: #000;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}

.contact-form button:hover {
    background: #f88010;
}

/* Right Info */
.contact-info {
    flex: 1;
    background: url("../images/contact-banner.jpeg") no-repeat center center/cover;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.contact-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.contact-info-content {
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.6;
}

.contact-info i {
    margin-right: 8px;
    color: #f9a602;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        min-height: 250px;
    }
}

/* --- Attractive Footer Section --- */
.site-footer {
    background-color: white;
    /* A modern, dark blue-grey */
    color: black;
    /* A soft, light grey for text */
    padding: 60px 0 20px 0;
    font-size: 0.95rem;

}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* This creates 4 responsive columns */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    padding: 0 10px;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: #ff8c00;
    /* Using your brand's orange */
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

/* Stylish underline for headings */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: #ff8c00;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-tagline {
    line-height: 1.7;
}

.footer-links,
.contact-details,
.opening-hours {
    list-style: none;
    padding: 0;
}

.footer-links a,
.contact-details span,
.opening-hours li {
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c00;
    padding-left: 5px;
}

.contact-details li,
.opening-hours li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-details i {
    color: #ff8c00;
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 4px;
}

/* Social Media Icons */
.social-links {
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #ff8c00;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: white;
    color: #ff8c00;
    transform: translateY(-3px);
}

/* Bottom Copyright Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 16px;
}

/* Media Queries for Responsiveness */
@media (max-width: 767px) {

    .footer-heading,
    .footer-title {
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }

    .social-icons {
        text-align: center;
        margin-bottom: 20px;
    }

    .list-unstyled {
        text-align: center;
    }

    .text h5 {
        font-size: 1.25rem;
        font-weight: bold;
        color: #ff8c00;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        /* Orange color for the title */
    }

    .foot {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    width: 45px;
    height: 45px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: #ff7b00;
    border: none;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}

/* Hover effect */
#backToTop:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #e86d00;
}