:root {
  --primary: #00332d;
  --secondary: #ffd700;
  --accent: #006400;
  --light: #ffffff;
  --dark: #222222;
  --gray-bg: #f8f9fa;
}

/* ==================================
   GLOBAL BASE STYLES
================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

@keyframes typing {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* ==================================
   HEADER + NAV
================================== */
header {
  background-color: var(--primary);
  color: var(--secondary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0,0,0,0.25);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo h1 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.logo-img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

@media (max-width: 768px) {
  #about .about-image img {
    border-radius: 50%;
  }
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  justify-content: space-between;
  align-items: center;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--light);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* =============== HERO SECTION =============== */
.hero {
  background: linear-gradient(rgba(0, 51, 45, 0.88), rgba(0, 51, 45, 0.88)),
              url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 0 80px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.25rem;
  max-width: 750px;
  margin: 0 auto 2rem;
  line-height: 1.5;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  background-color: #ffd700; /* gold */
  color: #00332d; /* deep green */
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn:hover {
  background-color: #ffde33;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Industry Badges - Horizontal Scroll on Mobile */
.industries {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 2rem;
  padding: 0 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #ffd700 transparent;
}

.industries::-webkit-scrollbar {
  height: 6px;
}

.industries::-webkit-scrollbar-thumb {
  background: #ffd700;
  border-radius: 3px;
}

.industry-badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 1.05rem;
  white-space: nowrap;
  min-width: fit-content;
  backdrop-filter: blur(4px);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 768px) {
  .industries {
    display: flex;
    flex-direction: column; /* stack badges vertically */
    align-items: center;    /* center them */
    gap: 8px;               /* spacing between badges */
    margin-top: 20px;
  }

  .industry-badge {
    width: 90%;             /* make badges take most of mobile width */
    text-align: center;
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 7px 18px;
    font-size: 0.85rem;
  }
  
   .hero {
    padding: 80px 20px 50px;
    min-height: 0vh; /* reduce height */
    background-position: center top; /* focus on top part of image */
  }
}
}

 

@media (max-width: 420px) {
  .industries {
    gap: 6px;
  }

  .industry-badge {
    font-size: 0.75rem;
    padding: 5px 8px;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 0.85rem;
  }
  
  .hero {
    padding: 60px 15px 40px;
    min-height: 0vh; /* even smaller for small phones */
    background-position: center top;
  }
}
}

 

/* =============== ABOUT SECTION =============== */
#about {
  background: var(--light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.03) 0%, transparent 40%),
              radial-gradient(circle at bottom left, rgba(0, 51, 45, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

#about .container {
  position: relative;
  z-index: 1;
}

#about .section-title h2 {
  color: var(--primary);
  font-size: 2.4rem;
  margin-bottom: 20px;
}

#about .section-title::after {
  background: var(--secondary);
  width: 90px;
  height: 4px;
  margin: 12px auto;
}

#about .about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

#about .about-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
  position: relative;
}

#about .about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
}

#about .about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid white;
  outline: 1px solid rgba(0, 51, 45, 0.1);
}

#about .about-image img:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  outline-color: rgba(255, 215, 0, 0.3);
}

#about .about-content {
  flex: 1;
  min-width: 280px;
  padding: 10px 0;
}

#about .about-content p {
  margin-bottom: 18px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--dark);
  position: relative;
}

#about .about-content p:first-of-type::first-letter {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  float: left;
  line-height: 0.8;
  margin-right: 10px;
  margin-top: 8px;
  font-family: 'Georgia', serif;
}

#about .about-content p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

/*  Add a subtle callout icon or quote */
#about .about-content::before {
  content: '' !important;
  /* Uncomment below if you want a decorative quote */
   content: '“';
  position: absolute;
  top: -20px;
  left: -15px;
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.2;
  font-family: Georgia, serif;
  z-index: -1; 
}

/* =============== RESPONSIVE =============== */
@media (max-width: 768px) {
  #about .about-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  #about .about-content p {
    text-align: center;
  }

  #about .about-content p:first-of-type::first-letter {
    float: none;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    margin-top: 0;
  }

  #about .about-image::after {
    bottom: -25px;
  }
}

/* ==================================
   SERVICES SECTION
================================== */
#services {
  padding: 5rem 0;
  background: var(--light);
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 0.8rem auto;
  border-radius: 2px;
}

#services .section-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.card {
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card h3 i {
  color: var(--secondary);
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.card li {
  margin: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.02rem;
}

.card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

.card .hover-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 45, 0.92);
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s;
  text-align: center;
  font-size: 1.05rem;
}

.card:hover .hover-info {
  opacity: 1;
}

/* ==================================
   PRODUCTS SECTION
================================== */
#products {
  background-color: var(--gray-bg);
  padding: 5.5rem 1rem;
}

#products .section-title h2 {
  font-size: 2.4rem;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 3rem;
  position: relative;
}

#products .section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: var(--secondary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

#products .section-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.product-card {
  background: var(--light);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 35px rgba(0,0,0,0.2);
}

.product-card .product-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--light);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.15) rotate(5deg);
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.8rem;
}

.product-card .subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
}

.product-card ul {
  list-style: disc inside;
  margin: 0.5rem 0 1rem;
  padding: 0;
  color: #333;
  line-height: 1.5;
}

.product-card .product-details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 51, 45, 0.95);
  color: #fff;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
  border-radius: 0 0 18px 18px;
  line-height: 1.5;
}

.product-card:hover .product-details {
  opacity: 1;
  transform: translateY(0);
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  transform: rotate(30deg);
  transition: all 0.6s ease;
  z-index: 0;
}

.product-card:hover::before {
  transform: rotate(30deg) scale(1.1);
}

/* ==================================
   TEAM SECTION
================================== */
#team {
  padding: 5rem 1rem;
  background: var(--gray-bg);
}

#team .section-title h2 {
  font-size: 2.4rem;
  color: var(--primary);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 3rem;
  position: relative;
}

#team .section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: var(--secondary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

#team .section-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.team-member-new {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-member-new::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
  transform: rotate(30deg);
  transition: all 0.6s ease;
  z-index: 0;
}

.team-member-new:hover::before {
  transform: rotate(30deg) scale(1.1);
}

.team-member-new .member-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--light);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}

.team-member-new:hover .member-photo {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.team-member-new .member-info h3 {
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.team-member-new .member-info .role {
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

.team-member-new .member-info p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0;
}

.team-member-new:hover .member-info p {
  color: #222;
  font-weight: 600;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

/* ==================================
   CONTACT SECTION
================================== */
#contact {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #01765f 100%);
  color: var(--light);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1506702315536-dd8b83e2dcf9?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
  filter: brightness(0.8);
}

.contact-container {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 3.5rem 2.5rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-width: 850px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.contact-container h2 {
  font-size: 2.4rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.contact-container p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #f0f0f0;
}

.whatsapp-highlight {
  background: rgba(0, 128, 0, 0.25);
  padding: 1.5rem 1.2rem;           
  border-radius: 16px;          
  margin: 2rem auto 1.5rem;     
  max-width: 650px;             
  font-size: 1.2rem;        
  font-weight: 600;     
  text-align: center;              
  transition: all 0.3s ease;      
}


.whatsapp-highlight:hover {
  background: rgba(255, 215, 0, 0.35);
  transform: scale(1.02);
}

.whatsapp-highlight strong {
  color: var(--secondary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.contact-form textarea {
  resize: none;
  min-height: 140px;
}

.contact-form button {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.05rem;
  cursor: pointer;
  border: none;
  transition: all 0.35s ease;
}

.contact-form button:hover {
  background: #fff08a;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ==================================
   FOOTER
================================== */
footer {
  background: var(--secondary);
  color: var(--light);
  padding: 3rem 0 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.footer-column h3 {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  background: var(--secondary);
  color: var(--primary);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1.15rem;
  text-decoration: none;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #ffd700, #fff08a);
  transform: translateY(-4px) scale(1.1);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.3rem 0;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

/* ==================================
   RESPONSIVE MEDIA QUERIES
================================== */

/* Tablet */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 2.3rem;
  }
  .hero p {
    font-size: 1.15rem;
  }
  .contact-container {
    padding: 3rem 2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Header */
  .hamburger {
    display: flex;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 1rem 0;
    display: none;
  }
  .main-nav.active {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .main-nav a {
    white-space: normal;
    text-align: center;
    width: 100%;
    padding: 0.6rem 0;
  }

  /* Layout */
  body {
    padding-top: 0;
  }
  .container,
  #services .section-content,
  #products .section-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Hero */
  .hero {
    min-height: 80vh;
    padding: 3rem 0;
  }
  .hero h2 {
    font-size: 1.9rem;
    white-space: normal;
    animation: none;
    width: auto;
    border-right: none;
  }
  .hero p {
    font-size: 1.05rem;
    margin: 1rem auto 2rem;
    opacity: 1;
    transform: none;
  }
  .hero .btn {
    opacity: 1;
    animation: none;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  /* Sections */
  section {
    padding: 4rem 0;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
  #services .section-content,
  #products .section-content,
  #team .section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Team */
  .team-member-new .member-photo {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  /* Footer */
  .footer-container {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .hero h2 {
    font-size: 1.6rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn, .contact-form button {
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
  .product-card .product-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  .product-card h3 {
    font-size: 1.15rem;
  }
  .footer-bottom {
    font-size: 0.8rem;
  }
}