html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #00BFFF;
}

/* Common hover effect */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Common button style */
.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #009acd;
}

/* NAVBAR */
.navbar {
    padding: 12px 0;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
}

.logo-circle:hover {
    transform: rotate(10deg) scale(1.05);
}

/* Menu links */
.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Underline hover effect */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}

.nav-link:hover::after,
.active-link::after {
    width: 100%;
}

/* Order button */
.order-btn {
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 191, 255, 0.3);
}

/* Space for fixed navbar */
body {
    padding-top: 80px;
}

/* Logo Image */
.logo-img {
    height: 45px;
    width: auto;
    transition: 0.3s ease;
}

/* Logo hover animation */
.logo-img:hover {
    transform: scale(1.1) rotate(-2deg);
}

/* Navbar brand text */
.navbar-brand strong {
    font-size: 18px;
    color: #000;
}

.navbar-brand small {
    font-size: 12px;
}



/* ABOUT HERO SECTION */

.contactus-hero {
    background: linear-gradient(90deg, #009fd9, #00bfff);
    padding: 65px 20px 90px;
    color: white;
    text-align: center;
}

.contactus-hero h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contactus-hero h1 span {
    color: #eaf9ff;
}

.contactus-hero p {
    font-size: 25px;
    max-width: 750px;
    margin: auto;
    color: #e6f8ff;
}

@media (max-width:768px) {

    .contactus-hero {
        padding: 100px 20px 70px;
    }

    .contactus-hero h1 {
        font-size: 38px;
    }

    .contactus-hero p {
        font-size: 18px;
    }

}

/* question section */

.contact-section {
    padding: 100px 20px;
    background: #f8fbff;
}

/* HEADING */
.contact-heading {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* CONTACT CARDS */
.contact-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 18px;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* ICON */
.contact-card .icon {
    width: 50px;
    height: 50px;
    background: #00BFFF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

/* TEXT */
.contact-card h5 {
    margin: 0;
    font-weight: 700;
}

.contact-card p {
    margin: 3px 0 0;
    color: #555;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    display: block;
    background: #25D366;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* FORM BOX */
.form-box {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.form-box:hover {
    transform: translateY(-5px);
}

/* FORM TITLE */
.form-box h3 {
    font-weight: 800;
    margin-bottom: 25px;
}

/* INPUTS */
.form-box input,
.form-box textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.form-box input:focus,
.form-box textarea:focus {
    border-color: #0284c7;
    outline: none;
    box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.1);
}

/* BUTTON */
.submit-btn {
    width: 100%;
    background: #00BFFF;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-card {
    text-decoration: none;
    color: inherit;
    display: flex;
}

/* map-section */

/* SECTION */
.map-section {
    padding: 80px 0 0;
    background: #f8fbff;
}

/* TITLE */
.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0a1f44;
}

.section-title span {
    color: #00a6d6;
}

.section-subtitle {
    color: #6c757d;
    margin-top: 10px;
    margin-bottom: 40px;
}

/* MAP CONTAINER */
.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    margin: 0 auto 60px;
    max-width: 1200px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

/* HOVER EFFECT (your requirement) */
.map-container:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* MAP */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(10%) contrast(1.05);
    transition: all 0.4s ease;
}

/* MAP HOVER ZOOM */
.map-container:hover iframe {
    transform: scale(1.02);
}

/* OPEN MAP BUTTON */
.open-map-btn {
    position: absolute;
    top: 15px;
    left: 15px;

    background: white;
    color: #0a1f44;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 8px;

    text-decoration: none;
    font-weight: 500;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.open-map-btn:hover {
    background: #00a6d6;
    color: white;
}

/* FAQ */

.faq-section {
    padding: 80px 0;
    background: #f8fbff;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0a1f44;
}

.section-title span {
    color: #00a6d6;
}

.section-subtitle {
    color: #6c757d;
    margin-top: 10px;
    margin-bottom: 40px;
}

/* CONTAINER */
.faq-container {
    max-width: 900px;
    margin: auto;
}

/* ITEM */
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #0a1f44;

    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* ICON */
.faq-question .icon {
    font-size: 22px;
    color: #00a6d6;
    transition: transform 0.3s ease;
}

/* ANSWER (smooth animation trick) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}


/* Floating call */
/* Floating call */
/* WHATSAPP FLOATING BUTTON */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    /* WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover Effect */
.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    background: #1ebe5d;
}

/* Notification Badge */
.wa-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 14px;
    height: 14px;
    background: red;
    border-radius: 50%;
    border: 2px solid white;
    animation: ping 1.5s infinite;
}

/* Ping Animation */
@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(1.6);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* FOOTER */
.footer-section {
    background: #122f43;
    color: #ffffff;
    padding: 70px 0 30px;
    margin-bottom: 0 !important;
    padding-bottom: 30px;
    /* keep nice spacing */

}

.footer-section h3 {
    font-size: 28px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 17px;
    color: #cfe9ff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    font-size: 17px;
    margin-bottom: 8px;
    color: #cfe9ff;
}

.footer-section ul li a {
    color: #cfe9ff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #00bfff;
}

.footer-bottom {
    font-size: 16px;
    color: #cfe9ff;
    margin-bottom: 0 !important;
    padding-bottom: 0;
}

.footer-section hr {
    margin-bottom: 10px;
}