/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.ff-secondary {
    font-family: 'Nunito, sans-serif';
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
    max-height: 120px;
    transition: .5s;
}


/* Shift logo left on desktop */
@media (min-width: 992px) {
    .navbar-dark .navbar-brand {
        margin-left: -20px;
    }
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 65px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .navbar-dark .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
        transition: .5s;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        padding-left: 25px;
        padding-right: 25px;
        background: var(--dark) !important;
    }
}



.navbar-dark .navbar-brand {
    margin-left: -20px;
}







/*** Hero Header ***/
.hero-header {
    height: 700px;
    display: flex;
    align-items: center;
   background: linear-gradient(
    to bottom,
    rgba(15, 23, 43, .7),
    rgba(15, 23, 43, .4)
), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Tablet */
@media (max-width: 991px) {
    .hero-header {
        height: 520px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .hero-header {
        height: 420px;
    }
}



.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}




.why-box{
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 35px 25px;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
}


.icon-box{
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bs-primary), #ffb703);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i{
    font-size: 32px;
    color: #fff;
}





.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    animation: whatsapp-wobble 2s infinite;
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
}

@keyframes whatsapp-wobble {
    0%   { transform: rotate(0deg); }
    10%  { transform: rotate(-10deg); }
    20%  { transform: rotate(10deg); }
    30%  { transform: rotate(-10deg); }
    40%  { transform: rotate(10deg); }
    50%  { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.whatsapp-float:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}




.img-box {
    height: 300px;              /* same height for all */
    overflow: hidden;
    border-radius: 14px;        /* rounded corners */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* soft shadow */
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* keeps images uniform */
}






.hero-header{
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}



.hero-header .container{
    position: relative;
    z-index: 2;
}
.hero-header::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.35) 40%,
        rgba(0,0,0,.15) 100%
    );
    z-index: 1;
}










/* Working Process Background */
.working-process-section{
    position:relative;
    background:
        linear-gradient(rgba(8,25,41,.88), rgba(8,25,41,.88)),
        url("img/working-process-bg.jpg") center center/cover no-repeat;
    overflow:hidden;
}

/* Glass Cards */
.process-box{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.12);
    border-radius:12px;
    padding:40px 25px 30px;
    color:#fff;
    height:100%;
    transition:.35s;
}

.process-box:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.02);
    border-color:var(--bs-primary);
}

.process-box h5{
    color:#fff;
    margin:18px 0 12px;
}

.process-box p{
    color:rgba(255,255,255,.82);
    font-size:15px;
    line-height:1.7;
}

/* Step Number */
.process-number{
    position:absolute;
    top:18px;
    right:18px;
    font-size:38px;
    font-weight:800;
    color:rgba(255,255,255,.12);
}

/* Icon */
.process-icon{
    width:80px;
    height:80px;
    margin:0 auto;
    border-radius:50%;
    background:var(--bs-primary);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    box-shadow:0 10px 30px rgba(255,165,0,.35);
}

.process-box:hover .process-icon{
    transform:rotate(10deg) scale(1.08);
    transition:.35s;
}




.industry-box{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:12px;
    padding:35px 25px;
    height:100%;
    transition:.35s;
}

.industry-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    border-color:#FEA116;
}

.industry-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    margin:0 auto 20px;
    background:#FEA116;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    transition:.35s;
}

.industry-box:hover .industry-icon{
    background:#0F172B;
    transform:rotateY(180deg);
}

.industry-box h5{
    font-weight:700;
    margin-bottom:12px;
    color:#0F172B;
}

.industry-box p{
    font-size:14px;
    color:#666;
    margin-bottom:0;
}




.btn-outline-light{
    border:2px solid #fff;
    transition:.35s;
}

.btn-outline-light:hover{
    background:#fff;
    color:#0b1e2d;
}

.btn-primary{
    transition:.35s;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(255,165,0,.35);
}




.cta-btn{
    width: 200px;          /* Equal width */
    height: 58px;          /* Equal height */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 6px;
    transition: .3s;
}

.cta-btn:hover{
    transform: translateY(-3px);
}

/* ================================
   GREENERY PREMIUM THEME OVERRIDES
================================ */

:root {
    --primary: #198128;
    --secondary: #ca710f;
    --accent: #ca710f;
    --dark: #073818;
    --dark-2: #0d4d22;
    --light: #f4faf5;

    --bs-primary: #198128;
}

/* Typography */
body {
    font-family: 'Heebo', sans-serif;
    color: #52605a;
    font-size: 16px;
    line-height: 1.75;
}

h1, h2, h3, h4, h5, h6,
.navbar .nav-link,
.btn {
    font-family: 'Nunito', sans-serif;
}

h1, h2, h3 {
    color: #102417;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
}

h4, h5, h6 {
    color: #102417;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    font-weight: 400;
    line-height: 1.8;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

/* Section Title */
.section-title {
    color: var(--primary) !important;
    font-weight: 800 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 14px;
}

.section-title::before,
.section-title::after {
    background: var(--secondary);
}

/* Global Radius - no image size change */
img {
    border-radius: 5px !important;
}

.navbar-brand img,
.whatsapp-float img {
    border-radius: 0 !important;
}

.btn,
.btn-lg,
.btn-sm,
.btn-square,
.btn-sm-square,
.btn-lg-square,
.rounded,
.border,
.accordion-button,
.accordion-item,
.why-box,
.process-box,
.industry-box {
    border-radius: 5px !important;
}

/* Buttons Consistency */
.btn {
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 5px !important;
    padding: 13px 28px;
    transition: all .35s ease;
}

.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(25, 129, 40, .22);
}

.btn-primary:hover {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(202, 113, 15, .35);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,.75) !important;
    color: #fff !important;
    background: transparent !important;
}

.btn-outline-light:hover {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(202, 113, 15, .35);
}

/* ================================
   HERO CLEAN CONTENT FIX
   Removes glass/background from text content
================================ */

.hero-header .container,
.hero-header .col-lg-7 {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hero-header .col-lg-7 {
    padding: 0 !important;
    max-width: 760px;
}

.hero-header h1 {
    color: #fff !important;
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.05;
    text-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.hero-header p {
    color: rgba(255,255,255,.92) !important;
    max-width: 680px;
    font-size: 19px !important;
    line-height: 1.75;
    font-weight: 400;
    text-shadow: 0 5px 20px rgba(0,0,0,.3);
}

.hero-header .btn {
    margin-top: 8px;
}

.hero-header::before {
    background: linear-gradient(
        90deg,
        rgba(3, 36, 16, .78) 0%,
        rgba(3, 36, 16, .52) 42%,
        rgba(3, 36, 16, .16) 100%
    ) !important;
}

.carousel-indicators [data-bs-target] {
    width: 28px;
    height: 5px;
    border-radius: 5px;
    background-color: rgba(255,255,255,.65);
}

.carousel-indicators .active {
    background-color: var(--secondary);
}

/* ================================
   PREMIUM MINIMAL CARDS
   keeps image size same
================================ */

#products .border,
#services .border {
    border: 1px solid rgba(25,129,40,.12) !important;
    background: #fff;
    box-shadow: 0 10px 30px rgba(13, 77, 34, .07);
    transition: all .35s ease;
}

#products .border:hover,
#services .border:hover {
    transform: translateY(-8px);
    border-color: rgba(202,113,15,.45) !important;
    box-shadow: 0 18px 45px rgba(13, 77, 34, .13);
}

#products img,
#services img {
    transition: all .45s ease;
}

#products .border:hover img,
#services .border:hover img {
    transform: scale(1.035);
}

#products h5,
#services h4 {
    transition: .3s ease;
}

#products .border:hover h5,
#services .border:hover h4 {
    color: var(--primary);
}

/* Stats */
.bg-light {
    background: #f5faf6 !important;
}

.bg-light .border {
    border-color: rgba(25,129,40,.12) !important;
}

.bg-light .shadow-sm {
    box-shadow: 0 12px 36px rgba(13,77,34,.08) !important;
}

/* Working Process */
.working-process-section {
    background:
        linear-gradient(rgba(4, 44, 19, .9), rgba(4, 44, 19, .92)),
        url("img/working-process-bg.jpg") center center/cover no-repeat !important;
}

.process-box {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
}

.process-box:hover {
    border-color: var(--secondary);
    background: rgba(255,255,255,.09);
}

.process-icon {
    background: var(--primary);
    box-shadow: 0 14px 35px rgba(25,129,40,.35);
}

.process-box:hover .process-icon {
    background: var(--secondary);
}

/* Industries */
.industry-box {
    border: 1px solid rgba(25,129,40,.12);
    box-shadow: 0 10px 30px rgba(13,77,34,.06);
}

.industry-box:hover {
    border-color: rgba(202,113,15,.45);
    box-shadow: 0 18px 45px rgba(13,77,34,.13);
}

.industry-icon {
    background: rgba(25,129,40,.1);
    color: var(--primary);
}

.industry-box:hover .industry-icon {
    background: var(--secondary);
    color: #fff;
}

/* Why Choose */
.why-box {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
}

.why-box:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.09);
    border-color: rgba(202,113,15,.55);
}

.icon-box {
    background: var(--primary);
}

.why-box:hover .icon-box {
    background: var(--secondary);
}

/* FAQ */
.accordion-button {
    background: var(--primary) !important;
    font-weight: 700;
    letter-spacing: -.01em;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--secondary) !important;
}

.accordion-body {
    border: 1px solid rgba(25,129,40,.09);
    border-top: 0;
    color: #52605a;
    line-height: 1.8;
}

/* ================================
   NEW CTA SECTION
================================ */

.premium-cta-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(202,113,15,.22), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(255,255,255,.12), transparent 26%),
        linear-gradient(135deg, #052b13 0%, #0b4f21 48%, #073818 100%);
}

.premium-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: .22;
}

.cta-svg-shape {
    position: absolute;
    pointer-events: none;
    opacity: .28;
}

.cta-svg-shape.shape-one {
    top: -70px;
    right: -80px;
    width: 260px;
}

.cta-svg-shape.shape-two {
    bottom: -90px;
    left: -80px;
    width: 230px;
    opacity: .18;
}

.premium-cta-card {
    position: relative;
    z-index: 2;
    border-radius: 5px;
    padding: 55px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 28px 75px rgba(0,0,0,.25);
}

.cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cta-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--secondary);
    border-radius: 5px;
}

.premium-cta-card h2 {
    color: #fff;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.05;
    margin-bottom: 20px;
}

.premium-cta-card p {
    color: rgba(255,255,255,.86);
    font-size: 18px;
    line-height: 1.85;
    max-width: 830px;
    margin-bottom: 0;
}

.cta-action-panel {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 5px;
    padding: 28px;
}

.cta-action-panel .btn {
    width: 100%;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-action-panel .btn + .btn {
    margin-top: 14px;
}

.cta-mini-text {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 18px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .premium-cta-section {
        padding: 75px 0;
    }

    .premium-cta-card {
        padding: 38px 28px;
    }

    .premium-cta-card h2 {
        font-size: 38px;
    }

    .premium-cta-card p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .premium-cta-card {
        padding: 32px 22px;
    }

    .premium-cta-card h2 {
        font-size: 32px;
    }

    .cta-action-panel {
        padding: 20px;
    }
}

/* ================================
   HEADER + FOOTER ACTIVE / HEADING FIX
================================ */

:root {
    --greenery-green: #198128;
    --greenery-orange: #ca710f;
}

/* Header active tab + hover color */
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover,
.sticky-top.navbar-dark .navbar-nav .nav-link.active,
.sticky-top.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--greenery-orange) !important;
}

/* Dropdown active + hover color */
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    color: #fff !important;
    background-color: var(--greenery-orange) !important;
}

/* Footer column headings */
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer .section-title {
    color: var(--greenery-orange) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 25px;
}

/* Footer section title lines */
.footer .section-title::before,
.footer .section-title::after {
    background: var(--greenery-orange) !important;
}

/* Footer links - do not capitalize automatically */
.footer .btn.btn-link,
.footer a {
    text-transform: none !important;
}

/* Footer active/hover link color */
.footer .btn.btn-link.active,
.footer .btn.btn-link:hover,
.footer a.active,
.footer a:hover {
    color: var(--greenery-orange) !important;
    letter-spacing: 0 !important;
}

/* Footer social hover */
.footer .btn.btn-social:hover {
    color: #fff !important;
    background: var(--greenery-orange) !important;
    border-color: var(--greenery-orange) !important;
}

/* ================================
   HEADER + FOOTER ACTIVE / HEADING FIX
================================ */

:root {
    --greenery-green: #198128;
    --greenery-orange: #ca710f;
}

/* Header active tab + hover color */
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover,
.sticky-top.navbar-dark .navbar-nav .nav-link.active,
.sticky-top.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--greenery-orange) !important;
}

/* Dropdown active + hover color */
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    color: #fff !important;
    background-color: var(--greenery-orange) !important;
}

/* Footer column headings */
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer .section-title {
    color: var(--greenery-orange) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

/* Footer section title lines */
.footer .section-title::before,
.footer .section-title::after {
    background: var(--greenery-orange) !important;
}

/* Footer links - do not capitalize automatically */
.footer .btn.btn-link,
.footer a {
    text-transform: none !important;
}

/* Footer active/hover link color */
.footer .btn.btn-link.active,
.footer .btn.btn-link:hover,
.footer a.active,
.footer a:hover {
    color: var(--greenery-orange) !important;
    letter-spacing: 0 !important;
}

/* Footer social hover */
.footer .btn.btn-social:hover {
    color: #fff !important;
    background: var(--greenery-orange) !important;
    border-color: var(--greenery-orange) !important;
}

/* =====================================================
   PREMIUM SECTION DESIGN OVERRIDES
   Greenery Suppliers Private Limited
===================================================== */

:root {
    --greenery-green: #198128;
    --greenery-green-dark: #073818;
    --greenery-green-soft: #edf8ef;
    --greenery-orange: #ca710f;
    --greenery-text: #52605a;
    --greenery-heading: #102417;
}

/* Common Premium Section Base */
.premium-section {
    position: relative;
    overflow: hidden;
}

.premium-section::before,
.premium-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.premium-section::before {
    width: 280px;
    height: 280px;
    background: rgba(25, 129, 40, .08);
    top: -120px;
    left: -100px;
}

.premium-section::after {
    width: 220px;
    height: 220px;
    background: rgba(202, 113, 15, .08);
    right: -90px;
    bottom: -100px;
}

.premium-section .container {
    position: relative;
    z-index: 2;
}

/* Minimal SVG Decorative Lines */
.section-shape-line {
    position: absolute;
    width: 170px;
    height: 170px;
    opacity: .22;
    pointer-events: none;
    z-index: 1;
}

.section-shape-line.top-right {
    top: 35px;
    right: 45px;
}

.section-shape-line.bottom-left {
    bottom: 35px;
    left: 45px;
}

/* Better Headings */
.premium-section h1,
.premium-section h2 {
    letter-spacing: -0.045em;
    line-height: 1.12;
}

.premium-section p {
    color: var(--greenery-text);
}

/* =====================================================
   ABOUT SECTION PREMIUM
===================================================== */

.about-premium {
    background:
        linear-gradient(135deg, #ffffff 0%, #f6fbf7 100%);
}

.about-image-frame {
    position: relative;
    padding: 5px;
    
    border: 1px solid rgba(25, 129, 40, .12);
    border-radius: 5px;
    box-shadow: 0 24px 65px rgba(13, 77, 34, .12);
}

.about-image-frame::before {
    content: "";
    position: absolute;
    width: 86%;
    height: 86%;
    left: -18px;
    bottom: -18px;
    border: 2px solid rgba(202, 113, 15, .45);
    border-radius: 5px;
    z-index: -1;
}

.about-image-frame img {
    width: 100%;
    display: block;
    border-radius: 5px !important;
}

.about-floating-card {
    position: absolute;
    right: -20px;
    bottom: 28px;
    width: 190px;
    background: #fff;
    border-left: 4px solid var(--greenery-orange);
    border-radius: 5px;
    padding: 18px 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.about-floating-card h3 {
    color: var(--greenery-green);
    font-weight: 900;
    margin-bottom: 2px;
}

.about-floating-card span {
    color: var(--greenery-text);
    font-size: 14px;
    font-weight: 600;
}

.about-content-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(25, 129, 40, .1);
    border-radius: 5px;
    padding: 42px;
    box-shadow: 0 18px 55px rgba(13, 77, 34, .08);
}

.about-content-card::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    top: 0;
    left: 42px;
    background: var(--greenery-orange);
    border-radius: 5px;
}

.about-mini-stat {
    background: var(--greenery-green-soft);
    border: 1px solid rgba(25,129,40,.12);
    border-radius: 5px;
    padding: 22px;
    height: 100%;
    transition: .35s ease;
}

.about-mini-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(202,113,15,.45);
}

.about-mini-stat h1 {
    color: var(--greenery-green);
}

/* =====================================================
   BUSINESS STATISTICS PREMIUM
===================================================== */

.stats-premium {
    background:
        radial-gradient(circle at 12% 18%, rgba(202,113,15,.08), transparent 28%),
        linear-gradient(180deg, #f6fbf7 0%, #ffffff 100%);
}

.stat-premium-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(25,129,40,.12);
    border-radius: 5px;
    padding: 36px 28px;
    height: 100%;
    transition: .35s ease;
    box-shadow: 0 14px 42px rgba(13,77,34,.08);
}

.stat-premium-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -45px;
    top: -45px;
    background: rgba(25,129,40,.08);
    border-radius: 50%;
    transition: .35s ease;
}

.stat-premium-card::after {
    content: "";
    position: absolute;
    width: 44px;
    height: 4px;
    left: 28px;
    bottom: 0;
    background: var(--greenery-orange);
    border-radius: 5px;
    transition: .35s ease;
}

.stat-premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(202,113,15,.45);
    box-shadow: 0 22px 55px rgba(13,77,34,.13);
}

.stat-premium-card:hover::before {
    background: rgba(202,113,15,.13);
}

.stat-premium-icon {
    width: 68px;
    height: 68px;
    background: var(--greenery-green-soft);
    color: var(--greenery-green);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.stat-premium-card:hover .stat-premium-icon {
    background: var(--greenery-orange);
    color: #fff;
}

.stat-premium-card h2 {
    color: var(--greenery-green);
    font-size: 42px;
    font-weight: 900;
}

/* =====================================================
   PRODUCTS / SERVICES PREMIUM CARDS
===================================================== */

.premium-card-grid {
    background: #fff;
}

.premium-product-card,
.premium-service-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(25,129,40,.12);
    border-radius: 5px;
    padding: 18px;
    height: 100%;
    transition: .35s ease;
    box-shadow: 0 12px 34px rgba(13,77,34,.07);
}

.premium-product-card::before,
.premium-service-card::before {
    content: "";
    position: absolute;
    inset: auto 18px 18px 18px;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(25,129,40,.05));
    border-radius: 5px;
    opacity: 0;
    transition: .35s ease;
    pointer-events: none;
}

.premium-product-card:hover,
.premium-service-card:hover {
    transform: translateY(-9px);
    border-color: rgba(202,113,15,.48);
    box-shadow: 0 22px 56px rgba(13,77,34,.14);
}

.premium-product-card:hover::before,
.premium-service-card:hover::before {
    opacity: 1;
}

.premium-product-card a:first-child,
.premium-service-card a:first-child {
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.premium-product-card img,
.premium-service-card img {
    width: 100%;
    transition: .5s ease;
}

.premium-product-card:hover img,
.premium-service-card:hover img {
    transform: scale(1.045);
}

.premium-product-card h5,
.premium-service-card h4 {
    position: relative;
    margin-top: 18px;
    margin-bottom: 0;
    transition: .3s ease;
}

.premium-product-card h5::after,
.premium-service-card h4::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    background: var(--greenery-orange);
    margin: 12px auto 0;
    border-radius: 5px;
    transition: .35s ease;
}

.premium-product-card:hover h5,
.premium-service-card:hover h4 {
    color: var(--greenery-green);
}

.premium-product-card:hover h5::after,
.premium-service-card:hover h4::after {
    width: 58px;
}

.premium-service-card p {
    margin-top: 14px;
    font-size: 15px;
}

/* =====================================================
   INDUSTRIES PREMIUM
===================================================== */

.industries-premium {
    background:
        linear-gradient(135deg, #f6fbf7 0%, #ffffff 52%, #f8f2eb 100%);
}

.industry-premium-box {
    position: relative;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(25,129,40,.12);
    border-radius: 5px;
    padding: 28px 22px;
    height: 100%;
    transition: .35s ease;
    box-shadow: 0 12px 34px rgba(13,77,34,.06);
}

.industry-premium-box::before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    left: 22px;
    bottom: 0;
    background: var(--greenery-orange);
    border-radius: 5px;
    transition: .35s ease;
}

.industry-premium-box:hover {
    transform: translateY(-7px);
    border-color: rgba(202,113,15,.5);
    box-shadow: 0 20px 50px rgba(13,77,34,.12);
}

.industry-premium-box:hover::before {
    width: 58px;
}

.industry-premium-icon {
    width: 62px;
    height: 62px;
    border-radius: 5px;
    background: var(--greenery-green-soft);
    color: var(--greenery-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
    transition: .35s ease;
}

.industry-premium-box:hover .industry-premium-icon {
    background: var(--greenery-orange);
    color: #fff;
    transform: rotate(-4deg);
}

/* =====================================================
   CERTIFICATIONS PREMIUM
===================================================== */

.cert-premium {
    background:
        radial-gradient(circle at 90% 20%, rgba(25,129,40,.08), transparent 25%),
        #f6fbf7;
}

.cert-card-premium {
    position: relative;
    background: #fff;
    border: 1px solid rgba(25,129,40,.12);
    border-radius: 5px;
    padding: 34px 28px;
    height: 100%;
    transition: .35s ease;
    box-shadow: 0 14px 40px rgba(13,77,34,.08);
}

.cert-card-premium::before {
    content: "";
    position: absolute;
    width: 42px;
    height: 42px;
    top: 18px;
    right: 18px;
    border-top: 2px solid rgba(202,113,15,.5);
    border-right: 2px solid rgba(202,113,15,.5);
    border-radius: 0 5px 0 0;
}

.cert-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(202,113,15,.45);
    box-shadow: 0 22px 55px rgba(13,77,34,.13);
}

.cert-card-premium img {
    transition: .35s ease;
}

.cert-card-premium:hover img {
    transform: scale(1.04);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
    .about-content-card {
        padding: 32px;
        margin-top: 30px;
    }

    .about-floating-card {
        right: 16px;
        bottom: 22px;
    }

    .section-shape-line {
        display: none;
    }
}

@media (max-width: 575px) {
    .about-content-card {
        padding: 28px 22px;
    }

    .about-floating-card {
        position: static;
        width: 100%;
        margin-top: 18px;
    }

    .stat-premium-card {
        padding: 30px 22px;
    }
}

.small{
    color: white !important;
}


/* =====================================================
   FINAL GREEN THEME FIX
   Replaces blue-purple with first dark green theme
===================================================== */

:root {
    --theme-green: #198128;
    --theme-green-dark: #073818;
    --theme-green-dark-2: #052b13;
    --theme-green-dark-3: #0b4f21;

    --theme-orange: #ca710f;
    --theme-orange-light: #f2a444;

    --theme-white: #ffffff;
    --theme-soft: rgba(255, 255, 255, .78);
    --theme-muted: rgba(255, 255, 255, .62);
    --theme-border: rgba(255, 255, 255, .13);

    --primary: #198128;
    --secondary: #ca710f;
    --bs-primary: #198128;
}

/* =====================================================
   HERO OVERLAY REDUCE + GREEN TONE
===================================================== */

.hero-header::before {
    background: linear-gradient(
        90deg,
        rgba(5, 43, 19, .42) 0%,
        rgba(5, 43, 19, .24) 45%,
        rgba(5, 43, 19, .05) 100%
    ) !important;
}

.hero-header h1 {
    color: #ffffff !important;
    text-shadow: 0 7px 22px rgba(0, 0, 0, .30) !important;
}

.hero-header p {
    color: rgba(255,255,255,.90) !important;
    text-shadow: 0 5px 16px rgba(0, 0, 0, .22) !important;
}


/* =====================================================
   DARK GREEN BACKGROUND SECTIONS
   Business Stats + Services + Working Process + Why Choose + CTA
===================================================== */

.stats-premium,
#services.bg-light,
.working-process-section,
.premium-cta-section,
.premium-section[style*="background"] {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(202, 113, 15, .16), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(255,255,255,.08), transparent 28%),
        linear-gradient(135deg, var(--theme-green-dark-2) 0%, var(--theme-green-dark) 48%, var(--theme-green-dark-3) 100%) !important;
}

/* Grid texture */
.stats-premium::before,
#services.bg-light::before,
.working-process-section::before,
.premium-cta-section::before,
.premium-section[style*="background"]::before {
    content: "";
    display: block !important;
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: .22;
    pointer-events: none;
    z-index: 0;
}

/* Orange glow */
.stats-premium::after,
#services.bg-light::after,
.premium-cta-section::after,
.premium-section[style*="background"]::after {
    content: "";
    display: block !important;
    position: absolute;
    width: 270px;
    height: 270px;
    right: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(202, 113, 15, .13);
    pointer-events: none;
    z-index: 0;
}

.stats-premium .container,
#services.bg-light .container,
.working-process-section .container,
.premium-cta-section .container,
.premium-section[style*="background"] .container {
    position: relative;
    z-index: 2;
}


/* =====================================================
   HEADINGS / TEXT ON DARK GREEN SECTIONS
===================================================== */

.stats-premium h1,
.stats-premium h2,
.stats-premium h3,
.stats-premium h4,
.stats-premium h5,
.stats-premium h6,
#services.bg-light h1,
#services.bg-light h2,
#services.bg-light h3,
#services.bg-light h4,
#services.bg-light h5,
#services.bg-light h6,
.working-process-section h1,
.working-process-section h2,
.working-process-section h3,
.working-process-section h4,
.working-process-section h5,
.working-process-section h6,
.premium-cta-section h1,
.premium-cta-section h2,
.premium-cta-section h3,
.premium-cta-section h4,
.premium-cta-section h5,
.premium-cta-section h6,
.premium-section[style*="background"] h1,
.premium-section[style*="background"] h2,
.premium-section[style*="background"] h3,
.premium-section[style*="background"] h4,
.premium-section[style*="background"] h5,
.premium-section[style*="background"] h6 {
    color: #ffffff !important;
}

.stats-premium p,
#services.bg-light p,
.working-process-section p,
.premium-cta-section p,
.premium-section[style*="background"] p {
    color: var(--theme-soft) !important;
}

.section-title,
.stats-premium .section-title,
#services.bg-light .section-title,
.working-process-section .section-title,
.premium-cta-section .section-title {
    color: var(--theme-orange) !important;
}

.section-title::before,
.section-title::after {
    background: var(--theme-orange) !important;
}


/* =====================================================
   FOOTER SAME DARK GREEN BACKGROUND
===================================================== */

.footer,
.container-fluid.bg-dark.footer,
#footer-placeholder .footer {
    margin-top: 0 !important;
    background:
        radial-gradient(circle at 15% 15%, rgba(202, 113, 15, .15), transparent 28%),
        radial-gradient(circle at 90% 85%, rgba(255,255,255,.07), transparent 26%),
        linear-gradient(135deg, var(--theme-green-dark-2) 0%, var(--theme-green-dark) 48%, var(--theme-green-dark-3) 100%) !important;
    color: var(--theme-soft) !important;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer .section-title {
    color: var(--theme-orange) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.footer p,
.footer span,
.footer li {
    color: var(--theme-soft) !important;
}

.footer .btn.btn-link,
.footer a {
    color: rgba(255,255,255,.78) !important;
    text-transform: none !important;
}

.footer .btn.btn-link:hover,
.footer a:hover,
.footer .btn.btn-link.active,
.footer a.active {
    color: var(--theme-orange-light) !important;
    letter-spacing: 0 !important;
}


/* =====================================================
   HEADER SAME DARK GREEN BACKGROUND
===================================================== */

.navbar-dark,
.sticky-top.navbar-dark {
    background: rgba(5, 43, 19, .96) !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.82) !important;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover,
.sticky-top.navbar-dark .navbar-nav .nav-link.active,
.sticky-top.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--theme-orange) !important;
}


/* =====================================================
   DARK SECTION CARDS
===================================================== */

.stats-premium .stat-premium-card,
#services.bg-light .premium-service-card,
.working-process-section .process-box,
.premium-section[style*="background"] .why-box,
.premium-cta-card,
.cta-action-panel {
    background: rgba(255,255,255,.075) !important;
    border: 1px solid var(--theme-border) !important;
    box-shadow: 0 22px 60px rgba(0,0,0,.24) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.stats-premium .stat-premium-card:hover,
#services.bg-light .premium-service-card:hover,
.working-process-section .process-box:hover,
.premium-section[style*="background"] .why-box:hover {
    background: rgba(255,255,255,.11) !important;
    border-color: rgba(202,113,15,.55) !important;
}

.stats-premium .stat-premium-card h2 {
    color: var(--theme-orange-light) !important;
}

.stats-premium .stat-premium-card h5,
#services.bg-light .premium-service-card h4,
.working-process-section .process-box h5,
.premium-section[style*="background"] .why-box h5 {
    color: #ffffff !important;
}

.stats-premium .stat-premium-card p,
#services.bg-light .premium-service-card p,
.working-process-section .process-box p,
.premium-section[style*="background"] .why-box p {
    color: var(--theme-muted) !important;
}


/* =====================================================
   ICONS ON DARK SECTIONS
===================================================== */

.stats-premium .stat-premium-icon,
#services.bg-light .premium-service-card .service-icon,
.working-process-section .process-icon,
.premium-section[style*="background"] .icon-box {
    background: rgba(202,113,15,.15) !important;
    color: var(--theme-orange-light) !important;
    border: 1px solid rgba(202,113,15,.25) !important;
}

.stats-premium .stat-premium-card:hover .stat-premium-icon,
.working-process-section .process-box:hover .process-icon,
.premium-section[style*="background"] .why-box:hover .icon-box {
    background: var(--theme-orange) !important;
    color: #ffffff !important;
}


/* =====================================================
   REMOVE GAP BETWEEN CTA AND FOOTER
===================================================== */

.premium-cta-section {
    margin-bottom: 0 !important;
    padding-bottom: 95px !important;
}

#footer-placeholder {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.premium-cta-section + #footer-placeholder,
.premium-cta-section + #footer-placeholder .footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* =====================================================
   FAQ ORANGE TAB + VISIBLE ICON
===================================================== */

#faqAccordion .accordion-button {
    position: relative;
    background: var(--theme-orange) !important;
    color: #ffffff !important;
    border: 1px solid var(--theme-orange) !important;
    box-shadow: none !important;
    padding-right: 55px;
}

#faqAccordion .accordion-button::after {
    background-image: none !important;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff !important;
    font-size: 18px;
    width: auto;
    height: auto;
    margin-left: auto;
    transform: none !important;
}

#faqAccordion .accordion-button:not(.collapsed)::after {
    content: "\f106";
    color: #ffffff !important;
}

#faqAccordion .accordion-button:hover,
#faqAccordion .accordion-button:focus {
    background: var(--theme-orange-light) !important;
    border-color: var(--theme-orange-light) !important;
    color: var(--theme-green-dark) !important;
}

#faqAccordion .accordion-button:hover::after,
#faqAccordion .accordion-button:focus::after {
    color: var(--theme-green-dark) !important;
}

#faqAccordion .accordion-body {
    background: #ffffff !important;
    color: #52605a !important;
    border: 1px solid rgba(202,113,15,.16) !important;
    border-top: 0 !important;
    line-height: 1.8;
}

/* =====================================================
   FINAL GREEN THEME FIX
   Replaces blue-purple with first dark green theme
===================================================== */

:root {
    --theme-green: #198128;
    --theme-green-dark: #073818;
    --theme-green-dark-2: #052b13;
    --theme-green-dark-3: #0b4f21;

    --theme-orange: #ca710f;
    --theme-orange-light: #f2a444;

    --theme-white: #ffffff;
    --theme-soft: rgba(255, 255, 255, .78);
    --theme-muted: rgba(255, 255, 255, .62);
    --theme-border: rgba(255, 255, 255, .13);

    --primary: #198128;
    --secondary: #ca710f;
    --bs-primary: #198128;
}

/* =====================================================
   HERO OVERLAY REDUCE + GREEN TONE
===================================================== */

.hero-header::before {
    background: linear-gradient(
        90deg,
        rgba(5, 43, 19, .42) 0%,
        rgba(5, 43, 19, .24) 45%,
        rgba(5, 43, 19, .05) 100%
    ) !important;
}

.hero-header h1 {
    color: #ffffff !important;
    text-shadow: 0 7px 22px rgba(0, 0, 0, .30) !important;
}

.hero-header p {
    color: rgba(255,255,255,.90) !important;
    text-shadow: 0 5px 16px rgba(0, 0, 0, .22) !important;
}


/* =====================================================
   DARK GREEN BACKGROUND SECTIONS
   Business Stats + Services + Working Process + Why Choose + CTA
===================================================== */

.stats-premium,
#services.bg-light,
.working-process-section,
.premium-cta-section,
.premium-section[style*="background"] {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(202, 113, 15, .16), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(255,255,255,.08), transparent 28%),
        linear-gradient(135deg, var(--theme-green-dark-2) 0%, var(--theme-green-dark) 48%, var(--theme-green-dark-3) 100%) !important;
}

/* Grid texture */
.stats-premium::before,
#services.bg-light::before,
.working-process-section::before,
.premium-cta-section::before,
.premium-section[style*="background"]::before {
    content: "";
    display: block !important;
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: .22;
    pointer-events: none;
    z-index: 0;
}

/* Orange glow */
.stats-premium::after,
#services.bg-light::after,
.premium-cta-section::after,
.premium-section[style*="background"]::after {
    content: "";
    display: block !important;
    position: absolute;
    width: 270px;
    height: 270px;
    right: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(202, 113, 15, .13);
    pointer-events: none;
    z-index: 0;
}

.stats-premium .container,
#services.bg-light .container,
.working-process-section .container,
.premium-cta-section .container,
.premium-section[style*="background"] .container {
    position: relative;
    z-index: 2;
}


/* =====================================================
   HEADINGS / TEXT ON DARK GREEN SECTIONS
===================================================== */

.stats-premium h1,
.stats-premium h2,
.stats-premium h3,
.stats-premium h4,
.stats-premium h5,
.stats-premium h6,
#services.bg-light h1,
#services.bg-light h2,
#services.bg-light h3,
#services.bg-light h4,
#services.bg-light h5,
#services.bg-light h6,
.working-process-section h1,
.working-process-section h2,
.working-process-section h3,
.working-process-section h4,
.working-process-section h5,
.working-process-section h6,
.premium-cta-section h1,
.premium-cta-section h2,
.premium-cta-section h3,
.premium-cta-section h4,
.premium-cta-section h5,
.premium-cta-section h6,
.premium-section[style*="background"] h1,
.premium-section[style*="background"] h2,
.premium-section[style*="background"] h3,
.premium-section[style*="background"] h4,
.premium-section[style*="background"] h5,
.premium-section[style*="background"] h6 {
    color: #ffffff !important;
}

.stats-premium p,
#services.bg-light p,
.working-process-section p,
.premium-cta-section p,
.premium-section[style*="background"] p {
    color: var(--theme-soft) !important;
}

.section-title,
.stats-premium .section-title,
#services.bg-light .section-title,
.working-process-section .section-title,
.premium-cta-section .section-title {
    color: var(--theme-orange) !important;
}

.section-title::before,
.section-title::after {
    background: var(--theme-orange) !important;
}


/* =====================================================
   FOOTER SAME DARK GREEN BACKGROUND
===================================================== */

.footer,
.container-fluid.bg-dark.footer,
#footer-placeholder .footer {
    margin-top: 0 !important;
    background:
        radial-gradient(circle at 15% 15%, rgba(202, 113, 15, .15), transparent 28%),
        radial-gradient(circle at 90% 85%, rgba(255,255,255,.07), transparent 26%),
        linear-gradient(135deg, var(--theme-green-dark-2) 0%, var(--theme-green-dark) 48%, var(--theme-green-dark-3) 100%) !important;
    color: var(--theme-soft) !important;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer .section-title {
    color: var(--theme-orange) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.footer p,
.footer span,
.footer li {
    color: var(--theme-soft) !important;
}

.footer .btn.btn-link,
.footer a {
    color: rgba(255,255,255,.78) !important;
    text-transform: none !important;
}

.footer .btn.btn-link:hover,
.footer a:hover,
.footer .btn.btn-link.active,
.footer a.active {
    color: var(--theme-orange-light) !important;
    letter-spacing: 0 !important;
}


/* =====================================================
   HEADER SAME DARK GREEN BACKGROUND
===================================================== */

.navbar-dark,
.sticky-top.navbar-dark {
    background: rgba(5, 43, 19, .96) !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.82) !important;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover,
.sticky-top.navbar-dark .navbar-nav .nav-link.active,
.sticky-top.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--theme-orange) !important;
}


/* =====================================================
   DARK SECTION CARDS
===================================================== */

.stats-premium .stat-premium-card,
#services.bg-light .premium-service-card,
.working-process-section .process-box,
.premium-section[style*="background"] .why-box,
.premium-cta-card,
.cta-action-panel {
    background: rgba(255,255,255,.075) !important;
    border: 1px solid var(--theme-border) !important;
    box-shadow: 0 22px 60px rgba(0,0,0,.24) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.stats-premium .stat-premium-card:hover,
#services.bg-light .premium-service-card:hover,
.working-process-section .process-box:hover,
.premium-section[style*="background"] .why-box:hover {
    background: rgba(255,255,255,.11) !important;
    border-color: rgba(202,113,15,.55) !important;
}

.stats-premium .stat-premium-card h2 {
    color: var(--theme-orange-light) !important;
}

.stats-premium .stat-premium-card h5,
#services.bg-light .premium-service-card h4,
.working-process-section .process-box h5,
.premium-section[style*="background"] .why-box h5 {
    color: #ffffff !important;
}

.stats-premium .stat-premium-card p,
#services.bg-light .premium-service-card p,
.working-process-section .process-box p,
.premium-section[style*="background"] .why-box p {
    color: var(--theme-muted) !important;
}


/* =====================================================
   ICONS ON DARK SECTIONS
===================================================== */

.stats-premium .stat-premium-icon,
#services.bg-light .premium-service-card .service-icon,
.working-process-section .process-icon,
.premium-section[style*="background"] .icon-box {
    background: rgba(202,113,15,.15) !important;
    color: var(--theme-orange-light) !important;
    border: 1px solid rgba(202,113,15,.25) !important;
}

.stats-premium .stat-premium-card:hover .stat-premium-icon,
.working-process-section .process-box:hover .process-icon,
.premium-section[style*="background"] .why-box:hover .icon-box {
    background: var(--theme-orange) !important;
    color: #ffffff !important;
}


/* =====================================================
   REMOVE GAP BETWEEN CTA AND FOOTER
===================================================== */

.premium-cta-section {
    margin-bottom: 0 !important;
    padding-bottom: 95px !important;
}

#footer-placeholder {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.premium-cta-section + #footer-placeholder,
.premium-cta-section + #footer-placeholder .footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* =====================================================
   FAQ ORANGE TAB + VISIBLE ICON
===================================================== */

#faqAccordion .accordion-button {
    position: relative;
    background: var(--theme-orange) !important;
    color: #ffffff !important;
    border: 1px solid var(--theme-orange) !important;
    box-shadow: none !important;
    padding-right: 55px;
}

#faqAccordion .accordion-button::after {
    background-image: none !important;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ffffff !important;
    font-size: 18px;
    width: auto;
    height: auto;
    margin-left: auto;
    transform: none !important;
}

#faqAccordion .accordion-button:not(.collapsed)::after {
    content: "\f106";
    color: #ffffff !important;
}

#faqAccordion .accordion-button:hover,
#faqAccordion .accordion-button:focus {
    background: var(--theme-orange-light) !important;
    border-color: var(--theme-orange-light) !important;
    color: var(--theme-green-dark) !important;
}

#faqAccordion .accordion-button:hover::after,
#faqAccordion .accordion-button:focus::after {
    color: var(--theme-green-dark) !important;
}

#faqAccordion .accordion-body {
    background: #ffffff !important;
    color: #52605a !important;
    border: 1px solid rgba(202,113,15,.16) !important;
    border-top: 0 !important;
    line-height: 1.8;
}
/* =====================================================
   SERVICE SECTION BACK TO WHITE
===================================================== */

#services.bg-light {
    background: #ffffff !important;
    position: relative;
    overflow: hidden;
}

/* Remove dark green grid/glow from service section */
#services.bg-light::before,
#services.bg-light::after {
    display: none !important;
}

/* Service section heading/text back to normal */
#services.bg-light h1,
#services.bg-light h2,
#services.bg-light h3,
#services.bg-light h4,
#services.bg-light h5,
#services.bg-light h6 {
    color: #102417 !important;
}

#services.bg-light p {
    color: #52605a !important;
}

/* Small section title stays orange */
#services.bg-light .section-title {
    color: #ca710f !important;
}

#services.bg-light .section-title::before,
#services.bg-light .section-title::after {
    background: #ca710f !important;
}

/* Service cards back to clean white premium style */
#services.bg-light .premium-service-card {
    background: #ffffff !important;
    border: 1px solid rgba(202, 113, 15, .14) !important;
    box-shadow: 0 14px 38px rgba(5, 43, 19, .08) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

#services.bg-light .premium-service-card:hover {
    background: #ffffff !important;
    border-color: rgba(202, 113, 15, .45) !important;
    box-shadow: 0 22px 55px rgba(5, 43, 19, .13) !important;
    transform: translateY(-8px);
}

/* Service card heading */
#services.bg-light .premium-service-card h4 {
    color: #102417 !important;
}

#services.bg-light .premium-service-card:hover h4 {
    color: #ca710f !important;
}

/* Service card paragraph */
#services.bg-light .premium-service-card p,
#services.bg-light .premium-service-card .text-muted {
    color: #52605a !important;
}

/* Service card underline accent */
#services.bg-light .premium-service-card h4::after {
    background: #ca710f !important;
}

/* Service decorative svg visible but soft */
#services.bg-light .section-shape-line {
    opacity: .16 !important;
}

#services.bg-light .section-shape-line path,
#services.bg-light .section-shape-line circle,
#services.bg-light .section-shape-line rect {
    stroke: #ca710f !important;
}

/* =====================================================
   GREEN IMAGE BACKGROUND FIX
   Product / Service / About / FAQ / Certification images
===================================================== */

:root {
    --image-green-bg: #073818;
    --image-green-bg-2: #0b4f21;
    --image-orange: #ca710f;
}

/* Product + Service image background */
.premium-product-card a:first-child,
.premium-service-card a:first-child {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 10px;
    border-radius: 5px !important;
  
}

/* Keep images same size visually and clean */
.premium-product-card a:first-child img,
.premium-service-card a:first-child img {
    width: 100%;
    display: block;
    margin-bottom: 0 !important;
    border-radius: 5px !important;
    background: transparent !important;
}

/* Add a subtle premium overlay line */
.premium-product-card a:first-child::after,
.premium-service-card a:first-child::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 5px;
    pointer-events: none;
}



/* About image background */


/* FAQ image background */
.faq-image-frame,
.faq-premium-image,
.faq-img-wrap {
    background:
        radial-gradient(circle at 20% 15%, rgba(202, 113, 15, .14), transparent 28%),
        linear-gradient(135deg, var(--image-green-bg) 0%, var(--image-green-bg-2) 100%) !important;
    padding: 12px;
    border-radius: 5px;
}


#faqAccordion.closest-faq img,
#faqAccordion + img,
img[src*="faq"] {
   
    padding: 10px;
    border-radius: 5px !important;
}


.cert-card-premium img {
    background:
        radial-gradient(circle at 20% 15%, rgba(202, 113, 15, .12), transparent 28%),
        linear-gradient(135deg, var(--image-green-bg) 0%, var(--image-green-bg-2) 100%) !important;
    padding: 3px !important;
    border-radius: 5px !important;
}


.img-box,
.image-box,
.img-wrapper,
.image-wrapper {
    background:
        radial-gradient(circle at 20% 15%, rgba(202, 113, 15, .14), transparent 28%),
        linear-gradient(135deg, var(--image-green-bg) 0%, var(--image-green-bg-2) 100%) !important;
    padding: 10px;
    border-radius: 5px;
}

/* =====================================================
   FLOATING CALL BUTTON ABOVE WHATSAPP
===================================================== */

.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 92px;
    right: 20px;
    background: linear-gradient(135deg, #ca710f, #f2a444);
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 10px 28px rgba(202, 113, 15, .35);
    text-decoration: none;
    transition: all .35s ease;
}

.call-float i {
    font-size: 24px;
    color: #ffffff;
}

.call-float:hover {
    background: linear-gradient(135deg, #073818, #0b4f21);
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 34px rgba(7, 56, 24, .35);
}

/* Optional soft pulse */
.call-float::before {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(202, 113, 15, .45);
    animation: call-pulse 1.8s infinite;
}

@keyframes call-pulse {
    0% {
        transform: scale(.9);
        opacity: .8;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

/* Keep WhatsApp below call button */
.whatsapp-float {
    bottom: 20px !important;
    right: 20px !important;
}
/* =====================================================
   REMOVE HERO CAROUSEL NEXT / PREV ARROWS
===================================================== */

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    display: none !important;
}
/* =====================================================
   IMAGE CARD HOVER BORDER GREEN
===================================================== */

:root {
    --card-hover-green: #198128;
    --card-hover-green-dark: #073818;
}

/* Product cards */
.premium-product-card:hover {
    border-color: var(--card-hover-green) !important;
}

/* Service cards */
.premium-service-card:hover {
    border-color: var(--card-hover-green) !important;
}

/* Industry cards */
.industry-premium-box:hover {
    border-color: var(--card-hover-green) !important;
}

/* Certification cards */
.cert-card-premium:hover {
    border-color: var(--card-hover-green) !important;
}

/* Stat cards */
.stat-premium-card:hover {
    border-color: var(--card-hover-green) !important;
}


/* FAQ image hover */
img[src*="faq"]:hover {
    border-color: var(--card-hover-green) !important;
}

/* If any old card still uses normal Bootstrap border */
#products .border:hover,
#services .border:hover,
.bg-light .border:hover {
    border-color: var(--card-hover-green) !important;
}

/* Optional: green shadow on hover */
.premium-product-card:hover,
.premium-service-card:hover,
.industry-premium-box:hover,
.cert-card-premium:hover,
.stat-premium-card:hover {
    box-shadow: 0 22px 55px rgba(25, 129, 40, .18) !important;
}
/* =====================================================
HOVER BORDER GREEN 
===================================================== */

#services .premium-service-card,
#services.bg-light .premium-service-card {
    border: 1px solid rgba(25, 129, 40, .16) !important;
}

#services .premium-service-card:hover,
#services.bg-light .premium-service-card:hover {
    border-color: #198128 !important;
    box-shadow: 0 22px 55px rgba(25, 129, 40, .18) !important;
}

/* Service image frame hover border green */
#services .premium-service-card a:first-child,
#services.bg-light .premium-service-card a:first-child {
    border: 1px solid transparent !important;
    transition: all .35s ease;
}

#services .premium-service-card:hover a:first-child,
#services.bg-light .premium-service-card:hover a:first-child {
    border-color: #198128 !important;
}

/* Service title hover also green */
#services .premium-service-card:hover h4,
#services.bg-light .premium-service-card:hover h4 {
    color: #198128 !important;
}

/* Service underline hover green */
#services .premium-service-card h4::after,
#services.bg-light .premium-service-card h4::after {
    background: #198128 !important;
}

/* =====================================================
   ACCOUNT DETAILS - STYLE 2
===================================================== */

.account-bank-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 20%, rgba(202, 113, 15, .16), transparent 28%),
        radial-gradient(circle at 92% 80%, rgba(255, 255, 255, .08), transparent 28%),
        linear-gradient(135deg, #052b13 0%, #073818 48%, #0b4f21 100%) !important;
}

.account-bank-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: .22;
    pointer-events: none;
}

.account-bank-section .container {
    position: relative;
    z-index: 2;
}

.account-bank-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 26px 70px rgba(0,0,0,.26);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.account-bank-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(202, 113, 15, .18);
}

.account-bank-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 4px;
    left: 40px;
    top: 0;
    background: #ca710f;
    border-radius: 5px;
}

.account-bank-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px 44px 28px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.account-bank-header .section-title {
    color: #ca710f !important;
    margin-bottom: 12px;
}

.account-bank-header .section-title::before,
.account-bank-header .section-title::after {
    background: #ca710f !important;
}

.account-bank-header h2 {
    color: #ffffff !important;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.055em;
    margin-bottom: 0;
}

.account-bank-icon {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    border-radius: 5px;
    background: #ca710f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 16px 34px rgba(202, 113, 15, .3);
}

.account-bank-body {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.4fr;
    gap: 30px;
    padding: 34px 44px 44px;
}

.account-name-box {
    border-radius: 5px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    padding: 30px;
}

.account-name-box span,
.account-detail-item span {
    display: block;
    color: #d17717;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.account-name-box h3 {
    color: #ffffff !important;
    font-size: 27px;
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.account-name-box p {
    color: rgba(255,255,255,.74) !important;
    margin-bottom: 0;
    line-height: 1.8;
}

.account-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.account-detail-item {
    position: relative;
    overflow: hidden;
    min-height: 130px;
    border-radius: 5px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    padding: 24px;
    transition: all .35s ease;
}

.account-detail-item::after {
    content: "";
    position: absolute;
    width: 44px;
    height: 3px;
    left: 24px;
    bottom: 0;
    background: #ca710f;
    border-radius: 5px;
    transition: all .35s ease;
}

.account-detail-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,.12);
    border-color: rgba(202, 113, 15, .55);
}

.account-detail-item:hover::after {
    width: 72px;
}

.account-detail-item h6 {
    color: #ffffff !important;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .account-bank-body {
        grid-template-columns: 1fr;
    }

    .account-bank-header {
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .account-bank-header {
        padding: 34px 24px 24px;
        flex-direction: column;
    }

    .account-bank-body {
        padding: 24px;
    }

    .account-detail-grid {
        grid-template-columns: 1fr;
    }

    .account-name-box,
    .account-detail-item {
        padding: 22px;
    }
}



/* =====================================================
   FIX: ONLY SECTION HEADINGS ORANGE
   Normal card h5 headings back to normal
===================================================== */

/* Reset all normal h5 headings */
h5,
.h5,
.footer h5,
.why-box h5,
.process-box h5,
.stat-premium-card h5,
.industry-premium-box h5,
.cert-card-premium h5,
.premium-product-card h5,
.premium-service-card h5,
.account-bank-section h5,
.account-details-section h5 {
    color: inherit !important;
}

/* Only section headings should be orange */
.section-title,
h5.section-title,
.text-primary.section-title,
.ff-secondary.section-title {
    color: #ca710f !important;
}

/* Section heading lines orange */
.section-title::before,
.section-title::after,
h5.section-title::before,
h5.section-title::after {
    background: #ca710f !important;
}

/* Section headings inside dark green sections */
.stats-premium .section-title,
#services .section-title,
.working-process-section .section-title,
.industries-premium .section-title,
.cert-premium .section-title,
.premium-cta-section .section-title,
.account-bank-section .section-title,
.account-details-section .section-title,
.footer .section-title {
    color: #ca710f !important;
}

/* Card headings stay according to section */
.premium-product-card h5,
.industry-premium-box h5,
.cert-card-premium h5 {
    color: #102417 !important;
}

.stats-premium .stat-premium-card h5,
.working-process-section .process-box h5,
.premium-section[style*="background"] .why-box h5 {
    color: #ffffff !important;
}

/* Hover color for card headings */
.premium-product-card:hover h5,
.industry-premium-box:hover h5,
.cert-card-premium:hover h5,
.premium-service-card:hover h4 {
    color: #198128 !important;
}

.section-title2{
    font-size: 20px !important;
}

/* =====================================================
   PREMIUM MINIMAL HEADER DROPDOWN
===================================================== */



.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ca710f !important;
}

/* Dropdown arrow */
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    margin-left: 8px;
    vertical-align: middle;
    transition: all .3s ease;
}

.navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown box */
.navbar .dropdown-menu {
    min-width: 285px;
    padding: 12px;
    margin-top: 0 !important;
    border: 1px solid rgba(202, 113, 15, .16);
    border-radius: 5px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 60px rgba(5, 43, 19, .18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(14px);
    opacity: 0;
    visibility: hidden;
    display: block;
    transition: all .28s ease;
    overflow: hidden;
}

/* Small premium top line */
.navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    background: linear-gradient(90deg, #198128, #ca710f);
    border-radius: 0 0 5px 5px;
}

/* Show dropdown on hover desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Dropdown items */
.navbar .dropdown-item {
    position: relative;
    color: #102417 !important;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 14px 12px 42px;
    border-radius: 5px;
    line-height: 1.35;
    white-space: normal;
    transition: all .28s ease;
}

/* Small icon dot before item */
.navbar .dropdown-item::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: rgba(25, 129, 40, .16);
    border: 2px solid #198128;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all .28s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus,
.navbar .dropdown-item.active {
    color: #ca710f !important;
    background: rgba(25, 129, 40, .07);
    padding-left: 48px;
    margin: 5px 0;
}

.navbar .dropdown-item:hover::before,
.navbar .dropdown-item.active::before {
    background: #ca710f;
    border-color: #ca710f;
}

/* Quote button minimal premium */
.navbar .btn-primary {
    border-radius: 5px !important;
    font-weight: 800;
    background: #ca710f !important;
    border-color: #ca710f !important;
    box-shadow: 0 10px 26px rgba(202, 113, 15, .24);
    transition: all .3s ease;
}

.navbar .btn-primary:hover {
    background: #198128 !important;
    border-color: #198128 !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(25, 129, 40, .28);
}


/* =====================================================
   MOBILE DROPDOWN
===================================================== */

@media (max-width: 991px) {
    .navbar {
        padding: 10px 15px !important;
    }

    .navbar-brand img {
        height: 82px !important;
        margin-left: 0 !important;
    }

    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 5px;
        padding: 9px 12px;
        color: #ffffff;
        box-shadow: none !important;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        border-radius: 5px;
        background: rgba(5, 43, 19, .98);
        border: 1px solid rgba(255, 255, 255, .08);
        box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
        max-height: 78vh;
        overflow-y: auto;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 12px 12px !important;
        font-size: 15px;
        border-radius: 5px;
    }

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        background: rgba(202, 113, 15, .12);
    }

    .navbar .dropdown-menu {
        position: static !important;
        min-width: 100%;
        padding: 8px;
        margin: 6px 0 10px !important;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .08);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .navbar .dropdown-menu.show {
        display: block;
    }

    .navbar .dropdown-menu::before {
        left: 8px;
        right: 8px;
    }

    .navbar .dropdown-item {
        color: rgba(255, 255, 255, .88) !important;
        padding: 11px 12px 11px 38px;
        font-size: 14px;
    }

    .navbar .dropdown-item::before {
        left: 14px;
        border-color: #ca710f;
        background: rgba(202, 113, 15, .18);
    }

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus,
    .navbar .dropdown-item.active {
        color: #ffffff !important;
        background: rgba(202, 113, 15, .18);
        padding-left: 42px;
    }
}

.gs-hero-title {
    letter-spacing: 0.01em !important;
    line-height: 1.05 !important;
}
@media (max-width: 575px) {
    .gs-hero-title {
        letter-spacing: -0.035em !important;
        line-height: 1.08 !important;
    }
}

.contact-premium-hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 145px;
    padding-bottom: 90px;
    background:
        linear-gradient(90deg, rgba(5,43,19,.72) 0%, rgba(5,43,19,.48) 45%, rgba(5,43,19,.12) 100%),
        url("../im") center center / cover no-repeat;
}