/* Basic Reset & General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}


h1, h2, h3 {
    margin-bottom: 1rem;
    color: #2c3e50; /* Dark Blue-Gray */
}

h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #78c112; /* Primary Green */
}

/* --- MODIFIED .btn class --- */
.btn {
    display: inline-block;
    background: #78c112; /* Primary Green */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    /* START: Added shadow and updated transition */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    /* END: Added shadow and updated transition */
}

/* --- MODIFIED .btn:hover class --- */
.btn:hover {
    background: #568d3f; /* Darker Green */
    /* START: Added hover effects */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    /* END: Added hover effects */
}


.btn-secondary {
    background: #e74c3c; /* Accent Red/Orange */
}
.btn-secondary:hover {
    background: #c0392b;
}

/* =========================================================
   Header & Navigation (DESKTOP - UNCHANGED FROM ORIGINAL)
   ========================================================= */
header {
    background: #fff;
    color: #333;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 999;
    --header-height: 100px;
}

header .container {
    width: 100%;
    max-width: none;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* --- LOGO STYLES --- */
#logo, #logo-footer {
    display: flex;
    align-items: center;
    text-decoration: none;
}
#logo {
    flex-shrink: 0;
    z-index: 2;
}

.logo-image {
    flex-shrink: 0;
    width: auto;
}
header #logo .logo-image {
    height: 120px;
}
footer #logo-footer .logo-image {
    height: 372px;
}

.header-site-title {
    color: #2c3e50;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-left: 15px;
}

.header-site-title .company-name-bold {
    font-family: "Arial Rounded MT Bold", "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
}

.header-site-title .tagline-regular {
    font-family: "Arial", "Helvetica Neue", sans-serif;
    font-weight: normal;
}

/* --- Navigation & Actions Wrapper --- */
.nav-wrapper {
    /* This magical property makes the wrapper ignored for layout on desktop,
       so its children (nav, header-actions) are positioned as if they were
       direct children of the header .container */
    display: contents;
}

/* --- Navigation Styles --- */
.nav {
    display:flex;
    gap:1rem;
    align-items:center;
}

.nav a {
    color:var(--muted);
    text-decoration:none;
    padding:0.45rem 0.6rem;
    border-radius:6px;
    font-weight:600;
    transition:color .15s, background .15s, transform .08s;
}

.nav a:hover,
.nav a:focus{ color:var(--text); background:rgba(255,255,255,0.02); outline:none; transform:translateY(-1px)}

  /* Hamburger */
  .hamburger{
    display:inline-grid;
    place-items:center;
    width:44px;height:44px;

    border:0;
    cursor:pointer;
    border-radius:8px;
  }
  .hamburger:focus{ outline:2px solid rgba(6,182,212,0.18); outline-offset:2px }

  .hamburger .box{
    width:22px;height:16px;position:relative;
  }
  .hamburger .box span{
    position:absolute;
    left:0;right:0;height:2px;border-radius:2px;
    background:black;
    transition:transform .25s ease, opacity .2s ease, top .25s ease;
  }
  .hamburger .box span:nth-child(1){ top:0 }
  .hamburger .box span:nth-child(2){ top:7px }
  .hamburger .box span:nth-child(3){ top:14px }

  /* Mobile panel */
  .mobile-panel{
    position:fixed;
    inset:0;
    display:none;
    justify-content:flex-end;
    z-index:100;
  }
  .mobile-panel .backdrop{
    pointer-events:auto;
    flex:1;
    background:rgba(255,255,255,0.5);
    opacity:0;
    transition:opacity .25s ease;
  }
  .mobile-panel .panel{
    width:min(320px,80%);
    pointer-events:auto;
    transform:translateX(12px) translateY(0);
    translate:0 0;
    padding:1.25rem;
    border-left:1px solid rgba(255,255,255,0.03);
    box-shadow:-20px 40px 120px rgba(2,6,23,0.6);
    transform-origin:right;
    transition:transform .28s cubic-bezier(.2,.9,.27,1), opacity .2s;
    opacity:0;
  }
  .panel nav{ 
    display:flex; 
    flex-direction:column; 
    gap:0.6rem; 
    margin-top:0.75rem 
}
  .panel a{
    color:var(--text);
    text-decoration:none;
    padding:0.75rem 0.6rem;
    border-radius:8px;
    font-weight:600;
    background:transparent;
  }
  .panel a:hover{ background:rgba(0,0,0,0.85) }

  /* open state */
  .mobile-panel.open{
    display:flex;
    top: var(--header-height, 95px);
    left: 0;
    right:0;
    bottom:0;
    }
  .mobile-panel.open .backdrop{ 
    opacity:1 
    }
  .mobile-panel.open .panel{ 
    transform:translateX(0); 
    opacity:1; 
    background-color: #ffffff; 
    }
.panel .section-title {
    position:relative;
}
.panel .section-title::after {
    content: '';
    background: #78c112;
    width: 60px;
    height: 4px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    z-index:101;
}
  /* hide hamburger on wide screens, show full nav */
  @media(min-width:1100px){
    .hamburger{ display:none }
    .nav{ display:flex }
    .mobile-panel{ display:none }
    
  }
  @media(max-width:1100px){
    .nav{ display:none }
    .hamburger{ display:inline-grid }
    header #logo .logo-image {
        height: 80px;
    }
  }

/* --- Header Actions --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    z-index: 2;
}

.header-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-social-icons img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.header-social-icons a:hover img {
    opacity: 0.7;
}


/* (The rest of your CSS file remains the same...) */
/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    color: #fff;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.6);
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Sections General Styling */
section {
    padding: 60px 0;
}

section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}
section .section-title::after {
    content: '';
    background: #78c112;
    width: 60px;
    height: 4px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

#about-snippet {
    background: #fff;
}
#about-snippet .container {
    display: flex;
    align-items: center;
    gap: 30px;
}
#about-snippet img {
    max-width: 45%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
#about-snippet .content {
    max-width: 55%;
}
#about-snippet .about-section-title {
    text-align: left;
    margin-bottom: 20px;
}
#about-snippet .about-section-title::after {
    display: none;
}


/* Services Overview */
#services {
    background: #ecf0f1;
}


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

.service-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card img.icon-img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    flex-shrink: 0;
}
.services-grid .service-card:nth-child(1) .icon-img { filter: hue-rotate(140deg); }
.services-grid .service-card:nth-child(2) .icon-img { filter: hue-rotate(290deg); }
.services-grid .service-card:nth-child(3) .icon-img { filter: hue-rotate(200deg); }

.service-card h3 { font-size: 1.1rem; color: #2c3e50; margin-bottom: 8px; line-height: 1.3; }
.service-card p { font-size: 0.8rem; color: #333; line-height: 1.4; margin-bottom: 0; }
.section-cta-container { text-align: center; margin-top: 30px; }


/* Meet Our Team Section */
.meet-team-section { 
    background-color: #fff; 
    padding: 60px 0; 
}

#meet-our-team .container{ 
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
    padding: 0 20px;
    overflow: visible;
    
}
.employee-profile {
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 500px;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top:20px;
}
.employee-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.employee-profile:last-child { 
    margin-bottom: 0; 
}
.employee-image-container { 
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.employee-photo { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: 50% 35%;
    border-radius: 8px; 
    border: 4px solid #78c112; 
}
.employee-info-block { 
    text-align: left; 
    padding: 20px;
}
.employee-name { 
    font-size: 1.5rem; 
    color: #2c3e50; 
    margin-top: 0; 
    margin-bottom: 15px; 
}
.employee-info-item { 
    margin-bottom: 15px; 
}

.employee-info-item h4 { 
    font-size: 1rem; 
    color: #2c3e50; 
    margin-bottom: 5px; 
    font-weight: bold; 
}
.employee-info-item p { 
    font-size: 0.9rem; 
    color: #333; 
    line-height: 1.7; 
    margin-bottom: 0; 
}
.employee-info-item .qualifications-list { 
    list-style-type: disc; 
    padding-left: 20px; 
    margin-top: 5px; 
}
.employee-info-item .qualifications-list li { font-size: 0.9rem; color: #333; line-height: 1.7; margin-bottom: 4px; }
.employee-info-item .qualifications-list li:last-child { margin-bottom: 0; }

/* Why Choose Us / Our Approach */
#why-choose-us { background: #fff; }
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; text-align: left; }
.approach-item { padding: 20px; border-left: 4px solid #78c112; background: #f9f9f9; border-radius: 0 5px 5px 0; }

/* Testimonials / Participant Stories */
#testimonials { background: #78c112; color: #fff; }
#testimonials .section-title, #testimonials h3, #testimonials p { color: #fff; }
#testimonials .section-title::after { background: #fff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card { background: rgba(255,255,255, 0.15); padding: 25px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.3); }
.testimonial-card p.quote { font-style: italic; margin-bottom: 15px; }
.testimonial-card p.author { font-weight: bold; text-align: right; }

/* Call to Action Banner */
#cta-banner { background: #78c112; color: #fff; text-align: center; padding: 60px 20px; }
#cta-banner h2 { 
    font-size: 2.2rem; 
    margin-bottom: 20px; 
    color: #fff; 
    }

/* Contact Section */
#contact .container {
    overflow:visible;
}
#contact .contact-intro-text { 
    text-align: center; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto; 
}
#contact-form { 
    background: #fff; 
    padding: 30px; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    margin-top: 30px; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto; 
}
#contact-form .contact-form-heading { 
    color: #111;
    text-align: center; 
    font-size:1.6rem;
    margin-bottom:1.5rem;
}

#contact-form form { 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
    }

#contact-form label { 
    font-weight: 600; 
    color:#333
}

#contact-form span {
    color: #e00000
}

#contact-form input, #contact-form select {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #fff;
}

#contact-form input:focus,
  #contact-form select:focus {
    border-color: #78c112;
    box-shadow: 0 0 0 2px rgba(120,193,18,0.2);
    outline: none;
  }

  #contact-form button {
    background-color: #78c112;
    color: #fff;
    border: none;
    padding: 0.85rem 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;

  }

  #contact-form button:hover {
    background-color: #6ab10f;
    transform: translateY(-1px);
  }

  #contact-form button:active {
    transform: translateY(0);
  }

/* Footer */
footer { background: #ecf0f1; color: #000000; padding: 40px 0; text-align: center; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-links ul, .social-media ul { list-style: none; padding: 0; display: flex; gap: 15px; }
.footer-links a { color: #000000; transition: color 0.3s ease; }
.footer-links a:hover { color: #78c112; }
.social-media img { width: 24px; height: 24px; }
.copyright { margin-top: 20px; font-size: 0.9em; }

/* Floating Call Button */
.floating-call-button { position: fixed; bottom: 25px; right: 25px; z-index: 1000; background-color: #ffffff; padding: 8px 15px 8px 8px; border-radius: 50px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); display: flex; align-items: center; text-decoration: none; transition: all 0.3s ease; }
.floating-call-button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.call-icon-pulsate { width: 40px; height: 40px; background-color: #78c112; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-right: 10px; animation: pulsate 2s infinite; }
.call-icon-pulsate i { color: #fff; font-size: 18px; }
.call-text { font-size: 1.1rem; font-weight: bold; color: #2c3e50; white-space: nowrap; }

@keyframes pulsate {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(120, 193, 18, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(120, 193, 18, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(120, 193, 18, 0); }
}

/* Responsive Design */
@media (max-width: 900px) {
    .header-site-title {
        display:none;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    footer #logo-footer .logo-image { height: 270px; }
    .footer-links ul, .social-media ul { flex-direction: column; gap: 10px; }
    #contact-form {
      padding: 1.5rem;
    }
}

@media (max-width: 768px) {
   .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .profile-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    #logo {
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
        z-index: auto;
    }
    
    .header-actions {
        margin-top: 15px;
        flex-direction: column;
        gap: 10px;
        z-index: auto;
    }
    header .cta-button {
        margin-left: 0;
    }
    .header-social-icons {
        justify-content: center;
    }


    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }

    #about-snippet .container {
        flex-direction: column;
        text-align: center;
    }
    #about-snippet img {
        max-width: 80%;
        margin-bottom: 20px;
    }
    #about-snippet .content {
        max-width: 100%;
    }
    #about-snippet .about-section-title {
        text-align: center;
    }
    #about-snippet .about-section-title::after {
        display: block;
        left: 50%;
        transform: translateX(-50%);
    }


    .services-grid,
    .testimonial-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        gap: 15px;
    }

    .service-card {
        padding: 20px;
    }
    .service-card h3 {
        font-size: 1.3rem;
    }
    .service-card p {
        font-size: 0.9rem;
    }

    

    /* ---- START: Mobile styles for Floating Button ---- */
    .floating-call-button {
        /* On mobile, we only want the icon, so remove the container's visual styling */
        background-color: transparent;
        padding: 0;
        box-shadow: none;

        /* Adjust position for smaller screens */
        bottom: 20px;
        right: 20px;
    }

    .floating-call-button:hover {
        /* Disable hover effects on mobile where it's not applicable */
        transform: none;
        box-shadow: none;
    }

    .call-text {
        display: none; /* Hide the text, leaving only the icon */
    }

    .call-icon-pulsate {
        margin-right: 0; /* No margin needed as text is hidden */
        width: 55px;    /* Make the icon larger for easier tapping on mobile */
        height: 55px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Add shadow directly to the icon */
    }

    .call-icon-pulsate i {
        font-size: 24px; /* Make the phone icon inside a bit bigger too */
    }
    /* ---- END: Mobile styles for Floating Button ---- */

}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }

    header #logo .logo-image {
        height: 80px;
    }
    .header-site-title {
        font-size: 0.9rem;
    }

    footer #logo-footer .logo-image {
        height: 270px;
    }

    .services-grid {
        gap: 10px;
    }
    .service-card img.icon-img {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    .service-card h3 {
        font-size: 1rem;
    }
    .service-card p {
        font-size: 0.75rem;
    }

    /* Adjust photo size for smaller mobile screens */
    .profile-container {
        width: 95%;
        padding: 0 10px;
        display:block;
    }
    


    .footer-links ul, .social-media ul {
        flex-direction: column;
        gap: 10px;
    }
}