/* ============================================
   KABADI MAN - Premium Eco-Modern Design System
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #65B741;
    --primary-dark: #4e8c2f;
    --primary-light: #8bd468;
    --primary-glow: rgba(101, 183, 65, 0.35);
    --accent-gold: #F6B100;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --gray-900: #1a202c;
    --gray-700: #2d3748;
    --gray-600: #4a5568;
    --gray-500: #718096;
    --gray-300: #cbd5e0;
    --gray-100: #edf2f7;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.16);
    --shadow-green: 0 8px 30px rgba(101, 183, 65, 0.25);
    --shadow-green-lg: 0 16px 45px rgba(101, 183, 65, 0.35);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Poppins', sans-serif;
}

/* ---------- Reset & Base ---------- */
* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--gray-600);
    text-transform: initial;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    height: 100%;
}

a,
a:hover,
a:active,
a:focus {
    display: inline-block;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 16px;
    padding: 0;
    font-weight: 500;
    text-transform: capitalize;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--gray-900);
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.3;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 0;
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.8;
    text-transform: initial;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
}

ul {
    padding: 0;
    margin: 0 auto;
    list-style: none;
}

ul li {
    list-style: none;
}

select,
input,
textarea,
button {
    box-shadow: none;
    outline: 0 !important;
}

button {
    background: transparent;
    border: 0;
    font-size: 14px;
    font-family: var(--font);
    cursor: pointer;
}

[placeholder]:focus::-webkit-input-placeholder {
    transition: opacity 0.3s 0.3s ease;
    opacity: 0;
}

/* ---------- Section Header ---------- */
.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--gray-900);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.section-header h2 span {
    text-transform: lowercase;
}

.section-header p {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 10px auto 0;
}

.fix {
    position: relative;
    clear: both;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header-top {
    border-bottom: 1px solid var(--gray-100);
}

.header-top ul li {
    display: inline-block;
}

.header-top-left li,
.header-top-right li {
    display: inline-block;
}

.select-opt,
.header-top-contact {
    padding: 10px 18px;
    border-right: 1px solid var(--gray-100);
}

.header-top-contact {
    border-right: 0;
    border-left: 1px solid var(--gray-100);
    font-size: 12px;
}

.select-opt select {
    border: none;
    cursor: pointer;
    color: #a7b0ba;
    font-size: 12px;
    font-weight: 300;
}

.select-opt option {
    color: #a7b0ba;
    text-transform: uppercase;
}

.select-opt a span.lnr-magnifier:before {
    font-size: 12px;
    color: #373939;
}

.header-top-right ul li a {
    color: #a7b0ba;
    font-size: 12px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .header-top ul li {
        display: block;
        text-align: center;
    }

    .select-opt,
    .header-top-contact {
        display: block;
        padding: 8px 10px;
        font-size: 10px;
    }

    .select-opt select {
        font-size: 10px;
    }

    .header-top-contact {
        border-left: 0;
        border-right: 0;
    }

    .header-top-right ul li a {
        font-size: 10px;
    }
}

@media (max-width: 430px) {
    .header-top ul li {
        font-size: 8px;
    }

    .select-opt,
    .header-top-contact {
        padding: 6px 8px;
        font-size: 8px;
    }

    .select-opt select {
        font-size: 8px;
    }

    .header-top-right ul li a {
        font-size: 8px;
    }
}

/* ---------- Logo ---------- */
.logo {
    float: left;
    padding: 8px 0;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition);
    border-radius: 6px;
}

.logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991px) {
    .logo-img {
        height: 45px;
    }
}

/* ---------- Navbar ---------- */
nav.navbar.bootsnav {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: transparent;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    padding: 5px 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.wrap-sticky nav.navbar.bootsnav.sticked {
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.navbar-header a.navbar-brand,
.navbar-header a.navbar-brand:hover,
.navbar-header a.navbar-brand:focus {
    display: inline-block;
    color: var(--dark);
    font-size: 26px;
    font-weight: 800;
    padding: 10px 0px;
    text-transform: capitalize;
}

.navbar-header a.navbar-brand span {
    display: inline-block;
    color: var(--primary);
    text-transform: capitalize;
}

.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand,
.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:hover,
.wrap-sticky nav.navbar.bootsnav.sticked .navbar-header a.navbar-brand:focus {
    padding: 10px 0px;
}

nav.navbar.bootsnav ul.nav>li>a {
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    padding: 20px 9px;
    position: relative;
}

nav.navbar.bootsnav ul.nav>li>a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

nav.navbar.bootsnav ul.nav>li>a:hover::after,
nav.navbar.bootsnav ul.nav>li.active>a::after {
    transform: translateX(-50%) scaleX(1);
}

nav.navbar.bootsnav ul.nav>li>a:hover,
nav.navbar.bootsnav ul.nav>li>a:focus {
    color: var(--primary);
}

nav.navbar.bootsnav ul.nav>li.active>a {
    color: var(--primary);
}

nav.navbar.bootsnav ul.nav>li.dropdown>a.dropdown-toggle:after {
    content: "";
}

nav.navbar.bootsnav ul.nav>li.dropdown span {
    font-size: 8px;
    margin-left: 15px;
}

.wrap-sticky nav.navbar.bootsnav.sticked ul.nav>li>a {
    padding: 20px 9px;
}

/* Menu scroll design */
.menu-ui-design {
    overflow-y: scroll;
    height: 350px;
}

.menu-ui-design::-webkit-scrollbar {
    width: 4px;
}

.menu-ui-design::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 4px;
}

.menu-ui-design::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Navbar toggle */
nav.navbar.bootsnav .navbar-toggle {
    position: relative;
    background-color: transparent;
    border: 2px solid var(--primary);
    padding: 10px;
    top: 0;
    width: 55px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

nav.navbar.bootsnav .navbar-toggle:hover {
    background: var(--primary);
}

nav.navbar.bootsnav .navbar-toggle:hover i {
    color: var(--white);
}

nav.navbar.bootsnav .navbar-toggle i {
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}


/* ============================================
   HERO SECTION
   ============================================ */
.welcome-hero {
    position: relative;
    background: url(/static/assets/images/welcome-hero/banner.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    min-height: 100vh;
    z-index: 1;
    display: flex;
    align-items: center;
}

.welcome-hero:before {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(101, 183, 65, 0.15) 100%);
    z-index: -1;
}

.welcome-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-direction: row;
    padding: 0 15px;
}

.welcome-hero-txt {
    text-align: left;
    width: 55%;
}

.welcome-hero-txt h2 {
    font-size: 54px;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.welcome-hero-txt h2 br+br {
    display: none;
}

.welcome-hero-txt p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Hero Form */
.welcome-hero-form-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 42%;
}

.welcome-hero-form-container {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    padding: 14px 16px;

    border-radius: var(--radius-lg);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 4px;

    width: 310px;
    /* 🔽 reduced from 420px for compact look */

    position: relative;
    max-width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

    height: auto;
}

.form-description {
    font-size: 20px;
    color: var(--white);
    text-align: center;
    width: 100%;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.welcome-hero-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    margin-bottom: 15px;
}

.form-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.welcome-hero-form input {
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-md);
    padding: 0 20px;
    font-size: 16px;
    color: #e8e0e0 !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: var(--transition);
    width: 100%;
    font-family: var(--font);
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: inset 0 0 0 1000px rgba(255, 255, 255, 0.15);
}

/* Override browser autofill white background */
.welcome-hero-form input:-webkit-autofill,
.welcome-hero-form input:-webkit-autofill:hover,
.welcome-hero-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(50, 80, 60, 0.85) inset !important;
    box-shadow: 0 0 0 1000px rgba(50, 80, 60, 0.85) inset !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.welcome-hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.welcome-hero-form input:focus {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 0 0 4px rgba(101, 183, 65, 0.25), inset 0 0 0 1000px rgba(255, 255, 255, 0.22);
}

.welcome-hero-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    width: 100%;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-green);
    position: relative;
    overflow: hidden;
}

.welcome-hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.welcome-hero-btn:hover::before {
    left: 100%;
}

.welcome-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green-lg);
}

.welcome-hero-btn svg {
    width: 18px;
    height: auto;
    margin-left: 10px;
}

.hero-description {
    display: block;
}

.hero-description-mobile {
    display: none;
}

/* Hero responsive */
@media (max-width: 991px) {
    .welcome-hero {
        min-height: auto;
        height: auto;
        padding: 120px 0 60px;
    }

    .welcome-hero-content {
        flex-direction: column;
        justify-content: center;
    }

    .welcome-hero-txt {
        width: 100%;
        text-align: center;
        padding-bottom: 40px;
    }

    .welcome-hero-txt h2 {
        font-size: 40px;
    }

    .welcome-hero-form-wrapper {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 430px) {
    .welcome-hero {
        padding: 100px 0 40px;
    }

    .welcome-hero-content {
        flex-direction: column;
        padding: 0 10px;
    }

    .welcome-hero-txt {
        text-align: center;
        width: 100%;
    }

    .welcome-hero-txt h2 {
        font-size: 28px;
    }

    .welcome-hero-txt p {
        font-size: 16px;
        margin-top: 15px;
    }

    .welcome-hero-form-wrapper {
        width: 100%;
        margin-top: 20px;
        justify-content: center;
    }

    .welcome-hero-form-container {
        padding: 25px 20px;
        width: 100%;
        max-width: 100%;
    }

    .form-description {
        font-size: 18px;
        margin-top: 0;
    }

    .form-group {
        gap: 5px;
    }

    .form-label {
        font-size: 13px;
    }

    .welcome-hero-form input {
        height: 50px;
    }

    .welcome-hero-btn {
        height: 50px;
        margin-top: 10px;
    }

    .hero-description {
        display: none;
    }

    .hero-description-mobile {
        display: block;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        margin-top: 20px;
        text-align: center;
    }
}


/* ============================================
   LIST TOPICS (Process Steps)
   ============================================ */
.list-topics-content {
    position: relative;
    top: -98px;
    z-index: 1;
    text-align: center;
}

.list-topics-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.list-topics-content ul li {
    display: inline-block;
}

.single-list-topics-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 260px;
    height: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.single-list-topics-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.single-list-topics-content:hover::before {
    transform: scaleX(1);
}

.single-list-topics-content h2 a {
    margin: 20px 0 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
}

.single-list-topics-icon img {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: var(--transition);
}

.single-list-topics-content:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: var(--shadow-green-lg);
    transform: translateY(-12px);
}

.single-list-topics-content:hover h2 a {
    color: var(--white);
}

.single-list-topics-content:hover .single-list-topics-icon img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .single-list-topics-content {
        width: 220px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .single-list-topics-content {
        width: 150px;
        height: 160px;
    }

    .list-topics-content ul {
        gap: 12px;
    }

    .single-list-topics-content h2 a {
        font-size: 13px;
    }

    .single-list-topics-icon img {
        width: 55px;
    }
}

/* Card container (generic) */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.card {
    flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
    background-color: var(--white);
    padding: 15px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 430px) {
    .card-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }

    .card {
        flex: 1 1 auto;
    }
}


/* ============================================
   WHY US (Works Section)
   ============================================ */
.works {
    padding: 0 0 100px;
    background-color: var(--white);
}

.works-content {
    margin-top: 60px;
}

.single-how-works {
    text-align: center;
    padding: 45px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    transition: var(--transition);
    background: var(--white);
    border: 1px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.single-how-works::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.single-how-works:hover::after {
    transform: scaleX(1);
}

.single-how-works-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.single-how-works-icon img {
    max-width: 45px;
    transition: var(--transition);
}

.single-how-works h2 a {
    font-size: 20px;
    margin: 0 0 15px;
    display: block;
    color: var(--gray-700);
    font-weight: 700;
    transition: var(--transition);
}

.single-how-works h2 a span {
    text-transform: lowercase;
}

.single-how-works p {
    margin-bottom: 10px;
    text-transform: initial;
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.7;
}

.single-how-works:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.single-how-works:hover .single-how-works-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: var(--shadow-green);
}

.single-how-works:hover .single-how-works-icon img {
    filter: brightness(0) invert(1);
    transform: scale(1.15);
}

.single-how-works:hover h2 a {
    color: var(--primary);
}

@media (max-width: 430px) {
    .works-content {
        display: flex;
        flex-wrap: wrap;
        margin-right: -8px;
        margin-left: -8px;
    }

    .col-md-4,
    .col-sm-6 {
        padding-right: 8px;
        padding-left: 8px;
    }

    .single-how-works {
        padding: 25px 15px;
        margin-bottom: 16px;
    }

    .single-how-works-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .single-how-works-icon img {
        max-width: 30px;
    }

    .single-how-works h2 a {
        font-size: 15px;
        margin: 0 0 10px;
    }

    .single-how-works p {
        font-size: 12px;
        line-height: 1.5;
    }
}


/* ============================================
   ITEMS WE ACCEPT (Explore Section)
   ============================================ */
.explore {
    padding: 100px 0 90px;
    background: linear-gradient(180deg, var(--gray-50) 0%, #f0fdf4 100%);
}

.explore-content {
    margin-top: 60px;
}

.single-explore-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
    transition: var(--transition);
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.single-explore-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(101, 183, 65, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.single-explore-item:hover::before {
    opacity: 1;
}

.single-explore-img {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 100%;
    margin-bottom: 15px;
}

.single-explore-img img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    transition: var(--transition);
}

.single-explore-txt {
    padding: 10px 0 0;
    text-align: center;
    width: 100%;
}

.single-explore-txt h2 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.single-explore-txt h2 a {
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
}

.single-explore-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: rgba(101, 183, 65, 0.2);
}

.single-explore-item:hover .single-explore-img img {
    transform: scale(1.15) rotate(3deg);
}

.single-explore-item:hover .single-explore-txt h2 a {
    color: var(--primary);
}

@media (max-width: 430px) {
    .explore {
        padding: 60px 0 50px;
    }

    .explore-content {
        margin-top: 30px;
    }

    .col-md-4.col-sm-6 {
        width: 50%;
        float: left;
        padding: 5px;
    }

    .single-explore-item {
        margin-bottom: 10px;
        padding: 15px 10px;
        border-radius: var(--radius-md);
    }

    .single-explore-img {
        height: 80px;
    }

    .single-explore-img img {
        max-height: 60px;
    }

    .single-explore-txt h2 {
        font-size: 13px;
    }
}


/* ============================================
   TESTIMONIALS (Reviews Marquee Section)
   ============================================ */
.reviews-section {
    padding: 100px 0;
    background: #f9fbf9;
    overflow: hidden;
}

.reviews-section .section-header {
    margin-bottom: 50px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0; /* Add space for shadow when lifting */
    display: flex;
}

/* Pause animation completely on hover */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    /* Move at a slow, readable linear pace. Adjust time for speed */
    animation: scroll-marquee 40s linear infinite;
    gap: 30px; 
    padding-left: 30px; /* Balance the gap natively */
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    /* Move exactly half of the track's width to create seamless loop with duplicated elements */
    100% { transform: translateX(calc(-50% - 15px)); }
}

.testimonial-card {
    width: 380px;
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
    position: relative;
    cursor: default;
}

/* Slight lift and subtle green glow on hover */
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(101, 183, 65, 0.15);
    border-color: rgba(101, 183, 65, 0.4);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(101, 183, 65, 0.2);
}

.testi-user-info {
    display: flex;
    flex-direction: column;
}

.testi-user-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-700);
    margin: 0 0 2px 0;
    text-transform: capitalize;
}

.testi-user-info span {
    font-size: 13px;
    color: var(--gray-500);
}

.testi-badge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 20px;
    opacity: 0.8;
}

.testi-rating {
    display: flex;
    gap: 4px;
}

.testi-rating i {
    color: #ffc107;
    font-size: 14px;
}

.testi-rating i.empty {
    color: #e4e5e9;
}

.testi-body {
    position: relative;
    z-index: 1;
}

.testi-body::before {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: rgba(101, 183, 65, 0.1);
    line-height: 1;
    z-index: -1;
}

.testimonial-body p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
    font-style: italic;
    margin: 0;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testi-body p {
    line-clamp: unset;
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 300px;
        padding: 20px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.subscription {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, var(--gray-50) 100%);
}

.heading-section {
    text-align: center;
    margin-bottom: 60px;
}

.main-heading {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: 0.5px;
}

.sub-heading {
    font-size: 18px;
    color: var(--gray-500);
}

.contact-section {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 60px;
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    flex: 1;
    background: linear-gradient(135deg, var(--primary) 0%, #3a7d1e 100%);
    padding: 50px 40px;
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.contact-info::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.contact-info .heading {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 700;
}

.contact-info p {
    margin: 18px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.contact-info i {
    margin-right: 15px;
    color: var(--white);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* Contact form */
form {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px 40px;
}

input[type="text"],
input[type="email"],
textarea,
select {
    padding: 16px 18px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 15px;
    width: 100%;
    background-color: var(--gray-50);
    color: var(--gray-700);
    font-family: var(--font);
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(101, 183, 65, 0.1);
}

textarea {
    resize: vertical;
    height: 140px;
}

.contact-section button,
.subscription button {
    padding: 16px 40px;
    border: none;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: auto;
    align-self: flex-start;
    box-shadow: var(--shadow-green);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.contact-section button:hover,
.subscription button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-green-lg);
}

@media (max-width: 768px) {
    .subscription {
        padding: 60px 0;
    }

    .contact-section {
        flex-direction: column;
        border-radius: var(--radius-lg);
    }

    .contact-info {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding: 35px 25px;
    }

    form {
        padding: 30px 25px;
    }

    .main-heading {
        font-size: 28px;
    }
}


/* ============================================
   SLICK SLIDER
   ============================================ */
.slick-initialized .slick-slide {
    display: block;
    padding: 40px 0;
}

.slick-slide.slick-cloned {
    outline: 0 !important;
}

.slick-slide {
    margin: 0px 10px;
    transition: all ease-in-out .3s;
    opacity: .5;
}

.slick-active {
    opacity: .5;
}

.slick-current {
    opacity: 1;
}


/* ============================================
   STATISTICS / COUNTER
   ============================================ */
.statistics {
    position: relative;
    display: flex;
    align-items: center;
    background: url(../../assets/images/counter/counter-banner.jpg) no-repeat fixed;
    background-position: center;
    background-size: cover;
    padding: 120px 0;
}

.statistics:before {
    position: absolute;
    content: '';
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(101, 183, 65, 0.3) 100%);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.single-statistics-box,
.single-ststistics-box {
    text-align: center;
    margin-bottom: 30px;
}

.statistics-content {
    display: flex;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
    font-weight: 800;
}

.statistics-content span {
    margin-left: 5px;
}

.single-ststistics-box h3,
.single-statistics-box h3 {
    color: var(--white);
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 500;
}

.statistics-name {
    color: white;
    font-size: 22px;
    margin-left: 3px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}


/* ============================================
   BLOG
   ============================================ */
.blog {
    padding: 120px 0 90px;
}

.blog-content {
    margin-top: 80px;
}

.single-blog-item {
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.single-blog-item-txt {
    padding: 25px 28px 27px;
}

.single-blog-item-txt h2 a {
    text-transform: initial;
    line-height: 1.8;
}

.single-blog-item-txt h4 {
    font-size: 14px;
    color: #8f949d;
    font-weight: 400;
    margin: 12px 0 20px;
}

.single-blog-item-txt h4 a {
    font-size: 14px;
    padding-right: 14px;
    border-right: 1px solid #dde0e4;
    margin-right: 15px;
    text-transform: uppercase;
}

.single-blog-item:hover h2 a {
    color: var(--primary);
}

.single-blog-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.footer-main {
    padding: 60px 0 40px;
    border-top: 4px solid var(--primary);
}

.footer-col {
    margin-bottom: 30px;
}

/* Brand */
.footer-brand {
    padding-right: 30px;
}

.footer-logo-link {
    font-size: 28px;
    font-weight: 800;
    color: var(--white) !important;
    text-decoration: none !important;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo-link span {
    color: var(--primary);
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

/* Headings */
.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 6px;
}

/* Contact list */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footer-contact-list li {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list li i {
    color: var(--primary);
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

/* Social icons */
.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(101, 183, 65, 0.4);
}

/* Bottom bar */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.15);
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

.footer-bottom p a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom p a:hover {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-col {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li a:hover {
        padding-left: 0;
    }

    .footer-social-icons {
        justify-content: center;
    }
}

.hm-footer-copyright {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--dark-2);
}

.hm-footer-copyright p,
.hm-footer-copyright p a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

.footer-social {
    text-align: right;
}

.footer-social .fa-phone:before {
    position: relative;
    top: 2px;
}

.footer-social a,
.footer-social span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-left: 15px;
    transition: var(--transition);
}

.footer-social a {
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    border-radius: 50%;
}

.footer-social span {
    margin-right: 15px;
    margin-left: 0;
    color: rgba(255, 255, 255, 0.45);
}

.footer-social span:hover {
    color: var(--primary);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}


/* ============================================
   SCROLL TOP
   ============================================ */
#scroll-Top .return-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 45px;
    line-height: 45px;
    height: 45px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 99;
    box-shadow: var(--shadow-green);
}

#scroll-Top .return-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green-lg);
}

#scroll-Top .return-to-top i {
    position: relative;
    animation-name: scrollBounce;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration: 1s;
}

@keyframes scrollBounce {
    0% {
        bottom: 0px;
    }

    100% {
        bottom: 7px;
    }
}

#scroll_top1 .return-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: block;
    width: 45px;
    line-height: 45px;
    height: 45px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 99;
    box-shadow: var(--shadow-green);
}

#scroll_top1 .return-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-green-lg);
}


/* ============================================
   LOCATIONS SECTION
   ============================================ */
.locations-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.locations-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    /* Flexbox covers centering perfectly */
}

.location-box {
    background: var(--white);
    padding: 35px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    width: 300px;
    max-width: 100%;
}

.location-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.location-box:hover::before {
    transform: scaleX(1);
}

.location-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(101, 183, 65, 0.2);
}

.location-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--gray-700);
}


/* ============================================
   WATCH US IN ACTION SECTION (Premium Infinite Gallery)
   ============================================ */
.watch-us {
    padding: 100px 0;
    background: #f9fbfc; /* Soft white to match other layouts */
    text-align: center;
    overflow: hidden;
}

.shorts-gallery-container {
    margin-top: 50px;
    padding: 0;
}

.premium-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 9/16;
    margin: 30px 10px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
    filter: blur(1.5px) grayscale(5%) brightness(0.85);
    transform: scale(0.88);
}

.premium-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.glass-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 40%, transparent 100%);
    opacity: 0.7;
    transition: opacity 0.6s ease;
}

/* Floating label */
.premium-tag {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: bottom 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    opacity: 0;
}

/* Play button pulse */
.pulse-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    padding-left: 4px;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Active center state */
.slick-center .premium-card {
    transform: scale(1.1);
    filter: blur(0px) grayscale(0%) brightness(1);
    z-index: 5;
    box-shadow: 0 25px 50px rgba(101, 183, 65, 0.3);
}

.slick-center .premium-card .premium-tag {
    bottom: 25px;
    opacity: 1;
}

.slick-center .premium-card .pulse-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Hovering active center state */
.slick-center .premium-card:hover {
    box-shadow: 0 40px 70px rgba(101, 183, 65, 0.5); /* subtle green glow */
}

.slick-center .premium-card:hover .premium-cover {
    transform: scale(1.08); /* slight zoom in on cover */
}

.slick-center .premium-card:hover .glass-overlay {
    opacity: 0.6; /* lighten overlay slightly */
}

.slick-center .premium-card:hover .pulse-play-btn {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(101, 183, 65, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Slick Carousel Controls for Watch Us */
.shorts-gallery-container .slick-prev,
.shorts-gallery-container .slick-next {
    z-index: 10;
    width: 40px;
    height: 40px;
}
.shorts-gallery-container .slick-prev:before,
.shorts-gallery-container .slick-next:before {
    color: var(--primary);
    font-size: 40px;
}


/* ============================================
   MESSAGES (Flash Notifications)
   ============================================ */
.messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    min-width: 300px;
    border-left: 4px solid var(--primary);
}

.messages li {
    margin: 5px 0;
    list-style-type: none;
    font-weight: 500;
}

.messages .success {
    color: #38a169;
}

.messages .error {
    color: #e53e3e;
}

.messages.hide {
    opacity: 0;
    pointer-events: none;
}

/*==================================
  PRICING SECTION 
====================================*/
.pricing-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.pricing-tab {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #4CAF50;
    background: #fff;
    border: 2px solid #4CAF50;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-tab:hover, .pricing-tab.active {
    background: #4CAF50;
    color: #fff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.pricing-table-wrapper {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th, .pricing-table td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid #f2f2f2;
}

.pricing-table th {
    background: rgba(76, 175, 80, 0.05);
    color: #333;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table tbody tr {
    transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
    background: #fafafa;
}

.pricing-table td.item-name {
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-table td.item-name img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.pricing-table td.item-price {
    font-weight: 700;
    color: #4CAF50;
    font-size: 16px;
}

/*==================================
  CAREERS PAGE 
====================================*/
.career-hero {
    background: linear-gradient(135deg, rgba(76,175,80,0.1) 0%, rgba(34,197,94,0.05) 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.career-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.career-hero p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.career-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.career-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    text-align: center;
}

.career-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.career-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
}

.career-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-career {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    background: #4CAF50;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-career:hover {
    background: #388e3c;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
    color: #fff;
}
