* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.6; color: #333; overflow-x: hidden; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .section { padding: 80px 0; } .section-header { text-align: center; margin-bottom: 50px; } .section-subtitle { color: #16a34a; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; } .section-header h2 { font-size: 36px; font-weight: 700; color: #1f2937; margin-bottom: 20px; } .section-header p { color: #6b7280; max-width: 800px; margin: 0 auto; line-height: 1.8; } .highlight { color: #16a34a; } .highlight-text { color: #16a34a; font-weight: 600; } .text-center { text-align: center; } .btn { display: inline-block; padding: 14px 32px; font-size: 16px; font-weight: 600; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; border: none; cursor: pointer; } .btn-primary { background: #2563eb; color: white; } .btn-primary:hover { background: #1d4ed8; transform: scale(1.05); box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3); } .btn-secondary { background: transparent; color: white; border: 2px solid white; } .btn-secondary:hover { background: white; color: #1f2937; } .btn-white { background: white; color: #2563eb; } .btn-white:hover { background: #f3f4f6; transform: scale(1.05); } .full-width { width: 100%; } .header { position: fixed; top: 0; left: 0; right: 0; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 1000; } .header-content { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; } .logo h1 { font-size: 24px; font-weight: 700; color: #1f2937; margin-bottom: 5px; } .logo .tagline { font-size: 14px; color: #6b7280; border-top: 1px solid #e5e7eb; padding-top: 5px; } .nav-list { display: flex; list-style: none; gap: 30px; } .nav-link { color: #4b5563; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s; } .nav-link:hover { color: #2563eb; } .mobile-menu-btn { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: #1f2937; } .hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1650784854790-fb6c2ed400d3?w=1920') center/cover; color: white; text-align: center; } .hero-content { position: relative; z-index: 10; } .hero-title { font-size: 64px; font-weight: 700; margin-bottom: 20px; line-height: 1.2; } .hero-subtitle { font-size: 20px; margin-bottom: 40px; font-weight: 300; } .hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; } .scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; } .scroll-icon { width: 24px; height: 40px; border: 2px solid white; border-radius: 20px; position: relative; } .scroll-icon::before { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: white; border-radius: 2px; animation: scroll 2s infinite; } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } } @keyframes scroll { 0% { top: 8px; opacity: 0; } 50% { opacity: 1; } 100% { top: 24px; opacity: 0; } } .about { background: #f9fafb; } .about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; margin-top: 40px; } .about-content h2 { font-size: 36px; color: #1f2937; margin-bottom: 15px; } .about-content h3 { font-size: 24px; margin-bottom: 20px; } .about-content p { color: #6b7280; margin-bottom: 25px; line-height: 1.8; } .about-card { background: white; padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; } .about-card::before, .about-card::after { content: ''; position: absolute; border-radius: 50%; opacity: 0.1; } .about-card::before { width: 100px; height: 100px; background: #16a34a; top: -20px; right: -20px; } .about-card::after { width: 130px; height: 130px; background: #2563eb; bottom: -20px; left: -20px; } .stats { background: white; } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; } .stat-card { text-align: center; transition: transform 0.3s; } .stat-card:hover { transform: translateY(-10px); } .stat-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #d1fae5 0%, #10b981 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: all 0.3s; } .stat-card:hover .stat-icon { background: linear-gradient(135deg, #10b981 0%, #059669 100%); } .stat-icon i { font-size: 32px; color: #16a34a; } .stat-card:hover .stat-icon i { color: white; } .stat-number { font-size: 36px; font-weight: 700; color: #1f2937; margin-bottom: 10px; } .stat-label { color: #6b7280; font-size: 14px; font-weight: 500; } .cta { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: white; text-align: center; position: relative; overflow: hidden; } .cta::before, .cta::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); } .cta::before { width: 300px; height: 300px; top: -150px; right: -150px; } .cta::after { width: 400px; height: 400px; bottom: -200px; left: -200px; } .cta h2 { font-size: 36px; margin-bottom: 15px; position: relative; z-index: 10; } .cta p { font-size: 16px; margin-bottom: 30px; opacity: 0.9; position: relative; z-index: 10; } .quick-links { background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%); } .quick-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; } .quick-link-card { display: flex; align-items: flex-start; gap: 20px; padding: 24px; background: white; border-radius: 16px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); border: 1px solid rgba(22, 163, 74, 0.15); text-decoration: none; color: inherit; transition: all 0.3s ease; } .quick-link-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(22, 163, 74, 0.15); border-color: rgba(22, 163, 74, 0.35); } .quick-link-icon { width: 52px; height: 52px; min-width: 52px; background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #16a34a; font-size: 22px; transition: all 0.3s ease; } .quick-link-card:hover .quick-link-icon { background: linear-gradient(135deg, #16a34a 0%, #15803d 100%); color: white; } .quick-link-body { flex: 1; min-width: 0; } .quick-link-label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #16a34a; margin-bottom: 4px; } .quick-link-title { font-size: 20px; font-weight: 700; color: #1f2937; margin-bottom: 8px; line-height: 1.3; } .quick-link-desc { font-size: 14px; color: #6b7280; line-height: 1.5; margin-bottom: 12px; } .quick-link-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #16a34a; transition: gap 0.2s ease; } .quick-link-card:hover .quick-link-cta { gap: 12px; } .quick-link-cta i { font-size: 12px; } .team { background: #f9fafb; } .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-bottom: 40px; } .team-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s; cursor: pointer; } .team-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); } .team-image { position: relative; height: 300px; overflow: hidden; } .team-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; } .team-card:hover .team-image img { transform: scale(1.1); } .team-card h4 { font-size: 20px; color: #1f2937; padding: 20px 20px 5px; } .team-card p { color: #6b7280; padding: 0 20px 20px; font-size: 14px; } .services { background: white; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; } .service-card { display: flex; flex-direction: column; background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s; cursor: pointer; position: relative; } .service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); } .service-image { position: relative; height: 250px; overflow: hidden; } .service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; } .service-card:hover .service-image img { transform: scale(1.1); } .service-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); } .service-content { flex: 1; display: flex; flex-direction: column; padding: 25px; } .service-content h3 { font-size: 22px; color: #1f2937; margin-bottom: 15px; flex-shrink: 0; } .service-content p { flex: 1; min-height: 0; color: #6b7280; margin-bottom: 20px; line-height: 1.6; } .service-content .service-link { margin-top: auto; flex-shrink: 0; } .service-link { display: inline-flex; align-items: center; gap: 10px; color: #16a34a; font-weight: 600; text-decoration: none; transition: all 0.3s; } .service-link:hover { color: #15803d; gap: 15px; } .videos { background: white; } .large-title { font-size: 48px !important; } .video-carousel-wrapper { position: relative; padding: 0 60px; } .carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: white; border: none; box-shadow: 0 4px 15px rgba(0,0,0,0.2); cursor: pointer; z-index: 10; transition: all 0.3s; } .carousel-btn:hover { background: #16a34a; color: white; transform: translateY(-50%) scale(1.1); } .carousel-btn.prev { left: 0; } .carousel-btn.next { right: 0; } .video-carousel { display: flex; gap: 25px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding: 10px 0; } .video-carousel::-webkit-scrollbar { display: none; } .video-card { flex: 0 0 350px; background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s; cursor: pointer; } .video-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); } .video-thumbnail { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; } .video-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; } .video-card:hover .video-thumbnail img { transform: scale(1.1); } .play-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; transition: background 0.3s; } .video-card:hover .play-overlay { background: rgba(0,0,0,0.4); } .play-button { width: 64px; height: 64px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; } .video-card:hover .play-button { transform: scale(1.1); } .play-button i { color: #16a34a; font-size: 24px; margin-left: 4px; } .video-card h4 { padding: 15px; font-size: 16px; color: #1f2937; line-height: 1.4; } .video-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; padding: 20px; } .video-modal.active { display: flex; } .video-modal-content { position: relative; width: 100%; max-width: 1200px; aspect-ratio: 16/9; } .video-modal-close { position: absolute; top: -50px; right: 0; background: none; border: none; color: white; font-size: 36px; cursor: pointer; transition: color 0.3s; } .video-modal-close:hover { color: #16a34a; } .blog { background: white; } .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; } .blog-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s; cursor: pointer; } .blog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); } .blog-image { position: relative; height: 220px; overflow: hidden; } .blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; } .blog-card:hover .blog-image img { transform: scale(1.1); } .blog-content { padding: 25px; } .blog-meta { display: flex; align-items: center; gap: 8px; color: #6b7280; font-size: 14px; margin-bottom: 15px; } .blog-content h3 { font-size: 20px; color: #1f2937; margin-bottom: 15px; line-height: 1.4; } .blog-content p { color: #6b7280; margin-bottom: 20px; line-height: 1.6; } .blog-link { display: inline-flex; align-items: center; gap: 10px; color: #16a34a; font-weight: 600; text-decoration: none; transition: all 0.3s; } .blog-link:hover { color: #15803d; gap: 15px; } .testimonials { background: #f9fafb; } .testimonial-slider { position: relative; max-width: 800px; margin: 0 auto; } .testimonial-card { display: none; background: white; padding: 50px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); position: relative; } .testimonial-card.active { display: block; } .quote-icon { font-size: 48px; color: rgba(22, 163, 74, 0.2); position: absolute; top: 30px; left: 30px; } .testimonial-text { font-size: 20px; font-style: italic; color: #4b5563; margin-bottom: 30px; line-height: 1.8; position: relative; z-index: 10; } .testimonial-card h4 { font-size: 18px; color: #1f2937; margin-top: 25px; padding-top: 25px; border-top: 1px solid #e5e7eb; } .testimonial-company { color: #6b7280; font-size: 14px; margin-top: 5px; } .testimonial-nav { display: flex; justify-content: center; gap: 15px; margin-top: 30px; } .testimonial-btn { width: 48px; height: 48px; border-radius: 50%; background: white; border: none; box-shadow: 0 4px 15px rgba(0,0,0,0.1); cursor: pointer; transition: all 0.3s; } .testimonial-btn:hover { background: #16a34a; color: white; transform: scale(1.1); } .testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; } .testimonial-dot { width: 12px; height: 12px; border-radius: 50%; background: #d1d5db; cursor: pointer; transition: all 0.3s; } .testimonial-dot.active { width: 32px; border-radius: 6px; background: #16a34a; } .newsletter { background: linear-gradient(135deg, #16a34a 0%, #15803d 100%); color: white; text-align: center; } .newsletter h2 { font-size: 32px; margin-bottom: 15px; } .newsletter p { margin-bottom: 30px; opacity: 0.9; } .newsletter-form { display: flex; gap: 15px; max-width: 600px; margin: 0 auto; flex-wrap: wrap; } .newsletter-form input { flex: 1; min-width: 250px; padding: 15px 20px; border-radius: 50px; border: none; font-size: 16px; } .newsletter-form input:focus { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,0.3); } .contact { background: #f9fafb; } .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 50px; } .contact-info h3 { font-size: 28px; color: #1f2937; margin-bottom: 20px; } .contact-info > p { color: #6b7280; margin-bottom: 30px; line-height: 1.8; } .contact-item { display: flex; gap: 20px; margin-bottom: 25px; } .contact-icon { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #d1fae5 0%, #10b981 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .contact-icon i { color: #16a34a; font-size: 20px; } .contact-item h4 { font-size: 18px; color: #1f2937; margin-bottom: 5px; } .contact-item p { color: #6b7280; font-size: 14px; } .contact-form-wrapper { background: white; padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .contact-form-wrapper h3 { font-size: 24px; color: #1f2937; margin-bottom: 25px; } .form-group { margin-bottom: 20px; } .form-group label { display: block; font-size: 14px; font-weight: 500; color: #374151; margin-bottom: 8px; } .form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 16px; transition: all 0.3s; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: #16a34a; box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1); } .footer { background: #111827; color: white; padding: 60px 0 0; } .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-col h3, .footer-col h4 { margin-bottom: 20px; } .footer-tagline { font-size: 14px; color: #9ca3af; margin-bottom: 15px; } .footer-col p { color: #9ca3af; line-height: 1.8; margin-bottom: 10px; } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: #9ca3af; text-decoration: none; transition: color 0.3s; } .footer-col ul li a:hover { color: #16a34a; } .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 30px 0; border-top: 1px solid #374151; } .footer-bottom p { color: #9ca3af; font-size: 14px; } .social-links { display: flex; gap: 15px; } .social-links a { width: 40px; height: 40px; background: #374151; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: all 0.3s; } .social-links a:hover { background: #16a34a; transform: scale(1.1); } .floating-btn { position: fixed; bottom: 30px; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: all 0.3s; z-index: 999; } .floating-btn:hover { transform: scale(1.1); } .floating-btn.whatsapp { left: 30px; background: #25d366; } .floating-btn.email { right: 30px; background: #374151; } .floating-btn i { font-size: 28px; } @media (max-width: 768px) { .mobile-menu-btn { display: block; } .nav-list { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .nav-list.active { display: flex; } .hero-title { font-size: 40px; } .hero-subtitle { font-size: 16px; } .hero-buttons { flex-direction: column; align-items: center; } .section-header h2 { font-size: 28px; } .large-title { font-size: 36px !important; } .about-grid, .services-grid, .team-grid, .blog-grid, .contact-grid { grid-template-columns: 1fr; } .video-carousel-wrapper { padding: 0 50px; } .carousel-btn { width: 40px; height: 40px; } .video-card { flex: 0 0 280px; } .footer-bottom { flex-direction: column; gap: 20px; text-align: center; } .newsletter-form { flex-direction: column; } .newsletter-form input { width: 100%; } } @media (max-width: 480px) { .container { padding: 0 15px; } .section { padding: 50px 0; } .hero-title { font-size: 32px; } .stat-number { font-size: 28px; } .cta h2 { font-size: 24px; } .floating-btn { width: 48px; height: 48px; } .floating-btn i { font-size: 24px; } }