:root {
    --lime: #B5FF3B;
    --off-white: #F9F8F3;
    --dark: #111111;
   --green: #0a3328;
     
     
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--off-white);
    color: #000;
}

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


/* Navbar */


.btn-contact-nav {
    background: var(--lime);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 3px 3px 0px #fff;
}

/* Hero */
.hero-text h1 { font-size: 80px; margin: 60px 0 10px; font-weight: 800; }
.breadcrumb { font-size: 18px; color: #888; }
.breadcrumb .lime { color: var(--lime); }

/* Main Grid */
.main-grid { display: grid; grid-template-columns: 1fr 350px; gap: 60px; padding: 60px 20px; }

/* Posts */
.blog-post { margin-bottom: 60px;margin-top: 65px; }
.featured-img { width: 100%; border-radius: 40px; margin-bottom: 20px; }
.pill-btn { border: 1px solid #ddd; padding: 5px 15px; border-radius: 50px; font-size: 14px; }
.post-meta { display: flex; gap: 15px; align-items: center; margin-bottom: 15px; }
.blog-post h2 { font-size: 36px; line-height: 1.2; margin: 15px 0; }
.blog-post p { color: #555; line-height: 1.6; }
.arrow-link { font-size: 35px; text-decoration: none; color: #000; display: block; margin-top: 10px; }

/* Sidebar */
.widget h3 { font-size: 28px; margin-bottom: 20px; }
.search-bar { border: 1px solid #000; border-radius: 50px; padding: 5px 5px 5px 20px; display: flex; justify-content: space-between; align-items: center; }
.search-bar input { border: none; background: transparent; outline: none; width: 80%; }
.search-icon { background: #000; color: #fff; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.cat-list { list-style: none; padding: 0; }
.cat-list li { padding: 10px 0; font-size: 18px; display: flex; align-items: center; gap: 10px; }
.dot { width: 12px; height: 12px; border: 1px solid #888; border-radius: 50%; }

/* Pagination */
.btn-next {
    background: #000; color: #fff; border: none; padding: 10px 10px 10px 30px;
    border-radius: 100px; font-size: 20px; display: flex; align-items: center; gap: 20px;
}
.circle-arrow { background: var(--lime); color: #000; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Project Section */
.project-section { background-color: #000; color: #fff; padding: 100px 0; }
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.lime-star { color: var(--lime); font-size: 40px; }
.big-text { font-size: 24px; font-weight: 700; margin: 5px 0 20px; }
.lime { color: var(--lime); }

.contact-form input, .contact-form textarea {
    width: 100%; background: transparent; border: 1px solid #444; border-radius: 40px;
    padding: 20px; margin-bottom: 15px; color: #fff;
}
.contact-form textarea { border-radius: 20px; height: 150px; }
.btn-send {
    background: var(--lime); border: none; width: 100%; border-radius: 50px;
    padding: 10px; font-size: 20px; font-weight: 700; display: flex; justify-content: center; align-items: center; gap: 15px;
}

/* Footer */


.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none; /* Hidden by default */
  position: absolute;
  background-color: #ffffff; /* White background like your screenshot */
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 8px;
  margin-top: 10px;
  overflow: hidden;
}

/* Individual Links inside Dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  display: block;
  font-size: 14px;
}

/* Hover Effect on Dropdown Items */
.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #c5ff41; /* Lime Green highlight */
}

/* Show menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
 

        @media (max-width: 1000px) {

            .card-grid,
            .faq-grid,
            .project-flex {
                grid-template-columns: 1fr;
                flex-direction: column;
            }

            .page-header h1,
            .project-text h2 {
                font-size: 48px;
            }
        }

        :root {
            --lime: #b6f23b;
            --cream: #fbfbf2;
            --black: #0b0b0b;
            --gray-text: #666666;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--cream);
            color: #000;
            overflow-x: hidden;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 40px;

        }

        .social-icon {
            width: 40px;
            height: 40px;
            border: 1px solid #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
        }

        .social-icon i {
            font-size: 18px;
        }

        .social-icon svg {
            width: 18px;
            height: 18px;
            fill: #ffffff;
        }

        .social-icon :hover {
            background: #a3e635;
            border-color: #a3e635;
            color: #000;
        }
        .social-icon:hover {
            background: #c4f547;
            color: #000;
            transform: translateY(-3px);
        }
        /* Base Styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif; /* Similar to the design font */
}

.main-footer {
    background-color: #F9F7EE; /* The cream background */
    padding: 80px 10% 40px;
    color: #1A1A1A;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Brand Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.brand-info p {
    line-height: 1.6;
    color: #4A4A4A;
    margin-bottom: 25px;
    font-size: 16px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #E9E4D3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: #d1ccbc;
}

/* Column Headers */
.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Lists and Links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul li a {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 16px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #3A6B56;
}

/* Special Accents */
.accent-link {
    color: #3A6B56 !important;
    font-weight: 600;
}

/* Contact List */
.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-list i {
    color: #3A6B56;
    font-size: 18px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #E2E0D1;
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    color: #717171;
    font-size: 14px;
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
/* =========================
   GLOBAL RESPONSIVE FIXES
========================= */
img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding: 0 16px;
}

/* =========================
   NAVBAR
========================= */


 

/* =========================
   HERO SECTION
========================= */



/* =========================
   MAIN GRID
========================= */
.main-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}

@media (max-width: 992px) {
  .main-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: 2;
  }

  .posts-area {
    order: 1;
  }
}

/* =========================
   BLOG POSTS
========================= */
.blog-post {
  margin-bottom: 40px;
}

.blog-post h2 {
  font-size: 22px;
}

.blog-post p {
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .blog-post h2 {
    font-size: 20px;
  }

  .blog-post p {
    font-size: 15px;
  }

  .post-meta {
    flex-direction: column;
    gap: 5px;
  }
}

/* =========================
   SIDEBAR
========================= */
.sidebar .widget {
  margin-bottom: 30px;
}

.search-bar {
  display: flex;
  align-items: center;
}

.search-bar input {
  width: 100%;
  padding: 10px;
}

/* =========================
   FOOTER
========================= */
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* =========================
   PAGINATION
========================= */
.pagination {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
/* ================= HEADER ================= */
.black-bg {
    background-color: #0a3328;
    color: #fff;
}

/* ================= NAVBAR ================= */
.nav-flex {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo img {
    height: 42px;
}

/* Desktop Menu */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

/* ================= HERO ================= */
.hero-text {
    padding: 50px 0 60px;
    text-align: center;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 800;
    margin: 0;
}

.breadcrumb {
    margin-top: 10px;
    font-size: 16px;
    color: #aaa;
}

.breadcrumb .lime {
    color: #b5ff3b;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #0a3328;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-links li {
        padding: 16px 0;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .hero-text h1 {
        font-size: 36px;
    }
}
/* ===== ABSOLUTE NAV FIX ===== */

/* Turn header into relative container */
header.black-bg {
    position: relative;
    padding: 0;
}

/* NAVBAR BAR */
nav.nav-flex {
    height: 100px;
    background: #0a3328;
    display: flex;
    align-items: center;          /* vertical center */
    
}

/* Center nav items */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: flex;
    align-items: center;
    height: 100%;
    color: #fff;
    font-weight: 600;
    line-height: 1;
}

/* PUSH HERO BELOW NAV */
.hero-text {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
}

/* ===== CENTER NAV ITEMS ON DESKTOP ===== */

nav.nav-flex {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
}

/* Logo stays left */
.logo {
    z-index: 2;
}

/* Center menu */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Nav link styling */
.nav-links a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

/* Mobile override */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        left: 0;
        transform: none;
        width: 100%;
    }
}
/* FIXED NAVBAR */
nav.nav-flex {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #0a3328;
    z-index: 1000;
}
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
    list-style: none;
}
.hero-text {
    padding-top: 160px;
}
@media (max-width: 768px) {
    .nav-links {
        top: 90px;
        left: 0;
        transform: none;
        width: 100%;
        background: #0a3328;
    }
}
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #0a3328;
    z-index: 1000;
}
.nav-flex {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
    list-style: none;
}
.hero-text {
    padding-top: 160px;
}
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 90px;
        left: 0;
        transform: none;
        width: 100%;
        background: #0a3328;
    }
}
/* =========================
   FOOTER MOBILE – IMAGE MATCH FIX
========================= */
@media (max-width: 768px) {

  .main-footer {
    padding: 50px 20px 30px;
    text-align: left;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: start;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .brand-info p {
    text-align: left;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-col h3 {
    text-align: left;
  }

  .footer-col ul {
    text-align: left;
  }

  .footer-col ul li {
    justify-content: flex-start;
  }

  .contact-list li {
    justify-content: flex-start;
    text-align: left;
  }

  .footer-bottom {
    text-align: center; /* matches image */
    margin-top: 40px;
  }
}
@media (max-width: 768px) {

  body {
    font-size: 15px;
    line-height: 1.6;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

