/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9fff0;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fff0 0%, #f0ffe0 100%);
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #4CAF50, #FFC107);
    border-radius: 50%;
    animation: floatParticle 20s infinite linear;
    opacity: 0.1;
}

.particle:nth-child(1) { width: 100px; height: 100px; top: 10%; left: 5%; animation-delay: 0s; }
.particle:nth-child(2) { width: 150px; height: 150px; top: 20%; right: 10%; animation-delay: -5s; }
.particle:nth-child(3) { width: 80px; height: 80px; bottom: 15%; left: 8%; animation-delay: -10s; }
.particle:nth-child(4) { width: 120px; height: 120px; bottom: 25%; right: 7%; animation-delay: -15s; }
.particle:nth-child(5) { width: 60px; height: 60px; top: 50%; left: 15%; animation-delay: -2s; }
.particle:nth-child(6) { width: 180px; height: 180px; top: 40%; right: 15%; animation-delay: -8s; }
.particle:nth-child(7) { width: 90px; height: 90px; top: 70%; left: 25%; animation-delay: -12s; }
.particle:nth-child(8) { width: 200px; height: 200px; bottom: 10%; left: 30%; animation-delay: -18s; }

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

.floating-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), rgba(255, 193, 7, 0.1));
    animation: floatShape 25s infinite ease-in-out;
}

.shape-1 { width: 300px; height: 300px; top: -150px; left: -150px; }
.shape-2 { width: 200px; height: 200px; bottom: -100px; right: 10%; animation-delay: -5s; }
.shape-3 { width: 150px; height: 150px; top: 30%; left: 5%; animation-delay: -10s; }
.shape-4 { width: 250px; height: 250px; bottom: 20%; left: -50px; animation-delay: -15s; }

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        transform: translate(100px, 50px) rotate(90deg);
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        transform: translate(50px, 100px) rotate(180deg);
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4CAF50, #FFC107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    animation: floatElement 15s infinite ease-in-out;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.element-1 { top: 20%; left: 5%; animation-delay: 0s; }
.element-2 { top: 60%; right: 8%; animation-delay: -3s; }
.element-3 { bottom: 30%; left: 10%; animation-delay: -6s; }
.element-4 { top: 40%; right: 15%; animation-delay: -9s; }

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;

}

.logo-image {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    max-width: 100%;
    /* margin-left: -20px; */
}

.logo:hover .logo-image {
    transform: scale(1.1) rotate(5deg);
}

.nav-menu {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #4CAF50;
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.nav-link.active:hover {
    background: linear-gradient(135deg, #FF9800, #FFC107);
    transform: translateY(-2px) scale(1.05);
}

.contact-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white !important;
    padding: 12px 25px !important;
    font-weight: 600;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #4CAF50, #FFC107);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.highlight {
    background: linear-gradient(135deg, #4CAF50, #FFC107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #4CAF50, #FFC107);
    border-radius: 3px;
    animation: widthGrow 2s ease-out;
}

@keyframes widthGrow {
    from { width: 0; }
    to { width: 100%; }
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6);
}

.btn-primary .btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #FFC107;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.btn-secondary:hover {
    background: #FFC107;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4CAF50;
    font-weight: 500;
}

.feature i {
    color: #FFC107;
    font-size: 18px;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.image-frame {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4CAF50, #FFC107);
}

.image-content {
    background: linear-gradient(135deg, #F1F8E9, #FFF9C4);
    border-radius: 15px;
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.stats-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: center;
    width: 100%;
}

.stat {
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    width: 100%;
}

.stat:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Services Section - FIXED BACKGROUND */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fff0 0%, #f0ffe0 100%);
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: #4CAF50;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(15deg);
    background: linear-gradient(135deg, #FFC107, #FF9800);
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
    padding: 8px 12px;
    background: #F9FFF0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-features span:hover {
    background: #4CAF50;
    color: white;
    transform: translateX(5px);
}

.service-features i {
    color: #4CAF50;
    font-size: 12px;
}

.service-features span:hover i {
    color: white;
}

.service-floating {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(76, 175, 80, 0.05);
    z-index: 0;
    user-select: none;
    pointer-events: none;
    transition: all 0.3s ease;
}

.service-card:hover .service-floating {
    color: rgba(255, 193, 7, 0.08);
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #F1F8E9;
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.about-text {
    flex: 1;
}

.about-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
    width: 100%;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 5px;
}

.feature-content p {
    color: #666;
    font-size: 14px;
}

.about-stats {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    width: 100%;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 10px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* About Animation Section */
.about-animation {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.animated-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape-animation {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1), rgba(255, 193, 7, 0.1));
    animation: floatShape 20s infinite ease-in-out;
}

.shape-animation.shape-1 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.shape-animation.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 100px;
    right: 50px;
    animation-delay: -5s;
}

.shape-animation.shape-3 {
    width: 180px;
    height: 180px;
    top: 150px;
    right: 100px;
    animation-delay: -10s;
}

.shape-animation.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 50px;
    left: 100px;
    animation-delay: -15s;
}

.shape-animation .inner-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.2), rgba(255, 193, 7, 0.2));
    animation: pulse 3s infinite alternate;
}

.animated-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    animation: rotateOrbit 20s linear infinite;
}

.animated-orbit.orbit-2 {
    width: 350px;
    height: 350px;
    animation-delay: -10s;
    animation-direction: reverse;
}

@keyframes rotateOrbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2E7D32;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Our Staff Section - COMPLETELY FIXED */
.staff {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.staff-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.staff-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F1F8E9, #FFF9C4);
}

/* FIX FOR STAFF IMAGE - COMPLETE REDESIGN */
.staff-bg-image {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000%;
    height: 250%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.9);
    z-index: 1;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .staff-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000%;
    height: 250%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.9);
    z-index: 1;
    opacity: 0.7;
}
}

.staff-center-image {
    position: relative;
    z-index: 2;
    animation: floatStaffImage 8s ease-in-out infinite;
    transform-origin: center;
    margin-top: -50px;
}

.staff-center-image img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 0 50px rgba(76, 175, 80, 0.5);
    transition: all 0.5s ease;
}

.staff-center-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 80px rgba(76, 175, 80, 0.8);
}

.staff-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.3), transparent 70%);
    animation: pulseGlow 3s infinite alternate;
    z-index: -1;
}

@keyframes floatStaffImage {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-2deg);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #F1F8E9;
    width: 100%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #FFF9C4;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: #4CAF50;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #FFFDE7, #FFF9C4);
    border-color: #FFC107;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-card.premium {
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border-color: #4CAF50;
}

.pricing-card.premium:hover {
    border-color: #2E7D32;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.2);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px dashed #F1F8E9;
}

.plan-logo {
    font-family: monospace;
    font-size: 16px;
    font-weight: 700;
    color: #FFC107;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.plan-category {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 15px;
}

.plan-price {
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #4CAF50;
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: #4CAF50;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: #666;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.plan-features li i {
    color: #4CAF50;
    margin-top: 5px;
    flex-shrink: 0;
}

.plan-footer {
    margin-top: auto;
}

.plan-tag {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.btn-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-plan:hover {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.btn-plan.featured {
    background: linear-gradient(135deg, #FFC107, #FF9800);
}

.btn-plan.featured:hover {
    background: linear-gradient(135deg, #FF9800, #FFC107);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.btn-plan.premium-btn {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
}

.btn-plan.premium-btn:hover {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.4);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Work Section - COMPLETELY FIXED SLIDER */

.work {
    padding: 100px 0;
    background: white;
    width: 100%;
    position: relative;
}

.portfolio-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 450px;
    margin: 0 auto;
}

.portfolio-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.portfolio-slide {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    margin: 0 10px;
}

/* Desktop: 3 images in a row */
@media (min-width: 769px) {
    .portfolio-slide {
        flex: 0 0 calc(33.333% - 20px);
        margin: 0 10px;
    }
}

/* Mobile: 1 image in a row */
@media (max-width: 768px) {
    .portfolio-slide {
        flex: 0 0 100%;
        margin: 0;
      
    }
    
    .portfolio-container {
       height: 250px;
    }
}

.portfolio-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.portfolio-slide:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(46, 125, 50, 0.9), rgba(255, 193, 7, 0.7));
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 30px;
}

.portfolio-slide:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    transform: translateY(30px);
    transition: transform 0.5s ease;
}

.portfolio-slide:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 16px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Portfolio Controls - ALWAYS VISIBLE */
.portfolio-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.portfolio-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #FFC107);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.portfolio-btn:hover {
    background: linear-gradient(135deg, #FFC107, #4CAF50);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Mobile: smaller buttons */
@media (max-width: 768px) {
    .portfolio-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Slider Dots for Mobile Only */
.slider-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
}

@media (max-width: 768px) {
    .slider-dots {
        display: flex;
    }
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #4CAF50;
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
    width: 100%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #F1F8E9;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
}

.info-card:hover {
    border-color: #4CAF50;
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 10px;
}

.info-content p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: #F1F8E9;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    background: white;
    border: 2px solid #FFF9C4;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    width: 100%;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #FFC107;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
    max-width: 100%;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFC107;
    transform: translateY(-5px);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-column a:hover {
    color: #FFC107;
    padding-left: 10px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px 0 0 5px;
    color: white;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 12px 20px;
    background: #FFC107;
    color: #2E7D32;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    width: 100%;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #FFC107);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .staff-center-image img {
        width: 300px;
        height: 300px;
    }
    
    .staff-image-glow {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
    
    .staff-center-image img {
        width: 250px;
        height: 250px;
    }
    
    .staff-container {
        height: 450px;
    }
    
    .staff-image-glow {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    /* Mobile logo size */
    .logo-image {
        height: 40px;
    }
    
    /* Hero section mobile fixes */
    .hero {
        padding: 150px 0 60px !important;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-text {
        width: 100%;
        order: 1;
    }
    
    .hero-image {
        width: 100%;
        order: 2;
        margin-top: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
        width: 100%;
    }
    
    .feature {
        justify-content: center;
    }
    
    .image-content {
        padding: 20px;
        min-height: 300px;
    }
    
    .stats-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Services Section Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .service-floating {
        font-size: 70px;
        bottom: -15px;
        right: -15px;
    }
    
    /* Portfolio Mobile View */
    .portfolio-slide {
        height: 250px;
    }
    
    .portfolio-overlay {
        padding: 20px;
    }
    
    .overlay-content h4 {
        font-size: 18px;
    }
    
    .overlay-content p {
        font-size: 14px;
    }
    
    /* Staff section adjustments */
    .staff-center-image img {
        width: 200px;
        height: 200px;
    }
    
    .staff-container {
        height: 400px;
    }
    
    .staff-image-glow {
        width: 250px;
        height: 250px;
    }
    
    /* Fix horizontal scrolling */
    body {
        width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
    
    .container {
        width: 100%;
        max-width: 100vw;
        padding: 0 15px;
    }
    
    section {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Even smaller logo for very small screens */
    .logo-image {
        height: 35px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-badge,
    .section-badge {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    /* Portfolio mobile for very small screens */
    .portfolio-slide {
        height: 220px;
    }
    
    .portfolio-overlay {
        padding: 15px;
    }
    
    .overlay-content h4 {
        font-size: 16px;
    }
    
    .overlay-content p {
        font-size: 12px;
    }
    
    /* Staff section adjustments */
    .staff-center-image img {
        width: 180px;
        height: 180px;
        border: 5px solid white;
    }
    
    .staff-container {
        height: 350px;
    }
    
    .staff-image-glow {
        width: 220px;
        height: 220px;
    }
    
    /* Fix horizontal scrolling for very small screens */
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
}

/* Additional fixes for horizontal scrolling */
@media (max-width: 768px) {
    /* Prevent any element from causing horizontal scroll */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    table {
        width: 100% !important;
    }
    
    /* Fix for any overflowing elements */
    .container, .navbar, .hero-content, .about-content, 
    .pricing-grid, .contact-content, .footer-content {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
}




    .stats-box {
      display: flex;
      gap: 30px;
      background: #111;
      padding: 30px;
      border-radius: 12px;
      color: #fff;
    }

    .stat {
      text-align: center;
    }

    .stat-number {
      font-size: 36px;
      font-weight: bold;
      color: #00ffcc;
    }

    .stat-label {
      font-size: 14px;
      margin-top: 6px;
      opacity: 0.8;
    }