:root {
    /* Colors */
    --color-black: #0F0F0F;
    /* Softer black */
    --color-white: #ffffff;
    --color-off-white: #FAFAFA;
    /* Cleaner off-white */
    --color-orange: #FF5722;
    --color-orange-hover: #F4511E;
    --color-grey-light: #EEEEEE;
    --color-grey-dark: #424242;
    --color-text-body: #555555;

    --bg-body: var(--color-white);
    --bg-light: var(--color-off-white);
    --bg-dark: var(--color-black);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-container: 90%;
    --spacing-container-max: 1280px;
    /* Slightly wider */
    --section-padding: 120px;
    /* More breathing room */

    /* Transitions */
    --transition-standard: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Smoother bezier */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px -10px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-body);
    color: var(--color-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: var(--spacing-container);
    max-width: var(--spacing-container-max);
    margin: 0 auto;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.text-white {
    color: var(--color-white);
}

.text-grey {
    color: #888;
}

.text-highlight {
    color: var(--color-orange);
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--color-black);
    line-height: 1.1;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-body);
    margin-bottom: 3rem;
    font-weight: 300;
}

p {
    color: var(--color-text-body);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 500;
    border-radius: 4px;
    /* Minimal radius, sharp look */
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    border: 1px solid var(--color-orange);
}

.btn-primary:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(255, 87, 34, 0.6);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.2rem;
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}



.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: block;
    font-size: 1.8rem;
    /* Slightly larger for impact */
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-black);
    text-decoration: none;
    transition: var(--transition-standard);
}

.logo .dot {
    color: var(--color-orange);
}

.logo:hover {
    opacity: 0.8;
}

/* Specific adjustment for footer if needed larger */
.footer .logo {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-black);
    opacity: 0.8;
}

.nav-list a:not(.btn):hover {
    color: var(--color-orange);
    opacity: 1;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Offset fixed header */
    background: linear-gradient(135deg, #ffffff 0%, #fff8f5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.overline {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--color-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero-desc {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
    color: var(--color-text-body);
}

/* About */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 2px;
    transition: var(--transition-standard);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 0, 0, 0.05);
}

.service-number {
    font-size: 0.9rem;
    color: var(--color-orange);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-list li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.service-list li::before {
    content: "•";
    color: var(--color-orange);
    position: absolute;
    left: 0;
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.checkmark {
    color: var(--color-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.why-list strong {
    display: block;
    font-size: 1.2rem;
    color: var(--color-black);
    margin-bottom: 0.2rem;
}

.philosophy-box {
    background: var(--color-black);
    color: var(--color-white);
    padding: 60px;
    position: relative;
}

.philosophy-box * {
    color: rgba(255, 255, 255, 0.8);
}

.philosophy-box h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.highlight-text strong {
    color: var(--color-orange);
}

/* Clients */
.clients-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.client-type {
    flex: 1;
    min-width: 250px;
}

.client-type h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.client-type .line {
    width: 40px;
    height: 2px;
    background: var(--color-orange);
    transition: var(--transition-standard);
}

.client-type:hover .line {
    width: 100%;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background-color: var(--bg-light);
}

.cta-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Contact Page Styles */
.page-hero {
    padding: 180px 0 100px 0;
    text-align: center;
    background-color: var(--bg-light);
}

.contact-form-section {
    padding-top: 60px;
}

.contact-container {
    max-width: 800px;
}

.contact-form {
    background: var(--color-white);
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--color-black);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--bg-light);
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-standard);
    color: var(--color-black);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background-color: var(--color-white);
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

/* Services Checkbox Grid */
.services-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background-color: var(--bg-light);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-standard);
    border: 1px solid transparent;
    font-size: 0.95rem;
}

.checkbox-label:hover {
    background-color: #efefef;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    position: relative;
    background: #fff;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: "✓";
    color: white;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Style the parent label when checked for better visibility */
.checkbox-label:has(input:checked) {
    background-color: rgba(255, 87, 34, 0.05);
    border-color: rgba(255, 87, 34, 0.1);
}

.form-actions {
    margin-top: 30px;
    text-align: right;
}

/* Responsive */


/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 2px;
    transition: var(--transition-standard);
    border: 1px solid transparent;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.02);
}

.team-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-orange);
    transition: width 0.3s ease;
}

.team-card:hover::after {
    width: 100%;
}

.team-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.team-info .designation {
    font-size: 0.9rem;
    color: var(--color-text-body);
    font-weight: 400;
    display: block;
    line-height: 1.4;
}


/* Logo Updates */


/* Specific adjustment */
/* --- Mobile Navigation & Responsive Logic --- */

/* Default State (Desktop): Hidden Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 1001;
    padding: 100px 40px;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    display: none;
    /* KEY: Force hidden on desktop */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-nav-overlay.active {
    transform: translateY(0);
}

.mobile-nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-list a {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
}

.mobile-nav-list a:hover {
    color: var(--color-orange);
}

.mobile-menu-toggle {
    display: none;
    /* Hidden on Desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-black);
    transition: var(--transition-standard);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* --- Responsive Breakpoints --- */
@media (max-width: 992px) {

    /* Fonts & Typography */
    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    /* Layouts */
    .split-layout,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    /* Navigation Switching */
    .nav-list {
        display: none;
        /* Hide Desktop Menu */
    }

    .mobile-menu-toggle {
        display: flex;
        /* Show Hamburger */
    }

    .mobile-nav-overlay {
        display: flex;
        /* Enable Overlay Flex (still relies on transform for visibility) */
    }
}