* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a2342;
    --primary-dark: #06172d;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --text-light: #ffffff;
    --text-dark: #1f2937;
    --muted: #94a3b8;
    --section-dark: #050b14;
    --section-blue: #0b2c5d;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--section-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    gap: 20px;
}

.logo img {
    height: 58px;
    width: auto;
}

.main-nav {
    position: relative;
    z-index: 2000;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav a {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

.menu-toggle {
    display: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-light);
    border: none;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--text-light);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-full {
    width: 100%;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    position: relative;
    min-height: 85vh;
}

.hero-slide img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5, 11, 20, 0.75), rgba(5, 11, 20, 0.28));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content h1 {
    max-width: 620px;
    font-size: 58px;
    line-height: 1.05;
    margin-bottom: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-content p {
    max-width: 620px;
    color: #e2e8f0;
    margin-bottom: 28px;
    font-size: 18px;
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.dot.active {
    background: var(--accent);
}

/* About Section */
.about-section {
    background: #03070d;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-top-text {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-left h2 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
}

.about-left h2 span {
    display: block;
    color: var(--text-light);
}

.small-note {
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
}

.about-right p {
    color: #dbe4ef;
    margin-bottom: 22px;
    font-size: 15px;
}

/* Services */
.services-section {
    background:
        radial-gradient(circle at 1px 1px, rgba(249, 115, 22, 0.14) 1px, transparent 0);
    background-size: 18px 18px;
    background-color: #081320;
    padding: 100px 0;
    position: relative;
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.services-heading h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
}

.services-text p {
    color: #dbe4ef;
    margin-bottom: 18px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.service-card {
    background: linear-gradient(180deg, rgba(11, 44, 93, 0.94), rgba(5, 11, 20, 0.98));
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.service-content p {
    color: #dbe4ef;
    font-size: 14px;
    margin-bottom: 18px;
}

.read-more {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s ease;
}

.read-more:hover {
    color: #ffb27d;
}

/* Parallax */
.parallax-section {
    position: relative;
    background-image: url("../images/hero-scaffolding.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.parallax-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 23, 45, 0.72);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.parallax-content h2 {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-weight: 800;
}

.parallax-content p {
    max-width: 760px;
    margin: 0 auto;
    color: #e2e8f0;
    font-size: 18px;
}

/* Contact */
.contact-cta-section {
    background: linear-gradient(180deg, #0b2c5d 0%, #081c3d 100%);
    padding: 100px 0;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-box {
    background: #ffffff;
    color: var(--text-dark);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.contact-form-box h2 {
    color: var(--primary);
    font-size: 38px;
    margin-bottom: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    padding: 14px 16px;
    font-size: 14px;
    outline: none;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-note {
    color: #64748b;
    font-size: 14px;
    margin-top: 14px;
}

.contact-cta-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: 800;
}

.contact-mini-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mini-contact-box {
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 20px 24px;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.03);
}

.mini-contact-box h4 {
    color: var(--accent);
    margin-bottom: 10px;
}

.mini-contact-box p {
    color: #e2e8f0;
    font-size: 15px;
}

/* Footer */
.site-footer {
    background: var(--primary);
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    padding: 70px 0 40px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: #dbe4ef;
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-link {
    color: var(--accent);
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}

.footer-link:hover {
    color: #ffb27d;
}

.contact-info li {
    margin-bottom: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 20px 0;
    color: #cbd5e1;
    font-size: 14px;
}

/* =========================
   ABOUT PAGE HERO
========================= */
.inner-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.inner-hero-image {
    position: absolute;
    inset: 0;
}

.inner-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* parallax style */
.about-hero .inner-hero-image {
    background-image: url("../images/about-banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-hero .inner-hero-image img {
    display: none;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 23, 45, 0.45);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.inner-hero-content h1 {
    color: #fff;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: capitalize;
}

/* =========================
   ABOUT MAIN SECTION
========================= */
.about-page-main {
    background: #05070b;
    padding: 80px 0;
}

.about-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.about-main-left h2 {
    font-size: 30px;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 22px;
    font-weight: 700;
}

.about-main-left p {
    color: #d7dde8;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-sub-block {
    margin-top: 34px;
}

.about-sub-block h3 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 700;
}

.about-main-right {
    display: flex;
    justify-content: center;
}

.service-areas-box {
    background: rgba(255, 255, 255, 0.92);
    padding: 34px 32px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.service-areas-box h3 {
    font-size: 22px;
    color: #2d2d2d;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-areas-box ul {
    list-style: none;
}

.service-areas-box li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
}

.service-areas-box li::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 0;
    color: #f97316;
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
}

/* =========================
   QUALITY SECTION
========================= */
.quality-section {
    background: #000000;
    padding: 70px 0 90px;
}

.quality-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 34px;
    align-items: start;
}

.quality-image-card {
    background: #ffffff;
    overflow: hidden;
}

.quality-image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.quality-caption {
    background: #e8e5e5;
    padding: 16px 20px;
    text-align: center;
}

.quality-caption h3 {
    color: #0a2342;
    font-size: 22px;
    font-weight: 700;
}

.quality-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-box {
    background: #f7f7f7;
    border: 1px solid #e5e7eb;
}

.accordion-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
}

.accordion-title h3 {
    color: #0a2342;
    font-size: 18px;
    font-weight: 700;
}

.accordion-title span {
    color: #0a2342;
    font-size: 20px;
    font-weight: 700;
}

/* =========================
   TEAM SECTION
========================= */
.team-section {
    background: #efefef;
    padding: 90px 0 120px;
    min-height: 900px;
}

.section-heading {
    margin-bottom: 24px;
}

.section-heading.text-center {
    text-align: center;
}

.section-heading h2 {
    color: #111827;
    font-size: 52px;
    font-weight: 700;
}

.team-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.team-tab {
    background: #ffffff;
    border: 1px solid #c7d2fe;
    color: #0a2342;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.team-tab.active {
    border-color: #0a2342;
    color: #0a2342;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: start;
}

.team-card {
    background: transparent;
    text-align: center;
}

.team-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #fff;
}

.team-info {
    background: #0a2342;
    padding: 18px 14px;
    min-height: 120px;
}

.team-info h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-info p {
    color: #dbe4ef;
    font-size: 14px;
    margin-bottom: 6px;
}

.team-info span {
    color: #ffffff;
    font-size: 13px;
}

/* =========================
   FOOTER TUNE FOR ABOUT PAGE
========================= */
.site-footer {
    background: #0b2c5d;
}

/* =========================
   SIMPLE DROPDOWN FIX
========================= */
.main-nav ul li {
    position: relative;
}

.has-dropdown {
    position: relative;
}

.main-nav .has-dropdown > a {
    display: inline-block;
    padding-bottom: 14px;
}

.main-nav .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: auto !important;
    min-width: 300px !important;
    max-width: 360px !important;
    background: #ffffff !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18) !important;
    display: none !important;
    z-index: 9999 !important;
    border: none !important;
    flex-direction: column !important;
}

.main-nav .dropdown-menu::before,
.main-nav .dropdown-menu::after {
    display: none !important;
    content: none !important;
}

.main-nav .dropdown-menu li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-nav .dropdown-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px !important;
    color: #5b6f95 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    white-space: normal !important;
    line-height: 1.5 !important;
    background: transparent !important;
}

.main-nav .dropdown-menu li a:hover {
    background: #f4f6fb !important;
    color: #0a2342 !important;
}

.main-nav .has-dropdown:hover > .dropdown-menu {
    display: block !important;
}
/* kill mega menu / wide menu behavior */
.main-nav .dropdown-menu .row,
.main-nav .dropdown-menu .col,
.main-nav .dropdown-menu .mega-menu,
.main-nav .dropdown-menu .container,
.main-nav .dropdown-menu .submenu,
.main-nav .dropdown-menu .sub-menu {
    display: none !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-main-grid {
        grid-template-columns: 1fr;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .service-areas-box {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .menu-toggle span {
        width: 26px;
        height: 3px;
        background: #fff;
    }

    .about-grid,
    .services-intro,
    .contact-cta-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-cards,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1,
    .about-left h2,
    .services-heading h2,
    .parallax-content h2,
    .contact-cta-content h2,
    .inner-hero-content h1,
    .section-heading h2 {
        font-size: 36px;
    }

    .hero-slide,
    .hero-slide img {
        min-height: 70vh;
        height: 70vh;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .parallax-section,
    .about-hero .inner-hero-image {
        background-attachment: scroll;
    }
}

@media (max-width: 767px) {
    .inner-hero {
        height: 320px;
    }

    .inner-hero-content h1 {
        font-size: 30px;
    }

    .about-page-main,
    .quality-section,
    .team-section,
    .about-section,
    .services-section,
    .contact-cta-section {
        padding: 60px 0;
    }

    .accordion-title {
        padding: 18px 20px;
    }

    .team-image img {
        height: auto;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .header-container {
        min-height: 76px;
    }

    .logo img {
        height: 46px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .contact-form-box {
        padding: 24px;
    }
}

/* =========================
   SERVICE DETAIL PAGE FIX
========================= */

.service-detail {
    background: #05070b;
    padding: 80px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
}

/* TEXT SIDE */
.service-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 800;
}

.service-text h4 {
    font-size: 20px;
    color: #f97316;
    margin-bottom: 20px;
}

.service-text h5 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-text p {
    color: #dbe4ef;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
    max-width: 650px;
}

/* ADD SPACING BETWEEN SECTIONS */
.service-text h5 + p {
    margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 991px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-image img {
        height: auto;
    }
}

/* =========================
   PREMIUM SERVICE PAGE
========================= */

.service-detail-page {
    background: #05070b;
    padding: 90px 0 110px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 50px;
    align-items: start;
}

.service-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #d9d4d4;
    color: #0a2342;
    padding: 18px 18px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sidebar-link::after {
    content: "→";
    font-size: 16px;
    font-weight: 700;
}

.sidebar-link:hover {
    background: #ffffff;
    transform: translateX(6px);
    border-left-color: var(--accent);
    color: var(--primary);
}

.sidebar-link.active {
    background: var(--primary);
    color: #ffffff;
    border-left-color: var(--accent);
}

.service-detail-content {
    animation: fadeUp 0.8s ease both;
}

.service-detail-top {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    align-items: start;
    margin-bottom: 36px;
}

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-detail-image img:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
}

.service-detail-heading h2 {
    font-size: 56px;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 14px;
    font-weight: 800;
}

.service-detail-heading h3 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 18px;
    font-weight: 700;
}

.service-text-block {
    margin-bottom: 34px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-text-block:last-child {
    border-bottom: none;
}

.service-text-block h4 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-text-block p {
    color: #d8e1ec;
    font-size: 15px;
    line-height: 1.95;
    max-width: 920px;
    margin-bottom: 14px;
}

.service-bullets {
    margin-top: 14px;
    padding-left: 0;
}

.service-bullets li {
    position: relative;
    padding-left: 22px;
    color: #d8e1ec;
    margin-bottom: 10px;
    line-height: 1.8;
}

.service-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 22px;
    line-height: 1;
}

.service-sub-hero .inner-hero-image img {
    filter: brightness(0.72);
}

.service-sub-hero .inner-hero-content h1 {
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

/* hover polish on footer links */
.footer-col a {
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
}

/* dropdown polish */
.main-nav .dropdown-menu {
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

.main-nav .dropdown-menu li a {
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.main-nav .dropdown-menu li a:hover {
    padding-left: 26px !important;
}

/* scroll animation classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* responsive */
@media (max-width: 1100px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 991px) {
    .service-detail-top {
        grid-template-columns: 1fr;
    }

    .service-detail-heading h2 {
        font-size: 40px;
    }

    .service-detail-heading h3 {
        font-size: 22px;
    }

    .service-text-block h4 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .service-detail-page {
        padding: 60px 0 70px;
    }

    .service-detail-heading h2 {
        font-size: 32px;
    }

    .service-detail-heading h3 {
        font-size: 20px;
    }

    .sidebar-link {
        font-size: 13px;
        padding: 15px 14px;
    }
}

/* =========================
   PROJECTS PAGE
========================= */

.projects-gallery-section {
    background: #000000;
    padding: 40px 0 90px;
    min-height: 100vh;
}

.projects-gallery-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 30px;
}

.projects-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(170px, 1fr));
    gap: 34px 30px;
    justify-items: center;
    align-items: center;
}

.project-circle-item {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    padding: 8px;
    background: #dfe6ef;
    box-shadow:
        0 0 0 4px #ffffff,
        0 10px 25px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.project-circle-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 0 0 4px #ffffff,
        0 18px 35px rgba(0, 0, 0, 0.45);
}

.project-circle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.35s ease;
}

.project-circle-item:hover img {
    transform: scale(1.06);
}

/* optional slight uneven layout for natural gallery feel */
.projects-gallery-grid .project-circle-item:nth-child(6n + 1),
.projects-gallery-grid .project-circle-item:nth-child(6n + 4) {
    transform: translateY(-6px);
}

.projects-gallery-grid .project-circle-item:nth-child(6n + 1):hover,
.projects-gallery-grid .project-circle-item:nth-child(6n + 4):hover {
    transform: translateY(-14px) scale(1.03);
}

/* responsive */
@media (max-width: 1400px) {
    .projects-gallery-grid {
        grid-template-columns: repeat(4, minmax(170px, 1fr));
    }
}

@media (max-width: 1100px) {
    .projects-gallery-grid {
        grid-template-columns: repeat(3, minmax(160px, 1fr));
    }

    .project-circle-item {
        width: 190px;
        height: 190px;
    }
}

@media (max-width: 768px) {
    .projects-gallery-wrapper {
        padding: 0 16px;
    }

    .projects-gallery-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 24px 18px;
    }

    .project-circle-item {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .projects-gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-circle-item {
        width: 220px;
        height: 220px;
    }
}

/* =========================
   PROJECT LIGHTBOX
========================= */

.project-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 30px;
}

.project-popup.active {
    display: flex;
}

.project-popup img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.project-popup-close {
    position: absolute;
    top: 24px;
    right: 34px;
    color: #ffffff;
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
    font-weight: 700;
}

.blog-dropdown-menu {
    min-width: 360px !important;
    max-width: 420px !important;
}

.blog-dropdown-menu li a {
    white-space: normal !important;
    line-height: 1.5 !important;
}

/* BLOG DROPDOWN FIX */
.main-nav ul li {
    position: relative;
}

.has-dropdown {
    position: relative;
}

.main-nav .has-dropdown > a {
    display: inline-block;
    padding-bottom: 14px;
}

.main-nav .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 320px !important;
    max-width: 420px !important;
    background: #ffffff !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    display: none !important;
    z-index: 99999 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18) !important;
    border: none !important;
}

.main-nav .dropdown-menu li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-nav .dropdown-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px !important;
    color: #5b6f95 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    background: transparent !important;
}

.main-nav .dropdown-menu li a:hover {
    background: #f4f6fb !important;
    color: #0a2342 !important;
}

.main-nav .has-dropdown:hover > .dropdown-menu {
    display: block !important;
}

/* =========================
   DROPDOWN FIX (IMPORTANT)
========================= */

.main-nav ul li {
    position: relative;
}

/* hide dropdown initially */
.main-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 300px;
    padding: 10px 0;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* show dropdown on hover */
.main-nav ul li:hover > .dropdown-menu {
    display: block;
}

/* dropdown links */
.main-nav .dropdown-menu li {
    display: block;
}

.main-nav .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #5b6f95;
    font-size: 14px;
}

.main-nav .dropdown-menu li a:hover {
    background: #f5f7fb;
    color: #000;
}

/* BLOG specific width fix */
.blog-dropdown-menu {
    min-width: 360px;
}

/* prevent flicker */
.main-nav ul li > a {
    display: inline-block;
    padding-bottom: 15px;
}

.main-nav .dropdown-menu {
    display: none !important;
}

.main-nav ul li:hover > .dropdown-menu {
    display: block !important;
}

.main-nav .dropdown-menu {
    display: none !important;
}

.main-nav ul li:hover > .dropdown-menu {
    display: block !important;
}

/* =========================
   BLOG DROPDOWN FIX
========================= */

.main-nav ul li {
    position: relative;
}

.main-nav .has-dropdown > a {
    display: inline-block;
    padding-bottom: 14px;
}

.main-nav .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 320px !important;
    background: #ffffff !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    display: none !important;
    z-index: 99999 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18) !important;
    border: none !important;
}

.main-nav ul li:hover > .dropdown-menu {
    display: block !important;
}

.main-nav .dropdown-menu li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-nav .dropdown-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px !important;
    color: #5b6f95 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    background: transparent !important;
}

.main-nav .dropdown-menu li a:hover {
    background: #f4f6fb !important;
    color: #0a2342 !important;
}

.blog-dropdown-menu {
    min-width: 380px !important;
    max-width: 430px !important;
}

/* =========================
   BLOG PAGE LOOK
========================= */

.blog-sub-hero .inner-hero-image img {
    filter: brightness(0.72);
}

.blog-detail-page {
    background:
        radial-gradient(circle at 1px 1px, rgba(249, 115, 22, 0.12) 1px, transparent 0);
    background-size: 18px 18px;
    background-color: #081320;
    padding: 60px 0 90px;
}

.blog-single-content {
    max-width: 760px;
    margin: 0 auto;
}

.blog-single-content h2 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 22px;
    font-weight: 800;
}

.blog-feature-image {
    margin-bottom: 28px;
}

.blog-feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-benefits-image {
    max-width: 520px;
    margin: 30px 0;
}

.blog-benefits-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-text-block h4 {
    color: #ffffff;
    font-size: 18px;
    margin: 16px 0 8px;
    font-weight: 700;
}

.blog-text-block p {
    color: #dbe4ef;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   CAREER PAGE
========================= */

.career-hero-section {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.career-hero-image {
    width: 100%;
    height: 100%;
}

.career-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.career-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
}

.career-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.career-hero-content h1 {
    color: #ffffff;
    font-size: 58px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

/* black dotted strip */
.career-message-section {
    background:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
    background-size: 18px 18px;
    background-color: #111111;
    padding: 70px 20px 75px;
    text-align: center;
}

.career-message-box {
    max-width: 1100px;
    margin: 0 auto;
}

.career-message-box h2 {
    color: #ffffff;
    font-size: 38px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.career-email {
    display: inline-block;
    color: #a9a9a9;
    font-size: 28px;
    font-weight: 600;
    text-decoration: none;
}

.career-email:hover {
    color: #ffffff;
}

/* responsive */
@media (max-width: 1200px) {
    .career-hero-section {
        height: 460px;
    }

    .career-hero-content h1 {
        font-size: 50px;
    }

    .career-message-box h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .career-hero-section {
        height: 360px;
    }

    .career-hero-content h1 {
        font-size: 40px;
    }

    .career-message-section {
        padding: 50px 16px 55px;
    }

    .career-message-box h2 {
        font-size: 24px;
    }

    .career-email {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .career-hero-section {
        height: 300px;
    }

    .career-hero-content h1 {
        font-size: 32px;
    }

    .career-message-box h2 {
        font-size: 20px;
    }

    .career-email {
        font-size: 18px;
    }
}

/* ================= CONTACT PAGE ================= */

.contact-map iframe {
    display: block;
}

/* section */
.contact-section {
    background: #0e0e0e;
    padding: 80px 0;
}

/* layout */
.contact-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* form box */
.contact-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    width: 60%;
}

.contact-form-box h2 {
    margin-bottom: 20px;
}

/* inputs */
.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* row */
.form-row {
    display: flex;
    gap: 15px;
}

.form-row input {
    width: 50%;
}

/* textarea */
.contact-form-box textarea {
    height: 120px;
}

/* button */
.contact-form-box button {
    background: #0d2b4c;
    color: #fff;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
}

/* right side */
.contact-details {
    color: #fff;
    width: 40%;
}

.contact-details h3 {
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 15px;
}

/* responsive */
@media(max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form-box,
    .contact-details {
        width: 100%;
    }
}
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: inline-block;
    padding: 10px 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 290px;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px 0;
    margin-top: 14px;
    list-style: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.28s ease;
    z-index: 999;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    color: #2f3137;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #fff5ee;
    color: #f47a2c;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.site-header {
    background: #f4f1eb;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    position: relative;
    z-index: 1000;
}

.header-container {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    position: relative;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    display: inline-block;
    padding: 10px 0;
    text-decoration: none;
    color: #2f3137;
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #f47a2c;
}

.main-nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 0;
    height: 2px;
    background: #f47a2c;
    transition: 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

/* dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: inline-block;
    padding: 10px 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 290px;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px 0;
    margin-top: 14px;
    list-style: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.28s ease;
    z-index: 9999;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    color: #2f3137;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: #fff5ee;
    color: #f47a2c;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}