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

:root {
  --color-navy: #0a1628;
  --color-navy-light: #1a2942;
  --color-navy-dark: #050b14;
  --color-orange: #ff6b35;
  --color-orange-light: #ff8c5a;
  --color-orange-dark: #e85525;
  --color-white: #ffffff;
  --color-gray-50: #f8f9fa;
  --color-gray-100: #e9ecef;
  --color-gray-200: #dee2e6;
  --color-gray-300: #ced4da;
  --color-gray-400: #adb5bd;
  --color-gray-500: #6c757d;
  --color-gray-600: #495057;
  --color-gray-700: #343a40;
  --color-gray-800: #212529;

  --font-display: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-body);
  color: var(--color-gray-800);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  background-color: var(--color-white);
  padding: 12px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

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

.nav-menu a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-orange);
  transition: var(--transition);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(10, 22, 40, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  padding: 8px 20px;
  background-color: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-title-accent {
  color: var(--color-orange);
  display: block;
}

.hero-description {
  font-size: 20px;
  color: var(--color-gray-300);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta {
  display: flex;
  gap: 20px;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

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

.btn-large {
  padding: 20px 50px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease-out 1s backwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-orange), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* Stats Bar */
.stats-bar {
  background-color: var(--color-navy);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  animation: fadeInUp 0.8s ease-out;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--color-gray-300);
  font-size: 16px;
  font-weight: 500;
}

/* Shared Section Styles */
.section-label {
  display: inline-block;
  padding: 8px 20px;
  background-color: rgba(255, 107, 53, 0.1);
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
  margin-bottom: 30px;
}

.section-description {
  font-size: 18px;
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: 40px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* About Section */
.about {
  padding: 120px 0;
  background-color: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 700px;
}

.about-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 70%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.about-image-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background-color: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.badge-content {
  text-align: center;
  color: var(--color-white);
}

.badge-number {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 16px;
  color: var(--color-gray-600);
  line-height: 1.6;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-gray-600);
}

.about-contact a {
  color: var(--color-navy);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}

/* Services Section */
.services {
  padding: 120px 0;
  background-color: var(--color-gray-50);
}

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

.service-card {
  background-color: var(--color-white);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card-large {
  grid-column: span 2;
  flex-direction: row;
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.service-card-large .service-image {
  width: 50%;
  height: auto;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card-large .service-content {
  width: 50%;
}

.service-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 107, 53, 0.2);
  line-height: 1;
}

.service-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}

.service-description {
  font-size: 16px;
  color: var(--color-gray-600);
  line-height: 1.7;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--color-gray-700);
}

.service-list li::before {
  content: "→";
  color: var(--color-orange);
  font-weight: 700;
}

/* Projects Section */
.projects {
  padding: 120px 0;
  background-color: var(--color-white);
}

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

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 22, 40, 0.9) 100%
  );
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 30px;
}

.project-category {
  padding: 8px 20px;
  background-color: var(--color-orange);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-info {
  padding: 30px;
  background-color: var(--color-white);
}

.project-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.project-info p {
  color: var(--color-gray-600);
  font-size: 15px;
}

/* Testimonials */
.testimonials {
  padding: 120px 0;
  background-color: var(--color-navy);
}

.testimonials .section-title {
  color: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: var(--color-orange);
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial-text {
  color: var(--color-gray-300);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-orange);
}

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

.author-name {
  color: var(--color-white);
  font-weight: 600;
  font-size: 16px;
}

.author-title {
  color: var(--color-gray-400);
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--color-orange) 0%,
    var(--color-orange-dark) 100%
  );
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.cta-content .btn-primary:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background-color: var(--color-gray-50);
}

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

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-label {
  font-size: 13px;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-text a {
  color: var(--color-navy);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: var(--transition);
}

.contact-text a:hover {
  color: var(--color-orange);
}

.contact-text p {
  color: var(--color-navy);
  font-size: 18px;
  font-weight: 600;
}

.company-info {
  margin-top: 40px;
  padding: 30px;
  background-color: var(--color-white);
  border-left: 3px solid var(--color-orange);
}

.company-info p {
  color: var(--color-gray-700);
  font-size: 15px;
  line-height: 1.6;
}

.contact-form-wrapper {
  background-color: var(--color-white);
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 1px solid var(--color-gray-300);
  background-color: var(--color-gray-50);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-orange);
  background-color: var(--color-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  /* adjusted column widths to make footer more compact and balanced */
  gap: 30px;
  /* reduced gap from 40px to 30px for tighter layout */
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo img {
  height: 100px;
  /* increased logo height from 70px to 100px for better visibility */
  width: 150px;
  object-fit: contain;
  margin-bottom: 10px;
  background-color: var(--color-white);
  padding: 15px 20px;
  /* increased padding from 10px 15px to 15px 20px for better proportions */
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-description {
  color: var(--color-gray-400);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: var(--color-white);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--color-gray-400);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--color-orange);
  padding-left: 5px;
}

.footer-col li {
  color: var(--color-gray-400);
  font-size: 14px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--color-gray-500);
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-tagline {
  color: var(--color-gray-600);
  font-size: 12px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Responsive Design - Tablet and below */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    height: 500px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-large {
    grid-column: span 1;
    flex-direction: column;
  }

  .service-card-large .service-image,
  .service-card-large .service-content {
    width: 100%;
  }

  .service-image {
    height: 350px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-logo {
    grid-column: span 2;
  }
}

/* Mobile Landscape and below */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Navigation Mobile */
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-navy);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 0;
    transition: var(--transition);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

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

  .nav-menu li {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu a {
    display: block;
    font-size: 18px;
  }

  .nav-logo img {
    height: 60px;
  }

  /* Hero Section Mobile */
  .hero {
    min-height: 80vh;
    padding-top: 80px;
  }

  .hero-title {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 17px;
    margin-bottom: 30px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .scroll-indicator {
    display: none;
  }

  /* Stats Bar Mobile */
  .stats-bar {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-label {
    font-size: 14px;
  }

  /* About Section Mobile */
  .about {
    padding: 80px 0;
  }

  .about-images {
    height: 400px;
    margin-bottom: 20px;
  }

  .about-image-main {
    width: 80%;
  }

  .about-image-secondary {
    width: 65%;
  }

  .about-badge {
    width: 120px;
    height: 120px;
  }

  .badge-number {
    font-size: 28px;
  }

  .badge-text {
    font-size: 12px;
  }

  .about-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* Services Section Mobile */
  .services {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .service-content {
    padding: 35px 25px;
  }

  .service-number {
    font-size: 36px;
  }

  .service-title {
    font-size: 26px;
  }

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

  .project-image {
    height: 350px;
  }

  /* Testimonials Mobile */
  .testimonials {
    padding: 80px 0;
  }

  .testimonial-card {
    padding: 30px 25px;
  }

  /* Contact Section Mobile */
  .contact {
    padding: 80px 0;
  }

  .contact-form-wrapper {
    padding: 35px 25px;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 70px 0;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-content p {
    font-size: 17px;
  }

  /* Footer Mobile */
  .footer {
    padding: 40px 0 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo {
    grid-column: span 1;
  }

  .footer-logo img {
    height: 80px;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Navigation */
  .nav {
    padding: 15px 0;
  }

  .nav-logo {
    padding: 10px 15px;
  }

  .nav-logo img {
    height: 50px;
  }

  .nav-menu {
    width: 100%;
    right: -100%;
    padding: 80px 30px 30px;
  }

  /* Hero Section */
  .hero {
    min-height: 70vh;
  }

  .hero-label {
    font-size: 11px;
    padding: 6px 15px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .btn {
    padding: 14px 30px;
    font-size: 15px;
  }

  .btn-large {
    padding: 16px 35px;
    font-size: 16px;
  }

  /* Stats Bar */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stat-number {
    font-size: 36px;
  }

  /* Section Spacing */
  .about,
  .services,
  .projects,
  .testimonials,
  .contact {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-label {
    font-size: 11px;
    padding: 6px 15px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-description,
  .section-subtitle {
    font-size: 16px;
  }

  /* About Section */
  .about-images {
    height: 350px;
  }

  .about-badge {
    width: 100px;
    height: 100px;
  }

  .badge-number {
    font-size: 24px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .feature-text h3 {
    font-size: 18px;
  }

  .feature-text p {
    font-size: 15px;
  }

  /* Services */
  .service-content {
    padding: 25px 20px;
  }

  .service-image {
    height: 280px;
  }

  .service-number {
    font-size: 32px;
  }

  .service-title {
    font-size: 22px;
  }

  .service-description {
    font-size: 15px;
  }

  /* Projects */
  .project-image {
    height: 280px;
  }

  .project-info {
    padding: 20px;
  }

  .project-info h3 {
    font-size: 20px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  /* Contact */
  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
    font-size: 14px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-text a,
  .contact-text p {
    font-size: 16px;
  }

  .company-info {
    padding: 20px;
  }

  /* CTA Section */
  .cta-section {
    padding: 50px 0;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* Footer */
  .footer {
    padding: 30px 0 20px;
  }

  .footer-logo img {
    height: 70px;
  }

  .footer-description {
    font-size: 13px;
  }

  .footer-col h4 {
    font-size: 14px;
  }

  .footer-col a,
  .footer-col li {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

  .nav-logo img {
    height: 45px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .stat-number {
    font-size: 32px;
  }
}
