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


:root {
    --primary: #307028;
    --secondary: #1C4A18;
    --accent: #4C963E;
    --success: #307028;
    --light: #F4F6F1;
    --white: #ffffff;
    --dark: #1F2937;
    --text: #4B5563;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

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

/* ========== HEADER & NAVIGATION ========== */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;   /* controls left & right spacing */
}
.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: left;
    gap: 8px;
}
.logo img {
    height: 60px;
}
.logo span {
    font-size: 28px;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

nav a:hover {
    color: var(--primary);
}

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

nav a:hover::after {
    width: 100%;
}

.cta-header {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-size: 14px;
}

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

.btn-primary:hover {
    background: #c9985f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.4);
}

.btn-secondary {
    background: var(--success);
    color: var(--white);
}

.btn-secondary:hover {
    background: #229954;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* -- Navbar height & active state ------------------------- */
.navbar-custom {
  min-height: 90px;
}

.navbar-logo {
  height: 46px !important;   /* overrides the 110px in style.css for cleaner spec match */
}

.nav-link.active-link {
  color: var(--primary-green) !important;
  position: relative;
}

.nav-link.active-link::before {
  transform: translateX(-50%) scaleX(1) !important;
}

/* -- Desktop CTA button ------------------------------------ */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-green);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s, transform .2s, box-shadow .2s;
  font-family: 'Inter', 'Poppins', sans-serif;
  letter-spacing: .3px;
}

.btn-nav-cta:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(48, 112, 40, .35);
}

/* -- Mobile offcanvas drawer ------------------------------- */
.dg-offcanvas {
  width: 100% !important;
  max-width: 390px;
  border-left: none !important;
}

.dg-offcanvas .offcanvas-header {
  border-bottom: 1px solid #e5e7eb;
}

.dg-drawer-logo {
  height: 40px;
  width: auto;
}

.dg-close-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--dark);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color .2s;
}

.dg-close-btn:hover {
  color: var(--primary-green);
}

.dg-drawer-nav li {
  border-bottom: 1px solid #e5e7eb;
}

.dg-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color .2s, background .2s;
}

.dg-drawer-link i {
  font-size: 13px;
  color: #9ca3af;
  transition: color .2s;
}

.dg-drawer-link:hover,
.dg-drawer-link.active {
  color: var(--primary-green);
  background: rgba(48, 112, 40, .04);
}

.dg-drawer-link:hover i,
.dg-drawer-link.active i {
  color: var(--primary-green);
}

.btn-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-green);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}

.btn-drawer-cta:hover {
  background: var(--secondary);
  color: #fff;
}
/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="pattern" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><circle cx="60" cy="60" r="40" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.hero .subheading {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero .btn {
    padding: 14px 35px;
    font-size: 16px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== WHY CHOOSE SECTION ========== */
.why-choose {
    padding: 80px 0;
    background: var(--light);
}

.why-choose h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--primary);
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* ========== COURSES SECTION ========== */
.courses {
    padding: 80px 0;
    background: var(--white);
}

.courses h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.course-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.course-header {
    background: linear-gradient(135deg, var(--primary), #c9985f);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.course-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.course-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.course-body {
    padding: 20px;
}

.course-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
}

.course-info div {
    text-align: center;
    flex: 1;
}

.course-info strong {
    display: block;
    color: var(--primary);
    font-size: 14px;
}

.course-info span {
    color: #666;
}

.course-card .btn {
    width: 100%;
    text-align: center;
    padding: 10px;
}

/* ========== PLACEMENT SECTION ========== */
.placement {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary), #34495e);
    color: var(--white);
}

.placement h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.placement-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.placement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
}

.partners-section {
    margin-top: 50px;
}

.partners-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.partner-box {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.partner-box:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

/* ========== UNIVERSITIES SECTION ========== */
.universities {
    padding: 80px 0;
    background: var(--light);
}

.universities h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--secondary);
}

.universities-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 16px;
    color: #666;
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.uni-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.uni-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.uni-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.uni-card h3 {
    color: var(--secondary);
    font-size: 16px;
}

/* ========== TESTIMONIALS SECTION ========== */.testimonials {
    padding: 100px 0;
    background: #f8f9fc;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

/* Highlight Section */
.testimonial-highlight {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.video-box {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.video-box iframe {
    width: 100%;
    height: 100%;
}

/* Highlight Text */
.highlight-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.highlight-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.highlight-stat h2 {
    font-size: 48px;
    color: #d4a373;
    margin: 0;
}

.highlight-stat span {
    font-size: 14px;
    color: #666;
}

/* Cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card h4 {
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 14px;
    color: #d4a373;
    display: block;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}


/* ========== CTA SECTION ========== */
.final-cta {
    background: linear-gradient(135deg, var(--primary), #c9985f);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.final-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn {
    padding: 15px 40px;
    font-size: 16px;
}

/* ========== FORM SECTION ========== */
.form-section {
    padding: 80px 0;
    background: var(--light);
}

.form-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(212, 163, 115, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: #c9985f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.4);
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========== FOOTER ========== */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    text-align: left;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 14px;
    color: #bbb;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero {
        padding: 60px 0;
    }

    nav {
        gap: 15px;
        font-size: 14px;
    }

    .cta-header {
        display: none;
    }

    .courses h2,
    .why-choose h2,
    .placement h2,
    .testimonials h2,
    .universities h2,
    .form-section h2 {
        font-size: 32px;
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }
}
/* ===== MOBILE MENU FIX ===== */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--secondary);
    border-radius: 4px;
}

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

    .header-content {
        position: relative;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    nav a {
        padding: 12px 0;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .cta-header {
        display: none;
    }
}

/* ===== SCROLL TO TOP ===== */

#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--primary);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
}

.testimonial-video {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px;
    aspect-ratio: 16/9;
}

.testimonial-video iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    #home {
    padding-top: 80px;
    }

    html, body {
    overflow-x: hidden;
    max-width: 100%;
    }

    :root {
    --primary-green: #307028;
    --dark-green: #1C4A18;
    --light-green: #4C963E;
    --emerald: #4C963E;
    --dark-bg: #1C4A18;
    --text-dark: #1F2937;
    --text-light: #4B5563;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #307028 0%, #1C4A18 100%);
    --gradient-2: linear-gradient(135deg, #4C963E 0%, #307028 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.12);
    }

    body {
    font-family: 'Inter', 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--text-dark);
    background: #FAFAF7;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
    font-weight: 700;
    }

    .display-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

    /* PARTICLES */
    .particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    }

    .particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(48, 112, 40, .3), rgba(76, 150, 62, .3));
    animation: float 20s infinite;
    }

    @keyframes float {

    0%,
    100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: .3;
    }

    25% {
    transform: translateY(-100px) translateX(50px) rotate(90deg);
    opacity: .6;
    }

    50% {
    transform: translateY(-50px) translateX(-50px) rotate(180deg);
    opacity: .3;
    }

    75% {
    transform: translateY(-150px) translateX(100px) rotate(270deg);
    opacity: .6;
    }
    }

    .navbar-custom {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .08);
    padding: .6rem 0;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    border-bottom: 1px solid rgba(48, 112, 40, .1);
    }

    .navbar-custom.scrolled {
    box-shadow: 0 8px 40px rgba(0, 0, 0, .12);
    padding: .8rem 0;
    }

    .navbar-logo {
    height: 110px;
    transition: all .3s ease;
    filter: drop-shadow(0 2px 8px rgba(48, 112, 40, .3));
    }

    .navbar-logo:hover {
    transform: scale(1.1) rotate(-5deg);
    }

    .nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 .8rem;
    position: relative;
    transition: all .3s ease;
    font-size: .95rem;
    letter-spacing: .3px;
    }

    .nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--gradient-1);
    transition: transform .3s ease;
    border-radius: 10px;
    }

    .nav-link:hover {
    color: var(--primary-green) !important;
    transform: translateY(-2px);
    }

    .nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
    }

    .navbar-toggler {
    border: 2px solid rgba(48, 112, 40, .4);
    border-radius: 10px;
    padding: .35rem .6rem;
    transition: all .3s;
    }

    .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(48, 112, 40, .2);
    }

    .navbar-toggler:not(.collapsed) {
    background: rgba(48, 112, 40, .08);
    border-color: var(--primary-green);
    }

    .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23307028' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-logo:hover {
    transform: scale(1.1) rotate(-5deg);
    }

    .nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 .8rem;
    position: relative;
    transition: all .3s ease;
    font-size: .95rem;
    letter-spacing: .3px;
    }

    .nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--gradient-1);
    transition: transform .3s ease;
    border-radius: 10px;
    }

    .nav-link:hover {
    color: var(--primary-green) !important;
    transform: translateY(-2px);
    }

    .nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);

    }

    /* FIX: clip carousel so next/prev buttons don't bleed outside the banner */
 



    /* Keep controls fully inside the slider bounds */
    #mainSlider .carousel-control-prev,
    #mainSlider .carousel-control-next {
    width: 48px;
    z-index: 5;

    }



    #mainSlider .btn-success{
    padding: .6rem 1.3rem;
    font-size: 0.9rem;
    }


    @keyframes kenburns {
    0% {
    transform: scale(1);
    }
    }
    .carousel-caption {
    z-index: 2;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    }

    .carousel-caption h1 {
    font-size: 5rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, .4);
    animation: heroFadeIn 1.2s ease;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    }

    .carousel-caption p {
    font-size: 1.6rem;
    text-shadow: 0 5px 20px rgba(0, 0, 0, .3);
    animation: heroFadeIn 1.5s ease;
    font-weight: 400;
    letter-spacing: .5px;
    }


    @keyframes heroFadeIn {
    from {
    opacity: 0;
    transform: translateY(50px);
    }

    to {
    opacity: 1;
    transform: translateY(0);
    }
    }

    .btn-success {
    background: linear-gradient(135deg, #307028 0%, #1C4A18 100%);
    border: none;
    padding: 1rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 10px 30px rgba(48, 112, 40, .4);
    font-size: 1.1rem;
    letter-spacing: .5px;
    position: relative;
    overflow: hidden;
    }

    .btn-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    transition: left .5s;
    pointer-events: none;
    }

    .btn-success:hover::before {
    left: 100%;
    }

    .btn-success:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(48, 112, 40, .5);
    }

    /* SECTION HEADERS */
    .section-header {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    }

    .section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 10px;
    }

    /* CATEGORY CARDS */
    .category-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    }

    .category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(48, 112, 40, .1), transparent);
    transition: left .6s;
    pointer-events: none;
    }

    .category-card:hover::before {
    left: 100%;
    }

    .category-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
    background: linear-gradient(135deg, #fff 0%, #F4F6F1 100%);
    }

    .category-icon {
    font-size: 5rem;
    transition: all .5s cubic-bezier(.68, -.55, .265, 1.55);
    display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(48, 112, 40, .3));
    }

    .category-card:hover .category-icon {
    transform: scale(1.3) rotate(15deg) translateY(-10px);
    }

    .btn-outline-success {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 700;
    padding: .8rem 2.5rem;
    border-radius: 50px;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    }

    .btn-outline-success::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-1);
    transition: all .5s;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    }

    .btn-outline-success:hover::before {
    width: 300%;
    height: 500%;
    }

    .btn-outline-success:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(48, 112, 40, .4);
    }

    /* HERO SECTIONS */
    /* ===== SECTION HERO IMAGES RESPONSIVE FIX ===== */
    .hero-section {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    }

    .hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.48) 0%,
    rgba(0, 0, 0, 0.24) 50%,
    rgba(0, 0, 0, 0.40) 100%
    );
    pointer-events: none;
    z-index: 1;
    }

    .hero-section .container,
    .hero-section .hero-content {
    position: relative;
    z-index: 2;
    }

    .hero-section h1,
    .hero-section h2,
    .hero-section p {
    color: #fff !important;
    text-shadow: 0 6px 22px rgba(0,0,0,0.55);
    }

    /* Individual section images */
    .about-hero {
        background-image: url('../img/aboutus.png');
        }

        .services-hero {
        background-image: url('../img/whatwedo.png');
        }

        .careers-hero {
        background-image: url('../img/careers.png');
        }

        .contact-hero {
        background-image: url('../img/contactus.png');
        }

        .work-hero {
        background-image: url('../img/work.png');
        }

    /* Desktop */
    @media (min-width: 992px) {
    .hero-section {
    min-height: 80vh;
    background-attachment: fixed;
    }

    .about-hero { background-position: right center; }
    .services-hero { background-position: center top; }
    .contact-hero { background-position: center top; }
    .work-hero { background-position: center top; }

    .about-hero::before {
    background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 35%,
    rgba(0,0,0,0.10) 65%,
    rgba(0,0,0,0.00) 100%
    );
    }
    }

    /* Tablet */
    @media (max-width: 991.98px) {
    .hero-section {
    min-height: 420px;
    background-attachment: scroll;
    background-position: center center;
    }

    .hero-section::before {
    background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.22) 55%,
    rgba(0,0,0,0.35) 100%
    );
    }
    }

    /* Mobile */
    @media (max-width: 767.98px) {
    .hero-section {
    min-height: 320px;
    padding: 40px 0;
    align-items: flex-end;
    background-size: cover;
    background-position: center center !important;
    background-attachment: scroll !important;
    }

    .hero-section::before {
    background: linear-gradient(
    180deg,
    rgba(0,0,0,0.40) 0%,
    rgba(0,0,0,0.18) 45%,
    rgba(0,0,0,0.48) 100%
    );
    }

    .hero-section h1,
    .hero-section h2 {
    font-size: 2rem !important;
    line-height: 1.15;
    margin-bottom: 0.75rem !important;
    }

    .hero-section p {
    font-size: 1rem !important;
    line-height: 1.45;
    margin-bottom: 0 !important;
    }
    }

    /* Small mobile */
    @media (max-width: 575.98px) {
    .hero-section {
    min-height: 280px;
    padding: 32px 0;
    }

    .hero-section h1,
    .hero-section h2 {
    font-size: 1.7rem !important;
    }

    .hero-section p {
    font-size: 0.95rem !important;
    }
    }

    .hero-content {
    position: relative;
    z-index: 2;
    }

    @keyframes titleSlide {
    from {
    opacity: 0;
    transform: translateX(-50px);
    }

    to {
    opacity: 1;
    transform: translateX(0);
    }
    }

    /* VALUES */
    .values-card {
    background: linear-gradient(135deg, #fff 0%, #FAFAF7 100%);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(48, 112, 40, .2);
    position: relative;
    overflow: hidden;
    }

    .values-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(48, 112, 40, .05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: 0;
    }

    .values-card>* {
    position: relative;
    z-index: 1;
    }

    @keyframes rotate {
    from {
    transform: rotate(0deg);
    }

    to {
    transform: rotate(360deg);
    }
    }

    .core-values li {
    font-size: 1.1rem;
    transition: all .4s;
    padding: 1rem;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    }

    .core-values li:hover {
    background: white;
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 8px 25px rgba(48, 112, 40, .15);
    }

    .value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(48, 112, 40, .3);
    transition: all .3s;
    }

    .core-values li:hover .value-icon {
    transform: scale(1.2) rotate(360deg);
    }

    /* SERVICE CARDS */
    .service-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: all .5s;
    border-left: 5px solid transparent;
    position: relative;
    overflow: hidden;
    }

    .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(48, 112, 40, .05) 100%);
    opacity: 0;
    transition: opacity .5s;
    pointer-events: none;
    }

    .service-card:hover::before {
    opacity: 1;
    }

    .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--primary-green);
    }

    .service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all .5s cubic-bezier(.68, -.55, .265, 1.55);
    filter: grayscale(.3);
    }

    .service-card:hover .service-icon {
    transform: scale(1.3) rotate(360deg);
    filter: grayscale(0);
    }

    /* ===== ROAD JOURNEY CHART ===== */
    .road-section-bg {
    background: linear-gradient(180deg, #FAFAF7 0%, #F4F6F1 50%, #FAFAF7 100%);
    }

    .road-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow: visible;
    }

    .road-track {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 1;
    pointer-events: none;
    }

    .road-track::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 14px;
    background: linear-gradient(180deg,
    #1F2937 0%, #4B5563 20%, #1F2937 40%,
    #4B5563 60%, #1F2937 80%, #4B5563 100%);
    background-size: 100% 40px;
    border-radius: 7px;
    box-shadow: 0 0 0 3px #475569, 0 0 0 5px #94a3b8;
    }

    .road-track::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(180deg,
    #fbbf24 0px, #fbbf24 16px,
    transparent 16px, transparent 32px);
    border-radius: 2px;
    }

    .road-stop {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    }

    .road-stop:last-child {
    margin-bottom: 0;
    }

    .road-stop.left {
    flex-direction: row;
    }

    .road-stop.right {
    flex-direction: row-reverse;
    }

    .road-card {
    width: calc(50% - 70px);
    background: white;
    border-radius: 24px;
    padding: 24px 28px;
    box-shadow: 0 10px 40px rgba(48, 112, 40, .12), 0 2px 8px rgba(0, 0, 0, .06);
    border: 2px solid transparent;
    transition: all .45s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    }

    .road-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(48, 112, 40, .04), rgba(76, 150, 62, .06));
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
    border-radius: 24px;
    }

    /* Desktop LEFT: HTML order is node-arm-card, visually show card-arm-node */
    .road-stop.left  { flex-direction: row-reverse; }
    .road-stop.left .road-card { margin-left: auto; }

    /* Desktop RIGHT: HTML order is node-arm-card, visually show node-arm-card */
    .road-stop.right { flex-direction: row; }
    .road-stop.right .road-card { margin-right: auto; }

    .road-card:hover {
    border-color: rgba(48, 112, 40, .35);
    box-shadow: 0 20px 60px rgba(48, 112, 40, .2);
    transform: translateY(-6px) scale(1.02);
    }

    .road-card:hover::after {
    opacity: 1;
    }

    .road-arm {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #307028, #4C963E);
    border-radius: 3px;
    flex-shrink: 0;
    position: relative;
    }

    .road-stop.right .road-arm {
    background: linear-gradient(270deg, #307028, #4C963E);
    }

    .road-arm::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #307028;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(48, 112, 40, .25);
    }

    .road-stop.right .road-arm::after {
    right: auto;
    left: -6px;
    }

    .road-node {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--gradient-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 0 0 4px white, 0 0 0 7px #307028, 0 8px 30px rgba(48, 112, 40, .5);
    transition: all .45s cubic-bezier(.68, -.55, .265, 1.55);
    position: relative;
    z-index: 3;
    overflow: visible;
    }

    .road-stop:hover .road-node {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 0 4px white, 0 0 0 8px #307028, 0 12px 40px rgba(48, 112, 40, .7);
    }

    .road-step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1C4A18;
    color: white;
    font-size: .65rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
    z-index: 10;
    }

    .road-card-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-green);
    background: rgba(48, 112, 40, .1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    }

    .road-card h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    }

    .road-card p {
    font-size: .92rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.75;
    }

    .road-flag {
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 12px 0;
    }

    .road-flag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-1);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: .95rem;
    letter-spacing: .5px;
    box-shadow: 0 8px 25px rgba(48, 112, 40, .4);
    }


    /* Show the arm as a short vertical connector instead */
    .road-arm { display: none; }

    /* Node: fixed size on the left, stays in flow */
    .road-node {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
    overflow: visible;
    z-index: 3;
    margin-top: 4px;
    }

    /* Badge fully visible */
    .road-step-num {
    top: -6px;
    right: -8px;
    z-index: 10;
    width: 20px;
    height: 20px;
    font-size: .6rem;
    }

    /* Card: takes remaining width next to the node */
    .road-card {
    width: auto;
    flex: 1;
    margin: 0;
    padding: 16px 18px;
    }

    /* Vertical green line on the left connecting all nodes */
    .road-stop::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 56px;
    bottom: -28px;
    width: 3px;
    background: linear-gradient(180deg, #307028, #4C963E);
    border-radius: 3px;
    z-index: 0;
    }

    .road-stop:last-child::before { display: none; }

    /* CAREER CARDS */
    .career-card {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    transition: all .5s;
    border-top: 5px solid var(--primary-green);
    position: relative;
    overflow: hidden;
    }

    .career-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-1);
    transition: height .5s;
    z-index: 0;
    pointer-events: none;
    }

    .career-card:hover::after {
    height: 100%;
    }

    .career-card>* {
    position: relative;
    z-index: 1;
    transition: color .5s;
    }

    .career-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    }

    .career-card:hover>* {
    color: white !important;
    }

    .career-badge {
    display: inline-block;
    padding: .5rem 1.5rem;
    background: var(--gradient-1);
    color: white;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(48, 112, 40, .3);
    transition: all .3s;
    }

    .career-card:hover .career-badge {
    background: white;
    color: var(--primary-green);
    }

    .career-link {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    transition: all .4s;
    font-size: 1.1rem;
    }

    .career-card:hover .career-link {
    color: white !important;
    letter-spacing: 2px;
    }

    /* CONTACT SECTION */
    .contact-input {
    width: 100%;
    border: 2px solid #E5E7EB;
    border-radius: 14px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
    transition: .3s;
    background: #fff;
    background-size: contain;
    background-attachment: scroll;
    position: relative;
    z-index: 2;
    }

    .contact-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(48, 112, 40, .1);
    }

    .contact-submit {
    background: var(--gradient-1);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: .3s;
    position: relative;
    z-index: 2;
    }

    .contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(48, 112, 40, .4);
    }

    .contact-info-card {
    background: linear-gradient(135deg, #FAFAF7, #F4F6F1);
    border: 2px solid rgba(48, 112, 40, .2);
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 16px;
    transition: .3s;
    }

    .contact-info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    }

    /* FOOTER */
    .deligate-footer {
    background: #0F2D0C;
    color: #E5E7EB;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    }

    .deligate-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    pointer-events: none;
    }

    .footer-brand {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    }

    .footer-logo {
    height: 80px;
    margin-right: 10px;
    filter: drop-shadow(0 4px 15px rgba(48, 112, 40, .5));
    }

    .footer-text {
    color: #D1D5DB;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    }

    .footer-phone {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: 700;
    }

    .footer-link {
    color: #D1D5DB;
    text-decoration: none;
    transition: all .3s;
    padding: .3rem 0;
    display: inline-block;
    position: relative;
    }

    .footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width .3s;
    }

    .footer-link:hover {
    color: var(--primary-green);
    transform: translateX(8px);
    }

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

    .social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(48, 112, 40, .15);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    color: var(--primary-green);
    transition: all .5s cubic-bezier(.68, -.55, .265, 1.55);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    }

    .social-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-1);
    transition: all .5s;
    transform: translate(-50%, -50%);
    pointer-events: none;
    }

    .social-circle:hover::before,
    .social-circle:active::before,
    .social-circle:focus::before {
    width: 200%;
    height: 200%;
    }

    .social-circle:hover,
    .social-circle:focus {
    color: white;
    transform: translateY(-8px) rotate(360deg) scale(1.2);
    box-shadow: 0 10px 30px rgba(48, 112, 40, .4);
    }

    /* Mobile tap - same green fill effect as desktop hover */
    .social-circle:active {
    color: white;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(48, 112, 40, .5);
    }

    .social-circle i {
    position: relative;
    z-index: 1;
    }

    /* Toggle-active state - stays lit until clicked again */
    .social-circle.toggled {
    color: white;
    transform: translateY(-8px) scale(1.2);
    box-shadow: 0 10px 30px rgba(48, 112, 40, .5);
    }
    .social-circle.toggled::before {
    width: 200%;
    height: 200%;
    }

    /* SCROLL TO TOP */
    #scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .4s cubic-bezier(.68, -.55, .265, 1.55);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(48, 112, 40, .4);
    }

    #scrollToTop.show {
    opacity: 1;
    visibility: visible;
    }

    #scrollToTop:hover {
    transform: translateY(-10px) scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(48, 112, 40, .6);
    }

    @keyframes pulse {

    0%,
    100% {
    transform: scale(1);
    }

    50% {
    transform: scale(1.05);
    }
    }

    .pulse {
    animation: pulse 2s ease-in-out infinite;
    }

    ::-webkit-scrollbar {
    width: 12px;
    }

    ::-webkit-scrollbar-track {
    background: #f1f5f9;
    }

    ::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
    }

    ::selection {
    background: var(--primary-green);
    color: white;
    }


    .mv-row { margin-top: 8px; }

    /* Mission & Vision - Career style cards */
    .mv-row{ margin-top: 10px; }

    .mv-card{
    background: #fff;
    border-radius: 22px;
    padding: 40px 36px;
    box-shadow: 0 18px 50px rgba(2, 132, 97, .12);
    border: 1px solid rgba(48, 112, 40, .12);
    border-top: 5px solid var(--primary-green);
    transition: all .45s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0;
    }

    .mv-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(2, 132, 97, .18);
    border-top-color: var(--dark-green);
    min-height:250px;
    }

    .mv-title{
    font-weight: 800;
    font-size: 1.65rem;
    margin: 0 0 12px 0;
    color: #1C4A18;
    }

    .mv-text{
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4B5563;
    max-width: 52ch;
    }

    .mv-imgwrap {
    width: 100px;
    height: 100px;
    min-height: 100px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(48,112,40,.10);
    border: 1px solid rgba(48,112,40,.18);
    margin: 0 auto 20px auto;
    flex-shrink: 0;
    overflow: hidden;
    }

    .mv-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    display: block;
    }

    @media (max-width: 768px) {
    .mv-imgwrap {
    width: 72px;
    height: 72px;
    min-height: 72px;
    border-radius: 14px;
    margin-bottom: 14px;
    }

    .mv-img {
    width: 38px;
    height: 38px;
    }
    }

    @media (max-width: 576px) {
    .mv-imgwrap {
    width: 64px;
    height: 64px;
    min-height: 64px;
    }

    .mv-img {
    width: 34px;
    height: 34px;
    }
    }

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


    .service-intro{
    background: linear-gradient(135deg, #ffffff 0%, #F4F6F1 100%);
    border: 2px solid rgba(48,112,40,.18);
    border-radius: 22px;
    padding: 22px 22px;
    box-shadow: 0 14px 40px rgba(48,112,40,.10);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    }

    .service-intro::before{
    content:'';
    position:absolute;
    inset:-40px -60px auto auto;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(48,112,40,.18), transparent 65%);
    pointer-events:none;
    }

    .service-intro-icon{
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(48,112,40,.12);
    border: 1px solid rgba(48,112,40,.20);
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(48,112,40,.12);
    }

    .service-intro p{
    color: #4B5563;
    font-size: 1.05rem;
    line-height: 1.85;
    }

    .service-intro-highlight{
    font-weight: 800;
    background: linear-gradient(135deg, #307028 0%, #1C4A18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    }

    /* ===== HERO / SLIDER RESPONSIVE FIX ===== */
    #mainSlider {
    position: relative;
    overflow: hidden;
    }

    #mainSlider .carousel-inner,
    #mainSlider .carousel-item {
    width: 100%;
     height: auto;
    }



#mainSlider .dg-home-banner {
    width: 100%;
    height: auto;
    display: block;
    
}


#mainSlider .carousel-control-prev,
#mainSlider .carousel-control-next {
    width: 50px;
}

#mainSlider .carousel-control-prev-icon,
#mainSlider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
}
#mainSlider .carousel-control-prev,
#mainSlider .carousel-control-next {
    width: 55px;
    opacity: 1;
}

#mainSlider .carousel-control-prev-icon,
#mainSlider .carousel-control-next-icon {
    width: 22px;
    height: 22px;
    padding: 20px;
    border-radius: 50%;
    background-color: #307028;
    background-size: 14px;
}


    .home-banner-wrap {
    background: #fbf8f3;
    }

    .home-banner-img {
    width: 100%;
    height: auto;
    display: block;
    }

   

    #mainSlider .carousel-caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
    }

    #mainSlider .carousel-caption h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 1.1;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
    -webkit-text-stroke: 0.6px rgba(0, 0, 0, 0.20);
    }

    #mainSlider .carousel-caption p {
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    line-height: 1.5;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 850px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
    }

    #mainSlider .carousel-caption .btn {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    border-radius: 50px;
    }

    #mainSlider .carousel-control-prev,
    #mainSlider .carousel-control-next {
    width: 56px;
    z-index: 3;
    }

    #mainSlider .carousel-control-prev-icon,
    #mainSlider .carousel-control-next-icon {
    background-size: 100% 100%;
    }

    /* ===== TABLET ===== */
    @media (max-width: 991.98px) {
    #mainSlider .carousel-item {
    height: 520px;
    }

    #mainSlider .slider-img {
    object-position: center center;
    }

    #mainSlider .carousel-caption {
    padding: 0 1.25rem;
    }

    #mainSlider .carousel-caption .btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 767.98px) {
    #mainSlider .carousel-item {
    height: 420px;
    }

    #mainSlider .slider-img {
    object-position: center center;
    }

    #mainSlider .carousel-caption {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    }

    #mainSlider .carousel-caption h1 {
    font-size: clamp(1.6rem, 6vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    }

    #mainSlider .carousel-caption p {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 1rem;
    max-width: 100%;
    }

    #mainSlider .carousel-caption .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    }

    #mainSlider .carousel-control-prev,
    #mainSlider .carousel-control-next {
    width: 42px;
    }
    }

    /* ===== SMALL MOBILE ===== */
    @media (max-width: 575.98px) {
    #mainSlider .carousel-item {
    height: 360px;
    }

    #mainSlider .carousel-caption h1 {
    font-size: 1.4rem;
    }

    #mainSlider .carousel-caption p {
    font-size: 0.85rem;
    }

    #mainSlider .carousel-caption .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    }
    }

    .footer-link {
    color: #D1D5DB;
    text-decoration: none;
    transition: all .3s;
    padding: .3rem 0;
    display: inline-block;
    position: relative;
    }

    .footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width .3s;
    }

    /* DESKTOP HOVER + MOBILE TAP */

    .footer-link:hover,
    .footer-link:focus,
    .footer-link:active {
    color: var(--primary-green);
    transform: translateX(8px);
    }

    .footer-link.hover-active {
    color: var(--primary-green);
    transform: translateX(8px);
    }

    .footer-link.hover-active::after {
    width: 100%;
    }

    .bg-white {
    background-color: #FAFAF7 !important;
    }

    .bg-light {
    background-color: #F4F6F1 !important;
    }

    .btn-success,
    .contact-submit {
    background: #307028 !important;
    color: #FFFFFF !important;
    border-color: #307028 !important;
    border-radius: 12px;
    }

    .btn-success:hover,
    .contact-submit:hover {
    background: #1C4A18 !important;
    border-color: #1C4A18 !important;
    }

/* ===== Deligate document refresh ===== */
:root {
    --primary-green: #307028;
    --dark-forest-green: #1C4A18;
    --fresh-accent-green: #4C963E;
    --main-bg: #FAFAF7;
    --alternate-bg: #F4F6F1;
    --primary-text: #1F2937;
    --secondary-text: #4B5563;
    --muted-text: #9CA3AF;
    --footer-bg: #0F2D0C;
    --card-border: #E5E7EB;
}

body {
    font-family: 'Inter', 'Poppins', Arial, sans-serif;
    color: var(--secondary-text);
    background: var(--main-bg);
}

h1,
h2,
h3,
h4,
h5,
h6,
.dg-hero-title,
.dg-section-title {
    font-family: 'Sora', 'Poppins', Arial, sans-serif;
    color: var(--primary-text);
    letter-spacing: 0;
}

.navbar-custom {
    background: rgba(250, 250, 247, .96) !important;
    min-height: 86px;
}

.navbar-custom.scrolled {
    background: #FFFFFF !important;
}

.nav-link {
    color: var(--secondary-text) !important;
}

.nav-link:hover,
.nav-link.active-link {
    color: var(--primary-green) !important;
}

.btn-nav-cta,
.btn-drawer-cta,
.dg-primary-btn,
.contact-submit {
    background: var(--primary-green) !important;
    color: #FFFFFF !important;
    border: 1px solid var(--primary-green) !important;
    border-radius: 12px !important;
    font-weight: 700;
}

.btn-nav-cta:hover,
.btn-drawer-cta:hover,
.dg-primary-btn:hover,
.contact-submit:hover {
    background: var(--dark-forest-green) !important;
    border-color: var(--dark-forest-green) !important;
    color: #FFFFFF !important;
}



.dg-page-hero {
    padding: 150px 0 80px;
    background: var(--main-bg);
}

.dg-contact-hero {
    background: var(--dark-forest-green);
}

.dg-contact-hero .dg-hero-title,
.dg-contact-hero .dg-hero-copy {
    color: #FFFFFF;
}

.dg-section {
    padding: 88px 0;
}

.dg-section-main {
    background: var(--main-bg);
}

.dg-section-alt {
    background: var(--alternate-bg);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 18px;
    margin-bottom: 16px;
}

.section-kicker-light {
    color: #FFFFFF;
}

.dg-hero-title {
   font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.08;
    font-weight: 800;
    max-width: 920px;
    margin-bottom: 22px;
}

.dg-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    max-width: 820px;
    margin-bottom: 22px;
}

.dg-hero-copy,
.dg-lead {
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    color: var(--secondary-text);
    line-height: 1.7;
    max-width: 760px;
}

.dg-body-copy {
    font-size: 18px;
    color: var(--secondary-text);
    line-height: 1.8;
    margin-bottom: 18px;
}

.dg-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    text-decoration: none;
    margin-top: 10px;
}

.dg-feature-img {
    width: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.dg-card {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.dg-card h2,
.dg-card h3 {
    color: var(--primary-green);
    font-size: 24px;
    line-height: 1.25;
    margin: 16px 0 10px;
    font-weight: 800;
}

.dg-card p {
    color: var(--secondary-text);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.dg-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    background: rgba(48, 112, 40, .1);
    border-radius: 8px;
    font-size: 22px;
}

.dg-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #FFFFFF;
    background: var(--primary-green);
    border-radius: 8px;
    font-weight: 800;
}

.dg-ecosystem-card {
    overflow: hidden;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.dg-ecosystem-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.dg-ecosystem-body {
    padding: 26px;
}

.dg-ecosystem-body span {
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
}

.dg-ecosystem-body h2,
.dg-ecosystem-body h3 {
    color: var(--primary-text);
    font-size: 24px;
    line-height: 1.25;
    margin: 10px 0;
    font-weight: 800;
}

.dg-ecosystem-body p {
    color: var(--secondary-text);
    margin: 0;
    line-height: 1.7;
}

.dg-contact-section {
    background: var(--dark-forest-green);
}

.dg-form-card {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: clamp(24px, 4vw, 42px);
}

.dg-form-heading span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 12px;
}

.dg-form-heading h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

.dg-form-heading p {
    color: var(--secondary-text);
    line-height: 1.7;
}

.contact-input {
    background: #FFFFFF !important;
    border: 1px solid var(--card-border) !important;
    border-radius: 8px !important;
    color: var(--primary-text) !important;
}

.contact-input:focus {
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 0 4px rgba(48, 112, 40, .12) !important;
}

.dg-form-card label {
    color: var(--primary-text);
    font-weight: 700;
    margin-bottom: 8px;
}

.deligate-footer {
    background: var(--footer-bg) !important;
}

.footer-link {
    color: #D1D5DB !important;
}

.footer-link:hover {
    color: var(--fresh-accent-green) !important;
}

.footer-text,
.deligate-footer p {
    color: var(--muted-text) !important;
}

.social-circle {
    color: #FFFFFF !important;
    border-color: var(--primary-green) !important;
}

.social-circle:hover,
.social-circle.toggled {
    background: var(--fresh-accent-green) !important;
}

@media (max-width: 767.98px) {
    .dg-page-hero {
        padding: 124px 0 58px;
    }

    .dg-section {
        padding: 58px 0;
    }

    .dg-card,
    .dg-form-card {
        padding: 24px;
    }
}

/* ===== Premium UI redesign pass ===== */
html {
    scroll-behavior: smooth;
}

body {
    background:
        linear-gradient(180deg, #FAFAF7 0%, #F7F8F3 42%, #FAFAF7 100%) !important;
}

.navbar-custom {
    min-height: 84px !important;
    padding: 8px 0 !important;
    background: rgba(250, 250, 247, .9) !important;
    border-bottom: 1px solid rgba(28, 74, 24, .12) !important;
    box-shadow: 0 18px 42px rgba(15, 45, 12, .08) !important;
}

.navbar-logo {
    height: 56px !important;
}

.navbar-nav {
    gap: 2px !important;
    padding: 6px !important;
    background: #FFFFFF !important;
    border: 1px solid rgba(28, 74, 24, .1) !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 30px rgba(31, 41, 55, .06);
}

.nav-link {
    padding: 9px 12px !important;
    color: #1F2937 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.nav-link:hover,
.nav-link.active-link {
    color: #307028 !important;
    background: rgba(48, 112, 40, .1) !important;
}

.btn-nav-cta,
.btn-drawer-cta,
.dg-primary-btn,
.contact-submit {
    border-radius: 12px !important;
    letter-spacing: 0 !important;
    box-shadow: 0 16px 34px rgba(48, 112, 40, .22) !important;
}

.btn-nav-cta {
    padding: 11px 16px !important;
    font-size: 14px !important;
}




.dg-hero-overlay-content {
    padding-top: 84px !important;
}

.dg-hero-overlay-content h1 {
    max-width: 760px;
    text-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.dg-hero-overlay-content p {
    max-width: 670px;
    font-weight: 500;
}

.dg-page-hero {
    padding: 148px 0 82px !important;
    background:
        linear-gradient(135deg, rgba(250, 250, 247, .98), rgba(244, 246, 241, .92)),
        url('../img/doc/image1.png') center/cover no-repeat !important;
}

.dg-contact-hero {
    background:
        linear-gradient(135deg, rgba(28, 74, 24, .96), rgba(15, 45, 12, .96)),
        url('../img/doc/image12.png') center/cover no-repeat !important;
}

.dg-page-hero .row {
    position: relative;
    z-index: 1;
}

.dg-hero-title,
.dg-section-title {
    color: #1F2937 !important;
    line-height: 1.08 !important;
}

.dg-contact-hero .dg-hero-title,
.dg-contact-hero .dg-hero-copy {
    color: #FFFFFF !important;
}

.dg-hero-copy,
.dg-body-copy,
.dg-lead {
    color: #4B5563 !important;
    font-size: 18px !important;
    line-height: 1.75 !important;
}

.dg-contact-hero .dg-hero-copy {
    color: #D1D5DB !important;
}

.section-kicker {
    display: inline-flex !important;
    align-items: center;
    width: fit-content;
    color: #307028 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase;
    background: rgba(48, 112, 40, .1) !important;
    border: 1px solid rgba(48, 112, 40, .18) !important;
}

.section-kicker-light {
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, .12) !important;
    border-color: rgba(255, 255, 255, .22) !important;
}

/* .dg-section {
    padding: 104px 0 !important;
} */

.dg-copy-panel,
.dg-card,
.dg-ecosystem-card,
.dg-form-card,
.dg-metric-tile {
    background: rgba(255, 255, 255, .94) !important;
    border: 1px solid rgba(28, 74, 24, .1) !important;
    border-radius: 8px !important;
    box-shadow: 0 22px 54px rgba(31, 41, 55, .1) !important;
}

.dg-copy-panel {
    padding: clamp(28px, 4vw, 46px);
}

.dg-card {
    padding: 34px !important;
    overflow: hidden;
}

.dg-card::before,
.dg-metric-tile::before {
    content: '';
    display: block;
    width: 58px;
    height: 4px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: #307028;
}

.dg-card h2,
.dg-card h3,
.dg-metric-tile h3 {
    color: #1F2937 !important;
    line-height: 1.22 !important;
}

.dg-card p,
.dg-metric-tile p,
.dg-ecosystem-body p {
    color: #4B5563 !important;
}

.dg-icon,
.dg-step,
.dg-metric-tile span {
    background: #F4F6F1 !important;
    color: #307028 !important;
    border: 1px solid rgba(48, 112, 40, .16) !important;
}

.dg-metric-tile {
    min-height: 100%;
    padding: 30px;
}

.dg-metric-tile span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 20px;
}

.dg-feature-img,
.dg-contact-image {
    width: 100%;
    border-radius: 8px !important;
    border: 1px solid rgba(28, 74, 24, .12);
    box-shadow: 0 28px 70px rgba(31, 41, 55, .16);
}

.dg-contact-image {
    max-height: 360px;
    object-fit: cover;
    object-position: center;
}

.dg-image-mosaic {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: 180px 180px;
    gap: 14px;
}

.dg-image-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(28, 74, 24, .12);
    box-shadow: 0 20px 48px rgba(31, 41, 55, .12);
}

.dg-image-mosaic img:first-child {
    grid-row: 1 / 3;
}

.dg-ecosystem-card {
    overflow: hidden;
}

.dg-ecosystem-body {
    padding: 28px !important;
}

.dg-ecosystem-body span {
    color: #307028 !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
}

.dg-contact-section {
    padding-top: 96px !important;
}

.dg-contact-section .dg-section-title {
    color: #FFFFFF !important;
}

.dg-form-heading h2 {
    color: #1F2937 !important;
}

.dg-form-heading span {
    color: #307028 !important;
}

.contact-input:focus {
    border-color: #307028 !important;
    box-shadow: 0 0 0 4px rgba(48, 112, 40, .12) !important;
}

.dg-careers-hero {
    background:
        radial-gradient(circle at 82% 18%, rgba(48, 112, 40, .12) 0 14%, transparent 14.5%),
        linear-gradient(135deg, #FBF8F1 0%, #FFFFFF 100%) !important;
}

.dg-careers-openings {
    background:
        radial-gradient(circle at 12% 12%, rgba(48, 112, 40, .08), transparent 28%),
        linear-gradient(180deg, #FFFFFF 0%, #FBF8F1 100%);
}

.dg-careers-intro-copy {
    color: #4B5563;
    font-size: 17px;
    line-height: 1.7;
}

.dg-career-opening-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
    padding: 30px 24px;
    border: 1px solid rgba(28, 74, 24, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 44px rgba(31, 41, 55, .08);
}

.dg-career-opening-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #4D7F4D;
    color: #FFFFFF;
    font-size: 23px;
}

.dg-career-opening-card h3 {
    margin: 0;
    color: #1F2937;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.dg-career-opening-card p {
    margin: 0;
    color: #4B5563;
    font-size: 15px;
    line-height: 1.65;
}

.dg-career-opening-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: #1C4A18;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .03em;
    text-decoration: none;
    text-transform: uppercase;
}

.dg-career-opening-link i {
    font-size: 12px;
    transition: transform .2s ease;
}

.dg-career-opening-link:hover {
    color: #307028;
}

.dg-career-opening-link:hover i {
    transform: translateX(4px);
}

.footer-main {
    grid-template-columns: 1.15fr .85fr 1fr !important;
    column-gap: clamp(28px, 5vw, 68px) !important;
}

.footer-logo {
    width: 170px !important;
}

.footer-links-column,
.footer-contact-column {
    padding-left: 44px !important;
}

.footer-column h5 {
    color: #FFFFFF !important;
}

.footer-bottom {
    border-top: 1px solid rgba(76, 150, 62, .42) !important;
}

@media (max-width: 1199.98px) {
    .navbar-nav {
        gap: 0 !important;
    }

    .nav-link {
        padding: 8px 9px !important;
        font-size: 12px !important;
    }

    .btn-nav-cta {
        padding: 10px 13px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-custom {
        min-height: 78px !important;
    }

    .navbar-logo {
        height: 50px !important;
    }

    .dg-home-hero {
        padding-top: 78px !important;
    }

    .dg-home-carousel .carousel-inner,
    .dg-home-carousel .carousel-item {
        min-height: 520px !important;
        height: 62vh !important;
    }

    .dg-page-hero {
        padding: 128px 0 68px !important;
    }

    .dg-section {
        padding: 78px 0 !important;
    }

    .dg-image-mosaic {
        grid-template-rows: 160px 160px;
    }

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

@media (max-width: 767.98px) {
    .navbar-custom {
        min-height: 72px !important;
    }

    .navbar-logo {
        height: 46px !important;
    }

    .dg-home-hero {
        padding-top: 72px !important;
    }

    .dg-home-carousel .carousel-inner,
    .dg-home-carousel .carousel-item {
        min-height: 520px !important;
        height: 74vh !important;
    }



    .dg-hero-overlay-content {
        padding-top: 72px !important;
    }

    .dg-page-hero {
        padding: 112px 0 56px !important;
    }

    .dg-section {
        padding: 64px 0 !important;
    }

    .dg-copy-panel,
    .dg-card,
    .dg-form-card,
    .dg-metric-tile {
        padding: 24px !important;
    }

    .dg-image-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 180px);
    }

    .dg-image-mosaic img:first-child {
        grid-row: auto;
    }

    .footer-links-column,
    .footer-contact-column {
        padding-left: 24px !important;
    }
}

/* ===== Screenshot-matched footer ===== */
.deligate-footer {
    --footer-gold: #C99A21;
    background: radial-gradient(circle at 28% 16%, #083d23 0%, #032617 46%, #022113 100%) !important;
    color: #D7DED2 !important;
    padding: 0 !important;
}

.deligate-footer .container {
    max-width: 1180px;
}

.footer-main {
    display: grid !important;
    grid-template-columns: 1.18fr .82fr 1fr !important;
    gap: 46px !important;
    padding: 70px 0 62px !important;
    align-items: start;
}

.footer-brand-block {
    max-width: 360px !important;
}

.footer-logo-link {
    display: inline-flex !important;
    margin-bottom: 22px !important;
}

.footer-logo {
    width: 220px !important;
    height: auto !important;
    filter: none !important;
}

.footer-tagline {
    color: #D7DED2 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    margin-bottom: 14px !important;
}

.footer-gold-rule {
    display: block;
    width: 52px;
    height: 2px;
    background: var(--footer-gold);
    margin: 0 0 26px;
}

.footer-text,
.deligate-footer p {
    color: #D7DED2 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
}

.footer-column {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px !important;
    min-height: 244px;
}

.footer-links-column,
.footer-contact-column {
    border-left: 2px solid var(--footer-gold);
    padding-left: 62px;
}

.footer-column h5 {
    color: var(--footer-gold) !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    margin: 0 0 6px !important;
}

.footer-link {
    color: #D7DED2 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.3;
    text-decoration: none !important;
    gap: 12px;
}

.footer-links-column .footer-link::before {
    content: '\203A';
    color: var(--footer-gold);
    font-size: 26px;
    line-height: 15px;
}

.footer-link::after {
    display: none !important;
}

.footer-link:hover,
.footer-link:focus,
.footer-contact-item:hover {
    color: var(--footer-gold) !important;
    transform: none !important;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 30px 1px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    color: #D7DED2 !important;
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1.4;
}

.footer-contact-item i {
    color: var(--footer-gold);
    font-size: 21px;
    text-align: center;
}

.footer-contact-item::after {
    content: '';
    width: 1px;
    height: 28px;
    background: rgba(201, 154, 33, .7);
}

.footer-contact-item span {
    min-width: 0;
}

.deligate-footer .social-icons-row {
    display: flex !important;
    gap: 18px !important;
    margin-top: 8px !important;
}

.deligate-footer .social-circle {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    border: 2px solid var(--footer-gold) !important;
    background: transparent !important;
    color: var(--footer-gold) !important;
    font-size: 18px;
}

.deligate-footer .social-circle:hover,
.deligate-footer .social-circle.toggled {
    background: var(--footer-gold) !important;
    border-color: var(--footer-gold) !important;
    color: #032617 !important;
}

.footer-bottom {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-top: 2px solid rgba(201, 154, 33, .82) !important;
    padding: 24px 0 28px !important;
    text-align: left !important;
}

.footer-bottom p {
    color: #D7DED2 !important;
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--footer-gold);
    white-space: nowrap;
}

.footer-legal-links .footer-link {
    font-size: 15px !important;
}

@media (max-width: 991.98px) {
    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
        padding: 48px 0 48px !important;
    }

    .footer-links-column,
    .footer-contact-column {
        border-left: 2px solid var(--footer-gold);
        padding-left: 28px !important;
    }

    .footer-column {
        min-height: 0 !important;
    }

    .footer-brand-block {
        align-self: start;
    }

    .footer-contact-column {
        min-width: 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .deligate-footer .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .footer-logo {
        width: 170px !important;
    }

    .footer-main {
        padding: 44px 0 38px !important;
    }

    .footer-contact-item {
        grid-template-columns: 30px 1px minmax(0, 1fr) !important;
        gap: 12px;
        font-size: 15px;
        white-space: normal;
    }

    .footer-contact-item span {
        white-space: normal;
    }

    .footer-legal-links {
        gap: 12px;
        white-space: normal;
        flex-wrap: wrap;
    }
}

/* ===== Document completion overrides ===== */
:root {
    --main-bg: #FAFAF7;
    --alternate-bg: #F4F6F1;
    --primary-text: #1F2937;
    --secondary-text: #4B5563;
    --primary-green: #307028;
    --dark-forest-green: #1C4A18;
    --fresh-accent-green: #4C963E;
    --footer-bg: #0F2D0C;
}

body {
    color: var(--secondary-text) !important;
}

.dg-section-main {
    background: var(--main-bg) !important;
}

.dg-section-alt {
    background: var(--alternate-bg) !important;
}

.dg-hero-overlay-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1240px;
    margin: 0 auto;
    padding: 92px 28px 56px;
    pointer-events: none;
}

.dg-hero-overlay-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: -1;
    pointer-events: none;
}

.dg-hero-overlay-content h1 {
    max-width: 780px;
    color: #FFFFFF !important;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.04;
    margin: 0 0 18px;
}

.dg-hero-overlay-content p {
    max-width: 720px;
    color: #FFFFFF !important;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.5;
    margin: 0 0 30px;
}

.dg-hero-overlay-content .dg-primary-btn {
    pointer-events: auto;
}

.dg-primary-btn,
.contact-submit {
    border-radius: 12px !important;
    background: var(--primary-green) !important;
    color: #FFFFFF !important;
}

.dg-primary-btn:hover,
.contact-submit:hover {
    background: var(--dark-forest-green) !important;
}

.dg-home-carousel::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
   
    pointer-events: none;
}

.dg-home-carousel .carousel-indicators,
.dg-home-carousel .carousel-control-prev,
.dg-home-carousel .carousel-control-next {
    z-index: 6;
}



.dg-feature-img {
    height: auto !important;
    aspect-ratio: 3 / 2 !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 8px !important;
}

.dg-ecosystem-card img {
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    object-position: center !important;
}

.dg-card,
.dg-ecosystem-card,
.dg-form-card {
    border-radius: 8px !important;
}

.dg-card h2,
.dg-card h3,
.dg-ecosystem-body h2,
.dg-ecosystem-body h3 {
    font-size: 24px !important;
}

.dg-contact-section,
.dg-contact-hero {
    background: var(--dark-forest-green) !important;
}

.dg-contact-section .dg-form-card {
    background: #FFFFFF !important;
    border-color: #E5E7EB !important;
}

.contact-input {
    background: #FFFFFF !important;
    border: 1px solid #E5E7EB !important;
    border-radius: 8px !important;
}

.deligate-footer {
    background: var(--footer-bg) !important;
    color: #D1D5DB !important;
}

.footer-logo {
    filter: brightness(0) invert(1) !important;
}

.footer-gold-rule {
    background: var(--fresh-accent-green) !important;
}

.footer-links-column,
.footer-contact-column {
    border-left-color: rgba(76, 150, 62, .72) !important;
}

.footer-column h5,
.footer-links-column .footer-link::before,
.footer-contact-item i,
.footer-legal-links {
    color: #FFFFFF !important;
}

.footer-link,
.footer-contact-item,
.footer-text,
.deligate-footer p {
    color: #D1D5DB !important;
}

.footer-link:hover,
.footer-link:focus,
.footer-contact-item:hover {
    color: var(--fresh-accent-green) !important;
}

.footer-contact-item::after,
.footer-bottom {
    border-color: rgba(76, 150, 62, .55) !important;
}

.footer-contact-item::after {
    background: rgba(76, 150, 62, .65) !important;
}

.deligate-footer .social-circle {
    border-color: var(--fresh-accent-green) !important;
    color: var(--fresh-accent-green) !important;
}

.deligate-footer .social-circle:hover,
.deligate-footer .social-circle.toggled {
    background: var(--fresh-accent-green) !important;
    border-color: var(--fresh-accent-green) !important;
    color: #FFFFFF !important;
}

@media (max-width: 991.98px) {
    .dg-hero-overlay-content {
        padding-top: 82px;
    }

    .dg-hero-overlay-content::before {
        inset: 0;
    }
}

@media (max-width: 767.98px) {
    .dg-home-banner {
        object-fit: cover !important;
    }

    .dg-hero-overlay-content {
        padding: 76px 22px 40px;
        align-items: center;
        text-align: center;
    }

    .dg-hero-overlay-content::before {
        inset: 0;
    }

    .dg-hero-overlay-content h1 {
        font-size: clamp(32px, 10vw, 44px);
    }

    .dg-hero-overlay-content p {
        font-size: 17px;
    }

    .dg-feature-img {
        aspect-ratio: 4 / 3 !important;
    }
}

/* ===== Footer alignment correction ===== */
.deligate-footer {
    background: #032617 !important;
}

.deligate-footer .container {
    max-width: 1390px !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
}

.footer-main {
    grid-template-columns: 1.05fr .88fr 1fr !important;
    column-gap: 66px !important;
    padding: 54px 0 76px !important;
}

.footer-brand-block {
    align-self: center;
    max-width: 430px !important;
    text-align: left !important;
}

.footer-logo-link {
    margin-bottom: 28px !important;
}

.footer-logo {
    width: 200px !important;
    display: block;
}

.footer-tagline {
    margin-bottom: 20px !important;
}

.footer-gold-rule {
    margin: 0 0 24px !important;
}

.footer-links-column,
.footer-contact-column {
    padding-left: 72px !important;
}

.footer-column {
    min-height: 295px !important;
    justify-content: flex-start;
}

.footer-column h5 {
    margin-bottom: 22px !important;
}

.footer-links-column .footer-link {
    align-items: center;
    min-height: 24px;
}

.footer-contact-column {
    min-width: 330px;
}

.footer-contact-item {
    grid-template-columns: 34px 1px 230px !important;
    column-gap: 17px !important;
    min-height: 42px;
    white-space: nowrap;
}

.footer-contact-item span {
    white-space: nowrap;
}

.footer-contact-item::after {
    height: 30px !important;
}

.deligate-footer .social-icons-row {
    margin-top: 18px !important;
}

.footer-bottom {
    padding: 26px 0 34px !important;
}

@media (max-width: 1199.98px) {
    .footer-main {
        grid-template-columns: 1fr .9fr 1fr !important;
        column-gap: 36px !important;
    }

    .footer-links-column,
    .footer-contact-column {
        padding-left: 36px !important;
    }
}

@media (max-width: 991.98px) {
    .footer-main {
        grid-template-columns: 1fr !important;
        row-gap: 34px !important;
        padding: 48px 0 48px !important;
    }

    .footer-brand-block {
        align-self: start;
    }

    .footer-links-column,
    .footer-contact-column {
        padding-left: 28px !important;
    }

    .footer-column {
        min-height: 0 !important;
    }

    .footer-contact-column {
        min-width: 0;
    }
}

@media (max-width: 575.98px) {
    .deligate-footer .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .footer-logo {
        width: 170px !important;
    }

    .footer-contact-item {
        grid-template-columns: 30px 1px minmax(0, 1fr) !important;
        white-space: normal;
    }

    .footer-contact-item span {
        white-space: normal;
    }
}

/* ===== Final document-spec overrides ===== */
body {
    font-family: 'Inter', Arial, sans-serif !important;
    background: var(--main-bg) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.dg-hero-title,
.dg-section-title,
.footer-column h5 {
    font-family: 'Sora', Arial, sans-serif !important;
    letter-spacing: 0 !important;
}

.navbar-custom {
    min-height: 92px !important;
    padding: 10px 0 !important;
}

.navbar-logo {
    height: 62px !important;
    max-width: 190px !important;
    object-fit: contain;
    transform: none !important;
}

.dg-drawer-logo {
    width: 190px !important;
    height: 62px !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: scale(2.2) !important;
    transform-origin: center center !important;
}



.dg-feature-img,
.dg-ecosystem-card img {
    object-fit: cover !important;
    object-position: center !important;
}

.dg-feature-img {
    aspect-ratio: 4 / 3;
}

.dg-ecosystem-card img {
    aspect-ratio: 4 / 3 !important;
}

.deligate-footer {
    background: var(--footer-bg) !important;
    color: #D1D5DB !important;
    padding: 0 !important;
    border-top: 0 !important;
}

.footer-main {
    display: grid !important;
    grid-template-columns: minmax(260px, 1.4fr) minmax(180px, .8fr) minmax(220px, .8fr);
    gap: clamp(32px, 6vw, 84px);
    padding: 58px 0 44px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

.footer-logo {
    width: 150px !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
    filter: brightness(0) invert(1) !important;
}

.footer-brand-block {
    max-width: 420px;
}

.footer-tagline {
    color: #FFFFFF !important;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-column {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h5 {
    color: #FFFFFF !important;
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 8px;
}

.footer-text,
.deligate-footer p {
    color: #9CA3AF !important;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.footer-link {
    color: #D1D5DB !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex !important;
}

.footer-link::after {
    display: none !important;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--fresh-accent-green) !important;
    transform: translateX(3px);
}

.deligate-footer .social-icons-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.deligate-footer .social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(209, 213, 219, .24) !important;
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, .06);
}

.deligate-footer .social-circle:hover,
.deligate-footer .social-circle.toggled {
    background: var(--fresh-accent-green) !important;
    border-color: var(--fresh-accent-green) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(209, 213, 219, .18) !important;
    padding: 20px 0 24px !important;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF !important;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .navbar-custom {
        min-height: 82px !important;
    }

    .navbar-logo {
        height: 56px !important;
    }



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

    .footer-brand-block {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .navbar-custom {
        min-height: 76px !important;
    }

    .navbar-logo {
        height: 48px !important;
        max-width: 160px !important;
    }



    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 44px 0 34px;
    }

    .footer-logo {
        width: 132px !important;
    }
}

/* ===== Document alignment fixes ===== */
body {
    font-family: 'Inter', Arial, sans-serif !important;
    background: var(--main-bg) !important;
    color: var(--secondary-text) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.dg-hero-title,
.dg-section-title,
.footer-column h5 {
    font-family: 'Sora', Arial, sans-serif !important;
    letter-spacing: 0 !important;
}

.navbar-custom {
    min-height: 92px !important;
    padding: 10px 0 !important;
}

.navbar-custom.scrolled {
    padding: 8px 0 !important;
}

.navbar-logo {
    height: 62px !important;
    max-width: 190px;
    object-fit: contain;
    transform: none !important;
}

.dg-drawer-logo {
    height: 54px !important;
}



.dg-feature-img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.dg-about-hero .dg-feature-img,
.dg-section-main .dg-feature-img {
    object-position: center right;
}

.dg-what-hero .dg-feature-img {
    object-position: center;
}

.dg-ecosystem-card img {
    aspect-ratio: 4 / 3 !important;
    object-fit: cover;
}

.dg-section-title {
    font-size: clamp(2.2rem, 4vw, 3rem) !important;
}

/* .dg-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
} */

.dg-body-copy {
    font-size: 18px !important;
}

.deligate-footer {
    background: var(--footer-bg) !important;
    color: #D1D5DB;
    padding: 0;
    border-top: 0 !important;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) minmax(180px, .8fr) minmax(220px, .8fr);
    gap: clamp(32px, 6vw, 84px);
    padding: 58px 0 44px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

.footer-logo {
    width: 150px !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
    filter: brightness(0) invert(1) !important;
}

.footer-brand-block {
    max-width: 420px;
}

.footer-tagline {
    color: #FFFFFF !important;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h5 {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 8px;
}

.footer-text,
.deligate-footer p {
    color: #9CA3AF !important;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.footer-link {
    color: #D1D5DB !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex !important;
    transition: color .2s ease, transform .2s ease;
}

.footer-link::after {
    display: none !important;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--fresh-accent-green) !important;
    transform: translateX(3px);
}

.deligate-footer .social-icons-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.deligate-footer .social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(209, 213, 219, .24) !important;
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, .06);
}

.deligate-footer .social-circle:hover,
.deligate-footer .social-circle.toggled {
    background: var(--fresh-accent-green) !important;
    border-color: var(--fresh-accent-green) !important;
    color: #FFFFFF !important;
}

.footer-bottom {
    border-top: 1px solid rgba(209, 213, 219, .18);
    padding: 20px 0 24px;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF !important;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .navbar-custom {
        min-height: 82px !important;
    }

    .navbar-logo {
        height: 56px !important;
    }



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

    .footer-brand-block {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .navbar-custom {
        min-height: 76px !important;
    }

    .navbar-logo {
        height: 48px !important;
        max-width: 160px;
    }



    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 44px 0 34px;
    }

    .footer-logo {
        width: 132px !important;
    }
}

/* ===== Premium visual polish ===== */
html {
    background: var(--footer-bg);
}

body {
    background:
        linear-gradient(180deg, rgba(250, 250, 247, 1) 0%, rgba(244, 246, 241, .65) 48%, rgba(250, 250, 247, 1) 100%);
}

.particles-container,
.particle {
    display: none !important;
}

.container {
    max-width: 1240px;
}

.navbar-custom {
    min-height: 78px;
    border-bottom: 1px solid rgba(28, 74, 24, .08);
    box-shadow: 0 10px 36px rgba(15, 45, 12, .06);
    backdrop-filter: blur(14px);
}

.navbar-logo {
    height: 42px !important;
}

.navbar-nav {
    padding: 7px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(28, 74, 24, .08);
    border-radius: 999px;
}

.nav-link {
    border-radius: 999px;
    padding: 9px 15px !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}

.nav-link:hover,
.nav-link.active-link {
    background: rgba(48, 112, 40, .09);
}

.btn-nav-cta {
    min-height: 44px;
    padding: 11px 18px;
    box-shadow: 0 14px 28px rgba(48, 112, 40, .22);
}


.dg-home-carousel .carousel-control-prev,
.dg-home-carousel .carousel-control-next {
    width: 64px;
    opacity: 1;
}

.dg-home-carousel .carousel-control-prev-icon,
.dg-home-carousel .carousel-control-next-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-size: 45%;
    background-color: rgba(28, 74, 24, .86);
    box-shadow: 0 12px 26px rgba(28, 74, 24, .24);
}

.dg-home-carousel .carousel-indicators {
    margin-bottom: 18px;
}

.dg-home-carousel .carousel-indicators [data-bs-target] {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(28, 74, 24, .32);
    opacity: 1;
}

.dg-home-carousel .carousel-indicators .active {
    background-color: var(--primary-green);
}

.dg-section {
    position: relative;
    padding: 96px 0;
}

.dg-section + .dg-section {
    border-top: 1px solid rgba(28, 74, 24, .07);
}

.section-kicker {
    padding: 12px 17px;
    background: rgba(48, 112, 40, .09);
    border: 1px solid rgba(48, 112, 40, .13);
    border-radius: 999px;
    margin-bottom: 18px;
}

.section-kicker-light {
    background: rgba(255, 255, 255, .11);
    border-color: rgba(255, 255, 255, .22);
}

.dg-section-title,
.dg-hero-title {
    text-wrap: balance;
}

.dg-body-copy,
.dg-hero-copy,
.dg-lead {
    max-width: 780px;
}

.dg-feature-img {
    border: 1px solid rgba(28, 74, 24, .1);
    box-shadow: 0 24px 60px rgba(31, 41, 55, .13);
}

.dg-card,
.dg-ecosystem-card,
.dg-form-card {
    border: 1px solid rgba(28, 74, 24, .1);
    box-shadow: 0 18px 44px rgba(31, 41, 55, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.dg-card:hover,
.dg-ecosystem-card:hover,
.dg-form-card:hover {
    transform: translateY(-6px);
    border-color: rgba(48, 112, 40, .28);
    box-shadow: 0 28px 64px rgba(31, 41, 55, .14);
}

.dg-card {
    min-height: 100%;
}

.dg-icon,
.dg-step {
    box-shadow: inset 0 0 0 1px rgba(48, 112, 40, .1), 0 12px 24px rgba(48, 112, 40, .12);
}

.dg-card h2,
.dg-card h3 {
    color: var(--primary-text);
}

.dg-card h2::after,
.dg-card h3::after {
    content: '';
    display: block;
    width: 42px;
    height: 3px;
    margin-top: 13px;
    border-radius: 999px;
    background: var(--primary-green);
}

.dg-ecosystem-card {
    background: #FFFFFF;
}

.dg-ecosystem-card img {
    aspect-ratio: 1 / 1;
    transition: transform .35s ease;
}

.dg-ecosystem-card:hover img {
    transform: scale(1.035);
}

.dg-ecosystem-body {
    min-height: 210px;
}

.dg-page-hero {
    position: relative;
    padding-top: 142px;
    overflow: hidden;
    border-bottom: 1px solid rgba(28, 74, 24, .08);
}

.dg-page-hero .container {
    position: relative;
    z-index: 1;
}

.dg-page-hero::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 1px;
    background: rgba(48, 112, 40, .28);
}


.dg-contact-section {
    background:
        linear-gradient(180deg, var(--dark-forest-green) 0%, var(--footer-bg) 100%);
}

.dg-contact-hero {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.dg-form-card {
    background: rgba(255, 255, 255, .98);
}

.contact-input {
    min-height: 48px;
    padding: 12px 14px !important;
}

textarea.contact-input {
    min-height: 132px;
}

.contact-submit {
    min-height: 50px;
    box-shadow: 0 16px 30px rgba(48, 112, 40, .22);
}

.deligate-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-logo {
    filter: brightness(0) invert(1);
}

#scrollToTop {
    border-radius: 50% !important;
    box-shadow: 0 14px 28px rgba(15, 45, 12, .28);
}

@media (max-width: 991.98px) {
    .navbar-nav {
        background: transparent;
        border: 0;
        border-radius: 0;
        padding: 0;
    }


}

@media (max-width: 767.98px) {
    .navbar-custom {
        min-height: 72px;
    }



    .dg-home-carousel .carousel-control-prev,
    .dg-home-carousel .carousel-control-next {
        width: 46px;
    }

    .dg-home-carousel .carousel-control-prev-icon,
    .dg-home-carousel .carousel-control-next-icon {
        width: 34px;
        height: 34px;
    }

    .dg-section {
        padding: 64px 0;
    }

    .dg-card:hover,
    .dg-ecosystem-card:hover,
    .dg-form-card:hover {
        transform: none;
    }
}


/* ===== Final document-spec overrides ===== */
body {
    font-family: 'Inter', Arial, sans-serif !important;
    background: var(--main-bg) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.dg-hero-title,
.dg-section-title,
.footer-column h5 {
    font-family: 'Sora', Arial, sans-serif !important;
    letter-spacing: 0 !important;
}

.navbar-custom {
    min-height: 92px !important;
    padding: 10px 0 !important;
}

.navbar-logo {
    height: 62px !important;
    max-width: 190px !important;
    object-fit: contain;
    transform: none !important;
}

.dg-drawer-logo {
    height: 54px !important;
}

.dg-home-hero {
    padding-top: 92px !important;
    border-bottom: 1px solid rgba(28, 74, 24, .08);
}

.dg-home-carousel {
    position: relative;
    overflow: hidden;
    background: #fbf8f3 !important;
}

.dg-home-carousel::after {
    display: none !important;
}

.dg-home-carousel .carousel-inner,
.dg-home-carousel .carousel-item {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 16 / 9 !important;
}

.dg-home-banner {
    width: 100% !important;
    height: auto;
    display: block;
    object-fit: cover !important;
    object-position: center center !important;
    background: #fbf8f3 !important;
}

.dg-feature-img,
.dg-ecosystem-card img {
    object-fit: cover !important;
    object-position: center !important;
}

.dg-feature-img {
    aspect-ratio: 4 / 3;
}

.dg-ecosystem-card img {
    aspect-ratio: 4 / 3 !important;
}

.deligate-footer {
    background: var(--footer-bg) !important;
    color: #D1D5DB !important;
    padding: 0 !important;
    border-top: 0 !important;
}

.footer-main {
    display: grid !important;
    grid-template-columns: minmax(260px, 1.4fr) minmax(180px, .8fr) minmax(220px, .8fr);
    gap: clamp(32px, 6vw, 84px);
    padding: 58px 0 44px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}

.footer-logo {
    width: 150px !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
    filter: brightness(0) invert(1) !important;
}

.footer-brand-block {
    max-width: 420px;
}

.footer-tagline {
    color: #FFFFFF !important;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-column {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h5 {
    color: #FFFFFF !important;
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 8px;
}

.footer-text,
.deligate-footer p {
    color: #9CA3AF !important;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.footer-link {
    color: #D1D5DB !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex !important;
}

.footer-link::after {
    display: none !important;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--fresh-accent-green) !important;
    transform: translateX(3px);
}

.deligate-footer .social-icons-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.deligate-footer .social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(209, 213, 219, .24) !important;
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, .06);
}

.deligate-footer .social-circle:hover,
.deligate-footer .social-circle.toggled {
    background: var(--fresh-accent-green) !important;
    border-color: var(--fresh-accent-green) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(209, 213, 219, .18) !important;
    padding: 20px 0 24px !important;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF !important;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .navbar-custom {
        min-height: 82px !important;
    }

    .navbar-logo {
        height: 56px !important;
    }

    .dg-home-hero {
        padding-top: 82px !important;
    }

    .dg-home-carousel .carousel-inner,
    .dg-home-carousel .carousel-item {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 16 / 9 !important;
    }

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

    .footer-brand-block {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .navbar-custom {
        min-height: 76px !important;
    }

    .navbar-logo {
        height: 48px !important;
        max-width: 160px !important;
    }

    .dg-home-hero {
        padding-top: 76px !important;
    }

    .dg-home-carousel .carousel-inner,
    .dg-home-carousel .carousel-item {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 16 / 9 !important;
    }

    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 44px 0 34px;
    }

    .footer-logo {
        width: 132px !important;
    }
}

/* ===== Footer screenshot final lock ===== */
.deligate-footer {
    --footer-gold: #C99A21;
    background: #032617 !important;
    color: #D7DED2 !important;
    padding: 0 !important;
}

.deligate-footer .container {
    max-width: 1390px !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
}

.footer-main {
    display: grid !important;
    grid-template-columns: 1.05fr .88fr 1fr !important;
    column-gap: 66px !important;
    row-gap: 34px !important;
    padding: 54px 0 76px !important;
    align-items: start;
}

.footer-brand-block {
    align-self: center;
    max-width: 430px !important;
    text-align: left !important;
}

.footer-logo-link {
    display: inline-flex !important;
    margin-bottom: 28px !important;
}

.footer-logo {
    width: 200px !important;
    height: auto !important;
    filter: none !important;
}

.footer-tagline {
    color: #D7DED2 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    margin-bottom: 20px !important;
}

.footer-gold-rule {
    display: block;
    width: 52px;
    height: 2px;
    background: var(--footer-gold);
    margin: 0 0 24px !important;
}

.footer-text,
.deligate-footer p {
    color: #D7DED2 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
}

.footer-column {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px !important;
    min-height: 295px !important;
    justify-content: flex-start;
}

.footer-links-column,
.footer-contact-column {
    border-left: 2px solid var(--footer-gold);
    padding-left: 72px !important;
}

.footer-column h5 {
    color: var(--footer-gold) !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    margin: 0 0 22px !important;
}

.footer-link {
    color: #D7DED2 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.3;
    text-decoration: none !important;
    gap: 12px;
}

.footer-links-column .footer-link::before {
    content: '\203A';
    color: var(--footer-gold);
    font-size: 26px;
    line-height: 15px;
}

.footer-link::after {
    display: none !important;
}

.footer-link:hover,
.footer-link:focus,
.footer-contact-item:hover {
    color: var(--footer-gold) !important;
    transform: none !important;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 34px 1px 230px !important;
    column-gap: 17px !important;
    row-gap: 0;
    align-items: center;
    color: #D7DED2 !important;
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1.4;
    min-height: 42px;
    white-space: nowrap;
}

.footer-contact-item span {
    white-space: nowrap;
}

.footer-contact-item i {
    color: var(--footer-gold);
    font-size: 21px;
    text-align: center;
}

.footer-contact-item::after {
    content: none;
    display: none;
}

.deligate-footer .social-icons-row {
    display: flex !important;
    gap: 18px !important;
    margin-top: 18px !important;
}

.deligate-footer .social-circle {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    border: 2px solid var(--footer-gold) !important;
    background: transparent !important;
    color: var(--footer-gold) !important;
    font-size: 18px;
}

.deligate-footer .social-circle:hover,
.deligate-footer .social-circle.toggled {
    background: var(--footer-gold) !important;
    border-color: var(--footer-gold) !important;
    color: #032617 !important;
}

.footer-bottom {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-top: 2px solid rgba(201, 154, 33, .82) !important;
    padding: 26px 0 34px !important;
    text-align: left !important;
}

.footer-bottom p {
    color: #D7DED2 !important;
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--footer-gold);
    white-space: nowrap;
}

.footer-legal-links .footer-link {
    font-size: 15px !important;
}

@media (min-width: 992px) {
    .dg-home-carousel .carousel-inner,
    .dg-home-carousel .carousel-item {
        height: auto !important;
        aspect-ratio: unset !important;
    }
}

@media (max-width: 991.98px) {
    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
        padding: 54px 0 46px !important;
    }

    .footer-links-column,
    .footer-contact-column {
        border-left: 2px solid var(--footer-gold);
        padding-left: 28px;
    }

    .footer-column {
        min-height: 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .footer-logo {
        width: 180px !important;
    }

    .footer-main {
        padding: 44px 0 38px !important;
    }

    .footer-contact-item {
        grid-template-columns: 28px 1px minmax(0, 1fr);
        gap: 12px;
        font-size: 15px;
    }

    .footer-legal-links {
        gap: 12px;
        white-space: normal;
        flex-wrap: wrap;
    }
}

/* ===== Navbar screenshot match ===== */
.navbar-custom {
    min-height: 88px !important;
    padding: 0 !important;
    background: #FFFFFF !important;
    border-bottom: 1px solid #EEF1EA !important;
    box-shadow: 0 2px 18px rgba(31, 41, 55, .06) !important;
    backdrop-filter: none !important;
}

.navbar-custom .container-fluid {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding-left: 22px !important;
    padding-right: 22px !important;
}

.navbar-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: clamp(168px, 16vw, 250px);
    height: clamp(52px, 5.2vw, 84px);
    overflow: hidden;
}

.navbar-logo {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center !important;
    filter: none !important;
    transform: scale(2.55) !important;
    transform-origin: center center !important;
}

.navbar-logo:hover {
    transform: scale(2.55) !important;
}

.navbar-collapse {
    justify-content: flex-end !important;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.15vw, 34px) !important;
    margin-right: 26px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.navbar-nav .nav-link {
    position: relative;
    margin: 0 !important;
    padding: 32px 0 30px !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #111827 !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap;
    transition: color .2s ease;
}

.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: 20px !important;
    width: 42px !important;
    height: 4px !important;
    border-radius: 999px !important;
    background: #307028 !important;
    transform: translateX(-50%) scaleX(0) !important;
    transform-origin: center !important;
    opacity: 1 !important;
    transition: transform .2s ease !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active-link {
    color: #307028 !important;
    background: transparent !important;
    transform: none !important;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active-link::before,
.navbar-nav .nav-link.active-link::after {
    transform: translateX(-50%) scaleX(1) !important;
}

.btn-nav-cta {
    min-height: 52px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px !important;
    padding: 15px 22px !important;
    border-radius: 8px !important;
    background: #307028 !important;
    color: #FFFFFF !important;
    font-family: 'Inter', Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(48, 112, 40, .24) !important;
    transition: background .2s ease, box-shadow .2s ease !important;
}

.btn-nav-cta:hover {
    background: #1C4A18 !important;
    color: #FFFFFF !important;
    transform: none !important;
    box-shadow: 0 12px 24px rgba(28, 74, 24, .28) !important;
}

.btn-nav-cta i {
    font-size: 15px;
}

@media (max-width: 1199.98px) {
    .navbar-custom .container-fluid {
        gap: 18px;
    }

    .navbar-nav {
        gap: 16px !important;
        margin-right: 18px !important;
    }

    .navbar-nav .nav-link {
        font-size: 13px !important;
    }

    .btn-nav-cta {
        min-height: 48px !important;
        padding: 14px 18px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-custom,
    .navbar-custom .container-fluid {
        min-height: 76px !important;
    }

    .navbar-logo {
        transform: scale(2.4) !important;
    }

    .dg-drawer-logo {
        width: 168px !important;
        height: 56px !important;
        transform: scale(2.05) !important;
    }

    .navbar-nav {
        margin-right: 0 !important;
    }
}

/* ===== About page document design ===== */
.dg-about-doc-section {
    position: relative;
    min-height: 100vh;
    padding: 160px 0 96px;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 16%, rgba(48, 112, 40, .14) 0 13%, transparent 13.5%),
        linear-gradient(180deg, #FBF8F1 0%, #FFFFFF 100%);
}

.dg-about-doc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 22%, rgba(255, 255, 255, .9), transparent 34%);
    pointer-events: none;
}

.dg-about-doc-section .container {
    position: relative;
    z-index: 1;
}

.dg-about-doc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: #1C4A18;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.dg-about-doc-kicker::before {
    content: '';
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: #307028;
}

.dg-about-doc-title {
    max-width: 620px;
    margin: 0;
    color: #1C4A18;
    font-family: Georgia, 'Times New Roman', serif !important;
    font-size: clamp(3rem, 5.8vw, 5.2rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0;
}

.dg-about-doc-rule {
    width: 74px;
    height: 3px;
    margin: 34px 0 34px;
    border-radius: 999px;
    background: #C79C3B;
}

.dg-about-doc-section p {
    max-width: 590px;
    margin: 0 0 20px;
    color: #1F2937;
    font-size: 18px;
    line-height: 1.62;
}

.dg-about-doc-list {
    max-width: 620px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #1F2937;
    font-size: 18px;
    line-height: 1.58;
}

.dg-about-doc-list li {
    position: relative;
    margin: 0 0 18px;
    padding-left: 34px;
}

.dg-about-doc-list li:last-child {
    margin-bottom: 0;
}

.dg-about-doc-list li::before {
    content: '';
    position: absolute;
    top: .62em;
    left: 0;
    width: 11px;
    height: 11px;
    border: 2px solid #C79C3B;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 0 0 5px rgba(199, 156, 59, .14);
}

.dg-about-doc-visual {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(31, 41, 55, .16);
}

.dg-about-doc-image {
    display: block;
    width: 100%;
    aspect-ratio: 1.12 / 1;
    object-fit: cover;
    object-position: center;
}

.dg-about-doc-pillars {
    margin-top: 28px;
}

.dg-about-doc-card {
    min-height: 206px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 18px;
    border: 1px solid rgba(28, 74, 24, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .88);
    text-align: center;
    box-shadow: 0 20px 48px rgba(31, 41, 55, .08);
}

.dg-about-doc-card span {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #4D7F4D;
    color: #FFFFFF;
    font-size: 28px;
}

.dg-about-doc-card h2 {
    max-width: 180px;
    margin: 0;
    color: #1F2937;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.12;
}

.dg-about-doc-card h2::after {
    content: '';
    display: block;
    width: 42px;
    height: 2px;
    margin: 20px auto 0;
    border-radius: 999px;
    background: #C79C3B;
}

@media (max-width: 991.98px) {
    .dg-about-doc-section {
        padding: 124px 0 72px;
    }

    .dg-about-doc-title,
    .dg-about-doc-section p,
    .dg-about-doc-list {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .dg-about-doc-section {
        padding: 108px 0 56px;
    }

    .dg-about-doc-kicker {
        letter-spacing: 2px;
    }

    .dg-about-doc-title {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .dg-about-doc-section p,
    .dg-about-doc-list {
        font-size: 16px;
    }

    .dg-about-doc-card {
        min-height: 160px;
    }
}

/* ===== Ecosystem page final polish ===== */
.dg-ecosystem-hero {
    background:
        radial-gradient(circle at top, rgba(48, 112, 40, .08), transparent 48%),
        linear-gradient(180deg, #fbf8f3 0%, #ffffff 100%);
}

.dg-ecosystem-hero .dg-hero-copy {
    max-width: 760px;
}

.dg-ecosystem-overview {
    padding-top: 40px;
    padding-bottom: 40px;
}

.dg-ecosystem-overview-card {
    height: 100%;
    padding: 28px 24px 30px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(28, 74, 24, .10);
    border-radius: 28px;
    box-shadow: 0 20px 48px rgba(31, 41, 55, .08);
}

.dg-ecosystem-overview-art {
    width: min(100%, 280px);
    aspect-ratio: 1 / 1;
    margin: 0 auto 18px;
    display: block;
    object-fit: contain;
}

.dg-ecosystem-overview-card h2 {
    margin-bottom: 12px;
    color: var(--primary-text);
    font-size: clamp(1.5rem, 2.3vw, 2rem);
}

.dg-ecosystem-overview-card p {
    margin: 0;
    color: var(--secondary-text);
    font-size: 1rem;
    line-height: 1.7;
}

.dg-ecosystem-feature {
    padding-top: 20px;
}

.dg-ecosystem-feature-frame {
    padding: clamp(14px, 2vw, 24px);
    background: linear-gradient(180deg, #fcf8f1 0%, #f7f2e8 100%);
    border: 1px solid rgba(28, 74, 24, .10);
    border-radius: 28px;
    box-shadow: 0 20px 48px rgba(31, 41, 55, .08);
    overflow: hidden;
}

.dg-ecosystem-feature-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

@media (max-width: 991.98px) {
    .dg-ecosystem-overview {
        padding-top: 20px;
    }

    .dg-ecosystem-feature-frame {
        border-radius: 24px;
    }
}

@media (max-width: 767.98px) {
    .dg-ecosystem-overview-card {
        padding: 24px 20px 26px;
        border-radius: 22px;
    }

    .dg-ecosystem-overview-art {
        width: min(100%, 220px);
        margin-bottom: 14px;
    }

    .dg-ecosystem-feature-frame {
        padding: 12px;
        border-radius: 22px;
    }

    .dg-ecosystem-feature-img {
        border-radius: 16px;
    }
}

/* ===== Contact page banner cleanup ===== */
.dg-contact-banner-hero {
    /* padding: 100px 0 28px; */
    background: var(--main-bg) !important;
}

.dg-contact-banner-frame {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(28, 74, 24, .10);
    box-shadow: 0 20px 48px rgba(31, 41, 55, .10);
    background: #ffffff;
}

.dg-contact-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.dg-contact-hero,
.dg-contact-hero::after {
    display: none !important;
}

.dg-contact-section {
    background: var(--main-bg) !important;
    padding-top: 32px !important;
}

.dg-contact-section .dg-form-card {
    background: #FFFFFF !important;
    border: 1px solid rgba(28, 74, 24, .10) !important;
    box-shadow: 0 18px 44px rgba(31, 41, 55, .08) !important;
}

@media (max-width: 991.98px) {
    /* .dg-contact-banner-hero {
        padding: 126px 0 24px;
    } */

    .dg-contact-banner-frame {
        border-radius: 24px;
    }
}

@media (max-width: 767.98px) {
    /* .dg-contact-banner-hero {
        padding: 108px 0 20px;
    } */

    .dg-contact-banner-frame {
        border-radius: 20px;
    }

    .dg-contact-section {
        padding-top: 20px !important;
    }
}
/* ===== What we do values refresh ===== */
.dg-what-values {
    background:
        radial-gradient(circle at top, rgba(48, 112, 40, .07), transparent 42%),
        linear-gradient(180deg, #f8faf7 0%, #ffffff 100%);
}

.dg-value-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px !important;
    border-radius: 24px !important;
    border: 1px solid rgba(28, 74, 24, .10) !important;
    box-shadow: 0 18px 44px rgba(31, 41, 55, .08) !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdf9 100%);
}

.dg-value-card::before {
    width: 64px !important;
    height: 5px !important;
    margin-bottom: 4px !important;
    border-radius: 999px !important;
}

.dg-value-card-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.dg-value-card .dg-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f7fbf5 0%, #eef6ea 100%) !important;
    color: var(--primary-green);
    font-size: 28px;
    box-shadow: inset 0 0 0 1px rgba(48, 112, 40, .12), 0 12px 24px rgba(48, 112, 40, .10) !important;
}

.dg-value-card h2 {
    margin: 0 !important;
    font-size: clamp(1.85rem, 2.2vw, 2.3rem) !important;
    line-height: 1.08 !important;
}

.dg-value-card h2::after {
    margin-top: 16px !important;
    width: 48px !important;
}

.dg-value-card p {
    margin: 0 !important;
    font-size: 1.06rem !important;
    line-height: 1.75 !important;
}

@media (max-width: 991.98px) {
    .dg-value-card {
        padding: 26px !important;
    }

    .dg-value-card h2 {
        font-size: 1.95rem !important;
    }
}

@media (max-width: 767.98px) {
    .dg-value-card {
        padding: 22px !important;
        border-radius: 20px !important;
    }

    .dg-value-card-top {
        align-items: flex-start;
    }

    .dg-value-card .dg-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .dg-value-card h2 {
        font-size: 1.7rem !important;
    }

    .dg-value-card p,
    .dg-value-card p {
        font-size: .98rem !important;
    }
}
/* ===== Home carousel consistency ===== */
#mainSlider .carousel-inner,
#mainSlider .carousel-item {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 16 / 9 !important;
}

#mainSlider .dg-home-banner {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}


/* ===== Footer legal modals ===== */
.legal-modal .modal-content {
    border: 0;
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
    overflow: hidden;
}

.legal-modal .modal-header {
    align-items: flex-start;
    background: linear-gradient(135deg, #1C4A18 0%, #307028 100%);
    border: 0;
    color: #fff;
    padding: 24px 28px;
}

.legal-modal .modal-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.legal-modal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    margin-top: 2px;
    opacity: .9;
}

.legal-modal .modal-body {
    color: #334155;
    font-size: .98rem;
    line-height: 1.75;
    max-height: 68vh;
    padding: 28px;
}

.legal-modal .modal-body h3 {
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 800;
    margin: 22px 0 8px;
}

.legal-modal .modal-body h3:first-of-type {
    margin-top: 0;
}

.legal-modal .modal-body p:last-child {
    margin-bottom: 0;
}

.legal-modal .modal-body a {
    color: var(--primary-green);
    font-weight: 700;
}

@media (max-width: 575.98px) {
    .legal-modal .modal-dialog {
        margin: 14px;
    }

    .legal-modal .modal-header,
    .legal-modal .modal-body {
        padding: 22px;
    }
}

/* ===== Footer logo crop ===== */
.deligate-footer .footer-logo-link {
    width: 160px !important;
    height: 45px !important;
    display: block !important;
    margin-bottom: 12px !important;
    overflow: hidden;
}

.deligate-footer .footer-logo {
    width: 340px !important;
    max-width: none !important;
    height: auto !important;
    transform: translate(-95px, -84px) !important;
}

@media (max-width: 575.98px) {
    .deligate-footer .footer-logo-link {
        width: 130px !important;
        height: 60px !important;
        margin-bottom: 10px !important;
    }

    .deligate-footer .footer-logo {
        width: 280px !important;
        transform: translate(-78px, -70px) !important;
    }
}

/* HERO SECTION */
.dg-home-hero{
    padding: 0;
    margin: 0;
}

#mainSlider{
    width: 100%;
    overflow: hidden;
}

#mainSlider .carousel-inner,
#mainSlider .carousel-item{
    height: 800px;
}

#mainSlider .carousel-item img.dg-home-banner{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* Navigation Arrows */
#mainSlider .carousel-control-prev,
#mainSlider .carousel-control-next{
    width: 60px;
    z-index: 10;
}

/* Tablet */
@media (max-width: 991px){
    #mainSlider .carousel-inner,
    #mainSlider .carousel-item{
        height: 550px;
    }
}

/* Mobile */
@media (max-width: 767px){
    #mainSlider .carousel-inner,
    #mainSlider .carousel-item{
        height: auto;
    }

    #mainSlider .carousel-item img.dg-home-banner{
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* ===== HOME HERO BANNER ===== */
.dg-home-hero {
    padding: 0;
    margin: 0;
}

#mainSlider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#mainSlider .carousel-inner,
#mainSlider .carousel-item {
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    aspect-ratio: unset !important;
}

#mainSlider .carousel-item img.deligate-banner-img,
#mainSlider .deligate-banner-img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: unset !important;
    object-position: unset !important;
    background: #fbf8f3;
}

#mainSlider .carousel-control-prev,
#mainSlider .carousel-control-next {
    width: 56px;
    z-index: 10;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    height: 56px;
    bottom: auto;
}

#mainSlider .carousel-control-prev-icon,
#mainSlider .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(28, 74, 24, 0.82);
    background-size: 50%;
    box-shadow: 0 8px 20px rgba(28, 74, 24, 0.3);
}

#mainSlider .carousel-indicators {
    margin-bottom: 18px;
    z-index: 10;
}

#mainSlider .carousel-indicators [data-bs-target] {
    width: 32px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(28, 74, 24, 0.3);
    opacity: 1;
}

#mainSlider .carousel-indicators .active {
    background-color: #307028;
}

/* Tablet */
@media (max-width: 991.98px) {
    #mainSlider .carousel-inner,
    #mainSlider .carousel-item {
        height: auto !important;
    }

    #mainSlider .deligate-banner-img {
        width: 100% !important;
        height: auto !important;
    }

    #mainSlider .carousel-control-prev,
    #mainSlider .carousel-control-next {
        width: 44px;
        height: 44px;
    }

    #mainSlider .carousel-control-prev-icon,
    #mainSlider .carousel-control-next-icon {
        width: 32px;
        height: 32px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    #mainSlider .carousel-inner,
    #mainSlider .carousel-item {
        height: auto !important;
    }

    #mainSlider .deligate-banner-img {
        width: 100% !important;
        height: auto !important;
    }

    #mainSlider .carousel-control-prev,
    #mainSlider .carousel-control-next {
        width: 36px;
        height: 36px;
    }

    #mainSlider .carousel-control-prev-icon,
    #mainSlider .carousel-control-next-icon {
        width: 26px;
        height: 26px;
    }
}
/* ===== MOBILE ARROW SIZE FIX ===== */
@media (max-width: 767.98px) {

    #mainSlider.dg-home-carousel .dg-slider-prev,
    #mainSlider.dg-home-carousel .dg-slider-next {
        width: 22px !important;
        height: 22px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    #mainSlider.dg-home-carousel .dg-slider-prev {
        left: 4px !important;
    }

    #mainSlider.dg-home-carousel .dg-slider-next {
        right: 4px !important;
    }

    #mainSlider.dg-home-carousel .dg-slider-icon,
    #mainSlider.dg-home-carousel .carousel-control-prev-icon,
    #mainSlider.dg-home-carousel .carousel-control-next-icon {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        min-height: 16px !important;
        max-width: 16px !important;
        max-height: 16px !important;
        background-size: 55% !important;
        background-color: rgba(28, 74, 24, 0.85) !important;
        border-radius: 50% !important;
        padding: 0 !important;
    }
}

@media (max-width: 480px) {

    #mainSlider.dg-home-carousel .dg-slider-prev,
    #mainSlider.dg-home-carousel .dg-slider-next {
        width: 18px !important;
        height: 18px !important;
    }

    #mainSlider.dg-home-carousel .dg-slider-icon,
    #mainSlider.dg-home-carousel .carousel-control-prev-icon,
    #mainSlider.dg-home-carousel .carousel-control-next-icon {
        width: 14px !important;
        height: 14px !important;
        min-width: 14px !important;
        min-height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important;
        background-size: 50% !important;
    }
}

/* ===== Why Deligate hero — remove background watermark ===== */
.dg-why-hero {
    background-image: none !important;
    background: var(--main-bg) !important;
}

.dg-why-hero .dg-hero-title {
    color: var(--primary-text) !important;
    -webkit-text-fill-color: var(--primary-text) !important;
    text-shadow: none !important;
}

.dg-why-hero .section-kicker {
    color: var(--primary-green) !important;
}
/* Remove watermark from Ecosystem hero */
.dg-ecosystem-hero {
    background-image: none !important;
    background: var(--main-bg) !important;
}

.dg-ecosystem-hero .dg-hero-title {
    color: var(--primary-text) !important;
    -webkit-text-fill-color: var(--primary-text) !important;
    text-shadow: none !important;
}
/* Remove watermark/background image from What We Do page */
.dg-what-hero {
    background-image: none !important;
    background: #ffffff !important;
}

.dg-what-hero::before,
.dg-what-hero::after {
    content: none !important;
    display: none !important;
}