/* Universal Color Palette */
:root {
    --primary: #1E3F19;
	 --secondary: #7aa445;
	--button-text:#ffffff;
	--cards: #ffffff;
	--section: #daf9d5;
	--heading-text:#313131;
	--paragrapgh-text:#313131;
	--background:#ffffff;
}
body, html {
    margin:0;
    padding: 0;
    width: 100%;
    height: 100%;
    
 
}

/* Ensure the container for logo and text handles layout correctly */
.wn-logo-area { 
    display: flex; 
    align-items: center; 
    gap: 12px; /* Keeps consistent space between logo and name */
    text-decoration: none;
}
.wn-nav-logo {
    height: 32px;
    width: auto;
    border-radius: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
    object-fit: contain;
    flex-shrink: 0; /* Prevents logo from squishing */
}
.wn-nav-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
.wn-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--heading-text);
    letter-spacing: -0.8px;
    transition: opacity 0.2s;
    white-space: nowrap; /* Ensures text doesn't wrap to the next line */
}
.wn-logo-text:hover { opacity: 0.8; }

/* The rest of your verified navigation CSS */
.wn-main-nav {
    background: var(--background);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(30, 63, 25, 0.1);
    height: 65px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1200;
    transition: background 0.3s ease;
}
.wn-nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wn-nav-links { display: flex; gap: 32px; align-items: center; }
.wn-nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.3rem;
    position: relative;
    transition: color 0.3s ease;
}
.wn-nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}
.wn-nav-links a:hover { color: var(--primary); }
.wn-nav-links a:hover::after { width: 100%; }

.wn-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.wn-mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.wn-mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--background);
    padding: 20px;
    gap: 20px;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 20px rgba(30, 63, 25, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.wn-mobile-menu.wn-active { 
    display: flex; 
    opacity: 1; 
    visibility: visible;
}

@media (max-width: 768px) {
    .wn-nav-links { display: none; }
    .wn-mobile-menu-toggle { display: flex; }
}

/* Modern About Section Styling */
#about-section {
	padding: 80px 20px;
    background: var(--section);
    overflow: hidden;
	margin-bottom:5px;
	margin-top:5px;
}

#about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Label Styling */
.section-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Image Styling */
#about-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px var(--primary);
    transition: transform 0.4s ease;
}

#about-image:hover {
    transform: scale(1.02);
}

/* Typography */
#about-content h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.1;
}

.content-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--paragrapgh-text);
    margin-bottom: 20px;
}

/* Button & Input */
.action-wrapper { margin-top: 30px; }

.custom-button {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px #ffffff;
    border: none;
    font-size: 1rem;
}

.custom-button:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
}

.custom-secondary-button {
    display: inline-block;
    padding: 16px 32px;
    background: #ffffff;
    color: var(--primary);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    
    border: none;
    font-size: 1rem;
}

.custom-secondary-button:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-3px);
}


.link-input {
    display: block;
    margin-top: 15px;
    padding: 8px 12px;
    border: 1px solid grey;
    border-radius: 8px;
    width: 100%;
    max-width: 250px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    #about-container { grid-template-columns: 1fr; text-align: center; }
    .action-wrapper { display: flex; flex-direction: column; align-items: center; }
}

[contenteditable="true"]:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

/* CTA Section - Thinner & Defined via CSS Variables */
#cta-main {
    padding: 60px 20px;
    background: var(--primary);
    text-align: center;
	margin-bottom:5px;
	margin-top:5px;
}

#cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

#cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.1;
}

#cta-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 30px;
	font-size:2rem;
}

#cta-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}



/* The Grid Container */
.item-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.services-block {
    padding: 80px 20px;
    background: var(--section);
    text-align: center;
    overflow: hidden;
    margin-bottom: 5px;
    margin-top: 5px;
}

.services-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--paragrapgh-text);
    margin-bottom: 20px;
}

/* Container for the service cards */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px; /* Spacing between cards */
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    /* 4 per row on large screens (accounting for gap) */
    flex: 1 1 calc(25% - 19px);
    max-width: 100%; 
    padding: 20px;
    border-radius: 12px;
    background: var(--cards);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* Service Image Styling */
.service-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    display: block;
    margin-bottom: 15px;
    background: var(--background);
}

/* ==========================================
   Responsive Breakpoints for Mobile/Tablets
   ========================================== */

/* Tablets (2 cards per row) */
@media screen and (max-width: 992px) {
    .service-card {
        flex: 1 1 calc(50% - 15px);
    }
}

/* Mobile Phones (1 card per row) */
@media screen and (max-width: 576px) {
    .services-block {
        padding: 40px 15px; /* Reduce padding on small screens */
    }

    .service-card {
        flex: 1 1 100%;
    }
}
/* Hero Section */
#hero-section {
    position: relative;
    padding: 160px 20px;
    text-align: center;
    overflow: hidden;
}

/* The Background Image */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    cursor: pointer;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

/* Hero Content Wrapper */
.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

#hero-section h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

#hero-section p {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Actions Container */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}


/* Testimonials Block Container */
.testimonials-block {
    padding: 80px 20px;
    background: var(--section);
    text-align: center;
    overflow: hidden;
	margin-bottom:5px;
	margin-top:5px;
}

/* The Grid Container - Updated for Scrolling */
.testimonials-block .item-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 25px;
    padding: 10px 20px 40px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.testimonials-block .item-grid::-webkit-scrollbar {
    display: none;
}

/* Testimonial Card Styling */
.testimonial-card {
    flex: 0 0 300px;
    scroll-snap-align: center;
    padding: 30px;
    background: var(--cards);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px var(--secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Avatar Styling */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid var(--tertiary);
    box-shadow: 0 4px 10px var(--secondary);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: var(--primary);
}

.testimonial-card p {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--paragrapgh-text);
    line-height: 1.6;
    flex-grow: 1;
}

/* Stylish Scroll Controls */
.scroll-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.scroll-btn {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px var(--secondary);
}

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

/* Social Block Container */
.social-block {
    padding: 80px 20px;
    background: var(--section);
    text-align: center;
	margin-bottom:5px;
	margin-top:5px;
}

/* Grid Layout */
.social-block .item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Social Link Card */
.social-link-card {
    padding: 25px;
    background: var(--cards);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-link-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Platform Select Dropdown & URL Input */
.platform-select,
.social-link-card input {
    width: 100%;
    padding: 10px;
    border: 1px solid black;
    border-radius: 6px;
    background: #ffffff;
    text-align: center;
    font-size: 1rem;
    box-sizing: border-box;
    color: var(--heading-text);
}

.platform-select:focus,
.social-link-card input:focus {
    outline: none;
    border-color: var(--background);
    box-shadow: 0 0 0 2px var(--secondary);
}

.platform-dropdown-wrapper { position: relative; cursor: pointer; border: 1px solid var(--primary); padding: 10px; border-radius: 4px; }
.platform-options { position: absolute; top: 100%; left: 0; background: var(--background); color: var(--tertiary); width: 100%; z-index: 10; max-height: 200px; overflow-y: auto; }
.option-item { padding: 8px; border-bottom: 1px solid var(--tertiary); }
.option-item:hover { background: var(--secondary); }

#main-footer {
    background: var(--heading-text);
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 40px;
    border-top: 1px solid var(--tertiary);
    text-align: center;
}

#footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Aligns items vertically */
    justify-content: center;
    align-items: center;    /* Aligns items horizontally */
    padding: 0 20px;
    gap: 20px;
}

#footer-copyright {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive adjustment for mobile */
@media (max-width: 600px) {
    #footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Teams Block Container */
.teams-block {
	margin-top:5px;
    padding: 80px 20px;
    background: var(--section);
    text-align: center;
    overflow: hidden;
	margin-bottom:5px;
}

/* The Grid Container - Reuses your perfected logic */
.teams-block .item-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 25px;
    padding: 10px 20px 40px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.teams-block .item-grid::-webkit-scrollbar {
    display: none;
}

/* Team Member Card Styling */
.team-card {
    flex: 0 0 300px;
    scroll-snap-align: center;
    padding: 30px;
    background: var(--cards);
    box-shadow: 0 4px 6px -1px var(--secondary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Profile Avatar Styling */
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px var(--secondary);
    flex-shrink: 0;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    margin: 0 0 5px 0;
    font-size: 1.25rem;
    color: var(--heading-text);
}

.team-card .role {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}

/* Delete Button */
.delete-item-btn {
    padding: 6px 12px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
    margin: 5px;
}
.add-item-btn {
    padding: 6px 12px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.horizontal-item-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.horizontal-services-block {
    padding: 80px 20px;
    background: var(--background);
    text-align: center;
    overflow: hidden;
}

.horizontal-service-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 20px;
    border-radius: 12px;
    background: var(--cards);
    box-sizing: border-box;
    text-align: left;
}

.horizontal-service-image {
    width: 40%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    background: var(--background);
    flex-shrink: 0;
}

.horizontal-service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horizontal-service-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--paragrapgh-text);
    margin: 0;
}
.horizontal-service-content .button-controls {
    margin-top: 20px; /* Adjust this value (e.g., 15px, 25px) until it looks right */
}
@media (max-width: 768px) {
    .horizontal-service-card {
        flex-direction: column;
        text-align: center;
    }
    .horizontal-service-image {
        width: 100%;
    }
}

.contact-modern-wrapper {
            padding: 80px 20px;
            background: var(--background);
            display: flex;
            justify-content: center;
	        margin-bottom:5px;
	        margin-top:5px;
        }

        .contact-glass-card {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            max-width: 1000px;
            width: 100%;
            background: var(--cards);
            padding: 50px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .contact-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--heading-text);
            line-height: 1.1;
        }

        .contact-content p {
            color: var(--paragrapgh-text);
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .contact-details .detail-item {
            margin-bottom: 25px;
        }

        .detail-item h4 {
            color: var(--paragrapgh-text);
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .detail-item p {
            font-weight: 500;
            color: var(--heading-text);
            margin: 0;
            font-size: 1rem;
        }

        .modern-form { display: flex; flex-direction: column; gap: 15px; }

        .modern-form input, .modern-form textarea {
            background: rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 16px;
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            transition: border 0.3s;
        }

        .modern-form input:focus { border-color: var(--primary); outline: none; }

        .modern-btn {
            background: var(--primary);
            color: white;
            padding: 16px;
            border-radius: 12px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .modern-btn:hover { transform: translateY(-2px); }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-glass-card { grid-template-columns: 1fr; gap: 40px; padding: 30px; }
            .contact-content h2 { font-size: 2rem; }
        }
.custom-button,
.custom-secondary-button {
    text-decoration: none;
    /* keep your other existing button styles here */
}