* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f8f9fa;
}

nav {
  width: 100%;
  background: #1d3557;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffd166;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: 0.4s;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    background: #1d3557;
    width: 100%;
    flex-direction: column;
    text-align: center;
    transition: left 0.3s ease;
    padding: 20px 0;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }
}


.hero {
  background: linear-gradient(rgba(29, 53, 87, 0.7), rgba(29, 53, 87, 0.7)),
              url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 700px;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-content h1 span {
  color: #ffd166;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #ffd166;
  color: #1d3557;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #fca311;
  color: #fff;
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive text adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}


/* ABOUT SECTION DESIGN */
.about-section {
  background: #f9fafc;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #1d3557;
  margin-bottom: 20px;
  position: relative;
  font-weight: 700;
}

.about-text h2 span {
  color: #fca311;
}

.about-text p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text ul {
  list-style: none;
  margin-top: 15px;
  margin-bottom: 25px;
}

.about-text ul li {
  font-size: 1rem;
  color: #1d3557;
  margin: 10px 0;
  background: #e8f1fa;
  padding: 8px 12px;
  border-radius: 6px;
  transition: transform 0.3s;
}

.about-text ul li:hover {
  transform: translateX(5px);
}

.about-btn {
  display: inline-block;
  background: #fca311;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #ffd166;
  color: #1d3557;
  transform: translateY(-3px);
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-image img {
    max-width: 350px;
  }
}


/* WHY CHOOSE US SECTION */
.why-choose-section {
  background: linear-gradient(135deg, #1d3557, #264b82);
  color: #fff;
  padding: 90px 10%;
  text-align: center;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-choose-container h2 span {
  color: #ffd166;
}

.why-subtext {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 50px;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: #ffffff10;
  padding: 30px 20px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.why-card:hover {
  transform: translateY(-8px);
  background: #ffffff20;
}

.why-card .icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
  background: #ffd166;
  color: #1d3557;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.why-card p {
  color: #f1f1f1;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-container h2 {
    font-size: 2rem;
  }

  .why-subtext {
    font-size: 1rem;
  }

  .why-card {
    padding: 25px 15px;
  }
}


/* SERVICES SECTION */
.services-section {
  background: #f8f9fa;
  padding: 90px 10%;
  text-align: center;
  color: #1d3557;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-container h2 span {
  color: #fca311;
}

.services-subtext {
  font-size: 1.1rem;
  margin-bottom: 50px;
  line-height: 1.7;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 2.2rem;
  background: #ffd166;
  color: #1d3557;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-container h2 {
    font-size: 2rem;
  }
  .services-subtext {
    font-size: 1rem;
  }
}


/* FOOTER */
.footer {
  background: #1d3557;
  color: #fff;
  padding: 60px 10%;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffd166;
}

.footer-section p,
.footer-section ul li {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #ffd166;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffd166;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 0.9rem;
  color: #ccc;
}

/* MOBILE RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .footer-section h3 {
    font-size: 1.3rem;
  }

  .footer-section p,
  .footer-section ul li {
    font-size: 0.9rem;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  .social-icons a {
    font-size: 1.4rem;
    margin: 0 10px;
  }

  .footer-bottom {
    font-size: 0.85rem;
    padding-top: 10px;
  }
}
