@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================
   COLOR SYSTEM
========================= */
:root {
    --yellow-main: #facc15;
    --yellow-soft: #fef9c3;

    --red-main: #dc2626;
    --red-soft: #fee2e2;

    --black-main: #0f172a;
    --gray-dark: #1f2937;
    --gray-light: #f3f4f6;

    --white: #ffffff;
}

/* =========================
   RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-dark);
    background-color: var(--white);
    line-height: 1.7;
}

/* =========================
   NAVBAR (DEFAULT = HAMBURGER)
========================= */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 8%;
    background-color: var(--black-main);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* LOGO */
.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--yellow-main);
    white-space: nowrap;
}
.top-left{
    display:flex;
    flex-direction: column;
}
.top-left p{
    font-size: small;
}

/* NAV LINKS (hidden by default) */
.nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: var(--black-main);
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    z-index: 1100;
}

.nav-links.active {
    display: flex;
}

.nav-links li a {
    text-decoration: none;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links li a:hover {
    background-color: var(--red-main);
}

/* HAMBURGER (always visible by default) */
.hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
    color: var(--yellow-main);
}

/* =========================
   SHOW FULL NAV ONLY ON ≥14" SCREENS
========================= */
@media (min-width: 1366px) {

    .hamburger {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex !important;
        flex-direction: row;
        width: auto;
        background: none;
        gap: 26px;
        padding: 0;
    }
}

/* =========================
   SLIDER
========================= */
.slider {
    width: 100%;
    max-height: 460px;
    overflow: hidden;
    background: linear-gradient(
        to right,
        var(--black-main),
        var(--gray-dark)
    );
}

.slides {
    display: flex;
    transition: transform 1.2s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    height: 460px;
    width: 100%;
    object-fit: contain;
    filter: brightness(0.9);
}

/* =========================
   ABOUT SECTION
========================= */
.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}
.about-section {
    padding: 90px 8%;
    background: linear-gradient(
        to right,
        var(--yellow-soft),
        var(--white)
    );
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 18px;
    border-top: 6px solid var(--yellow-main);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
}

.about-card h1 {
    font-size: 28px;
    margin-bottom: 16px;
}

/* =========================
   OUR OFFERINGS
========================= */
.offerings-section {
    padding: 90px 8%;
    background: linear-gradient(
        to right,
        var(--white),
        var(--yellow-soft)
    );
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.offering-card {
    background: var(--white);
    border-radius: 18px;
    padding: 40px 32px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top: 6px solid var(--black-main);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

.offering-card.highlight {
    border-top: 6px solid var(--red-main);
}

/* =========================
   WHY DIMENSION
========================= */
.why-dimension {
    padding: 100px 8%;
    max-width: 1100px;
    margin: 0 auto;
}

.why-dimension h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.why-block {
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}

.why-block h3 {
    font-size: 24px;
    padding-left: 18px;
    position: relative;
}

.why-block h3::before {
    content: "";
    width: 6px;
    height: 100%;
    background: var(--yellow-main);
    position: absolute;
    left: 0;
    top: 0;
}

.why-block.highlight {
    background: linear-gradient(
        to right,
        var(--white),
        var(--yellow-soft)
    );
    padding: 50px 40px;
    border-radius: 18px;
    border-left: 6px solid var(--red-main);
}

/* =========================
   LOCATIONS / MAPS
========================= */
#locations {
    background: linear-gradient(
        to bottom,
        var(--gray-light),
        var(--white)
    );
    padding: 80px 8%;
}

.maps-wrapper {
    display: flex;
    justify-content: center;
}

.maps-container {
    width: 100%;
    max-width: 900px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.maps-container .map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.maps-container .map {
    display: none;
}

.maps-container .map.active {
    display: block;
}

/* LOCATION TABS */
.location-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* gap: 10px; */
    text-align: center;
    margin: 0 10px 20px ;
}

.location-tabs .loc-btn {
    background: var(--white);
    border: 2px solid var(--black-main);
    color: var(--black-main);
    padding: 12px 28px;
    margin: 10px 10px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-tabs .loc-btn.active,
.location-tabs .loc-btn:hover {
    background: var(--red-main);
    color: var(--white);
    border-color: var(--red-main);
}

/* =========================
   MOBILE TWEAKS
========================= */
@media (max-width: 768px) {

    .about-section,
    .offerings-section,
    .why-dimension,
    #locations {
        padding: 60px 6%;
    }

    .maps-container iframe {
        height: 300px;
    }

    .why-dimension h2 {
        font-size: 32px;
    }
}
/* ------------------- BUTTONS ------------------- */
.btn {
    display: inline-block;
    background: #22c55e;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}
/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.whatsapp-float i {
    color: white;
    font-size: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ================= MODAL ================= */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 36px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-align: center;
}

.modal-content h2 {
    margin-bottom: 15px;
    color: #4338ca;
}

.modal-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.modal-content input,
.modal-content textarea {
    width: 90%;
    margin: 12px 0;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
}

.modal-content textarea {
    resize: none;
}

.modal-content button {
    margin-top: 15px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    color: #475569;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #f87171;
}
footer{
    text-align: center;
    background-color: #979fab;
}

