:root {
    --bg-dark: #0f1115;
    --bg-darker: #08090b;
    --card-bg: #161920;
    --font-color: #f1f3f5;
    --text-muted: #9aa0a6;
    --accent-orange: #FF5A3C;
    --accent-orange-light: #FF7A5C;
    --border-color: rgba(255, 255, 255, 0.1);
    --glow-orange: rgba(255, 90, 60, 0.35);
}

body {
    background-color: var(--bg-dark);
    color: var(--font-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* Color & Accent Utilities */
.text-accent {
    color: var(--accent-orange);
}

.text-secondary {
    color: var(--text-muted) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animated Nav Links & Dropdown Styling */
.navbar {
    background-color: rgba(8, 9, 11, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--font-color) !important;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px !important;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--accent-orange) !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Dark Theme Styling */
.dropdown-menu-dark {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 8px 0;
}

.dropdown-menu-dark .dropdown-item {
    color: var(--font-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    transition: all 0.25s ease;
}

.dropdown-menu-dark .dropdown-item:hover {
    background-color: rgba(255, 90, 60, 0.15);
    color: var(--accent-orange);
    padding-left: 24px;
}

.dropdown-divider {
    border-top: 1px solid var(--border-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    background: url('assets/Images/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0.75) 50%, rgba(15, 17, 21, 0.4) 100%);
}

.hero-content {
    z-index: 2;
}

/* Custom Hero Logo */
.hero-logo {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

/* Reduced Hero Heading & Line Height */
.hero-heading {
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    line-height: 1.25;
}

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden; /* Keeps background layer within bounds */
}

/* 1. Background image layer with custom opacity */
.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/Images/hero.png') no-repeat center center/cover;
    opacity: 2.9; /* Adjust this value between 0.1 (very subtle) and 1.0 (full intensity) */
    z-index: 0;
}

/* 2. Dark tint overlay layer on top of image */
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 17, 21, 0.7) 0%, rgba(8, 9, 11, 0.9) 100%);
    z-index: 1;
}

.contact-card {
    background-color: rgba(22, 25, 32, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.35s ease;
}

.contact-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px var(--glow-orange);
}

.contact-info-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 14px 24px;
    border-radius: 50px;
    color: var(--font-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info-btn:hover {
    background-color: var(--accent-orange);
    color: #ffffff;
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

.contact-info-btn:hover .text-accent {
    color: #ffffff !important;
}

/* Interactive Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    color: #ffffff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px var(--glow-orange);
    cursor: pointer;
}

.btn-primary-custom:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 90, 60, 0.6);
    color: #ffffff;
}

.hyperlink-custom {
    color: var(--accent-orange-light);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.hyperlink-custom:hover {
    color: #ffffff;
    gap: 14px;
    transform: translateX(4px);
}

/* Badge Tags */
.badge-tag {
    background: rgba(255, 90, 60, 0.15);
    color: var(--accent-orange);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 90, 60, 0.2);
}

/* Section Backgrounds */
.section-darker {
    background-color: var(--bg-darker);
}

/* Who Are We Left Side Visual Layout */
.who-we-are-visual-card {
    position: relative;
}

.glass-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--font-color);
}

.who-we-are-subcard {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 18px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.who-we-are-subcard:hover {
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

.icon-circle {
    width: 44px;
    height: 44px;
    background: rgba(255, 90, 60, 0.15);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Image Wrapper Zoom Effect */
.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.image-wrapper img {
    transition: transform 0.5s ease;
    width: 100%;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Content Boxes & Hover Animations */
.content-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: 16px;
    transition: all 0.35s ease;
}

.content-box:hover {
    border-color: rgba(255, 90, 60, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Grid Card Hover Effects */
.grid-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    padding: 12px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.grid-card .card-img-holder {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 12px;
    height: 200px;
}

.grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-orange);
    box-shadow: 0 12px 25px rgba(255, 90, 60, 0.2);
}

.grid-card:hover img {
    transform: scale(1.08);
}

.grid-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.grid-card:hover h5 {
    color: var(--accent-orange);
}

/* Process Box Hover Effects */
.process-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
    transition: all 0.35s ease;
    cursor: pointer;
}

.process-box .card-img-holder {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 12px;
    height: 150px;
}

.process-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-box:hover {
    transform: translateY(-8px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 20px var(--glow-orange);
}

.process-box:hover img {
    transform: scale(1.08);
}

.process-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* Interactive Card */
.interactive-card {
    transition: all 0.35s ease;
}

.interactive-card:hover {
    border-color: var(--accent-orange) !important;
    transform: translateY(-5px);
}

/* Custom Lists */
.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease;
}

.custom-list li:hover {
    transform: translateX(6px);
}

/* Chips & Badges Hover */
.chip {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: default;
    display: inline-block;
}

.chip:hover {
    background-color: var(--accent-orange);
    color: #ffffff;
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--glow-orange);
}

/* Stat Cards Hover */
.stat-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    transition: all 0.35s ease;
}

.stat-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--glow-orange);
}

.stat-card h4 {
    color: var(--accent-orange);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

/* Scroll Animation Helper Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-darker);
}

.max-w-800 { max-width: 800px; }
.max-w-900 { max-width: 900px; }