/* Reset and Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Hero Section */
.hero-section { min-height: 100vh; display: flex; align-items: center; position: relative; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); overflow: hidden; padding-top: 80px !important; }
.hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-animation { position: relative; width: 100%; height: 100%; }
.floating-shape { position: absolute; background: rgba(255, 255, 255, 0.1); border-radius: 50%; animation: float 6s ease-in-out infinite; }
.shape-1 { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: -1s; }
.shape-2 { width: 60px; height: 60px; top: 60%; right: 10%; animation-delay: -2s; }
.shape-3 { width: 100px; height: 100px; bottom: 20%; left: 60%; animation-delay: -3s; }
.shape-4 { width: 40px; height: 40px; top: 30%; right: 30%; animation-delay: -4s; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 25% { transform: translateY(-20px) rotate(90deg); } 50% { transform: translateY(-40px) rotate(180deg); } 75% { transform: translateY(-20px) rotate(270deg); } }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.hero-text { color: white; }
.hero-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.2; animation: fadeInUp 1s ease-out; }
.hero-subtitle { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.9; animation: fadeInUp 1s ease-out 0.2s both; }
.hero-cta { display: inline-block; padding: 1rem 2rem; background: #ff6b6b; color: white; text-decoration: none; border-radius: 50px; font-weight: 600; transition: all 0.3s ease; animation: fadeInUp 1s ease-out 0.4s both; }
.hero-cta:hover { background: #ff5252; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3); }
.hero-visual { position: relative; }
.hero-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); animation: fadeInRight 1s ease-out 0.6s both; }
.hero-image img { width: 100%; height: auto; display: block; }
.floating-icons { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.icon-float { position: absolute; width: 60px; height: 60px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #2563eb; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); animation: iconFloat 4s ease-in-out infinite; }
.icon-1 { top: -10px; right: -10px; animation-delay: -1s; }
.icon-2 { bottom: 20px; left: -20px; animation-delay: -2s; }
.icon-3 { top: 50%; right: -30px; animation-delay: -3s; }
@keyframes iconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@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); } }
/* Section Headers */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 700; color: #1f2937; margin-bottom: 1rem; }
.section-header p { font-size: 1.2rem; color: #6b7280; max-width: 600px; margin: 0 auto; }
/* Services Section */
.services-section { padding: 6rem 0; background: #f8fafc; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.service-card { background: white; padding: 2.5rem; border-radius: 15px; text-align: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent); transition: left 0.5s; }
.service-card:hover::before { left: 100%; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); }
.service-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #2563eb, #1d4ed8); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; color: white; transition: all 0.3s ease; }
.service-icon img { width: 30px; }
.service-card:hover .service-icon { transform: rotateY(360deg); }
.service-card h3 { font-size: 1.5rem; font-weight: 600; color: #1f2937; margin-bottom: 1rem; }
.service-card p { color: #6b7280; line-height: 1.6; }
/* CTA Form Section */
.cta-form-section { padding: 4rem 0; background: linear-gradient(135deg, #1e40af, #3b82f6); text-align: center; }
.cta-content h3 { color: white; font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; }
.cta-content p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-btn { display: inline-block; padding: 1rem 2.5rem; background: #ff6b6b !important; color: white; text-decoration: none; border: none; border-radius: 50px; font-weight: 600; font-size: 1.1rem; cursor: pointer; transition: all 0.3s ease; }
.cta-btn:hover { background: #ff5252; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4); }
/* Approach Section */
.approach-section { padding: 6rem 0; }
.approach-container { max-width: 1200px; margin: 0 auto; }
.approach-tabs { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: start; }
.tabs-nav { display: flex; flex-direction: column; gap: 0.5rem; position: sticky; top: 120px; }
.tab-btn { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.5rem; background: #f8fafc !important; border: none; border-radius: 10px; text-align: left; font-size: 1rem; font-weight: 500; color: #6b7280 !important; cursor: pointer; transition: all 0.3s ease; border-left: 4px solid transparent; }
.tab-btn.active, .tab-btn.active:focus { background: white !important; color: #2563eb !important; border-left-color: #2563eb; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.tab-btn.active img, .tab-btn:hover img, .tab-btn:focus img {filter: brightness(0) saturate(100%) invert(30%) sepia(84%) saturate(3950%) hue-rotate(217deg) brightness(97%) contrast(89%);}
.tab-btn:hover, .tab-btn:focus { background: white; color: #2563eb !important; transform: translateX(5px); }
.tab-btn i { font-size: 1.2rem; }
.tabs-content { background: white; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); overflow: hidden; }
.tab-content { display: none; padding: 3rem; }
.tab-content.active { display: block; animation: fadeInLeft 0.5s ease; }
.content-wrapper { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: center; }
.content-text h3 { font-size: 1.8rem; font-weight: 700; color: #1f2937; margin-bottom: 1rem; }
.content-text p { color: #6b7280; margin-bottom: 1.5rem; line-height: 1.6; }
.content-text ul { list-style: none; padding: 0; }
.content-text li { position: relative; padding: 0.5rem 0 0.5rem 2rem; color: #4b5563; }
.content-text li::before { content: '✓'; position: absolute; left: 0; color: #10b981; font-weight: bold; }
.content-image { border-radius: 10px; overflow: hidden; }
.content-image img { width: 100%; height: 200px; object-fit: cover; }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
/* Process Section */
.process-section { padding: 6rem 0; background: #f8fafc; }
.process-flow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-bottom: 3rem; }
.process-step { text-align: center; max-width: 150px; transition: transform 0.3s ease; }
.process-step:hover { transform: translateY(-10px); }
.step-circle { width: 100px; height: 100px; background: linear-gradient(135deg, #2563eb, #1d4ed8); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; position: relative; color: white; font-size: 1.5rem; transition: all 0.3s ease; }
.step-circle:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3); }
.step-number { position: absolute; top: -10px; right: -10px; background: #ff6b6b; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: bold; }
.process-step h3 { font-size: 1.1rem; font-weight: 600; color: #1f2937; margin-bottom: 0.5rem; }
.process-step p { color: #6b7280; font-size: 0.9rem; line-height: 1.4; }
.process-arrow { font-size: 2rem; color: #2563eb; font-weight: bold; }
.process-cta { text-align: center; }
/* Technology Section */
.technology-section { padding: 6rem 0; }
.tech-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.tech-category { background: white; padding: 1.5rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; }
.tech-category:hover { transform: translateY(-5px); }
.category-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid #f1f5f9; }
.category-header i { font-size: 1.5rem; color: #2563eb; }
.category-header img.category-icon { width: 28px; height: 28px; object-fit: contain; }
.category-header h3 { font-size: 1.3rem; font-weight: 600; color: #1f2937; }
.tech-icons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.tech-icon { display: flex; flex-direction: column; align-items: center; padding: 1rem; border-radius: 10px; background: #f8fafc; transition: all 0.3s ease; }
.tech-icon:hover { background: #e2e8f0; transform: scale(1.05); }
.tech-icon img { width: 40px; height: 40px; margin-bottom: 0.5rem; }
.tech-icon span { font-size: 0.9rem; font-weight: 500; color: #374151; text-align: center; }
/* Portfolio Section */
.portfolio-section { padding: 6rem 0; background: #f8fafc; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.portfolio-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; }
.portfolio-card:hover { transform: translateY(-10px); }
.portfolio-image { height: 250px; overflow: hidden; }
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.portfolio-card:hover .portfolio-image img { transform: scale(1.1); }
.portfolio-content { padding: 2rem; }
.portfolio-content h3 { font-size: 1.5rem; font-weight: 600; color: #1f2937; margin-bottom: 1rem; }
.portfolio-description { color: #6b7280; margin-bottom: 1.5rem; line-height: 1.6; }
.portfolio-details { border-top: 1px solid #e5e7eb; padding-top: 1.5rem; }
.budget-range { display: flex; align-items: center; margin-bottom: 1rem; }
.budget-range .label { font-weight: 600; color: #374151; margin-right: 0.5rem; }
.budget-range .value { color: #2563eb; font-weight: 600; }
.features .label { font-weight: 600; color: #374151; margin-bottom: 0.5rem; display: block; }
.features ul { list-style: none; padding: 0; }
.features li { position: relative; padding: 0.3rem 0 0.3rem 1.5rem; color: #6b7280; font-size: 0.9rem; }
.features li::before { content: '•'; position: absolute; left: 0; color: #2563eb; font-weight: bold; }
/* Industries Section */
.industries-section { padding: 6rem 0; }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.industry-card { position: relative; height: 300px; border-radius: 15px; overflow: hidden; cursor: pointer; transition: transform 0.3s ease; }
.industry-card:hover { transform: scale(1.02); }
.industry-image { width: 100%; height: 100%; }
.industry-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.industry-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)); color: white; padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end; opacity: 0; transition: opacity 0.3s ease; }
.industry-card:hover .industry-overlay { opacity: 1; }
.industry-card:hover .industry-image img { transform: scale(1.1); }
.industry-overlay h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.industry-overlay p { font-size: 0.95rem; line-height: 1.5; opacity: 0.9; }
/* Why Choose Section */
.why-choose-section { padding: 6rem 0; background: #f8fafc; }
.why-choose-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: flex-start; }
.why-choose-image { border-radius: 15px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); position: sticky; top:90px; left: 0; z-index: 2; }
.why-choose-image img { width: 100%; height: 400px; object-fit: cover; }
.image-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); padding: 2rem; color: white; }
.stats { display: flex; gap: 2rem; }
.stat { text-align: center; }
.stat h3 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.stat p { font-size: 0.9rem; opacity: 0.9; }
.why-choose-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.feature-card { background: white; padding: 2rem; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); }
.feature-icon { width: 50px; height: 50px; background: linear-gradient(135deg, #2563eb, #1d4ed8); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.2rem; font-weight: 600; color: #1f2937; margin-bottom: 0.8rem; }
.feature-card p { color: #6b7280; font-size: 0.95rem; line-height: 1.5; }
/* FAQ Section */
.faq-section { padding: 6rem 0; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; border-radius: 10px; margin-bottom: 1rem; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); overflow: hidden; transition: all 0.3s ease; padding: 0; }
.faq-item:hover { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); }
.faq-question { padding: 2rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; background: white; transition: background 0.3s ease; }
.faq-question:hover { background: #f8fafc; }
.faq-question h3 { font-size: 1.2rem; font-weight: 600; color: #1f2937; margin: 0; }
.faq-question i { color: #2563eb; transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 2rem; max-height: 0; overflow: hidden; transition: all 0.3s ease; background: #f8fafc; }
.faq-item.active .faq-answer { padding: 2rem; max-height: unset !important; }
.faq-answer p { color: #6b7280; line-height: 1.6; margin: 0; }
/* Contact Section */
.contact-section { padding: 6rem 0; background: linear-gradient(135deg, #1e40af, #3b82f6); color: white; }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-text h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.contact-text p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-item { display: flex; align-items: center; gap: 1rem; }
.info-item i { width: 20px; font-size: 1.2rem; color: #93c5fd; }
.contact-form { background: white; padding: 3rem; border-radius: 15px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); }
.form-group { margin-bottom: 1.5rem; }
.form-group input, .form-group textarea { width: 100%; padding: 1rem; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s ease; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #2563eb; }
.calendly-link { text-align: center; margin-top: 1rem; }
.calendly-link a { color: #2563eb; text-decoration: none; font-weight: 600; }
.calendly-link a:hover { text-decoration: underline; }
/* Modal Styles */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); backdrop-filter: blur(5px); }
.modal-content { background-color: white; margin: 5% auto; padding: 3rem; border-radius: 15px; width: 90%; max-width: 500px; position: relative; animation: modalSlideIn 0.3s ease; }
@keyframes modalSlideIn { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }
.close { color: #aaa; float: right; font-size: 28px; font-weight: bold; position: absolute; right: 20px; top: 15px; cursor: pointer; }
.close:hover { color: #000; }
.modal-content h3 { color: #1f2937; font-size: 1.8rem; font-weight: 700; margin-bottom: 1.5rem; text-align: center; }
.calendly-link p{ text-align: left !important; }
/* Responsive Design */
@media(max-width:992px){
    #why-choose .why-choose-content { gap: 1rem; }
    .why-choose-features { grid-template-columns: repeat(1, 1fr); }
    #approach .tab-content { padding: 3rem 2rem; }
    #approach .content-wrapper { gap: 2rem; }
}
@media (max-width: 768px) {
   #why-choose .why-choose-image { position: relative !important; top: unset !important; left: unset !important; z-index: unset !important; }
    .nav-menu { position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px); background: white; flex-direction: column; justify-content: flex-start; align-items: center; padding: 2rem; transition: left 0.3s ease; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
    .nav-menu.active { left: 0; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
    .hero-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .approach-tabs { grid-template-columns: 1fr; gap: 2rem; }
    .tabs-nav { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .tab-btn { font-size: 0.9rem; padding: 1rem; }
    .content-wrapper { grid-template-columns: 1fr; gap: 1.5rem; }
    .process-flow { flex-direction: column; gap: 1rem; }
    .process-arrow { transform: rotate(90deg); }
    .tech-categories { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .why-choose-content { grid-template-columns: 1fr; gap: 2rem; }
    .why-choose-features { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; gap: 2rem; }
    .stats { justify-content: center; }
    .section-header h2 { font-size: 2rem; }
    .section-header p { font-size: 1rem; }
    .modal-content { margin: 10% auto; padding: 2rem; width: 95%; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2rem; }
    .industries-grid { grid-template-columns: 1fr; }
    .tabs-nav { grid-template-columns: 1fr; }
    .process-step { max-width: 120px; }
    .step-circle { width: 80px; height: 80px; }
    .tech-icons { grid-template-columns: 1fr; }
    .contact-form { padding: 2rem; }
}
/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
    .animate-on-scroll.in-view { opacity: 1; transform: translateY(0); }
}