/* ====== GLOBAL ====== */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #1f1f1f;
    color: white;
}

/* ====== NAVBAR ====== */
.navbar {
    background-color: #1f1f1f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* ====== LOGO ====== */
.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* ====== NAV LINKS ====== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
        font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
}

.nav-links a i {
    color: #d4a53f;
}

.nav-links a:hover {
    color: #d4a53f;
}

/* ====== BOOK BUTTON ====== */
.book-btn {
    background: #2a4e1b;
    color: white;
    padding: 8px 18px;
    border: 1px solid #d4a53f;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.book-btn:hover {
    background: #3e6e27;
}

/* ====== MENU ICON (MOBILE) ====== */
.menu-icon {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: #1f1f1f;
        width: 100%;
        padding: 20px 0px 20px 0px;
        border-top: 1px solid #333;
    }

    .nav-links.active {
        display: flex;
        align-items: flex-start;
    }

    .menu-icon {
        display: block;
    }

    .book-btn {
        margin-top: 10px;
    }

    .logo img {
        height: 50px;
    }

}




.about-section {
    position: relative;
    width: 100%;
    height: 300px;
    background: url('Images/Khotels images/meeting.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overlay h2 {
    color: #fff;
    font-size: 27px;
    letter-spacing: 2px;
    margin: 0;
    font-family: 'Playfair Display', serif;

}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        height: 120px;
    }

    .about-overlay h2 {
        font-size: 14px;
    }

    .experience-section {
        padding: 20px !important;
    }
}

.conference-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    background: rgb(32, 32, 32);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 165, 63, 0.3);
    transition: transform 0.5s ease;
}

.image-container:hover {
    transform: scale(1.02);
}

.image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 30px;
}

.capacity-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 165, 63, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95em;
}

.content-container {
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    color: #d4a53f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.main-title {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #b8902f;
    background: #b8902f;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;

}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px;
    background: rgba(212, 165, 63, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 63, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 165, 63, 0.15);
    border-color: #d4a53f;
    transform: translateX(5px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4a53f, #b8902f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1em;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500;
}

.contact-info {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.diev {
    display: flex !important;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d2d2d2;
    font-size: 1.05em;
        font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 63, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 10px 20px;
    background: linear-gradient(135deg, #d4a53f, #b8902f);
    color: #000;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 63, 0.4);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: #d4a53f;
    border: 2px solid #d4a53f;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: #d4a53f;
    color: #000;
    transform: translateY(-3px);
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 165, 63, 0.2);
}

.stat-item {
    text-align: center;
}



.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #d4a53f;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-title {
        font-size: 2.8em;
    }

    .image-container img {
        height: 450px;
    }
}

/* Mobile View Fixes - Apply below your existing CSS */
@media (max-width: 768px) {
    .conference-section {
        padding: 30px 15px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-container img {
        height: 280px;
    }

    .main-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 18px;
    }

    .description {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 25px;
    }

    /* .feature-item {
        justify-content: center;
    } */

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
        /* align-items: s; */
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        border-radius: 25px;
        font-size: 15px;
    }

    .diev {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        gap: 15px;
        margin-top: 20px;
    }

    .stat-item {
        text-align: center;
        flex: 1;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .image-container img {
        height: 240px;
    }

    .main-title {
        font-size: 1.6rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .feature-item,
    .contact-item {
        gap: 10px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}



/* Small Mobile Devices */
@media (max-width: 480px) {
    .conference-section .content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .image-container img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 8px;
    }

    .content-container {
        text-align: center;
        padding: 0 12px;
    }

    .content-container .main-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .content-container .description {
        font-size: 0.9rem;
        margin-bottom: 12px;
        text-align: left;
    }

    .highlights-list {
        gap: 10px;
        font-size: 0.85rem;
    }

    .highlight-item i {
        font-size: 1rem;
        margin-right: 6px;
    }
}

@media (max-width: 768px) {
    .conference-section .content-wrapper {
        display: flex;
        flex-direction: column;
    }

    .conference-section .image-container {
        order: -1;
    }
}




.site-footer {
    background: #111;
    color: #ddd;
    padding: 70px 5% 30px;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- Footer Columns --- */
.footer-col {
    flex: 1 1 280px;
}

.footer-about h2.footer-logo {
    color: #c3932d;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.footer-about p {
    color: #bbb;
    line-height: 1.6;
            font-family: 'Montserrat', sans-serif !important;
font-weight: 400;

}

/* --- Links --- */
.footer-col h3 {
    color: #c3932d;
    margin-bottom: 20px;
    font-weight: 600;
            font-family: 'Montserrat', sans-serif !important;
font-weight: 400;

}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #c3932d;
}

/* --- Contact Info --- */
.footer-contact li {
    margin-bottom: 10px;
}

.footer-contact i {
    color: #c3932d;
    margin-right: 8px;
}

/* --- Social Icons --- */
.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    background: #222;
    color: #c3932d;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #c3932d;
    color: #fff;
}

/* --- Footer Bottom --- */
.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: #aaa;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-social a {
        margin: 5px;
    }

    .footer-col h3 {
        margin-top: 25px;
    }
}

.footer-social-modern {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-modern a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #222;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    /* ✅ removes underline if any */

}

/* Hover colors */
.footer-social-modern a.fb:hover {
    background: #1877f2;
    box-shadow: 0 0 10px #1877f2;
}

.footer-social-modern a.ig:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    box-shadow: 0 0 10px #dd2a7b;
}

.footer-social-modern a.tw:hover {
    background: #000;
    box-shadow: 0 0 10px #000;
}

.footer-social-modern a.yt:hover {
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
}

.footer-social-modern a.li:hover {
    background: #0077b5;
    box-shadow: 0 0 10px #0077b5;
}

.logo-footer {
    width: 180px;
}

p {
    font-family: 'Open Sans', serif !important;
    font-size: 16px !important;
}