* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Navbar */
/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 85px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #0b2433;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 1200;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===============================
   NAV LINKS (DESKTOP)
================================ */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #0b2433;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff9800;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Contact Button */
.nav-btn {
    background: #ff9800;
    color: white !important;
    padding: 8px 18px;
    border-radius: 20px;
}

/* ===============================
   MENU TOGGLE
================================ */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding-right: 10px;
    z-index: 1300;
}

/* ===============================
   OVERLAY
================================ */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
}

.menu-overlay.active {
    display: block;
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 260px;
        height: 100vh;
        background: #0f2a44;
        padding: 80px 24px;

        display: flex;
        flex-direction: column;
        gap: 22px;

        transform: translateX(100%);
        transition: transform 0.35s ease;

        z-index: 1200;
        /* ABOVE overlay */
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        color: #ffffff;
        font-size: 16px;
    }
}





/* Hero */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("https://images.unsplash.com/photo-1503387762-592deb58ef4e") center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 700px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* ===============================
   ABOUT SECTION – FULL WIDTH
================================ */
.about-section {
    width: 100%;
    padding: 110px 0;
    background: #ffffff;
}

/* INNER CONTENT CONTROL */
.about-inner {
    /* max-width: 1200px; */
    max-width: 100%;
    margin: auto;
    padding: 0 34px;
}

/* HEADING */
.about-section h2 {
    font-size: 44px;
    font-weight: 700;
    color: #0f2a44;
    margin-bottom: 32px;
    position: relative;
}

/* GOLD UNDERLINE */
.about-section h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #c9a14a, #8b6b2e);
    position: absolute;
    left: 0;
    bottom: -12px;
    border-radius: 4px;
}

/* TEXT */
.about-section p {
    font-size: 18px;
    line-height: 1.9;
    color: #3a3f45;
    max-width: 100%;
    margin-bottom: 18px;
}

/* STRONG HIGHLIGHT */
.about-section strong {
    color: #0f2a44;
    font-weight: 600;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-section h2 {
        font-size: 32px;
    }

    .about-section p {
        font-size: 16px;
    }
}

/* ===============================
   GENERIC SECTION STYLES
================================ */
.section h2 {
    font-size: 44px;
    font-weight: 700;
    position: relative;
}

.section h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #c9a14a, #8b6b2e);
    position: absolute;
    left: 0;
    bottom: -12px;
    transform: none;
    border-radius: 4px;
}


/* ===============================
   SERVICES SECTION – FULL WIDTH
================================ */
.services-section {
    width: 100%;
    padding: 110px 0;
    background: linear-gradient(180deg,
            #0f2a44 0%,
            #081a2c 35%,
            #f4f6f8 35%,
            #ffffff 100%);
}

/* INNER CONTENT CONTROL */
.services-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

/* Heading white */
.services-section h2 {
    color: #ffffff;
}

/* ===============================
   CARDS GRID
================================ */
.cards {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
}

/* ===============================
   CARD STYLE (ABOUT PAGE MATCH)
================================ */
.card {
    background: #ffffff;
    padding: 40px 36px;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(15, 42, 68, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.45s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #c9a14a, #8b6b2e) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(15, 42, 68, 0.35);
}

.card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0f2a44;
    margin-bottom: 14px;
}

.card p {
    font-size: 16.5px;
    color: #4b5563;
    line-height: 1.8;
}

/* ===============================
   WHY US LIST (ABOUT STYLE)
================================ */
/* ===============================
   WHY US SECTION – FULL WIDTH
================================ */
.whyus-section {
    width: 100%;
    padding: 10px 0;
    background: #ffffff;
}

/* INNER WRAPPER */
.whyus-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.whyus-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: #0f2a44;
    margin-bottom: 30px;
    position: relative;
}

/* GOLD UNDERLINE – LEFT ALIGNED */
.whyus-content h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #c9a14a, #8b6b2e);
    position: absolute;
    left: 0;
    bottom: -12px;
    border-radius: 4px;
}

/* LIST */
.why-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.why-list li {
    font-size: 17px;
    color: #3a3f45;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
}

/* GOLD TICK */
.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #c9a14a;
    font-weight: 700;
}

/* RIGHT IMAGE */
.whyus-image img {
    width: 100%;
    height: 100%;
    /* max-height: 420px; */
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(15, 42, 68, 0.3);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .whyus-wrapper {
        grid-template-columns: 1fr;
    }

    .whyus-image {
        margin-top: 40px;
    }

    .whyus-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .whyus-section {
        padding: 80px 0;
    }

    .why-list li {
        font-size: 16px;
    }
}


/* ===== CONTACT SECTION ===== */
.contact-page {
    padding: 110px 20px;
    background: linear-gradient(180deg,
            #0f2a44 0%,
            #081a2c 35%,
            #f4f6f8 35%,
            #ffffff 100%);
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    padding: 70px 80px;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(15, 42, 68, 0.25);
    position: relative;
}

.contact-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #c9a14a, #8b6b2e) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 44px;
    color: #0f2a44;
    margin-bottom: 12px;
}

.contact-header p {
    color: #555;
    font-size: 17px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

/* ===== FORM ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    outline: none;
}

.contact-form textarea {
    resize: none;
    height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c9a14a;
}

.contact-form button {
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #c9a14a, #8b6b2e);
    color: #0f2a44;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

/* ===== CONTACT INFO ===== */
.contact-info {
    background: #f9fafb;
    padding: 25px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-size: 22px;
    color: #0f2a44;
    margin-bottom: 8px;
}

.contact-info p {
    font-size: 15.5px;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
    background: #0f2a44;
    color: #ffffff;
    text-align: center;
    padding: 22px 15px;
    margin-top: 80px;
}

footer p {
    font-size: 14px;
    opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 45px 30px;
    }

    .contact-header h1 {
        font-size: 34px;
    }
}



.map {
    margin: 25px;
}


/* Footer */
.site-footer {
    background: linear-gradient(180deg, #0f2a44, #081a2c);
    padding: 24px 15px;
    text-align: center;
}

.site-footer p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.95;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* WhatsApp Floating Button */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
}




/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }
}