/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6vw;
}

/* Navigation */
.navbar {
  background: #1a1a1a;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.logo {
  font-weight: 800;
  color: #fff;
  font-size: 26px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  padding: 10px 6vw;
  margin: 0;
  height: auto;
  flex: 1;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 10px 6vw;
  padding-left: 0;
}

.nav-menu a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #ff6b35;
}

.navbar.scrolled {
  padding: 0;
}

.navbar.scrolled .logo {
  padding: 8px 6vw;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
  height: 40px;
}

.navbar.scrolled .nav-menu {
  padding: 8px 6vw;
  padding-left: 0;
}

.logo {
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 1;
  visibility: visible;
}

/* Hero Carousel */
.hero-carousel {
  background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.65), rgba(45, 45, 45, 0.65)), url('./images/Image-5.png');
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.hero-content {
  text-align: center;
  color: #fff;
  z-index: 2;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-about,
.btn-services,
.btn-contact,
.btn-contact-sol,
.btn-submit,
.btn-view-all {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px;
}

.btn-primary {
  background: #ff6b35;
  color: #fff;
}

.btn-primary:hover {
  background: #ff5500;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #1a1a1a;
}

.btn-about,
.btn-services,
.btn-contact,
.btn-submit,
.btn-view-all {
  background: #ff6b35;
  color: #fff;
  margin-top: 30px;
}

.btn-about:hover,
.btn-services:hover,
.btn-contact:hover,
.btn-submit:hover,
.btn-view-all:hover {
  background: #ff5500;
  transform: translateY(-2px);
}

.btn-contact-sol {
  background: #ff6b35;
  color: #fff;
  margin: 0;
}

/* Features Section */
.features-section {
  background: #f8f8f8;
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.feature-item h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* About Section */
.about-section {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 0;
  position: relative;
}

.about-content {
  max-width: 700px;
}

.about-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-content p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.8;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-left: 4px solid #ff6b35;
  margin: 30px 0;
}

.testimonial p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial span {
  font-size: 14px;
  color: #ff6b35;
  font-weight: 700;
}

/* Services Section */
.services-section {
  background: #fff;
  padding: 80px 0;
}

.services-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1a1a1a;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.service-card {
  background: #f8f8f8;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.service-card:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-10px);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.8;
}

.services-footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #f0f0f0;
}

.counter {
  font-size: 48px;
  font-weight: 800;
  color: #ff6b35;
  display: block;
  margin-bottom: 10px;
}

.label {
  font-size: 16px;
  color: #666;
  display: block;
  margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  padding: 100px 6vw;
  text-align: center;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* Solutions Section */
.solutions-section {
  background: #f8f8f8;
  padding: 80px 0;
  text-align: center;
}

.solutions-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1a1a1a;
  line-height: 1.2;
}

.divider {
  display: block;
  font-size: 14px;
  color: #999;
  margin-top: 40px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Projects Section */
.projects-section {
  background: #fff;
  padding: 80px 0;
}

.projects-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1a1a1a;
  line-height: 1.2;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.project-card {
  overflow: hidden;
  border-radius: 4px;
  height: 250px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

/* Why Choose Section */
.why-choose-section {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 0;
}

.why-choose-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.why-choose-section p {
  font-size: 16px;
  margin-bottom: 50px;
  opacity: 0.9;
  line-height: 1.8;
  max-width: 600px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 4px;
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.stat-item h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ff6b35;
}

/* Team Section */
.team-section {
  background: #f8f8f8;
  padding: 80px 0;
}

.team-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1a1a1a;
  line-height: 1.2;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.team-member {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.team-member h3 {
  padding: 20px;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.team-member p {
  padding: 0 20px 20px;
  font-size: 13px;
  color: #ff6b35;
  font-weight: 600;
}

/* Blog Section */
.blog-section {
  background: #fff;
  padding: 80px 0;
}

.blog-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1a1a1a;
  line-height: 1.2;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.blog-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.blog-card:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-10px);
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.blog-date {
  font-size: 12px;
  color: #ff6b35;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}

.blog-card p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.read-more {
  font-size: 13px;
  font-weight: 700;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.blog-card:hover .read-more {
  color: #fff;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff6b35;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ff6b35;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  border-radius: 4px 0 0 4px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  padding: 12px 20px;
  background: #ff6b35;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  border-radius: 0 4px 4px 0;
}

.newsletter-form button:hover {
  background: #ff5500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  margin-bottom: 15px;
}

.footer-links a {
  font-size: 12px;
  color: #fff;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b35;
}

/* Responsive Design - Keep Layout, Scale Content */
@media (max-width: 1024px) {
  .container {
    padding: 0 5vw;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .nav-menu {
    gap: 30px;
  }

  .nav-menu a {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 4vw;
  }

  .nav-menu {
    gap: 20px;
  }

  .nav-menu a {
    font-size: 11px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .logo img {
    height: 60px;
  }

  .about-content h2,
  .services-section h2,
  .projects-section h2,
  .why-choose-section h2,
  .solutions-section h2,
  .cta-content h2 {
    font-size: 36px;
  }

  .feature-item h3,
  .service-card h3 {
    font-size: 17px;
  }

  .feature-item p,
  .service-card p {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 3vw;
  }

  .nav-menu {
    gap: 15px;
  }

  .nav-menu a {
    font-size: 10px;
  }

  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 11px;
  }

  .about-content h2,
  .services-section h2,
  .projects-section h2,
  .why-choose-section h2,
  .solutions-section h2,
  .cta-content h2 {
    font-size: 28px;
  }

  .feature-item h3,
  .service-card h3 {
    font-size: 15px;
  }

  .feature-item p,
  .service-card p {
    font-size: 12px;
  }

  .logo img {
    height: 50px;
  }

  .btn-about,
  .btn-services,
  .btn-contact {
    padding: 12px 20px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 3vw;
  }

  .nav-menu {
    gap: 12px;
  }

  .nav-menu a {
    font-size: 9px;
  }

  .hero-carousel,
  .hero-slide {
    min-height: 50vh;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 16px;
    font-size: 10px;
  }

  .about-content h2,
  .services-section h2,
  .projects-section h2,
  .why-choose-section h2,
  .solutions-section h2,
  .cta-content h2 {
    font-size: 22px;
  }

  .feature-item h3,
  .service-card h3,
  .stat-item h4 {
    font-size: 14px;
  }

  .feature-item p,
  .service-card p,
  .stat-item p {
    font-size: 11px;
  }

  .logo img {
    height: 35px;
  }

  .btn-about,
  .btn-services,
  .btn-contact,
  .btn-submit,
  .btn-view-all {
    padding: 11px 18px;
    font-size: 11px;
  }

  .footer-col h3 {
    font-size: 14px;
  }

  .footer-col p {
    font-size: 11px;
  }
}



a {
  text-decoration: none;
  color: inherit;
}

/* Header & Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #0b365f;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo {
  font-weight: 800;
  color: #fff;
  font-size: 24px;
  letter-spacing: 1px;
}

.menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.menu button {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 4px;
}

.menu button:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Hero Section */
.hero {
  min-height: 60vh;
  background-image: linear-gradient(135deg, rgba(11, 54, 95, 0.7), rgba(11, 54, 95, 0.7)), url('./images/hero-Background.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.hero-text-center {
  font-family: 'Arial', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  transform: translateY(-40px);
}

.hero-text-subtitle {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #b0b0b0;
  text-align: center;
  letter-spacing: 1px;
  transform: translateY(-40px);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6vw;
}

/* Featured Section */
.featured-section {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.featured-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0b365f;
}

.view-all {
  color: #f97316;
  font-weight: 600;
  transition: color 0.3s ease;
}

.view-all:hover {
  color: #e65c0d;
}

.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.featured-main {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-height: 580px;
}

.featured-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  padding: 40px 30px 30px;
}

.category {
  display: inline-block;
  background: #f97316;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.featured-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.featured-content p {
  font-size: 15px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  opacity: 0.8;
}

.featured-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.featured-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 16px;
}

.card-content .category {
  font-size: 11px;
  margin-bottom: 8px;
}

.card-content h4 {
  font-size: 16px;
  color: #0b365f;
  line-height: 1.4;
}

/* Trending Section */
.trending-section {
  background-image: linear-gradient(135deg, rgba(11, 54, 95, 0.7), rgba(11, 54, 95, 0.7)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=60');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.trending-bg-text {
  font-family: 'Arial', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
}

.trending-bg-subtitle {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #b0b0b0;
  text-align: center;
  letter-spacing: 1px;
}

/* Services Section */
.services-section {
  background: #f0f4f8;
  padding: 60px 0;
}

.services-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0b365f;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  color: #0b365f;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #0b365f;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 14px;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #f97316;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 20px;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .menu button {
    width: 100%;
    text-align: center;
  }

  .hero-text-center {
    font-size: 36px;
  }

  .hero-text-subtitle {
    font-size: 16px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-main img {
    height: 300px;
  }

  .featured-header h2 {
    font-size: 24px;
  }

  .trending-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-text-center {
    font-size: 28px;
  }

  .featured-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trending-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Form Section */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-section h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: center;
}

.contact-section p {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  text-align: center;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}