:root {
    --primary-gold: #E09617;
    --bg-dark: #232323;
    --text-white: #ffffff;
    --text-muted: #cccccc;
    --bg-dark1: #666666;
}

* {
    margin: 0;
    padding: 0;
    -x-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.award-box {
    background-color: #302b2b;
    border-radius: 50px;
    border: 5px solid #111111;
    text-align: center;
    padding-top: 3%;
    padding-bottom: 3%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.navbar {
    background-color: var(--bg-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
}

.brand-name {
    color: var(--primary-gold);
    font-size: 1.0rem;
    margin: 0;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--text-white);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.hero {
    background-color: var(--bg-dark);
    min-height: 90vh;
    padding: 20px;
    display: flex;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.hero-text-area {
    display: flex;
    align-items: center;
    padding: 60px;
}

.award-label {
    color: var(--primary-gold);
    font-family: Georgia, serif;
    font-size: 1.4rem;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

.main-heading {
    color: var(--text-white);
    font-family: Georgia, serif;
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.sub-heading {
    color: var(--text-white);
    font-family: Georgia, serif;
    font-size: 1.6rem;
}

.highlight {
    color: var(--primary-gold);
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 30px 0 40px;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    display: inline-block;
}

.hero-image-area .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    background: #f9f9f9;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    border-bottom: 4px solid var(--primary-gold);
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.03);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer {
    background: var(--bg-dark);
    color: var(--primary-gold);
    text-align: center;
    padding: 40px 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--primary-gold);
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    transition: 0.3s;
    border-radius: 0 5px 5px 0;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.prev {
    left: 0;
}

.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.hero-img {
    transition: opacity 0.5s ease-in-out;
}

.fade-in {
    animation: fadeInEffect 0.8s;
}

@keyframes fadeInEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .nav-toggle-label {
        display: block;
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: var(--primary-gold);
        height: 3px;
        width: 25px;
        position: relative;
    }

    .nav-toggle-label span::before {
        content: "";
        top: 8px;
    }

    .nav-toggle-label span::after {
        content: "";
        top: -11px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        padding: 20px;
        text-align: center;
        border-top: 1px solid #333;
    }

    .nav-toggle:checked~.nav-links {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-text-area {
        padding: 40px 20px;
        text-align: center;
    }

    .hero-image-area {
        height: 300px;
    }

    .main-heading {
        font-size: 1.4rem;
    }

    .award-label {
        font-size: 1.0rem;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: all 0.3s ease;
    opacity: 0;
    /* Hidden by default */
    visibility: hidden;
    /* Prevents clicking while hidden */
}

.back-to-top:hover {
    background-color: #fff;
    transform: translateY(-5px);
}

/* Class to show the button */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* About Section Base */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    ;
}

.about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.about-image-box,
.about-text-box {
    flex: 1;
    min-width: 320px;
    /* Forces stacking on smaller screens */
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Typography */
.section-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-white);
    display: block;
    margin-bottom: 20px;
}

.main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--primary-gold);
}

.highlight-text p {
    color: #E09617;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.experience-badge {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-white);
    margin: 30px 0 20px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 40px;
}

/* Appointment Button */
.btn-appointment {
    display: inline-block;
    background-color: #ffb973;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 35px;
    border-radius: 50px;
    border: 3px solid #ff9900;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 6px;
}

.btn-appointment:hover {
    background-color: #ff9900;
    transform: translateY(-3px);
}

.divider {
    margin: 0px 0;
    border: 0;
    border-top: 1px solid #eee;
}

.divider1 {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #eee;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
    background-color: #eba234;
}

.feature-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Tablet/Mobile Adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.2rem;
    }

    .about-text-box {
        text-align: center;
    }

    .highlight-text p {
        font-size: 1.2rem;
    }
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-family: 'Georgia', serif;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
}


/* --- Mobile & Tablet Adjustments --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* Dark Mode Preference (Optional) */
@media (prefers-color-scheme: dark) {
    .section-title {
        color: #fff;
    }
}


.contact-section {
    padding: 80px 0;
    background-color: #232323;
    /* Dark background */
    color: #ffffff;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.info-block {
    margin-bottom: 30px;
}

.gold-text {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.info-block a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.info-block a:hover {
    color: var(--primary-gold);
}

/* Modern Form Styling */
.modern-form .form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #333;
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
}

.btn-submit {
    background-color: var(--primary-gold);
    color: #232323;
    border: none;
    padding: 15px 40px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
    width: 100%;
    text-transform: uppercase;
}

.btn-submit:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .modern-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.faq-section {
    padding: 100px 0;
    background-color: #232323;
    /* Dark Theme */
    color: #fff;
}

.faq-subtitle {
    text-align: center;
    color: var(--primary-gold);
    margin-top: -30px;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #2d2d2d;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #3d3d3d;
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background-color: #363636;
    color: var(--primary-gold);
}

/* The Plus Icon */
.faq-question::after {
    content: '+';
    color: var(--primary-gold);
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    /* Turns + into x */
    color: #fff;
}

/* Hidden Answer with Slide Effect */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background-color: #282828;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    /* Large enough for content */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- Project Grid Container --- */
.projects-section {
    padding: 80px 0;
    background-color: var(--bg-dark1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* The Grid System */
.project-grid {
    display: grid;
    /* This creates 6 equal columns on desktop */
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    /* Space between the cards */
}

/* --- Project Card Styling --- */
.project-card {
    position: relative;
    aspect-ratio: 1 / 1;
    /* Keeps cards perfectly square */
    background-color: #ddd;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Prevents image distortion */
    transition: transform 0.5s ease;
}

/* Zoom effect on hover */
.project-card:hover img {
    transform: scale(1.1);
}

/* --- Centered Overlay --- */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Darker overlay for better contrast */

    /* Flexbox for Perfect Centering */
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay span {
    color: white;
    font-size: 12px;
    /* Smaller font for 6-column layout */
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid white;
    padding: 5px 10px;
    letter-spacing: 1px;
    pointer-events: none;
    /* Allows click to pass through to the card */
}

/* --- Responsive Breakpoints --- */

/* Tablets (4 columns) */
@media (max-width: 1024px) {
    .project-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Landscape (2-3 columns) */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Mobile (1-2 columns) */
@media (max-width: 480px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lightbox {
    position: fixed;
    /* Fixes it to the screen, not the section */
    top: 0;
    left: 0;
    width: 100vw;
    /* Full viewport width */
    height: 100vh;
    /* Full viewport height */
    background: #232323;
    z-index: 9999;
    /* Ensures it sits on top of navbars and sections */
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
    user-select: none;
    /* Prevents highlighting the X on double click */
}

.close-btn:hover {
    color: #bbb;
    /* Changes color slightly when hovering */
    transform: scale(1.2);
}

/* Adjust position for mobile screens */
@media (max-width: 600px) {
    .close-btn {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}

.services-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    ;
    text-align: center;
}

.services-header {
    margin-bottom: 50px;
}

/* Grid Layout for 4 cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 4%;
}

.service-card {
    background-color: #ffffff;
    border: 2px solid #eee;
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #E09617;
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.service-icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-icon-box h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on tablets */
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        /* 1 column on phones */
    }
}

.why-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.why-header {
    margin-bottom: 50px;
    padding: 0 10%;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 2%;
}

.why-card {
    background-color: #e09617;
    color: #ffffff;
    padding: 40px 25px;
    border-radius: 25px;
    border: 3px solid #c98512;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(224, 150, 23, 0.4);
}

.why-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Georgia', serif;
}

/* Mobile Responsiveness */
@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on tablets */
    }
}

@media (max-width: 650px) {
    .why-grid {
        grid-template-columns: 1fr;
        /* 1 column on phones */
    }

    .main-title {
        font-size: 28px;
    }
}

.gold-text {
    color: #E09617 !important;
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

/* --- Styled Outline Button --- */
.btn-outline-gold {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #E09617;
    color: #E09617;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 6px;
}

.btn-outline-gold:hover {
    background-color: #E09617;
    color: #ffffff !important;
}

.milestones-section {
    background-color: #1a1a1a;
    padding: 100px 0;
    color: #ffffff;
    font-family: 'Georgia', serif;
}

.milestone-img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.gold-text {
    color: #E09617 !important;
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

.milestone-flex-row {
     display: flex;
     align-items: center;
     gap: 40px;
     flex-direction: row;
 }

.milestone-title {
    font-size: 35px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #ffffff;
}

.milestone-description {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
}

.btn-outline-gold {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #C5A059;
    color: #C5A059;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: #E09617;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .milestones-section {
        padding: 50px 0;
    }

    .milestone-flex-row {
         flex-direction: column;
         text-align: center;
     }
}

.process-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    ;
    text-align: center;
    font-family: 'Georgia', serif;
}

.process-header {
    margin-bottom: 60px;
}

.process-header h5 {
    color: #888;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Grid for 3 items */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 5%;
}

.process-card {
    background-color: #ffffff;
    border-radius: 25px;
    border: 3px solid #eee;
    /* Lighter border for a high-end look */
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: #E09617;
    transform: translateY(-10px);
}

.step-number {
    color: #E09617;
    font-size: 55px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
}

.step-title {
    color: #E09617;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.process-card p {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive View */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
        /* Stacks vertically on smaller screens */
        max-width: 500px;
        margin: 0 auto;
    }
}

.partners-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.partners-header {
    margin-bottom: 40px;
}

/* Flexbox container for logos */
.partners-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    /* Vertical and horizontal spacing */
    padding: 0 5%;
}

.partner-logo {
    flex: 0 1 auto;
    max-width: 150px;
    /* Prevents logos from becoming too large */
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    /* Optional: Greyscale effect */
    filter: grayscale(0%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .partners-logo-grid {
        gap: 30px;
    }

    .partner-logo {
        max-width: 100px;
        /* Smaller logos on mobile */
    }
}