:root {
    --bg-color: #eaeaea;
    --text-color: #000000;
    --accent-color: #d1d5db;
    --font-main: 'Roboto', sans-serif;
    --spacing-unit: 2rem;
}

html,
body {
    background-color: #eaeaea !important;
    background-image: none !important;
    color: #4a5568 !important;
    font-family: 'Roboto', sans-serif !important;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Header */
header {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent !important;
    pointer-events: none;
    box-shadow: none;
    border: none;
    outline: none;
}

header>* {
    pointer-events: auto;
}

.logo,
.logo-container,
.logo-wrapper {
    position: fixed !important;
    top: 24px !important;
    left: 34px !important;
    right: auto !important;
    display: flex;
    align-items: center;
    background-color: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    z-index: 10000 !important;
    transition: none !important;
    animation: none !important;
    backdrop-filter: none !important;
    filter: none !important;
}

.logo img {
    width: 5rem !important;
    /* Reduced size for top-right placement */
    height: auto;
    background: transparent !important;
    display: block;
    image-rendering: auto;
    backface-visibility: hidden;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    filter: none !important;
    box-shadow: none !important;
    mix-blend-mode: multiply !important;
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    /* Fixed position - stays visible while scrolling */
    top: 32px;
    /* Aligned with top edge */
    right: 36px;
    /* 36px from right edge */
    z-index: 9999;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    /* Vertical stacking */
    gap: 12px;
    /* 12px line spacing */
    margin: 0;
    padding: 0;
    align-items: flex-end;
    /* Right-align */
}

.nav-menu li {
    display: block;
}

.nav-link {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    /* Medium font weight */
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
    /* Default gray color */
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: right;
}


.nav-link:hover,
.nav-link.active {
    color: #000000;
    /* Active/Hover black color */
}

/* Hamburger Menu */
.hamburger {
    display: none;
    position: fixed;
    top: 32px;
    right: 36px;
    z-index: 10001;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

/* Hamburger Active State */
.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}



/* Sections */
section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: center;
    padding: 150px var(--spacing-unit);
}

footer section {
    padding: 0 !important;
    margin: 0 !important;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-unit);
    opacity: 0.5;
    font-weight: 400;
    color: #000000;
}

/* Hero */
.hero {
    min-height: 100vh;
    width: 100vw;
    background-color: #ebebeb !important;
    background-image: url('assets/hero_bg.png') !important;
    background-repeat: no-repeat !important;
    background-position: 52% 50% !important;
    background-size: 42% auto !important;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1800px) {
    .hero {
        background-size: 720px auto !important;
    }
}

/* Obsolete brand-mini removed */


@keyframes float {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

/* About Section */
.about {
    align-items: center;
    text-align: center;
    margin-top: 100px;
    padding-top: 0px;
    padding-bottom: 50px;
}

.services {
    min-height: auto !important;
    padding-top: 30px !important;
    padding-bottom: 50px !important;
}

.references {
    padding-top: 50px !important;
}

.about-text {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.6;
    color: #6b7280;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    margin-top: 2rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.team-member img {
    width: 100%;
    max-width: 330px;
    height: 420px;
    /* Increased height */
    object-fit: cover;
    margin: 0 auto 24px auto;
    filter: grayscale(0%);
    /* Removing grayscale based on new realistic photos */
    border-radius: 4px;
}

.team-info-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
    width: 100%;
    margin-bottom: 32px;
}

.team-member h3 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000000;
}

.team-member h4 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 19px;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 0 !important;
    line-height: 26px;
    text-transform: none;
    letter-spacing: 0;
    width: 100%;
    min-height: auto !important;
    display: block !important;
}

.team-member p {
    font-family: 'Roboto', sans-serif !important;
    font-size: 19px !important;
    font-weight: 400 !important;
    line-height: 30px !important;
    color: #374151 !important;
    text-align: justify;
    margin: 0;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 500px;
    }
}



/* Services */

/* Services */
/* Consolidated Section Title Style */
.section-title,
.about h2,
.services h2,
.references h2,
#contact h2 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 48px !important;
    font-weight: 900 !important;
    line-height: 48px !important;
    text-align: center !important;
    color: #000000 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    margin-bottom: 2rem !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#services h2 {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700 !important;
    font-size: 52px !important;
    letter-spacing: normal !important;
    color: #111111 !important;
    text-transform: none !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
}

@media (max-width: 1024px) {

    .section-title,
    .about h2,
    .services h2,
    .references h2,
    #contact h2 {
        font-size: 42px !important;
    }
}

@media (max-width: 768px) {

    .section-title,
    .about h2,
    .services h2,
    .references h2,
    #contact h2 {
        font-size: 28px !important;
    }
}

.section-subtitle {
    text-align: center;
    max-width: 820px;
    margin: 4px auto 2rem;
    font-family: 'Roboto', sans-serif !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    color: #4b5563 !important;
}

.about-text {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 28px;
    color: #4b5563;
    font-family: "Roboto", sans-serif;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    width: 100%;
}

.service-card-item {
    background-color: #eaeaea !important;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: none;
    height: 100%;
}

.service-card-item:hover {
    border-color: #000000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background-color: #eaeaea !important;
}

.service-card-item h3 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 16px;
    color: #000000 !important;
    letter-spacing: -0.01em;
}

.service-card-item ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.service-card-item li {
    font-family: 'Roboto', sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem;
    color: #374151 !important;
    line-height: 1.8 !important;
    position: relative;
    padding-left: 1.5rem;
}

.service-card-item li::before {
    content: "•";
    color: #000000;
    position: absolute;
    left: 0;
    font-size: 1.9rem;
    line-height: 1;
    top: 2px;
}

@media (max-width: 900px) {
    .service-card-grid {
        grid-template-columns: 1fr;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }
}



.service-item:last-child {
    border-bottom: 1px solid #d1d5db;
}

.service-category {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    width: 40%;
    text-transform: uppercase;
    line-height: 1.1;
}

.service-details {
    width: 50%;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
    color: #4b5563;
    padding-left: 0;
}

@media (max-width: 900px) {
    .service-item {
        flex-direction: column;
        gap: 2rem;
    }

    .service-category {
        width: 100%;
        font-size: 2rem;
    }

    .service-details {
        width: 100%;
    }
}

/* References */
/* Removed duplicate .references h2 style as it's now consolidated above */

.references-map-container {
    width: 100%;
    margin: 0 0 2rem 0;
    /* Remove horizontal margin */
    padding: 0;
    /* Remove padding */
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* Ensure no scrollbars if image is huge */
}

.references-map-container img {
    width: 58%;
    /* Adjusted width */
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    /* Removes black background */
    /* No blend mode needed as backgrounds match */
    filter: none;
    /* Reset filters */
    margin: 0 auto;
}

.references-stats {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin: 2rem auto 4rem;
    max-width: 1200px;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: clamp(2.2rem, 3.8vw, 3.5rem);
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 600px) {
    .references-stats {
        flex-direction: column;
        gap: 3rem;
    }
}

/* Footer */
footer {
    padding: 0 var(--spacing-unit) 50px;
    border-top: 1px solid #d1d5db;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: auto;
}

footer h2 {
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 8rem;
}

.contact-item h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-item a,
.contact-item p {
    font-family: 'Roboto', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    display: block !important;
    color: #374151 !important;
}

.footer-note {
    margin-top: auto;
    padding-top: var(--spacing-unit);
    font-size: 0.9rem;
    color: #444;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    :root {
        --spacing-unit: 1.5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero::before {
        width: 120px;
        height: 120px;
    }

    .hero {
        background-image: url('assets/image.png') !important;
        background-position: center center !important;
        background-size: contain !important;
    }
}

/* Ticker Animation */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: transparent;
    margin: 0;
    padding: 1rem 0 0 0;
    position: relative;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
    /* Slow consistent speed */
    width: max-content;
    /* Ensure container fits content */
}

.ticker-item {
    display: inline-block;
    padding: 0 3rem;
    font-size: 1.2rem;
    font-weight: 900;
    color: #000000;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: inherit;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the length assuming doubled content */
    }
}

@media (max-width: 600px) {
    .ticker-item {
        padding: 0 2rem;
    }
}

/* Contact Section Styles */
#contact {
    padding: 6rem 1rem 8rem;
    width: 100%;
    margin: 0;
}

/* Removed duplicate #contact h2 style as it's now consolidated above */

#contact .section-subtitle {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4rem auto;
    font-size: 1.3rem;
    color: #4b5563;
    white-space: normal;
    overflow: visible;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-left: 2rem;
}


.info-item {
    display: flex;
    flex-direction: row !important;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-left: 60px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.info-label {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    text-transform: capitalize;
    letter-spacing: 0;
    font-weight: 700;
    color: #000000;
}

.info-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    flex-shrink: 0;
    color: #000000;
    margin-top: 4px;
}

.info-link,
.address {
    font-family: 'Roboto', sans-serif !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    line-height: 1.7 !important;
}

.address {
    font-size: 18px !important;
}

.address {
    font-style: normal;
}

.follow-us-section {
    padding-left: 112px;
    /* Align with Email/Phone/Office text column (60px padding + 32px icon + 20px gap) */
    margin-top: 1rem;
}

.follow-us-title {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
    /* Ultra-bold and small as requested */
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: left;
}

.social-links-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    /* Reduced gap to match smaller icons */
    align-items: center;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 550px;
    margin-left: 80px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 0;
    /* Sharp corners */
    padding: 1.25rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    outline: none;
    transition: all 0.3s ease;
    vertical-align: top !important;
    text-align: left !important;
    line-height: 1.2 !important;
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: #000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
    /* Minimal focus ring */
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    vertical-align: top;
    padding-top: 1rem;
}

/* Placeholder styles for top-left alignment */
.form-group input::placeholder,
.form-group textarea::placeholder {
    line-height: 1.2;
    vertical-align: top;
}

.submit-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    width: 100%;
    /* Full width to match textarea */
    border-radius: 0;
    /* Sharp corners */
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.site-footer {
    text-align: center;
    padding: 2rem;
    font-family: 'Roboto', sans-serif !important;
    color: #4a5568 !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    #contact {
        padding-bottom: 4rem;
    }

    .submit-btn {
        width: 100%;
    }
}

/* Social Icons */
.social-icon {
    color: #000;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    /* Remove text bottom border */
}

.social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.7;
    border: none;
}

.social-icon svg {
    width: 32px !important;
    height: 32px !important;
    stroke-width: 2;
    /* Increased stroke width for better visibility at smaller size */
}

/* Hero background image handling completed */

/* Mobile Navigation & Responsive Improvements */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #eaeaea;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 10000;
        /* Behind hamburger (10001) */
        padding: 0;
        right: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        width: 100%;
    }

    .nav-link {
        font-size: 2rem;
        text-align: center;
        color: #000;
        font-weight: 300;
    }

    /* General Mobile Layout Fixes */
    section {
        padding: 60px 20px;
    }

    .logo {
        top: 24px !important;
        left: 20px !important;
    }

    .hamburger {
        top: 32px;
        right: 20px;
    }

    /* Hero */
    .hero {
        background-size: 80% auto !important;
        background-position: center center !important;
    }

    /* Typography */
    .section-title,
    .about h2,
    .services h2,
    .references h2,
    #contact h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .section-subtitle {
        font-size: 16px !important;
        padding: 0 10px;
    }

    /* About */
    .about-text {
        font-size: 16px;
        padding: 0 10px;
        text-align: left;
    }

    .about-text br {
        display: none;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 10px;
    }

    .team-member img {
        height: auto;
        max-height: 450px;
        width: 100%;
    }

    .team-member p {
        text-align: left;
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    /* Services */
    .service-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-item {
        padding: 24px;
    }

    /* References */
    .references-stats {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .ticker-item {
        font-size: 1rem;
        padding: 0 1.5rem;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }

    .contact-info {
        margin-left: 0;
        padding: 0 10px;
    }

    .info-item {
        padding-left: 0;
        margin-bottom: 20px;
    }

    .contact-form {
        margin-left: 0;
        width: 100%;
        padding: 0 10px;
    }

    .follow-us-section {
        padding-left: 0;
        margin-top: 20px;
    }

    .site-footer {
        padding: 20px;
        font-size: 14px !important;
    }
}