/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Colors */
:root {
  --primary: #e63946;
  --secondary: #1d3557;
  --accent: #f1faee;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #6c757d;
  --black: #000000;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

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

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

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

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  color: var(--secondary);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
}

/* Header - Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
  max-width: 200px;
  width: auto;
}

/* For larger screens */
@media (min-width: 769px) {
  .logo img {
    height: 80px;
  }
}

/* For smaller screens */
@media (max-width: 768px) {
  .logo img {
    height: 40px;
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .logo img {
    height: 35px;
    max-width: 100px;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--secondary);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/is5.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero-content img {
  height: 200px;
  max-width: 100%;
  width: auto;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease;
}

.hero-buttons {
  animation: fadeIn 1.5s ease;
}

.hero-buttons .btn {
  margin: 0 10px;
}

/* Services Section */
.services {
  background-color: var(--accent);
}

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

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--secondary);
  margin-bottom: 15px;
}

.service-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--secondary);
}

/* Why Vinyl Section */
.why-alfa {
  padding: 80px 0;
}

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

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

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

.feature-item h3 {
  color: var(--secondary);
  margin-bottom: 15px;
}

/* Projects Section */
.projects {
  padding: 80px 0;
}

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

.project-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 300px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-info h3 {
  margin-bottom: 5px;
}

.project-info-bottom {
  text-align: center;
  padding: 15px;
  background-color: var(--accent);
  color: var(--secondary);
  position: relative;
}

.project-info-bottom h3 {
  color: var(--secondary);
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.project-info-bottom p {
  margin: 0;
  color: var(--dark-gray);
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  text-align: center;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial p::before,
.testimonial p::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.3;
}

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

/* Contact Section */
.contact {
  background-color: var(--accent);
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--secondary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

.form-group textarea {
  resize: vertical;
}

.contact-info h3 {
  color: var(--secondary);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 1.2rem;
}

.contact-item a {
  text-decoration: none;
  color: var(--secondary);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary);
}

/* Footer */
footer {
  background-color: var(--secondary);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-logo p {
  color: #a9a9a9;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #a9a9a9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary);
}

.footer-contact a {
  color: #a9a9a9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--primary);
}

.social-media {
  text-align: center;
  margin-bottom: 20px;
}

.social-media a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin: 0 5px;
  transition: transform 0.3s ease;
}

.social-media a:hover {
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a9a9a9;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  z-index: 100;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/is6.jpg") center/cover no-repeat;
  color: var(--white);
  padding: 150px 0 100px 0; /* Increased top padding to move it down */
  text-align: center;
}

.page-header h1 {
  font-size: 3rem; /* Increased size for better impact */
  margin-bottom: 25px; /* Increased to make room for the line */
  color: var(--white);
  text-transform: uppercase; /* Make it uppercase for better look */
  letter-spacing: 1px; /* Add letter spacing */
  font-weight: 600; /* Make slightly bolder */
  position: relative; /* Enable positioning for the line */
}

.page-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary); /* Use the primary color */
  border-radius: 2px;
}

.page-header p {
  font-size: 1.3rem; /* Increased size */
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9; /* Slightly transparent for a more elegant look */
}

/* Services Detail Page */
.services-detail {
  padding: 80px 0;
}

.service-detail {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 50px;
}

.service-detail.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-image img:hover {
  transform: scale(1.05);
}

/* Services Detail Section */
.services-detail {
  padding: 80px 0;
}

.service-detail {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px; /* Reduced gap between icon and content */
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-detail:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.service-icon {
  flex: 0 0 auto; /* Don't grow or shrink, just take natural size */
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e63946, #f28482);
  border-radius: 10px;
  color: white;
  font-size: 28px;
  text-align: center;
}

.service-content {
  flex: 1; /* Take remaining space */
}

.service-content h2 {
  color: var(--secondary);
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.service-content p {
  color: var(--dark-gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-content ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.service-content li {
  margin-bottom: 8px;
  color: var(--dark-gray);
}

/* Ensure proper mobile responsiveness for the service details */
@media (max-width: 768px) {
  .service-detail {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin: 0 auto 15px;
  }
  
  .service-content {
    width: 100%;
  }
}

.service-content {
  flex: 1;
}

.service-content h2 {
  color: var(--secondary);
  margin-bottom: 20px;
}

.service-content ul {
  margin-top: 20px;
  padding-left: 20px;
}

.service-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.service-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Projects Filter */
.projects-filter {
  background-color: var(--light-gray);
  padding: 30px 0;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 10px 20px;
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Projects Gallery */
.projects-gallery {
  padding: 80px 0;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info {
  text-align: center;
  color: white;
  padding: 20px;
}

.project-info h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.project-link {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.project-link:hover {
  background-color: #c1121f;
}

/* Project Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  position: relative;
  animation: modalFadeIn 0.4s ease;
}

#modalVideo {
  max-height: 70vh;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: var(--dark-gray);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: var(--primary);
}

.modal-gallery {
  margin-top: 30px;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.gallery-images img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background-color: var(--accent);
}

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

.contact-info-item {
  text-align: center;
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-10px);
}

.contact-info-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info-item h3 {
  color: var(--secondary);
  margin-bottom: 15px;
}

.contact-info-item a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--primary);
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#contactForm .form-group {
  margin-bottom: 25px;
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.cta {
  background: linear-gradient(to right, var(--secondary), var(--primary));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.cta .btn {
  background-color: var(--white);
  color: var(--secondary);
  font-weight: 600;
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

  h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 15px 0;
  }
  
  .nav-link {
    font-size: 1rem;
    padding: 8px 15px;
  }

  .hamburger {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  .service-detail {
    flex-direction: column;
    gap: 30px;
  }

  .service-detail.reverse {
    flex-direction: column;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between; /* Changed to space between items */
    align-items: center;
    padding: 0 15px;
  }
  
  .hamburger {
    order: 1;
    margin-right: 15px;
  }
  
  .logo {
    order: 2;
    position: absolute; /* Center the logo absolutely */
    left: 50%;
    transform: translateX(-50%);
  }
  
  .nav-menu {
    top: 70px;
    left: -100%;
    width: 100%;
    min-height: auto; /* Changed from fixed height to auto */
    max-height: 80vh; /* Set max-height to limit scroll */
    background-color: var(--white);
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    z-index: 1999;
    overflow-y: auto; /* Allow scrolling if needed */
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 10px 0;
  }
  
  .nav-link {
    font-size: 1.3rem;
    padding: 12px;
  }

  .hamburger {
    display: flex;
  }
  
  .logo img {
    height: 60px;
    max-width: 150px;
  }
}

  .hero-content img {
    height: 120px; /* Reduced from 150px */
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons .btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  .service-detail {
    flex-direction: column;
    gap: 30px;
  }

  .service-detail.reverse {
    flex-direction: column;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .logo img {
    height: 35px;
    max-width: 100px;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0;
  }

  .hero-content img {
    height: 100px; /* Reduced from 120px to make it smaller */
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .service-detail {
    flex-direction: column;
    gap: 50px;
  }
  
  .service-detail.reverse {
    flex-direction: column;
  }
}