/* Global Styles */
:root {
  --primary-color: #25d366;
  --secondary-color: #128c7e;
  --dark-color: #333;
  --light-color: #f4f4f4;
  --accent-color: #075e54;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
}

img {
  max-width: 100%;
}

/* Header */
header {
  background: var(--dark-color);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
  padding: 4rem 0;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.about h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 10px auto;
}

.features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.feature {
  flex: 1;
  min-width: 300px;
  margin: 1rem;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
}

.feature i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Portfolio Section */
.portfolio {
  padding: 4rem 0;
  background: var(--light-color);
  text-align: center;
}

.portfolio h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.portfolio h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 10px auto;
}

.portfolio-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
  padding: 1rem 0;
}

.portfolio-slider::-webkit-scrollbar {
  height: 8px;
}

.portfolio-slider::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.slide {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 350px;
  height: 350px;
  margin-right: 20px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.slide:hover .slide-content {
  transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.testimonials h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 10px auto;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
  padding: 1rem 0;
}

.testimonial-slider::-webkit-scrollbar {
  height: 8px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.testimonial {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 300px;
  padding: 2rem;
  margin-right: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary-color);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial h4 {
  color: var(--secondary-color);
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  background: var(--light-color);
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.contact h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 10px auto;
}

.contact-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.method {
  flex: 1;
  min-width: 250px;
  margin: 1rem;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.method i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.method a {
  display: block;
  margin-top: 0.5rem;
  color: var(--dark-color);
  font-weight: bold;
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
  }

  .feature {
    margin: 1rem 0;
  }

  .slide,
  .testimonial {
    width: 280px;
  }
}







































/* website-development.css */
/* Inherits variables and base styles from style.css */

/* Service Detail Section */
.service-detail {
  padding: 5rem 0;
  background: #f9f9f9;
}

.service-detail .container {
  max-width: 1100px;
}

.service-detail h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.service-detail h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 20px auto;
}

.service-detail .intro {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #555;
  line-height: 1.7;
}

/* Technology Stack Section */
.technology-stack {
  margin: 4rem 0;
}

.technology-stack h3 {
  font-size: 2rem;
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 3rem;
  position: relative;
}

.technology-stack h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 15px auto;
}

.tech-category {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tech-category h4 {
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.tech-category h4 i {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.8rem;
}

.tech-category ul {
  list-style: none;
}

.tech-category ul li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px dashed #eee;
}

.tech-category ul li:last-child {
  border-bottom: none;
}

.tech-category ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 10px;
}

/* Services Grid Section */
.service-types {
  margin: 5rem 0;
}

.service-types h3 {
  font-size: 2rem;
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 3rem;
  position: relative;
}

.service-types h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 15px auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-top: 3px solid var(--primary-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.2);
}

.service-card h4 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  padding: 4rem 2rem;
  border-radius: 10px;
  text-align: center;
  margin: 5rem 0;
  color: white;
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: var(--dark-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  margin: 0 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-btn {
  background: var(--primary-color);
  color: white;
  display: inline-flex;
  align-items: center;
}

.whatsapp-btn i {
  margin-right: 10px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.whatsapp-btn:hover {
  background: #128C7E;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-detail {
    padding: 3rem 0;
  }
  
  .service-detail h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    padding: 3rem 1rem;
  }
  
  .cta-btn {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }
}








/* Industries Section */
.industries {
  padding: 4rem 0;
  background: var(--light-color);
  text-align: center;
}

.industries h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.industries h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 10px auto;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.industry {
  background: white;
  padding: 2rem 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.industry:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.industry i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Upwork Reviews Section */
.upwork-reviews {
  padding: 4rem 0;
  text-align: center;
}

.upwork-reviews h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.upwork-reviews h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 10px auto;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 2rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.stars {
  color: #ffc107;
  font-weight: bold;
}

.date {
  color: #666;
  font-size: 0.9rem;
}

.review-card h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.review-text {
  color: #555;
  font-style: italic;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .review-cards {
    grid-template-columns: 1fr;
  }
}



/* node-js-development-company */


/* Technology Detail Page Styles */
.tech-detail {
  padding: 4rem 0;
}

.tech-detail h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.tech-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 3rem 0;
}

.tech-hero {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tech-overview {
  flex: 1;
  min-width: 300px;
}

.tech-overview h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.tech-benefits {
  margin: 4rem 0;
}

.tech-benefits h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.tech-benefits h3 i {
  margin-right: 15px;
  color: var(--primary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 2rem;
}

.benefit {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.benefit i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.tech-integration {
  margin: 4rem 0;
}

.tech-integration h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.tech-integration h3 i {
  margin-right: 15px;
  color: var(--primary-color);
}

.integration-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 2rem;
}

.integration-content img {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.integration-text {
  flex: 1;
  min-width: 300px;
}

.integration-text ul {
  list-style: none;
  margin: 1.5rem 0;
}

.integration-text ul li {
  padding: 0.5rem 0;
  padding-left: 30px;
  position: relative;
}

.integration-text ul li::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 0.8rem;
}

.tech-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  padding: 3rem;
  border-radius: 10px;
  color: white;
  margin: 4rem 0;
}

.tech-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Make tech list items clickable */
.tech-category ul li a {
  color: var(--dark-color);
  transition: color 0.3s ease;
  position: relative;
  padding-left: 25px;
}

.tech-category ul li a::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.tech-category ul li a:hover {
  color: var(--primary-color);
}

.tech-category ul li a:hover::before {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .tech-detail h2 {
    font-size: 2rem;
  }
  
  .tech-intro, .integration-content {
    flex-direction: column;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-cta {
    padding: 2rem 1rem;
  }
}