/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    color: #2c853d;
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2c853d;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2c853d;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c853d;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 40px;  /* Increased top padding */
    margin-top: 0;         /* Ensure no margin is pushing it down */
    overflow: hidden;
    position: relative;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.greeting {
    display: block;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.name {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 8px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-primary {
    background: #2c853d;
    color: #fff;
}

.btn-primary:hover {
    background: #1e5a28;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2c853d;
    border: 2px solid #2c853d;
}

.btn-secondary:hover {
    background: #2c853d;
    color: #fff;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
    height: 100%;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.profile-photo {
    width: 260px;
    height: 260px;
    margin-top: 20px;  /* Added margin to push image down slightly */
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid #fff;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.profile-photo:hover img {
    transform: scale(1.05);
}

/* Fallback for placeholder if image doesn't load */
.profile-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #666 0%, #333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Tiers Boxes */
.tiers-overview {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0 40px;
}

.tier-box {
    flex: 1;
    min-width: 250px;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1e5a28, #4CAF50);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.tier-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.tier-box:hover::before {
    transform: scaleX(1);
}

.tier-box h3 {
    color: #1e5a28;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}



.tier-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1e5a28, #4CAF50);
    transition: width 0.3s ease;
}

.tier-box:hover h3::after {
    width: 100%;
}

.tier-box p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .tier-box {
        min-width: 100%;
    }
}

/* Animation for the boxes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tier-box {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.tier-box:nth-child(2) {
    animation-delay: 0.2s;
}

.tier-box:nth-child(3) {
    animation-delay: 0.4s;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: #2c853d;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.about-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button-container {
    text-align: center;
    margin: 2.5rem 0;
}

.cta-button {
    display: inline-block;
    background-color: #1e5a28;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #1e5a28;
    box-shadow: 0 4px 15px rgba(30, 90, 40, 0.2);
}

.cta-button:hover {
    background-color: white;
    color: #1e5a28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 90, 40, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    min-width: 150px;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    color: #1e5a28;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

/* Experience Section */
.experience {
    padding: 3rem 1rem;
    background-color: #f9f9f9;
}

.tiers-overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 2rem 0;
}

.tier-box {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .experience-boxes {
        flex-direction: column;
        gap: 1rem;
    }
    
    .experience-box {
        flex: 1 1 100%;
        margin-bottom: 1rem;
    }
    
    .tiers-overview {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tier-box {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-description {
        padding: 0 1rem;
    }
}

.experience-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
}

.experience-box {
    flex: 1;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.experience-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.experience-box h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.experience-box .company {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.experience-box .duration {
    color: #2c853d;
    font-weight: 500;
    font-size: 0.9rem;
}
.duration {
    color: #2c853d;
    font-weight: 500;
    font-size: 0.3rem;
}

/* Animated Arrow for Service Items */
.service-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item p {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1e5a28;
    font-weight: bold;
    opacity: 0.7;
    transform: translateX(0);
    transition: all 0.3s ease;
}



.proposition-item:hover p {
    color: #0d3d1d; /* Darker green on hover */
    
}

.bunty:hover p {
    color: #0d3d1d; /* Darker green on hover */
    
}

.values-list:hover li
{   color: #0d3d1d; /* Darker green on hover */ }



.service-item:hover::before {
    color: #0d3d1d; /* Darker green on hover */
    opacity: 1;
    transform: translateX(5px);
}

.service-item:hover p {
    color: #1e5a28;
    transform: translateX(5px);
    font-weight: 600;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-end;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    margin-left: 50%;
}

.timeline-item:nth-child(odd) {
    margin-right: 50%;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #2c853d;
    border-radius: 50%;
    top: 20px;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -58px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -58px;
}

.timeline-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-content h3 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.company {
    color: #666;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.duration {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.description {
    color: #666;
    line-height: 1.6;
}

/* Skills Section */
.skills {
    padding: 100px 0;
    background: #fff;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-category {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-10px);
}

.skill-category h3 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.skill-tag {
    background: #2c853d;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: #1e5a28;
    transform: scale(1.05);
}


/* Tiers Section */
.tiers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.tier-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tier-header {
    background: #f8f9fa;
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.tier-header h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    color: #333;
    font-weight: 600;
}

.tier-header p {
    margin: 0;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.tier-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tier-content h4 {
    color: #444;
    margin: 0 0 1.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f5f5f5;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item h5 {
    color: #2c3e50;
    margin: 0 0 0.75rem 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.service-item p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.workshop-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    background: #f8f9fa;
    border: 1px solid #eee;
}

.workshop-item h5 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.workshop-item .duration {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: block;
    font-style: normal;
}

.tier-list {
    padding-left: 1.25rem;
    margin: 0.75rem 0;
}

.tier-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    position: relative;
}

.tier-list li:before {
    content: '•';
    color: #999;
    position: absolute;
    left: -1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .tiers-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 2rem auto;
    }
    
    .tier-card {
        max-width: 100%;
    }
}

/* Animation Keyframes */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Value Proposition Section */
.value-proposition {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.proposition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.proposition-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.proposition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.proposition-item i {
    color: #1e5a28;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.proposition-item p {
    margin: 0;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Special Offer Callout */
.special-offer {
    background: #f8f9fa;
    padding: 3rem 0;
    margin: 0 0 3rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.offer-content {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.offer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #1e5a28;
    transform: scaleY(0);
    transform-origin: top;
    animation: growY 0.8s 0.3s ease-out forwards;
}

@keyframes growY {
    to { transform: scaleY(1); }
}

.offer-icon {
    background-color: rgba(30, 90, 40, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.offer-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(30, 90, 40, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
    transition: all 0.3s ease;
}

.offer-icon:hover {
    animation: none;
    transform: scale(1.05);
}

.offer-icon:hover::before {
    opacity: 1;
    animation: pulse 1.5s infinite;
}

.offer-icon i {
    font-size: 2.5rem;
    color: #1e5a28;
    transition: transform 0.3s ease;
}

.offer-icon:hover i {
    transform: scale(1.1);
}

.offer-text {
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s ease-out forwards;
}

.offer-text h3 {
    color: #1e5a28;
    margin: 0 0 0.75rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.offer-text p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.offer-text p::before {
    content: '→';
    position: absolute;
    left: -10px;
    color: #1e5a28;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.offer-text p:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.offer-text strong {
    color: #1e5a28;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .offer-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .offer-icon {
        margin: 0 0 1.5rem 0;
    }
    
    .offer-text h3 {
        font-size: 1.3rem;
    }
    
    .offer-text p {
        font-size: 1rem;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c853d 0%, #1e5a28 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.5rem;
}

.service-card h3 {
    color: #2c853d;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.flagship-programs {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e5e5;
}

.flagship-programs h3 {
    text-align: center;
    color: #000;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.program-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2c853d;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.program-item h4 {
    color: #2c853d;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.program-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Founder Story Section */
.founder-story {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.founder-text:hover p {
    color: #1e5a28;
    transform: translateX(5px);
    
}

.company:hover {
color: #1e5a28;}
.about-text:hover p  {
    color: #1e5a28;}

.vision-box:hover p {
    color: #1e5a28;
    transform: translateX(5px);
    
}


.founder-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.founder-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #1e5a28;
    position: relative;
}

.vision-values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.vision, .values {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.vision:hover, .values:hover {
    transform: translateY(-5px);
}

.vision h3, .values h3 {
    color: #1e5a28;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.vision h3::after, .values h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #1e5a28;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Removed the bullet points since we're using checkmark icons */

/* Responsive adjustments */
@media (max-width: 768px) {
    .founder-content {
        padding: 25px 20px;
    }
    
    .vision-values {
        flex-direction: column;
        gap: 20px;
    }
    
    .vision, .values {
        min-width: 100%;
    }
}

/* Vision & Values Section */
.vision-values-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.vision-values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.vision-box,
.values-box {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.vision-box:hover,
.values-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vision-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.values-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(30, 90, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: #1e5a28;
}

.vision-box h3,
.values-box h3 {
    color: #1e5a28;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.vision-box h3::after,
.values-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #1e5a28;
}

.vision-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.values-list li {
    margin-bottom: 15px;
    padding: 5px 15px 5px 30px;
    position: relative;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.values-list li i {
    color: #1e5a28;
    margin-right: 10px;
    position: static;
    flex-shrink: 0;
    top: 4px;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vision-values-container {
        flex-direction: column;
    }
    
    .vision-box,
    .values-box {
        width: 100%;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.primary-card {
    border-top: 5px solid #2c853d;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c853d;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.item-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.item-content {
    flex: 1;
}

.item-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.item-value {
    display: block;
    font-size: 1rem;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.item-value:hover {
    color: #2c853d;
}

.action-card {
    background: linear-gradient(135deg, #2c853d 0%, #1e5a28 100%);
    color: #fff;
    text-align: center;
}

.action-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.action-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #fff;
    color: #2c853d;
}

.primary-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.booking-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.booking-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-connect {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-connect h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.instagram-link:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: translateY(-3px);
}

.linkedin-link:hover {
    background: #0077b5;
    transform: translateY(-3px);
}

.twitter-link:hover {
    background: #1da1f2;
    transform: translateY(-3px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
    text-decoration: none;
}

.whatsapp-float i {
    margin-top: 2px;
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .contact-card {
        padding: 1.5rem;
        width: 95%;
        margin: 0 auto;
        max-width: 100%;
        border-radius: 12px;
        box-sizing: border-box;
    }
    
    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .item-label {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .item-value, .item-value a {
        font-size: 0.95rem;
        word-break: break-word;
    }
    
    .card-header {
        margin-bottom: 1.25rem;
    }
    
    .card-icon {
        margin-right: 0.75rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        padding: 0 0.75rem;
        gap: 1.25rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        margin-bottom: 0.75rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .item-label {
        font-size: 0.85rem;
    }
    
    .item-value, .item-value a {
        font-size: 0.9rem;
    }
    
    .card-header {
        margin-bottom: 1rem;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hamburger span {
        transition: all 0.3s ease;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .name {
        font-size: 2.5rem !important;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        justify-content: flex-start !important;
    }

    .timeline-dot {
        left: 12px !important;
    }

    .timeline-content {
        margin-left: 3rem !important;
        margin-right: 0 !important;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .contact-card {
        padding: 5px;
    }

    .action-buttons {
        gap: 0.8rem;
    }

    .action-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .profile-photo,
    .profile-placeholder {
        width: 250px;
        height: 250px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 100px;
    }

    .name {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }
}