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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #3498db;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #2980b9;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn-primary {
  display: inline-block;
  background-color: #3498db;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #2980b9;
  color: #fff;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #fff;
  cursor: pointer;
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background-color: #fff;
  padding: 0.75rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .logo,
.navbar.scrolled .nav-link {
  color: #333;
}
.navbar.scrolled .nav-link:hover {
  color: #3498db;
}
.navbar.scrolled .mobile-menu-button {
  color: #333;
}
.navbar .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease;
}
.navbar .desktop-menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .navbar .desktop-menu {
    display: none;
  }
}
.navbar .nav-link {
  color: #fff;
  font-weight: 500;
}
.navbar .nav-link:hover {
  color: #1abc9c;
}
.navbar .mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .navbar .mobile-menu-button {
    display: block;
  }
}
.navbar .mobile-menu-button svg {
  width: 24px;
  height: 24px;
}
.navbar .mobile-menu {
  display: none;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.navbar .mobile-menu.active {
  display: block;
  max-height: 300px;
}
.navbar .mobile-menu .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 1rem 1.5rem;
}
.navbar .mobile-menu .nav-link {
  color: #333;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}
.navbar .mobile-menu .nav-link:last-child {
  border-bottom: none;
}
.navbar .mobile-menu .nav-link:hover {
  color: #3498db;
}

.hero {
  height: 100vh;
  min-height: 600px;
  background-image: url("../images/banner.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(41, 128, 185, 0.7),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero p {
    font-size: 1rem;
  }
}
.hero .cta-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 576px) {
  .hero .cta-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .hero .cta-buttons .btn-primary,
  .hero .cta-buttons .btn-outline {
    width: 100%;
  }
}
.hero .scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero .scroll-down svg {
  width: 2rem;
  height: 2rem;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 4px;
  width: 50%;
  background-color: #1abc9c;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: #666;
}

.text-center {
  text-align: center;
}
.text-center .section-title::after {
  left: 25%;
}

.about {
  padding: 5rem 0;
  background-color: #f9f9f9;
}
.about .about-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 991px) {
  .about .about-content {
    flex-direction: column;
  }
}
.about .about-image {
  flex: 1;
}
.about .about-image img {
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
}
@media (max-width: 991px) {
  .about .about-image {
    width: 100%;
  }
}
.about .about-text {
  flex: 1;
}
.about .about-text p {
  margin-bottom: 1.5rem;
}
.about .stats {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.about .stats .stat-item {
  text-align: center;
}
.about .stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 0.25rem;
}
.about .stats .stat-item .stat-text {
  font-size: 0.9rem;
  color: #666;
}

.services {
  padding: 5rem 0;
}
.services .service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.services .service-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.services .service-card .service-icon {
  background-color: rgba(52, 152, 219, 0.1);
  color: #3498db;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem auto;
}
.services .service-card .service-icon svg {
  width: 35px;
  height: 35px;
}
.services .service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.services .service-card p {
  font-size: 0.9rem;
  color: #666;
}

.region {
  padding: 5rem 0;
  background-image: url("../images/fzl2PQH6kw-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: #fff;
}
.region .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.region .container {
  position: relative;
  z-index: 1;
}
.region .section-title::after {
  background-color: #fff;
}
.region .region-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.region .region-card {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 8px;
  padding: 2rem;
}
.region .region-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.region .cities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.region .cities-list li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
.region .cities-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #1abc9c;
}
@media (max-width: 576px) {
  .region .cities-list {
    grid-template-columns: 1fr;
  }
}
.region .cities-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.testimonials {
  padding: 5rem 0;
  background-color: #f9f9f9;
}
.testimonials .testimonial-slider-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}
.testimonials .testimonial-slider-container::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  font-size: 8rem;
  color: rgba(52, 152, 219, 0.2);
  font-family: serif;
  line-height: 1;
}
.testimonials .testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonials .testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}
.testimonials .testimonial-slide.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.testimonials .testimonial-slide .testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}
.testimonials .testimonial-slide .testimonial-author {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.testimonials .testimonial-slide .testimonial-author .testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db, #1abc9c);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
}
.testimonials .testimonial-slide .testimonial-author .testimonial-info h4 {
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.testimonials .testimonial-slide .testimonial-author .testimonial-info p {
  font-size: 0.875rem;
  color: #777;
  margin-bottom: 0;
}
.testimonials .testimonial-navigation {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.testimonials .testimonial-navigation .testimonial-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.testimonials .testimonial-navigation .testimonial-nav-dot.active {
  background-color: #3498db;
  transform: scale(1.2);
}

.contact {
  padding: 5rem 0;
}
.contact .contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.contact .contact-info {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 2rem;
}
.contact .contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact .contact-info .contact-info-items {
  margin-bottom: 2rem;
}
.contact .contact-info .contact-info-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact .contact-info .contact-info-item .contact-icon {
  background-color: #3498db;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.contact .contact-info .contact-info-item .contact-icon svg {
  width: 20px;
  height: 20px;
}
.contact .contact-info .contact-info-item h4 {
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.contact .contact-info .contact-info-item p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.25rem;
}
.contact .social-media h4 {
  margin-bottom: 1rem;
}
.contact .social-media .social-icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.contact .social-media .social-icons .social-icon {
  background-color: #3498db;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.contact .social-media .social-icons .social-icon:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
}
.contact .contact-form {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 2rem;
}
.contact .contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact .contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact .contact-form .form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact .contact-form .form-group input,
.contact .contact-form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact .contact-form .form-group input:focus,
.contact .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}
.contact .contact-form .form-group textarea {
  resize: vertical;
}
.contact .contact-form button {
  width: 100%;
}

.footer {
  background-color: #3498db;
  color: #fff;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 4rem 0;
}
.footer .footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.footer .footer-column p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer .footer-address,
.footer .footer-contact {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer .footer-address svg,
.footer .footer-contact svg {
  width: 1rem;
  height: 1rem;
}
.footer .footer-links li {
  margin-bottom: 0.75rem;
}
.footer .footer-links li a {
  color: #fff;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.footer .footer-links li a:hover {
  opacity: 1;
  color: #1abc9c;
}
.footer .footer-bottom {
  background-color: rgb(31.7477876106, 99.1150442478, 143.2522123894);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}
.footer .footer-bottom p {
  margin-bottom: 0;
}

#scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #3498db;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
#scroll-top svg {
  width: 1.5rem;
  height: 1.5rem;
}
#scroll-top.active {
  opacity: 1;
  visibility: visible;
}
#scroll-top:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Commitment Section --- */
.commitment {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.commitment-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  font-size: 40px;
  color: #2980b9;
  margin-bottom: 20px;
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

/* --- Segments Section --- */
.segments {
  padding: 80px 0;
  background-color: #ffffff;
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.segment-card {
  background-color: #f0f4f8;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.segment-card:hover {
  background-color: #3498db;
  color: #ffffff;
  transform: translateY(-4px);
}

.segment-card i {
  font-size: 32px;
  margin-bottom: 15px;
  display: block;
  color: #3498db;
}

.segment-card:hover i {
  color: #ffffff;
}

/* --- Sustainability Section --- */
.sustainability {
  padding: 80px 0;
  background-color: #eaf2f8;
}

.sustainability-content {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 40px;
  font-size: 1rem;
  line-height: 1.6;
  color: #2c3e50;
}

.eco-pillars {
  margin-top: 20px;
  padding-left: 20px;
  list-style: disc;
}

.eco-pillars li {
  margin-bottom: 10px;
}

/* --- Why Choose Us Section --- */
.why-us {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.why-item {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.why-item i {
  font-size: 36px;
  color: #3498db;
  margin-bottom: 15px;
}

.why-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.why-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/*# sourceMappingURL=style.css.map */
