.container {
    width: 90%;
    margin: auto;
}

/* ================= HEADER ================= */
.site-header {
    position: fixed;
    /* Fix header at the top */
    top: 0;
    /* Stick to the top */
    left: 0;
    width: 100%;
    /* Full width */
    z-index: 9999;
    /* Stay on top of all content */
    background-color: #fff;
    /* Ensure background covers content behind */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Optional shadow */

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* Add some top padding to body so content doesn't hide under header */

.main-content {
    margin-top: 120px;
    /* same as header height */
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO FIX */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-circle {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    border: 3px solid #ffb703;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* IMPORTANT */
    border-radius: 50%;
}


.logo span {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
}


.nav-menu a {
    color: #fff;
    text-decoration: none;
    margin-left: 22px;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {}


/* ================= FOOTER ================= */
/* ===== FOOTER ===== */

/* ================= FOOTER BASE ================= */

.site-footer {
    background-color: #0b0b0b;
    color: #dcdcdc;
    font-family: 'Poppins', sans-serif;
}

/* Headings */
.site-footer h3,
.site-footer h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

/* Text */
.site-footer p {
    font-size: 14px;
    line-height: 1.7;
    color: #cfcfcf;
}

/* Links */
.site-footer a {
    color: #cfcfcf;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #ffcc70;
}

/* Golden underline hover */
.site-footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffcc70, #ff9f1c);
    transition: width 0.3s ease;
}

.site-footer a:hover::after {
    width: 100%;
}

/* Quick Links */
.footer-links li {
    margin-bottom: 8px;
}

/* Contact Info */
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #ffcc70;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #ffcc70, #ff9f1c);
    color: #000;
    transform: translateY(-4px);
}

/* Footer Logo */
.footer-logo img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

/* Bottom Bar */
.footer-bottom {
    background-color: #000;
    font-size: 13px;
    color: #999;
}

/* Divider */
.site-footer .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

    /* Prevent overflow */
    body {
        overflow-x: hidden;
    }

    /* Keep desktop alignment (not centered) */
    .site-footer {
        text-align: left;
    }

    /* Container control */
    .site-footer .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Footer layout safe scaling */
    .site-footer .row {
        display: flex;
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .site-footer [class*="col-"] {
        flex: 1 1 250px;
        max-width: 50%;
    }

    /* Logo resize */
    .footer-logo img {
        width: 80px;
        height: 80px;
    }

    /* Contact alignment */
    .footer-contact p {
        justify-content: flex-start;
    }

    /* Social icons wrap */
    .footer-social {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

.site-footer {
    font-size: 14px;
}

.footer-logo img {
    max-width: 180px;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-about {
    color: #ccc;
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #f1c40f;
    padding-left: 5px;
}

.footer-trust span {
    color: #bbb;
    font-size: 13px;
}

.footer-social .social-icon {
    display: inline-block;
    margin: 0 8px;
    font-size: 18px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #333;
    transition: 0.3s;
}

.footer-social .social-icon:hover {
    background: #f1c40f;
    color: #000;
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

.whatsapp-btn i {
    margin-right: 5px;
}

.footer-bottom {
    font-size: 13px;
    color: #aaa;
}

/* ================= EXTRA SMALL PHONES ================= */

@media (max-width: 480px) {

    .site-footer h3,
    .site-footer h4 {
        font-size: 18px;
    }

    .site-footer p {
        font-size: 13px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-logo img {
        width: 70px;
        height: 70px;
    }
}

/* ===== FIX EXTRA WHITE SPACE BELOW FOOTER ===== */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}


/* Page content wrapper (important) */
.main-content {
    flex: 1;
}

/* Footer fix */
.site-footer {
    margin-top: auto;
}


/* =====service page css======  */
.services-section {
    background: linear-gradient(135deg, #f1b171, #c57519);
}

.service-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card img {
    height: 220px;
    object-fit: cover;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.service-card .card-body {
    padding: 22px;
}

.service-card .card-title {
    font-weight: 600;
    color: #8b0000;
}

.service-card .card-text {
    font-size: 14px;
    color: #555;
}

.service-card .card-footer {
    background: #fff;
    border-top: none;
    padding: 15px;
}

/* ========================= SERVICE PAGE CSS ================= */
.wedding-section {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.wedding-section.dark {
    background: #e8895c;
    color: #fff;
}

.wedding-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #161608;
}

.wedding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.wedding-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.wedding-section.dark .wedding-card {
    background: #1c1c1c;
}

.wedding-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wedding-card h3 {
    margin: 15px 0 10px;
    color: #ff9f1c;
}

.wedding-card p {
    padding: 0 15px 20px;
    font-size: 14px;
}

.wedding-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

footer iframe {
    border-radius: 10px;
    height: 220px;
    /* adjust as needed */
}