/* Global Reset & Fonts */
:root {
    --stinc-green: #212121;
    /* Industrial Black */
    --stinc-dark-green: #000000;
    /* Pure Black for Topbar/Bottom Footer */
    --accent-yellow: #FFD700;
    /* Yellow for Buttons/Active States */

    --primary-color: #FFD700;
    --text-color: #666666;
    --heading-color: #1a1a1a;
    --bg-light: #ffffff;

    /* THEME VARIABLES */
    --site-header-bg: var(--stinc-green);
    --footer-bg: var(--stinc-green);
    --footer-bottom-bg: var(--stinc-dark-green);
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--heading-color);
}

a {
    text-decoration: none !important;
    transition: all 0.3s ease;
}

/* --- ROYAL PRELOADER --- */
.royal_preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--stinc-dark-green);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.royal_preloader_loader {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    border-radius: 2px;
}

.royal_preloader_bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-yellow);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.royal_preloader_percentage {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    width: 100px;
    text-align: center;
}

/* --- HEADER (Green Theme) --- */
.header-topbar {
    background: var(--stinc-dark-green);
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.octf-main-header {
    background-color: var(--stinc-green) !important;
    border-bottom: none;
    /* Removed Yellow Border for cleaner look, or keep if preferred */
    padding: 0;
    position: relative;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.octf-mainbar-row {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* LOGO */
.site-logo a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid white;
    /* White Border */
    padding: 5px 15px;
    text-align: center;
    color: white;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 1;
    color: white;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    border-top: 1px solid white;
    margin-top: 2px;
    padding-top: 2px;
    color: white;
}

/* NAVIGATION */
.main-navigation,
.main-navigation ul {
    height: 100%;
}

.main-navigation .menu {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.main-navigation ul li a {
    color: white !important;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

.main-navigation ul li.current-menu-item a,
.main-navigation ul li a:hover {
    color: var(--accent-yellow) !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* --- HERO & CONTENT --- */
.page-header {
    background: #1a1a1a;
    padding: 80px 0;
    border-bottom: 4px solid var(--accent-yellow);
    text-align: center;
}

.section {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--stinc-green);
    color: white;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid var(--stinc-green);
}

.btn:hover {
    background: white;
    color: var(--stinc-green);
    border-color: var(--stinc-green);
}

.btn-primary {
    background: var(--accent-yellow);
    color: black;
    border-color: var(--accent-yellow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-yellow);
}


/* --- FOOTER (Green Theme) --- */
.stinc-footer-wrapper {
    background-color: var(--stinc-green);
    color: white;
    font-family: 'Manrope', sans-serif;
    border-top: 5px solid var(--stinc-dark-green);
}

.stinc-footer-top {
    padding: 80px 0;
}

.widget-footer h6 {
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-list a,
.footer-desc,
.contact-item {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-list a:hover {
    color: white !important;
    text-decoration: underline !important;
}

.footer-socials a {
    color: white;
    margin-right: 15px;
}

.stinc-footer-bottom {
    background-color: var(--stinc-dark-green);
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .main-navigation {
        display: none !important;
    }

    .mobile-toggle {
        display: block !important;
    }

    .footer-row {
        flex-direction: column;
        gap: 40px;
    }
}

/* Mobile Menu Implementation Plan */

/* 1. Reset & Base Styles for Mobile Nav */
@media (max-width: 991px) {

    /* Hide Desktop Menu */
    .octf-col.menu-col {
        display: none !important;
    }

    /* Mobile Toggle Visible */
    .mobile-toggle {
        display: block;
        font-size: 24px;
        color: white;
        cursor: pointer;
        padding: 10px;
    }
}

/* 2. Slide-out Mobile Menu Panel */
.mobile-nav-wrapper {
    position: fixed;
    top: 0;
    right: -300px;
    /* Hidden by default */
    width: 300px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 9999;
    padding: 60px 20px 20px;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-nav-active .mobile-nav-wrapper {
    right: 0;
    /* Slide in */
}

/* Overlay for outside clicking */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-nav-active .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Links */
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list li a {
    display: block;
    color: white;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
}

.mobile-menu-list li a:hover,
.mobile-menu-list li.current-menu-item a {
    color: #FFD700;
    padding-left: 10px;
    /* Slide effect */
}

/* Close Button */
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #FFD700;
    /* Yellow */
    cursor: pointer;
}

/* Mobile Typography */
@media (max-width: 768px) {

    h1,
    .page-title {
        font-size: 36px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    .hero-text-large {
        font-size: 40px !important;
    }
}

/* =========================================
   HOMEPAGE SPECIFIC STYLES (Extracted)
   ========================================= */

/* Homepage Specific Enhancements */
.hero-slider {
    height: 95vh;
    /* Full screen impact */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    /* PARALLAX EFFECT */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.05);
    /* Slight Zoom for effect */
    transition: transform 10s ease;
}

/* Hover effect on Hero BG */
.hero-slider:hover .hero-bg {
    transform: scale(1.1);
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(15, 106, 54, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    /* Green to Black Gradient */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
}

.hero-title-main {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-family: 'Oswald', sans-serif;
}

/* Service Cards - Overlap Effect */
.services-overlap {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.service-card {
    background: white;
    padding: 40px 30px;
    transition: all 0.4s ease;
    height: 100%;
    border-bottom: 4px solid var(--stinc-green);
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-15px);
    border-bottom-color: var(--accent-yellow);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(15, 106, 54, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .icon-circle {
    background: var(--stinc-green);
}

.service-card:hover .service-icon {
    color: white !important;
}

.service-icon {
    font-size: 30px;
    color: var(--stinc-green);
    transition: color 0.3s ease;
}

/* Split Section Styles */
.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 20px 20px 0px rgba(15, 106, 54, 0.1);
    /* Geometric shadow */
}

.image-frame img {
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.03);
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}