/* ===== Footer Main ===== */
.footer {
    background: #63c0e6;
    color: #ffffff;
    padding: 10px 0 30px;
}

/* Container */
.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== Grid Layout (Equal 4 Columns) ===== */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 40px;
}

/* ===== Footer Column ===== */
.footer-col {
    width: 100%;
}

/* ===== Titles ===== */
.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

/* ===== Description ===== */
.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
}

/* ===== Links ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #0d6efd;
    padding-left: 5px;
}

/* ===== Contact Items ===== */
.contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #ffffff;
}

.contact-item i {
    color: #0d6efd;
    margin-top: 3px;
}

/* ===== Social Icons ===== */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 35px;
    height: 35px;
    background: #63c0e6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    transition: 0.3s;
}

.social-btn:hover {
    background: #0d6efd;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns tablet */
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 column mobile */
        /* text-align: center; */
    }

}

  /* ===== Title ===== */
.our-title1 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
}


        /* ===== Footer1 Section ===== */
.footer1 {
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 50px;
}

/* ===== Title ===== */
.our-title1 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

/* ===== Footer1 Section ===== */
.footer1 {
    margin: 60px 100px; /* top-bottom 60px, left-right 100px */
}

/* ===== Title ===== */
.our-title1 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

/* ===== Locations Grid ===== */
.locations {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 equal columns */
    gap: 40px; /* equal spacing between columns */
}

/* ===== Each Column Text ===== */
.ourcenters p {
    margin: 8px 0;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover Effect */
.ourcenters p:hover {
    color: #0d6efd;
    transform: translateX(5px);
}

/* ===== Tablet View ===== */
@media (max-width: 992px) {
    .footer1 {
        margin: 50px 40px;
    }

    .locations {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* ===== Mobile View ===== */
@media (max-width: 576px) {
    .footer1 {
        margin: 40px 20px;
    }

    .locations {
        grid-template-columns: repeat(2, 1fr); /* 2 columns mobile */
        gap: 20px;
    }

    .our-title1 {
        text-align: center;
    }
}    



/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Common Button Style */
.float-btn {
    position: fixed;
    bottom: 100px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 9999;
}

/* WhatsApp Button - Left Side */
.left-btn {
    left: 20px;
    background-color: #25D366;
}

/* Call Button - Right Side */
.right-btn {
    right: 20px;
    background-color: #25D366;
}

@media (max-width: 768px) {
    .float-btn{
        margin-bottom: 100px;
    }
}
/* Hover Effect */
.float-btn:hover {
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    
    background: #4f0392; /* Dark background */
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-left: 100px;
    margin-right: 120px;
    font-size: 14px;
    color: #ccc;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-bottom a:hover {
    color: #63c0e6; /* Change to your theme color */
}

.footer-bottom span {
    font-weight: 600;
}


/* ============================= */
/* 📱 Mobile Responsive Version  */
/* ============================= */

@media (max-width: 768px) {

    /* Floating Buttons */
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
    }

    .left-btn {
        left: 15px;
    }

    .right-btn {
        right: 15px;
    }

    /* Footer Bottom */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 15px 10px;
    }

    .footer-bottom p {
        margin: 0;
        font-size: 13px;
    }

}