* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.98);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav a {
            text-decoration: none;
            color: #1a1a1a;
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #059669;
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
         /* --- HERO SECTION --- */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #065f46 0%, #059669 50%, #10b981 100%);
    position: relative;
    overflow: hidden;
}

/* Floating SVG Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10 L90 10 L50 90 Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
    animation: float 20s infinite linear;
    z-index: 0;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* --- HERO CONTENT LAYOUT --- */
.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 500px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
}

/* --- CTA BUTTONS --- */
.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #059669;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #059669;
}


/* --- HERO IMAGE --- */
.hero-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/* --- HERO VIDEO BACKGROUND --- */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-image img {
        width: 100%;
        max-width: 350px;
        margin-top: 30px;
    }
}

        /* Features Section */
        .features {
            padding: 100px 0;
            background: #f9fafb;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #6b7280;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: #059669;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #059669, #10b981);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .feature-card p {
            color: #6b7280;
            line-height: 1.8;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: white;
        }

        .services-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
            align-items: center;
        }

        .service-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #059669;
        }

        .service-list {
            list-style: none;
            margin-top: 30px;
        }

        .service-list li {
            padding: 15px 0;
            border-bottom: 1px solid #e5e7eb;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .service-list li::before {
            content: '✓';
            color: #059669;
            font-weight: bold;
            font-size: 1.5rem;
        }

.service-visual {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  border-radius: 20px;
  padding: 60px 40px;
  color: white;
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: 0;
}

/* Background pulse animation */
.service-visual::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  animation: pulse 4s infinite;
  z-index: 0;
}

/* IMAGE FIXED (now fully visible and centered) */
.service-visual img {
  width: 70%;                /* ✅ Center image nicely */
  height: auto;
  display: block;
  margin: 0 auto 20px auto;  /* ✅ Centers horizontally */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;                /* ✅ Above overlays */
}

/* Removed the heavy green overlay that covered image */
.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 150, 105, 0.15); /* ✅ very subtle tint */
  z-index: 1;
  pointer-events: none;
}

/* Text above overlays */
.service-visual h4,
.service-visual p {
  position: relative;
  z-index: 4;
}

.service-visual h4 {
  font-size: 2.3rem;
  margin-top: 20px;
  margin-bottom: 15px;
}

.service-visual p {
  font-size: 1.2rem;
  line-height: 1.8;
}


        
           /* --- FADE-IN ON SCROLL --- */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


        /* Why Choose Section */
        .why-choose {
            padding: 100px 0;
            background: #1a1a1a;
            color: white;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .why-item {
            text-align: center;
            padding: 30px;
        }

        .why-number {
            font-size: 3rem;
            font-weight: 800;
            color: #10b981;
            margin-bottom: 15px;
        }

        .why-item h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .why-item p {
            color: #9ca3af;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, #065f46 0%, #059669 100%);
            color: white;
            text-align: center;
        }

        .contact h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .phone-number {
            font-size: 3rem;
            font-weight: 800;
            margin: 40px 0;
            letter-spacing: 2px;
        }

        .phone-number a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .phone-number a:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        /* Footer */
        footer {
            background: #0f172a;
            color: white;
            text-align: center;
            padding: 40px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

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

            .services-container {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            nav ul {
                gap: 20px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .phone-number {
                font-size: 2rem;
            }
        }
