 :root {
            --primary-color: #1E8449; /* Professional Green */
            --primary-color-dark: #145A32; /* Darker Green for Hover */
            --text-dark: #212529;
            --text-light: #495057;
            --background-light: #f8f9fa;
            --border-color: #dee2e6;
            --header-height: 80px; /* Crucial for scroll targeting */
        }
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        margin: 0;
        color: var(--text-dark);
        line-height: 1.6;
        background-color: #fff;
    }

    .header {
        background: #fff;
        padding: 0 1.5rem; /* Reduced padding for mobile */
        height: var(--header-height);
        border-bottom: 1px solid var(--border-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .logo img {
        max-height: 50px; /* Slightly smaller logo for mobile */
        display: block;
    }
    
    .nav {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-links {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        background: #fff;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    
    .nav-links.active {
        display: flex; /* Show when active */
    }

    .nav-links a {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        text-align: center;
    }

    .nav-links a:hover {
        color: var(--primary-color);
        background-color: var(--background-light);
    }
    
    .hamburger {
        display: flex; /* Shown only on mobile */
        flex-direction: column;
        justify-content: space-around;
        width: 2rem;
        height: 2rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
    }
    
    .hamburger .line {
        width: 2rem;
        height: 0.25rem;
        background-color: var(--text-dark);
        border-radius: 10px;
        transition: all 0.3s linear;
        position: relative;
        transform-origin: 1px;
    }

    .hamburger.open .line:nth-child(1) {
        transform: rotate(45deg);
    }

    .hamburger.open .line:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .hamburger.open .line:nth-child(3) {
        transform: rotate(-45deg);
    }


    .cta-button {
        background-color: var(--primary-color);
        color: #fff;
        padding: 10px 20px;
        margin: 10px 10px 10px 10px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        white-space: nowrap;
    }
    .cta-button:hover {
        background-color: var(--primary-color-dark);
    }

    /* Hero Section Styling */
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Assets/bg.jpg');
        background-size: cover;
        background-position: center;
        color: #fff;
        height: auto; /* Adjusted for content */
        min-height: 60vh;
        
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 1.5rem; /* Added padding for mobile */
    }

    .hero h1 {
        font-size: 2.5rem; /* Responsive font size */
    }
    
    .hero p {
    font-size: 1.1rem;
    margin-bottom: 3rem; /* ADD THIS LINE */
}

    .hero .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 50px;
        border: 2px solid var(--primary-color-dark);
    }
    
    .hero .cta-button:hover {
        background-color: var(--primary-color-dark);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        transform: translateY(-3px);
        cursor: pointer;
    }


    section {
        scroll-margin-top: var(--header-height);
        padding: 60px 1.5rem; /* Responsive padding */
    }
    
    .content-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }
    
    .section-full-width-bg {
        background-color: var(--background-light);
    }
    
    .section-title { font-size: 2.2rem; margin-bottom: 1rem; color: var(--text-dark); }
    .section-subtitle { font-size: 1.1rem; color: var(--text-light); margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }

    .problem-solution { display: flex; flex-direction: column; gap: 30px; text-align: left; }
    .problem-solution .col { flex: 1; min-width: 280px; background: #fff; padding: 25px; border-radius: 8px; border-left: 5px solid; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
    .problem-solution .problem { border-color: #d9534f; }
    .problem-solution .solution { border-color: var(--primary-color); }
    .problem-solution h3 { font-size: 1.5rem; margin-bottom: 15px; }
    
    .services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .service-card { background: #fff; border: 1px solid var(--border-color); border-radius: 8px; padding: 30px 25px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
    .service-card h4 { font-size: 1.2rem; color: var(--text-dark); margin-top: 5px; margin-bottom: 15px; }
    .service-card p { color: var(--text-light); font-size: 0.95rem; }

    .timeline { max-width: 800px; margin: 40px auto 0 auto; padding: 0 10px; list-style: none; }
    .timeline-item { display: flex; align-items: flex-start; gap: 20px; position: relative; }
    .timeline-item:not(:last-child) { padding-bottom: 40px; }
    .timeline-item:not(:last-child)::before { content: ''; position: absolute; left: 24px; top: 50px; width: 2px; height: 100%; background: var(--border-color); }
    .timeline-number { flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%; background: var(--primary-color); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; z-index: 2; }
    .timeline-content { text-align: left; padding-top: 10px; }
    .timeline-content h5 { font-size: 1.2rem; margin-bottom: 5px; margin-top: 0; }
    .timeline-content p { margin: 0; color: var(--text-light); }
    
    .founder-col:hover { transform: translateY(-5px); }
    /* --- Founder Section - Layout Adjustments for Larger Cards --- */
.founder-grid {
    display: grid;
    /* This rule creates a single column on mobile */
    grid-template-columns: 1fr; 
    gap: 30px; /* Adjust gap for mobile */
    text-align: center;
}
#founder .content-container {
    /* MODIFICATION: Increased max-width to allow cards to be wider */
    max-width: 1600px;
}
.founder-col {
    background: #fff;
    /* MODIFICATION: Increased padding to create more internal whitespace */
    padding: 40px; 
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s ease;
}

.founder-col img {
    /* MODIFICATION: Slightly enlarged the image to match the bigger card */
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
/* --- NEW: Image Hover Animation --- */
/* This triggers when you hover anywhere on the founder's card */
.founder-col:hover img {
    /* Makes the image slightly larger */
    transform: scale(1.08); 
    /* Changes the border color to the primary green */
    border-color: var(--primary-color);
    /* Adds a subtle shadow to lift the image */
    box-shadow: 0 8px 25px rgba(30, 132, 73, 0.2); 
}
.founder-col h4 {
    font-size: 1.4rem;
    /* REMOVED all default margins from the heading */
    margin-top: 0;
    margin-bottom: 0;
}

.founder-col h5 {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: bold;
    /* REMOVED top margin to pull it up to the h4 */
    margin-top: 0;
    /* ADDED specific space below the role, before the paragraph */
    margin-bottom: 15px; 
}

.founder-col p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0;
    /* ADD THIS LINE to justify the paragraph text */
    text-align: justify;
}
    .contact-form { max-width: 800px; margin: 30px auto 0 auto; text-align: left; background: #fff; padding: 30px; border-radius: 8px; 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: 500; }
    .form-group input, .form-group textarea { width: 100%; padding: 12px; border-radius: 5px; border: 1px solid var(--border-color); font-size: 1rem; box-sizing: border-box; }
    .form-group textarea { resize: vertical; min-height: 120px; }

    .footer { background: var(--text-dark); color: #fff; padding: 50px 1.5rem; text-align: center; }
    .footer p { margin: 5px 0; }
    .footer a { color: var(--primary-color); text-decoration: none; }
    .footer .logo-footer img { max-height: 45px; margin-bottom: 15px; }
    
    /* Media Queries for Desktop and larger screens */
    @media (min-width: 769px) {
        .header {
            padding: 0 2.5rem;
        }
        
        .logo img {
            max-height: 55px;
        }

        .hamburger {
            display: none; /* Hide hamburger on desktop */
        }
        
        .nav-links {
            display: flex;
            flex-direction: row;
            position: static;
            border: none;
            box-shadow: none;
            padding: 0;
            width: auto;
            gap: 2rem;
        }

        .nav-links a {
            padding: 0;
            font-size: 1rem;
        }
        
        .nav-links a:hover {
            background-color: transparent;
        }

        .hero {
            height: 35vh;
            min-height: auto;
            padding: 80px 20px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
        }

        section {
            padding: 80px 20px;
        }
        
        .section-title {
            font-size: 2.8rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
        }

        .problem-solution {
            flex-direction: row; /* Horizontal layout on desktop */
            gap: 40px;
        }
        
        .services-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .founder-grid {
             grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .contact-form {
            padding: 40px;
            margin-top: 40px;
        }
    }
    .service-card {
    /* This makes it easy to center content if you wish */
    display: flex;
    flex-direction: column;
    align-items: center; /* Use 'flex-start' for left-alignment */
    text-align: center; /* Use 'left' for left-alignment */
    }

    .service-icon {
    margin-bottom: 1rem;
    /* You can change the icon color easily here */
    stroke: #28a745; /* This is the new green color */
    }

        .service-card h4 {
            margin-bottom: 0.5rem; /* Adjust spacing below the heading */
        }
        .service-icon {
        width: 44px;          /* Sets a consistent width */
        height: 44px;         /* Sets a consistent height */
        object-fit: contain;  /* Ensures your image scales nicely */
        margin-bottom: 1rem;  /* Adds space between the icon and the heading */
        }
        /* --- Creative & Animated About Us Cards --- */

   /* --- Creative & Animated About Us Cards (V3 - Wider with Less Top Padding) --- */

.problem-solution-animated {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    perspective: 1000px;
    align-items: stretch; 
}

.solution-card {
    flex: 1;
    min-width: 300px;
    /* MODIFICATION: Increased max-width for wider cards */
    max-width: 600px; 
    position: relative;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    padding: 4px; 
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.solution-card:hover {
    transform: scale(1.05) translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.solution-card-content {
    background: #fdfdfd;
    /* MODIFICATION: Reduced top/bottom padding */
    padding: 25px 40px;
    border-radius: 12px;
    text-align: left;
    height: 100%;
    box-sizing: border-box; 
}

.solution-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    position: relative; 
    padding-bottom: 15px;
    margin-top: 0; /* Ensures heading aligns to the new top padding */
    margin-bottom: 15px;
}

.solution-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
}

/* --- Glowing Border Effect (Bolder) --- */
.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.problem-card::before {
    background: radial-gradient(650px circle at var(--mouse-x) var(--mouse-y), rgba(217, 83, 79, 0.85), transparent 40%);
}

.solution-card-green::before {
    background: radial-gradient(650px circle at var(--mouse-x) var(--mouse-y), rgba(30, 132, 73, 0.85), transparent 40%);
}


/* --- Color Accents --- */
.problem-card h3 {
    color: #c9403c;
}
.problem-card h3::after {
    background-color: #f1b0ae;
}

.solution-card-green h3 {
    color: var(--primary-color-dark);
}
.solution-card-green h3::after {
    background-color: #a3d9b8;
}