@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --color-dark-green: #113423;
    /* Footer, dark buttons, dark text */
    --color-lime-green: #72BF44;
    --color-lime-red: #ED1C24;
    /* Accents, main buttons, active states */
    --color-light-bg: #f5f8f3;
    /* Section backgrounds */
    --color-white: #ffffff;
    --color-text: #5d6e64;
    /* Paragraph text */
    --color-text-dark: #1f2924;
    /* Headings */

    --font-heading: 'Mona Sans', 'Inter', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    /* overflow-x: hidden; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.text-lime {
    color: var(--color-lime-green);
}

.text-dark {
    color: var(--color-dark-green);
}

.text-white {
    color: var(--color-white);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-lime {
    background-color: var(--color-lime-green);
    color: var(--color-white);
}

.btn-lime:hover {
    background-color: #6da32b;
}

.btn-dark {
    background-color: var(--color-dark-green);
    color: var(--color-white);
}

.btn-dark:hover {
    background-color: #0c2418;
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-dark-green);
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-white span {
    background: var(--color-lime-green);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-white span i {
    color: white;
    border-radius: 50%;
    font-size: 10px;
}

.btn-white div {
    background: var(--color-lime-green);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-white div i {
    color: white;
    border-radius: 50%;
    font-size: 10px;
}

/* Floating Icon Button */
.icon-btn-float {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-lime-green);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Badge Label */
.badge-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-lime-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.badge-label i {
    font-size: 10px;
    color: var(--color-lime-red);
}

/* ================= HEADER ================= */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    /* overflow-y: hidden; */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    padding: 1rem;
    border-radius: 15px;
    
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.logo i {
    color: var(--color-lime-green);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #000;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--color-lime-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-white);
}

.search-icon {
    cursor: pointer;
    font-size: 1.1rem;
}

.contact-pill {
    display: flex;
    align-items: center;
    border-radius: 50px;
    gap: 15px;
}

.contact-pill-icon {
    width: 36px;
    height: 36px;
    background: var(--color-lime-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.contact-pill-text {
    display: flex;
    flex-direction: column;
}

.contact-pill-text span:first-child {
    font-size: 0.7rem;
    color: rgba(34, 34, 34, 0.7);
}

.contact-pill-text span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    min-height: 110vh;
    background-image: url('https://images.unsplash.com/photo-1532996122724-e3c354a0b15b?q=80&w=2070&auto=format&fit=crop');
    /* Replace with actual image later */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-top: 100px;
    padding-bottom: 8rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(0 0 0 / 20%) 0%, rgb(0 0 0 / 85%) 70%);
}

.hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
}
.hero .flex-box{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    max-width: 940px;
}

.hero h1 {
    color: var(--color-white);
    font-size: 2.8rem;
    font-weight:700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-bottom-info {
    display: flex;
    align-items: start;
    gap: 20px;
}

.hero-bottom-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: rotateCircle 10s linear infinite reverse;
    margin-bottom: 1rem;
}
@keyframes rotateCircle {
  0% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(90deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(270deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hero-bottom-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    max-width: 600px;
    margin-bottom: 1rem;
}

.hero-content .btn {
    margin-top: 1rem;
}

/* Glassmorphism Card in Hero */
.hero-glass-card {
    /* position: absolute;
    right: 20px;
    bottom: 0px; */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    padding: 20px;
    width: 350px;
    display: grid;
    align-items: center;
    gap: 15px;
}

.hero-glass-card .flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-glass-card img {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}

.hero-glass-card h3 {
    color: var(--color-white);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    padding-bottom: 6px;
}

.hero-glass-card p {
    color: var(--color-white);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
}
.hero-glass-card .icon-btn-float{
    background: transparent;
    width: auto;
    height: auto;
}
.hero-glass-card .icon-btn-float  a{
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

/* ================= FEATURES CARDS (OVERLAPPING) ================= */
.features-about-wrapper {
    padding-top: 80px;
    position: relative;
    z-index: 20;
    background-color: #ffffff;
    background-image: radial-gradient(circle at top left, rgba(237, 28, 36, 0.1) 0%, transparent 50%), radial-gradient(circle at bottom right, rgba(114, 191, 68, 0.15) 0%, transparent 60%), repeating-linear-gradient(to right, transparent, transparent 39px, rgba(0, 0, 0, 0.04) 39px, rgba(0, 0, 0, 0.04) 40px), repeating-linear-gradient(to bottom, transparent, transparent 39px, rgba(0, 0, 0, 0.04) 39px, rgba(0, 0, 0, 0.04) 40px);
}

.features-about-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(255 255 255 / 32%) 0%, rgba(255, 255, 255, 0.0) 90%, rgb(255 255 255 / 68%) 100%);
    /* opacity: 0.3; */
}

.features-overlap {
    padding-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 350px;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.feature-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 52, 35, 0.9) 0%, rgba(17, 52, 35, 0.1) 100%);
    z-index: 2;
}

.feature-card-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.feature-card h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-card .icon-btn-float {
    position: absolute;
    right: -10px;
    bottom: -10px;
    transform: translate(-50%, -50%);
}

/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 80px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    display: flex;
    gap: 20px;
}

.img-tall {
    width: 55%;
    border-radius: var(--border-radius-xl);
    object-fit: cover;
    height: 500px;
}

.img-stack {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.img-stack img {
    border-radius: var(--border-radius-xl);
    object-fit: cover;
    height: 240px;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.about-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 14px;
    margin-bottom: 10px;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 2rem;
}

.video-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--color-dark-green);
}

.video-btn .play-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-dark-green);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= WHY CHOOSE US ================= */
.why-choose-us {
    padding: 40px 0;
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.wcu-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.wcu-img {
    border-radius: var(--border-radius-xl);
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.wcu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wcu-item {
    border-radius: var(--border-radius-lg);
    background-color: var(--color-light-bg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.wcu-item.active {
    background-color: var(--color-dark-green);
    border-color: var(--color-dark-green);
}

.wcu-item-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
}

.wcu-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-lime-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.wcu-item.active .wcu-item-icon {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.wcu-item-title {
    flex: 1;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-dark-green);
}

.wcu-item.active .wcu-item-title {
    color: var(--color-white);
}

.wcu-item-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-green);
    font-size: 0.85rem;
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.wcu-item.active .wcu-item-arrow {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    transform: rotate(180deg);
}

.wcu-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
}

.wcu-item-body p {
    color: var(--color-text);
    font-size: 0.95rem;
    padding-bottom: 20px;
    margin: 0;
}

.wcu-item.active .wcu-item-body {
    max-height: 200px;
    padding: 0 25px;
}

.wcu-item.active .wcu-item-body p {
    color: rgba(255, 255, 255, 0.85);
}

.wcu-graphic {
    display: flex;
    justify-content: center;
}

.wcu-graphic img {
    max-width: 100%;
}

/* ================= SCRAP TYPES CAROUSEL ================= */
.scrap-types-section {
    padding: 80px 0;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.carousel-title-area h2 {
    font-size: 2.5rem;
    max-width: 500px;
}

.carousel-nav {
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid #ddd;
    color: var(--color-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
}

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

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: calc((100% - 60px) / 3);
    /* Show 3 at a time */
    flex: 0 0 calc((100% - 60px) / 3);
}

.scrap-card {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    height: 360px;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scrap-card:hover {
    transform: scale(1.02);
}

.scrap-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.scrap-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 52, 35, 0.92) 0%, rgba(114, 191, 68, 0.25) 100%);
}

.scrap-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
}

.scrap-content h3 {
    margin-bottom: 8px;
    color: var(--color-white);
    font-size: 1.3rem;
}

.scrap-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ================= PROJECTS / SERVICES ================= */
.projects-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.projects-header h2 {
    font-size: 2.5rem;
    max-width: 400px;
}

.filter-menu {
    display: flex;
    gap: 15px;
}

.filter-btn {
    padding: 8px 24px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid #ddd;
    color: var(--color-text);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    border-color: var(--color-dark-green);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    height: 400px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 52, 35, 0.9) 15%, rgba(17, 52, 35, 0) 100%);
}

.project-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 10;
}

.project-category {
    color: var(--color-lime-green);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.project-title {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 400;
}

/* ================= CTA BANNER ================= */
.cta-banner {
    background-color: var(--color-dark-green);
    border-radius: var(--border-radius-xl);
    margin: 40px auto 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.cta-content {
    padding: 40px 60px;
    z-index: 10;
}

.cta-content h2 {
    color: var(--color-white);
    font-size: 40px;
    max-width: 400px;
    margin-bottom: 10px;
}

.cta-content h3 {
    color: var(--color-white);
    font-size: 22px;
    max-width: 400px;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 16px;
    color: #ffffffb3;
    margin-bottom: 5px;
}

.cta-banner .btn {
    margin-top: 1rem;
}

.cta-image-wrapper {
    position: relative;
    width: 40%;
    height: 100%;
    min-height: 430px;
}

.cta-image-wrapper::before {
    content: '';
    position: absolute;
    left: -58px;
    top: 0;
    bottom: 0;
    width: 130px;
    background-color: var(--color-dark-green);
    transform: skewX(-15deg);
    z-index: 2;
}

.cta-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= FOOTER ================= */
footer {
    background-color: #0f2a1c;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.footer-col .logo {
    margin-bottom: 25px;
}

.footer-col .logo img {
    max-height: 100px;
    padding: 5px;
    border-radius: 4px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--color-lime-green);
}




/* .footer-watermark {
    text-align: center;
    font-size: 15vw;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.03);
    line-height: 0.8;
    margin-bottom: -2vw;
    position: relative;
    z-index: 1;
} */

.footer-bottom-bar {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    text-align: center;
}

.footer-bottom-bar p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-bar a {
    color: var(--color-lime-green);
    font-weight: 600;
}

.footer-bottom-bar a:hover {
    color: var(--color-white);
}

.footer-cnt a {
    padding-top: 0.5rem;
    display: block;
}

.footer-cnt .social-links a {
    padding-top: 0;
}

.footer-cnt h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.footer-cnt h5 {
    font-size: 0.95rem;
    margin-bottom: 15px;
    margin-top: 1.5rem;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--color-lime-green);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .wcu-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-slide {
        min-width: calc((100% - 30px) / 2);
        flex: 0 0 calc((100% - 30px) / 2);
    }

    .img-tall {
        height: 400px;
        width: 100%;
    }

    .img-stack {
        display: none;
    }

    .badge-circle {
        left: 80%;
        top: 20%;
    }

    .hero h1 {
        font-size: 4rem;
    }

   

    .cta-image-wrapper {
        width: 100%;
        height: 300px;
    }

    .cta-image-wrapper::before {
        display: none;
    }
}

@media (max-width: 768px) {

    .nav-actions {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-glass-card {
        display: none;
    }

    .features-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .carousel-slide {
        min-width: 100%;
        flex: 0 0 100%;
    }

    .carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ================= ABOUT PAGE SPECIFIC STYLES ================= */
.page-hero {
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(0, 0, 0, 0.7)),
        url('../images/h-img-7.jpeg') center/cover no-repeat;
    padding: 0 0 80px;
    display: flex;
    align-items: end;
    min-height: 450px;
}

.page-hero .badge-label {
    justify-content: center;
    margin-bottom: 18px;
}

.page-hero h1 {
    color: #fff;
    font-size: 3.2rem;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
}

/* Section spacing */
.about-sec {
    padding: 80px 0;
}

.about-sec.alt {
    background-color: var(--color-light-bg);
}

/* Two-col layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* .two-col.reverse {
    direction: rtl;
}

.two-col.reverse>* {
    direction: ltr;
} */

@media(max-width:768px) {
    .two-col {
        grid-template-columns: 1fr;
    }

    .two-col.reverse {
        direction: ltr;
    }
}

/* Img with overlay badge */
.about-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 52, 35, 0.5) 0%, transparent 60%);
}

/* Text area */
.about-text .badge-label {
    margin-bottom: 12px;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Mission box */
.mission-box {
    background: var(--color-dark-green);
    border-radius: 20px;
    padding: 40px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 160px;
    color: rgba(255, 255, 255, 0.04);
    font-family: Georgia, serif;
    line-height: 1;
}

.mission-box h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.mission-box p {
    margin-bottom: 12px;
}

/* What We Do grid */
.wwd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.wwd-card {
    background: var(--color-white);
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--color-lime-green);
    transition: transform 0.3s;
}

.wwd-card:hover {
    transform: translateY(-6px);
}

.wwd-card .icon {
    font-size: 2rem;
    color: var(--color-lime-green);
    margin-bottom: 14px;
}

.wwd-card h4 {
    margin-bottom: 10px;
    color: var(--color-dark-green);
}

.wwd-card p {
    font-size: 0.92rem;
}

/* Why Choose list (reuse from main but inline here) */
.wcu-about-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wcu-about-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.wcu-about-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-light-bg);
    color: var(--color-lime-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.wcu-about-item h4 {
    margin-bottom: 5px;
    color: var(--color-dark-green);
}

.wcu-about-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Commitment serve list */
.serve-list {
    columns: 2;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.serve-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    break-inside: avoid;
}

.serve-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-lime-green);
    flex-shrink: 0;
}

@media(max-width:500px) {
    .serve-list {
        columns: 1;
    }
}

/* CTA section */
.about-cta {
    background: var(--color-dark-green);
    border-radius: 28px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

@media(max-width:768px) {
    .about-cta {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
}

.about-cta h2 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.cta-phone {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-lime-green);
    display: flex;
    align-items: center;
    gap: 10px;
}




.inner-ser-list .headding-box{
    padding-bottom: 2rem;
}
.inner-ser-list .headding-box.about-text h2{
    margin-bottom: 1rem;
    max-width: 600px;
}
.inner-ser-list .headding-box.about-text p{
    max-width: 700px;
}
.inner-ser-list .services-grid{ 
    display:grid; 
    grid-template-columns:repeat(4,1fr); 
    gap:24px; 
}
.service-card{
    background:#fff; 
    border: 1px solid rgb(14 47 36 / 12%);
    border-radius: 18px;
    padding:30px 26px; 
    transition:transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.service-card:hover{ 
    transform:translateY(-6px); 
    box-shadow:0 20px 40px rgba(14,47,36,.12); 
    background: #0e2f24; 
}
.service-card:hover h3, 
.service-card:hover p, 
.service-card:hover 
.tag{    
    color:#fff; 
}
.service-card:hover .tag{ 
    background:rgba(255,255,255,.12); 
    border-color:transparent; 
}
.service-card:hover .service-ic{ 
    background: #8bc53f;
    color: #0e2f24;
}
.service-ic{
    width:54px; 
    height:54px; 
    border-radius:16px; 
    background: #f7f5ee; 
    color: #0e2f24;
    display:flex; 
    align-items:center; 
    justify-content:center; 
    font-size:22px; 
    margin-bottom:20px;
    transition:background .3s ease, color .3s ease;
}
.service-card h3{ 
    font-size:18px;
    margin-bottom:10px; 
}
.service-card p{ 
    font-size:14px; 
    margin-bottom:18px; 
}
.tag-row{ 
    display:flex; 
    flex-wrap:wrap; 
    gap:6px; 
}
.tag{
    font-size:11px; 
    font-weight:600; 
    padding:5px 10px; 
    border-radius:999px;
    background: #f7f5ee;
    border: 1px solid rgb(14 47 36 / 12%);
    color: #5c6a62;
}
@media(max-width:1100px){ 
    .services-grid{ 
        grid-template-columns:repeat(2,1fr); 
        } 
    }
@media(max-width:600px){
    .services-grid{ 
        grid-template-columns:1fr;
    } 
}


.ser-process{ 
    background: #0e2f24; 
    color:#fff; 
    position:relative; 
    padding: 80px 0;
}
.process-top{ 
    display:grid; 
    grid-template-columns:1fr 1fr; 
    gap:60px; align-items:center; 
    margin-bottom:50px; 
}
.process-top h2{ 
    font-size:clamp(28px,3.2vw,40px); 
    margin-bottom:16px; 
    color: #fff;
}
.process-top p{ 
    opacity:.8; 
    font-size:15px; 
    margin-bottom:12px; 
}
.process-steps{ 
    display:grid; 
    grid-template-columns:repeat(5,1fr); 
    gap:20px; 
}
.step-card{
    background:rgba(255,255,255,.06); 
    border:1px solid rgba(255,255,255,.1); 
    border-radius:16px;
    padding:26px 20px; 
    position:relative;
}
.step-num{ 
    font-size:28px; 
    font-weight:700; 
    color:#72bf44; 
    margin-bottom:14px; 
}
.step-card h4{ 
    font-size:15px; 
    margin-bottom:8px; 
    color: #fff;
}
.step-card p{ 
    font-size:12.5px; 
    opacity:.75; 
}
@media(max-width:1000px){ 
    .process-top{ 
        grid-template-columns:1fr; 
        gap:24px; 
    } 
    .process-steps{
        grid-template-columns:repeat(2,1fr); 
    } 
}
@media(max-width:560px){ 
    .process-steps{ 
        grid-template-columns:1fr; 
    } 
}





.contact-hero{
    min-height: 500px;
    padding-bottom: 150px;
}

.info-grid{ 
    display:grid; 
    grid-template-columns:repeat(4,1fr); 
    gap:24px; 
    margin-top:-96px; 
    position:relative; 
    z-index:5; 
}
.info-card{
    background:#fff; 
    border-radius:18px; 
    padding:32px 26px;
    box-shadow:0 20px 50px rgba(14,47,36,.12); 
    text-align:left;
    transition:transform .3s ease, background .3s ease;
}
.info-card:hover{ 
    transform:translateY(-6px); 
    background: #0e2f24; 
    color:#fff; 
}
.info-card:hover .info-ic{ 
    background: #8bc53f; 
    color: #0e2f24; 
}
.info-card:hover .info-muted{ 
    color:rgba(255,255,255,.7); 
}
.info-ic{
    width:52px; 
    height:52px; 
    border-radius:14px; 
    background: #f7f5ee;
    color: #0e2f24;
    display:flex; 
    align-items:center; 
    justify-content:center; 
    font-size:21px; 
    margin-bottom:18px;
    transition:background .3s ease, color .3s ease;
}
.info-card h4{ 
    font-size:16px;
    margin-bottom:8px; 
}
.info-card:hover h4, .info-card:hover p{
    color: #fff;
}
.info-card p{ 
    font-size:14px; 
    color: #16211c; 
}
.info-card .info-muted{ 
    font-size:13px; 
    color: #5c6a62; 
    margin-top:4px; 
}
@media(max-width:1100px){ 
    .info-grid{ 
        grid-template-columns:repeat(2,1fr); 
        margin-top:-60px; 
    } 
}
@media(max-width:600px){ 
    .info-grid{ 
        grid-template-columns:1fr; 
    } 
}

/* ===== SCROLL REVEAL ===== */
.reveal{ 
    opacity:0; 
    transform:translateY(24px); 
    transition:opacity .7s ease, transform .7s ease; 
}
.reveal.in-view{ 
    opacity:1; 
    transform:translateY(0); 
}



.features-about-wrapper.fixed-bg{
    position: fixed;
    height: 100vh;
    inset: 0;
    z-index: -1;
}




.map-section{ 
    padding-top:100px; 
    padding-bottom: 100px;
}
.map-grid{ 
    display:grid; 
    grid-template-columns:1.3fr 1fr; 
    gap:40px; 
    align-items:stretch; 
}
.map-frame{ 
    border-radius:18px; 
    overflow:hidden; 
    min-height:460px; 
    border:1px solid rgba(14,47,36,0.12); 
}
.map-frame iframe{
    width:100%; 
    height:100%; 
    min-height:460px; 
    border:0; 
    display:block; 
    filter:grayscale(0.15) contrast(1.05); 
}
.details-card{ 
    background:#0e2f24; 
    color:#fff; 
    border-radius:18px; 
    padding:40px; 
    display:flex; 
    flex-direction:column;
    justify-content:space-between; 
}
.details-card h3{ 
    font-size:22px; 
    margin-bottom:22px; 
    color: #fff;
}
.detail-row{ 
    display:flex; 
    gap:16px; 
    align-items:flex-start; 
    padding:16px 0; 
    border-bottom:1px solid rgba(255,255,255,.1); 
}
.detail-row:last-of-type{ 
    border-bottom:none; 
}
.detail-row .ic{ 
    width:40px; 
    height:40px; 
    min-width:40px; 
    border-radius:50%; 
    background:#8bc53f; 
    color:#0e2f24; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    font-size:16px; 
}
.detail-row b{ 
    display:block; 
    font-size:14.5px; 
    margin-bottom:3px; 
}
.detail-row span{ 
    font-size:13.5px; 
    opacity:.75; 
}
.detail-row a{ 
    font-size:13.5px; 
    opacity:.9; 
}
.details-btns{ 
    display:flex; 
    gap:12px; 
    margin-top:26px; 
    flex-wrap:wrap; 
}
@media(max-width:960px){ 
    .map-grid{ 
        grid-template-columns:1fr; 
    } 
    .map-frame, .map-frame iframe{ 
        min-height:340px; 
    } 
}

.type-two-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #8bc53f;
    color: #0e2f24;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}
.type-two-btn:hover{
    background-color:  #6ea52c;
}

.type-three-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}
.type-three-btn:hover{
    background: rgba(255, 255, 255, .12);
}


.type-one-bg{
    background: linear-gradient(rgba(245, 248, 243, 0.5), rgba(245, 248, 243, 0.9), rgba(245, 248, 243, 0.5));
}

.breadcrumb{
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 15px;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 13px;
    transition: all 300ms ease-in-out;
}
.breadcrumb a:hover{
    color: var(--color-lime-red);
}
/* Responsive Navigation */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--color-lime-green);
    cursor: pointer;
    z-index: 1001;
    position: relative;
}












@media (max-width: 1440px){
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .container {
        padding: 0 50px;
    }
}









@media (max-width: 1190px){
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero{
        padding-top: 170px;
    }
    .res-pt-0{
        padding-top: 0;
    }
    .type-one-bg{
        padding: 0;
    }
    .ser-process{
        margin-top: 80px;
    }
}

@media (max-width: 1024px){
    .hero-glass-card {
        display: none;
    }
    .hero{
        padding-bottom: 6rem;
    }
    .d-md-none{
        display: none;
    }
    .about-section{
        padding-top: 2rem;
    }
    
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

     .cta-banner {
        flex-direction: column;
    }
    .cta-banner{
        align-items: start;
    }
    
    .nav-center {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 130px;
        padding-bottom: 30px;
        border-radius: 0 0 40px 40px;
        transition: right 0.4s ease;
        box-shadow: 0px 0 15px rgba(0,0,0,0.1);
        z-index: -1;
        transform: translateY(-490px);
        transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
    }

    .nav-center.active {
        right: 0;
        left: 0;
        top: 0;
        transform: translateY(-20px);
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 10px;
    }

    .nav-actions {
        display: none;
    }

    .inner-ser-list .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .two-col {
        display: grid;
        grid-template-columns: 1fr;
        gap: 60px;
        align-items: center;
    }
    .about-img-wrap{
        order: 2;
    }
    
}

@media (max-width: 768px) {
    .inner-ser-list .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps, .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-banner{
       margin-top: 0;
    }
    .cta-image-wrapper{
        display: none;
    }
    .page-hero{
        padding-top: 140px;
    }
    
}




@media (max-width: 574px) {
    .inner-ser-list .services-grid, .process-steps, .footer-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .cta-content {
        padding: 40px 40px;
    }
    .container{
        padding: 0 20px;
    }
    
}