/* --- CSS Variables & Resets --- */
:root {
    --primary-color: #314550;
    --primary-light: #3d5160;
    --accent-color: #b7b09a;
    --accent-hover: #9c9581;
    --text-dark: #273b47;
    --text-light: #ffffff;
    --text-muted: #6b7a85;
    --bg-light: #ffffff;
    --bg-dark: #19242c;
    --bg-card: #f9f9f9;
    --nav-bg: #eeeae0;
    /* Beige navbar background */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
    font-family: var(--font-primary);
    font-weight: 500;
}

.text-center {
    text-align: center;
}

/* --- Layout --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 7rem 0;
}

.dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.dark-bg h2,
.dark-bg h3,
.dark-bg p {
    color: var(--text-light);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* --- Main Header Layout --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: rgba(39, 59, 71, 0.95);
    /* Semi-transparent navy */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header.scrolled {
    background-color: rgba(31, 44, 52, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 5px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    width: 95%;
    max-width: 1400px;
}

.logo-area {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 6px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    flex-shrink: 0;
}

.logo-area:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 220px;
}

/* --- Navbar --- */
.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links li a:not(.btn) {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links li a:not(.btn):hover::after,
.nav-links li a.active:not(.btn)::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Enquire Now Button */
.header-enquire-btn {
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 50px;
    padding: 8px 8px 8px 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    transition: all 0.3s;
}

.header-enquire-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.header-enquire-btn .arrow-icon {
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.header-enquire-btn:hover .arrow-icon {
    background-color: #fff;
    color: var(--accent-color);
    transform: rotate(45deg);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.05);
    /* Slight scale for breathing effect */
    animation: slideScale 20s infinite alternate linear;
}

@keyframes slideScale {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 21, 25, 0.9) 0%, rgba(15, 21, 25, 0.5) 50%, rgba(15, 21, 25, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    max-width: 700px;
    margin-top: 3rem;
}

.hero-content h1 {
    font-size: 5.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--accent-color);
    font-style: italic;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-down .line {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.scroll-down .line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    50% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

/* --- Page Header for Subpages --- */
.page-header {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(39, 59, 71, 0.8), rgba(25, 36, 44, 0.9));
}

.page-header h1 {
    position: relative;
    z-index: 10;
    font-size: 4rem;
    color: var(--text-light);
    margin-top: 5rem;
}

/* --- About Section Modern --- */
.about {
    position: relative;
    padding: 7rem 0;
}

.about-new-layout {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-content {
    flex: 1.2;
}

.about-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-main-heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-family: var(--font-primary);
    color: var(--text-dark);
}

.about-sub-heading {
    font-size: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
}

.stat-block-modern {
    display: flex;
    flex-direction: column;
}

.stat-title-modern {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
}

.stat-number-modern {
    font-size: 6rem;
    line-height: 1;
    font-weight: 400;
    color: var(--text-dark);
    font-family: var(--font-primary);
    letter-spacing: -2px;
}

.stat-number-modern sup {
    font-size: 3.5rem;
    vertical-align: top;
    margin-left: 2px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid var(--accent-color);
}

.floating-badge i {
    font-size: 3rem;
    color: var(--accent-color);
}

.badge-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.2;
}

.badge-text span {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 2.5rem;
    flex-grow: 1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* --- Projects Section --- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.project-img {
    height: 400px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--text-light);
    transform: translateY(20px);
    opacity: 0.9;
    transition: var(--transition);
}

.project-card:hover .project-info {
    transform: translateY(0);
    opacity: 1;
}

.project-info h3 {
    color: var(--text-light);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* --- Contact / Registration Section Modelized --- */
.contact {
    background-color: #ffffff;
    padding: 5rem 0;
}

.contact-new-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 992px) {
    .contact-new-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-left {
    padding-right: 20px;
}

.contact-left .cu-tag {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.contact-left .cu-tag .semi-circle {
    width: 14px;
    height: 28px;
    background: var(--accent-color);
    border-radius: 100px 0 0 100px;
    margin-right: 12px;
}

.contact-left h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.contact-left p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.quick-contact-box {
    margin-bottom: 1.5rem;
}

.quick-contact-box h6 {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-family: var(--font-primary);
}

.quick-contact-box a,
.quick-contact-box span {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-primary);
    display: block;
}

.quick-contact-box a:hover {
    color: var(--accent-color);
}

.contact-form-box {
    background: #f7f7f7;
    border-radius: 40px;
    padding: 3.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.contact-form-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
}

.contact-form-box form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form-box .full-width {
    grid-column: span 2;
}

.form-control-custom {
    background: #fff;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 14.5px;
    color: #333;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    font-family: var(--font-primary);
    transition: all 0.3s;
}

.form-control-custom:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(187, 169, 142, 0.15);
    border: 1px solid rgba(187, 169, 142, 0.3);
}

.btn-submit-premium {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 8px 8px 8px 28px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
    text-decoration: none;
}

.btn-submit-premium:hover {
    border-color: var(--accent-color);
    background: #fafafa;
}

.btn-submit-premium .icon-circle {
    background: var(--accent-color);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transform: rotate(-45deg);
    transition: transform 0.3s;
}

.btn-submit-premium:hover .icon-circle {
    transform: rotate(0deg);
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 450px;
    background: #f7f7f7;
    margin-top: 4rem;
}

/* --- Footer --- */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
}

.footer-brand>p {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.footer-brand .footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    text-transform: none;
    letter-spacing: normal;
    font-size: 1rem;
    max-width: 400px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

footer .border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* --- Breadcrumb --- */
.breadcrumb {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-family: var(--font-primary);
    position: relative;
    z-index: 10;
}

.breadcrumb a {
    color: var(--accent-color);
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb .current {
    color: #fff;
}

/* --- Stats Card --- */
.stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 1.8rem;
    gap: 1.8rem;
    border-bottom: 4px solid var(--accent-color);
    z-index: 2;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.stat-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0px;
}

.stat-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0px;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.08);
}

/* --- About Services --- */
.bg-light {
    background-color: #f9f9f9;
}

.services-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.icon-card {
    background: #ffffff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(183, 176, 154, 0.3);
}

.icon-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.icon-card:hover .icon-card-img {
    transform: scale(1.1);
}

.icon-card-content {
    padding: 2rem 1.5rem;
}

.icon-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.icon-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .services-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-card {
        right: 0;
        bottom: -40px;
        left: 0;
        width: 90%;
        margin: 0 auto;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 4.5rem;
    }

    .about-new-layout {
        flex-direction: column;
        gap: 4rem;
        text-align: center;
    }

    .about-sub-heading {
        justify-content: center;
    }

    .about-stats {
        flex-direction: row;
        gap: 4rem;
        justify-content: center;
    }

    .floating-badge {
        left: 20px;
        bottom: -20px;
        padding: 1.5rem;
    }

    .services-grid,
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 75%;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a:not(.btn) {
        color: var(--primary-color) !important;
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--primary-color);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--primary-color);
    }

    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .header-right {
        justify-content: center;
    }

    .top-bar {
        display: none;
        /* Hide top bar on mobile */
    }

    .logo-img {
        height: 80px;
    }

    .logo-area {
        padding: 4px 12px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .services-icon-grid {
        grid-template-columns: 1fr;
    }

    .stats-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-divider {
        width: 80%;
        height: 2px;
    }

    .services-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-container {
        padding: 2rem;
    }

    .contact-form-box {
        padding: 2.5rem 2rem;
    }

    .contact-form-box form {
        grid-template-columns: 1fr;
    }

    .contact-form-box .full-width {
        grid-column: span 1;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    footer .border-top {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .header-enquire-btn {
        display: none !important;
    }
}