/* ===== GLOBAL STYLES ===== */
:root {
  --primary: #FF8C00;
  --secondary: #FDB800;
  --accent: #EF2E00;
  --black: #000000;
  --white: #FFFFFF;
  --gray: #CCCCCC;
  --dark-gray: #222222;
  --light-gray: #111111;
  --text-color: #EEEEEE;
  --text-muted: #AAAAAA;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}

section {
  padding: 50px 0;
  background-color: var(--black);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  font-size: 18px;
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  min-width: 120px;
}

.btn:hover {
  background: var(--secondary);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 184, 0, 0.2);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 40px;
  width: auto;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 30px;
}

.navbar ul li a {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.navbar ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: all 0.3s ease;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
  width: 100%;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--primary);
}

.mobile-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero-split {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 80px);
  gap: 40px;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-muted);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-image {
  flex: 1;
  position: relative;
}

.floating-skull {
  width: 100%;
  max-width: 500px;
  opacity: 0.9;
  animation: float-right 8s infinite ease-in-out;
  filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.4)) brightness(1.1);
}

@keyframes float-right {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, -15px) rotate(3deg); }
  50% { transform: translate(-5px, 10px) rotate(-2deg); }
  75% { transform: translate(5px, -5px) rotate(1deg); }
}

/* ===== ABOUT SECTION ===== */
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 2;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--white);
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.about-list {
  margin-top: 20px;
  list-style: none;
}

.about-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: var(--text-muted);
}

.about-list li i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 18px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 110%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ===== SERVICES SECTION ===== */
.services {
  background-color: var(--dark-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--secondary);
  transform: rotate(360deg);
}

.service-icon i {
  font-size: 30px;
  color: var(--white);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--white);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--secondary);
}

.read-more:hover i {
  transform: translateX(5px);
}

/* ===== SERVICE DETAILS ===== */
.service-details {
  padding: 60px 0;
  background-color: var(--dark-gray);
}

.service-details:nth-child(odd) {
  background-color: var(--light-gray);
}

.service-detail-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.service-detail-text {
  flex: 1;
}

.service-detail-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--white);
}

.service-detail-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 16px;
}

.service-detail-text h3 {
  font-size: 22px;
  margin: 25px 0 15px;
  color: var(--white);
}

.service-detail-text ul {
  margin-bottom: 30px;
  list-style: none;
}

.service-detail-text ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--text-muted);
}

.service-detail-text ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
}

.service-detail-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

/* Updated Portfolio Grid for 2 items per row */
.portfolio {
  background-color: var(--black);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--dark-gray);
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
  min-height: 44px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--black);
}


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Changed to 2 columns */
    gap: 30px;
}

/* Keep all other portfolio styles the same as before */
.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 300px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 140, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: all 0.5s ease;
    color: var(--black);
}

.portfolio-overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    margin-bottom: 20px;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: var(--black);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
  background: var(--black);
  color: var(--secondary);
  transform: rotate(45deg);
}

.portfolio-item:hover .portfolio-overlay {
    bottom: 0;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
}

/* ===== CLIENTS SECTION ===== */
.clients {
  background: var(--dark-gray);
  padding: 50px 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
}

.client-logo {
  background: var(--black);
  padding: 25px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.client-logo img {
  max-width: 100%;
  max-height: 130px;
  width: auto;
  height: auto;
  filter: grayscale(0%) !important;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.15);
  border-color: rgba(255, 140, 0, 0.3);
}

.client-logo:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.client-logo:hover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(255, 140, 0, 0.05);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.05); opacity: 0; }
}

/* ===== TESTIMONIALS SECTION ===== */

/* Client Reviews Section */
.clients-review {
    background-color: var(--dark-gray);
    padding: 40px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.1);
}

.client-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--primary);
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    text-align: center;
    margin-bottom: 20px;
}

.client-info h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 5px;
}

.client-info span {
    color: var(--text-muted);
    font-size: 14px;
}

.review-content {
    text-align: center;
}

.review-content p {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-rating {
    color: var(--secondary);
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        max-width: 400px;
        margin: 0 auto;
    }
}


/* ===== CONTACT SECTION ===== */
.contact {
  background-color: var(--dark-gray);
}

.contact-content {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 24px;
  color: var(--white);
}

.contact-info-content h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}

.contact-info-content p {
  color: var(--text-muted);
}

.contact-form {
  flex: 1;
  background: var(--light-gray);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--dark-gray);
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: var(--dark-gray);
  color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 80px 0 0;
  border-top: 1px solid var(--dark-gray);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  color: var(--white);
}

.footer-col h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: var(--primary);
  bottom: -10px;
  left: 0;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-col p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--dark-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 30px 0 0 30px;
  font-size: 16px;
  outline: none;
  background: var(--dark-gray);
  color: var(--text-color);
}

.newsletter-form button {
  width: 60px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.newsletter-form button:hover {
  background: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  padding: 20px 0;
  text-align: center;
}

.footer-copyright p {
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary);
  transform: translateY(-5px);
}

/* ===== FLOATING LOGOS ANIMATION ===== */
.logo-bubble {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.7;
}

.floating-logo {
    width: 60px;
    height: auto;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

/* Position classes */
.top-left {
    top: 20px;
    left: 20px;
}

.top-right {
    top: 20px;
    right: 20px;
}

.bottom-left {
    bottom: 20px;
    left: 20px;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
}

/* Individual animations */
.top-left .floating-logo {
    animation-name: float-top-left;
}

.top-right .floating-logo {
    animation-name: float-top-right;
}

.bottom-left .floating-logo {
    animation-name: float-bottom-left;
}

.bottom-right .floating-logo {
    animation-name: float-bottom-right;
}

/* Animation keyframes */
@keyframes float-top-left {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, 25px) rotate(5deg); }
    50% { transform: translate(25px, 10px) rotate(-3deg); }
    75% { transform: translate(10px, 20px) rotate(2deg); }
}

@keyframes float-top-right {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, 25px) rotate(-5deg); }
    50% { transform: translate(-25px, 10px) rotate(3deg); }
    75% { transform: translate(-10px, 20px) rotate(-2deg); }
}

@keyframes float-bottom-left {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -25px) rotate(-5deg); }
    50% { transform: translate(25px, -10px) rotate(3deg); }
    75% { transform: translate(10px, -20px) rotate(-2deg); }
}

@keyframes float-bottom-right {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, -25px) rotate(5deg); }
    50% { transform: translate(-25px, -10px) rotate(-3deg); }
    75% { transform: translate(-10px, -20px) rotate(2deg); }
}

/* ===== MOBILE RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 42px;
  }
  
  .about-content {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .hero-image {
    width: 80%;
    margin: 0 auto;
  }
  
  .about-content,
  .service-detail-content,
  .contact-content {
    flex-direction: column;
  }
  
  .about-image,
  .service-detail-image {
    margin-top: 30px;
  }
  
  .service-detail-content:nth-child(even) .service-detail-image {
    order: 0;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .header .container {
    height: 70px;
  }
  
  .logo img {
    height: 30px;
  }
  
  .navbar {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.95);
    transition: all 0.5s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .navbar.active {
    left: 0;
  }
  
  .navbar ul {
    flex-direction: column;
    padding: 0;
    width: 100%;
    align-items: center;
  }
  
  .navbar ul li {
    margin: 15px 0;
  }
  
  .navbar ul li a {
    font-size: 18px;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .section-title h2 {
    font-size: 30px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-filter {
    flex-wrap: wrap;
  }
  
  .filter-btn {
    margin: 5px;
    padding: 8px 15px;
    font-size: 14px;
  }
  
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonial-item {
    padding: 20px;
    margin: 0 10px;
  }
  
  .testimonial-content p {
    font-size: 16px;
  }
  
  .testimonial-author img {
    width: 50px;
    height: 50px;
  }
  
  .author-info h4 {
    font-size: 18px;
  }
  
  .logo-bubble {
    display: none;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .section-title h2 {
    font-size: 26px;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 14px;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .client-logo {
    padding: 15px;
    height: 100px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 15px;
    font-size: 16px;
  }
}

/* Touch target optimizations */
a, button, input[type="submit"], input[type="button"] {
  min-height: 44px;
  min-width: 44px;
}

/* Add to your existing CSS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply to all sections */
section {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When section is in view */
section.in-view {
    opacity: 1;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Optional: Add different delays for each section */
section:nth-child(1).in-view { animation-delay: 0.1s; }
section:nth-child(2).in-view { animation-delay: 0.2s; }
section:nth-child(3).in-view { animation-delay: 0.3s; }
section:nth-child(4).in-view { animation-delay: 0.4s; }
/* Continue for as many sections as you have */

