* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #222;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #0a023e;
  padding: 20px 40px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.3s ease;
}



/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    background-color: #0a023e;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
  }

  .nav ul.show {
    display: flex;
  }

  .nav ul li {
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid #1a1a1a;
  }

  .nav ul li:last-child {
    border-bottom: none;
  }
}


/* HERO SECTION */
.hero {
  position: relative;
  height: 90vh;
  background-image: url('Van\ image.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  animation: fadeIn 1.5s ease-in-out forwards;
  opacity: 0;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
  animation: slideUp 2s ease forwards;
  opacity: 0;
}

.hero-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: #0d6efd;
  color: white;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-btn:hover {
  background: #0b5ed7;
  transform: scale(1.05);
}

/* ANIMATIONS */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-sy {
  background-color: #f6f6f6;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.about-sy-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.about-sy-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-sy-text {
  flex: 1;
  max-width: 600px;
}

.about-sy-text h2 {
  font-size: 3rem;
  color: #111;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-sy-text .icon {
  font-size: 1.5rem;
  color: #000;
}

.about-sy-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.about-sy-social a {
  text-decoration: none;
  color: #111;
  font-size: 1.25rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.about-sy-social a:hover {
  color: #0d6efd;
}


/* FOUNDER SECTION */
.founder {
  background: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 2px solid #eaeaea;
}

.founder-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.founder-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #0d6efd;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.founder-content {
  max-width: 600px;
  text-align: left;
}

.founder-content h2 {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 0.5rem;
}

.founder-content h3 {
  font-size: 1.5rem;
  color: #212529;
  margin-bottom: 1rem;
}

.founder-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}


/* OUR SERVICES SECTION
.services {
  background-color: #f8f9fa;
  padding: 4rem 2rem;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #0d6efd;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card h3 {
  color: #0d6efd;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
} */

/* Footer */
.footer {
  background-color: #0a023e;
  color: white;
  padding: 4rem 2rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-logo {
  width: 80px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 250px;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  font-size: 1.2rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #222;
  padding-top: 1rem;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .services-grid {
    padding: 0 20px;
  }
}
