:root {
    --primary-yellow: #DEAD25;
    --primary-green: #2B7A0B;
    --secondary-green: #1E5108;
    --accent-yellow: #FFEE8C;
    --accent-green: #5BB318;
    --bg-gradient: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    --dark: #080054;
    --light: #FFFFFF;
    --gray-light: #E2E8F0;
    --text-main: #080054;
    --text-muted: #64748B;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

.text-dark {
    color: #080054 !important;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- PRESERVE LOGO ASPECT --- */
.logo img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   HEADER
   ============================================ */
header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--primary-yellow);
    height: 45px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.top-info {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.top-social {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.top-social:hover {
    background: var(--primary-green);
    color: #fff;
}

.top-bar-sep {
    width: 1px;
    height: 20px;
    background: rgba(0,0,0,0.2);
}

.header-main {
    background-color: var(--primary-green);
    height: 90px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

.logo-block {
    position: absolute;
    top: 0;
    left: 40px;
    width: 140px;
    height: 135px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

.logo img { max-width: 100%; height: auto; }

/* Nav Links */
.nav-link-custom {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s;
}

.nav-link-custom:hover {
    color: var(--primary-yellow);
}

.nav-link-custom:hover::after {
    width: 100%;
}

/* Sticky header override */
header.sticky {
    position: fixed;
}

header.sticky .header-top {
    display: none !important;
}

header.sticky .header-main {
    background-color: rgba(8, 0, 60, 0.97) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.btn-nav-cta {
    background: var(--primary-yellow);
    color: #111 !important;
    padding: 11px 24px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    background: var(--primary-green);
    color: #fff !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    width: 44px;
    height: 44px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    z-index: 1020;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Dropdown Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(8, 0, 60, 0.98);
    padding: 20px 30px 30px;
    gap: 5px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--primary-yellow); }

/* ============================================
   SECTION COMMON
   ============================================ */
.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 20px auto 0;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    position: relative;
    background-image: url('footer-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light);
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 20, 0.93);
    z-index: 0;
}

footer .container-fluid {
    position: relative;
    z-index: 1;
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-yellow);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 4px;
}

.footer-links a i {
    color: var(--primary-yellow);
    font-size: 11px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-list li i {
    color: var(--primary-yellow);
    margin-top: 2px;
    min-width: 14px;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-list a:hover { color: var(--primary-yellow); }

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-btn:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #111;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.footer-bottom a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--primary-yellow); }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.cta-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cta-sub {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    margin: 0;
}

.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    background: var(--primary-yellow);
    color: #111;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-phone:hover {
    background: #fff;
    color: var(--primary-green);
}

.btn-cta-mail {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-mail:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* About highlights */
.about-highlight-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.text-primary-green { color: var(--primary-green) !important; }


/* ============================================
   HERO SLIDER - FULL SCREEN
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Each slide stacked on top each other */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: all;
}

/* Background photo */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 6s ease;
    will-change: transform;
}

.hero-slide.active .slide-bg {
    transform: scale(1);
}

/* Dark overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(5, 20, 5, 0.80) 0%,
        rgba(5, 20, 5, 0.50) 60%,
        rgba(5, 20, 5, 0.10) 100%
    );
    z-index: 1;
}

/* Content above overlay */
.hero-slide .container {
    position: relative;
    z-index: 2;
    padding-top: 135px;
}
/* ---- Slide-in Text Animation ---- */
.slide-text .tagline,
.slide-text .hero-title,
.slide-text .hero-desc,
.slide-text .hero-btns {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* When slide becomes active, animate text in with delay */
.hero-slide.active .slide-text .tagline    { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.hero-slide.active .slide-text .hero-title { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.hero-slide.active .slide-text .hero-desc  { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.hero-slide.active .slide-text .hero-btns  { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }

/* ---- Tagline pill ---- */
.tagline {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--dark);
    padding: 6px 18px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* ---- Hero Title ---- */
.hero-title {
    font-size: clamp(36px, 5vw, 65px);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 22px;
    font-weight: 800;
}

.hero-title span {
    color: var(--primary-yellow);
}

/* ---- Hero Desc ---- */
.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.80);
    max-width: 500px;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* ---- Hero Buttons ---- */
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---- Slide Image ---- */
.slide-image {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s;
}

.hero-slide.active .slide-image {
    opacity: 1;
    transform: translateX(0);
}

.slide-img {
    width: 110%;
    max-width: none;
    position: relative;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
    animation: heroFloat 5s ease-in-out infinite;
}

.slide-img-round {
    width: 100%;
    left: 0;
    border-radius: 20px;
    object-fit: cover;
    max-height: 420px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

@keyframes heroFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-18px); }
}

/* ---- Dot Navigation ---- */
.slider-nav {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot:hover {
    background: rgba(255,255,255,0.7);
}

.dot.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    height: 36px;
    border-radius: 10px;
}

/* ---- Progress Bar ---- */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.15);
    z-index: 10;
}

.slide-progress-bar {
    height: 100%;
    background: var(--primary-yellow);
    width: 0%;
    transition: width linear;
}


.btn {
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--light);
}

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

.btn-secondary {
    background-color: var(--dark);
    color: var(--light);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
}

.engin-float {
    width: 150%;
    max-width: none !important;
    filter: drop-shadow(20px 20px 30px rgba(0,0,0,0.15));
    animation: floating 6s ease-in-out infinite;
    opacity: 0;
    transform: translateX(100px);
    z-index: 10;
    position: relative;
}

@keyframes floating {
    0% { transform: translate(0, 0px) translateX(0); }
    50% { transform: translate(0, -20px) translateX(10px); }
    100% { transform: translate(0, 0px) translateX(0); }
}

/* Animations Trigger Classes */
.animate-in {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.transition {
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
    background-color: var(--light) !important;
}

/* --- ABOUT SECTION --- */
.about-section {
    background-color: #fdfdfd;
    overflow: hidden;
}

.about-image-box {
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-image-box img {
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
    height: 500px;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-yellow);
    color: var(--dark);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 130px;
    z-index: 2;
}

.experience-badge .number {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
}

.text-primary-green {
    color: var(--primary-green) !important;
}

.services-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-subtitle::before {
    content: '';
    width: 2px;
    height: 18px;
    background-color: var(--primary-green);
}

.accordion-container {
    display: flex;
    width: 100%;
    height: 550px;
    gap: 0;
    margin-top: 50px;
    padding: 0 15px;
}

.accordion-item {
    flex: 0.8;
    position: relative;
    border-radius: 10px;
    margin: 0 5px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    transition: var(--transition);
    z-index: 1;
}

.accordion-item.active {
    flex: 3;
}

.accordion-item.active::before {
    background: var(--primary-green);
    opacity: 0.95;
}

.accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
    color: var(--light);
}

.accordion-icon {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease;
    color: #080054;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.accordion-item.active .accordion-icon {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.accordion-title-active {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.accordion-item.active .accordion-title-active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.accordion-desc {
    font-size: 16px;
    opacity: 0;
    max-width: 450px;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.accordion-item.active .accordion-desc {
    opacity: 0.9;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.accordion-label {
    position: absolute;
    bottom: 115px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    font-size: 22px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition);
    z-index: 2;
    transform-origin: center;
}

.accordion-item.active .accordion-label {
    opacity: 0;
}

/* --- WHY CHOOSE US STYLES (Translo Grid Style) --- */
.why-choose-us {
    padding: 100px 0;
    background-color: #ffffff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card-wrapper {
    position: relative;
    padding-bottom: 15px;
    padding-right: 15px;
}

/* The "Stacked" background effect */
.feature-card-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    background-color: #f8f9fa;
    z-index: 1;
    border-radius: 5px;
}

.feature-card {
    position: relative;
    background-color: #ffffff;
    padding: 45px;
    z-index: 2;
    border-left: 4px solid var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature-icon-box {
    width: 65px;
    height: 65px;
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    color: #080054;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
    background-color: var(--primary-yellow);
    color: var(--dark);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #080054;
    margin-bottom: 15px;
}

.feature-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Slider Dots */
.slider-nav {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-green);
    height: 30px;
    border-radius: 10px;
}

 / *   - - -   R E S P O N S I V E   A D J U S T M E N T S   - - -   * / 
 @ m e d i a   ( m a x - w i d t h :   9 9 1 p x )   { 
         . s l i d e - t e x t   { 
                 p a d d i n g - l e f t :   1 5 p x   ! i m p o r t a n t ; 
                 t e x t - a l i g n :   c e n t e r ; 
         } 
         . s l i d e - i m a g e   { 
                 p a d d i n g - r i g h t :   0   ! i m p o r t a n t ; 
                 m a r g i n - b o t t o m :   3 0 p x ; 
         } 
         . h e r o - s l i d e   . c o n t a i n e r   { 
                 p a d d i n g - t o p :   1 0 0 p x ; 
         } 
         . h e r o - b t n s   { 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
         } 
         . h e r o - d e s c   { 
                 m a r g i n - l e f t :   a u t o ; 
                 m a r g i n - r i g h t :   a u t o ; 
         } 
 }  
 