/* Reset and Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}


body {
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* Buttons */
.btn {
  background-color: #005fa3;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin: 10px 10px 0 0;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #004080;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #005fa3;
  color: #005fa3;
}

.btn-outline:hover {
  background-color: #005fa3;
  color: #fff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #e6f0ff, #ffffff);
  padding: 40px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero .highlight {
  color: #005fa3;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
/* About Section */
.about {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e2efff, #f9fbff);
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #005fa3;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
}
/* Services Section */
.services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ebf6ff, #ffffff);

}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #005fa3;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 150px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
}

.service-card p {
  font-size: 1rem;
  color: #555;
}


/* Portfolio Section */

.portfolio-carousel {
  display: flex;
  gap: 30px;
  overflow: hidden;
  position: relative;
  scroll-behavior: smooth;
}

.portfolio-slide {
  flex: 0 0 560px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.portfolio-slide img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.portfolio-info {
  padding: 15px;
  text-align: center;
}

.portfolio-info h3 {
  margin-bottom: 10px;
  color: #003366;
}

.portfolio-info p {
  font-size: 0.95rem;
  color: #555;
}


/* Contact Section */
.contact {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eaf3ff, #ffffff);

}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #005fa3;
  box-shadow: 0 0 5px rgba(0,95,163,0.5);
}

.contact-form button {
  width: 100%;
  background-color: #005fa3;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #003f7f;
}
/* Footer Section */
.footer {
  background-color: #003366;
  color: white;
  padding: 40px 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-left h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 0.9rem;
  color: #ccc;
}

.footer-right a {
  margin-left: 15px;
}

.footer-right img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.footer-right img:hover {
  transform: scale(1.2);
}
/* Scroll to Top Button */
#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  font-size: 18px;
  background-color: #005fa3;
  color: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  transition: background-color 0.3s, transform 0.3s;
}

#scrollToTopBtn:hover {
  background-color: #003366;
  transform: scale(1.1);
}

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 40px;
  width: 55px;
  height: 55px;
  z-index: 1000;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ========================= */
/* Responsive Styles         */
/* ========================= */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .portfolio-slide {
    flex: 0 0 420px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    padding: 20px;
  }

  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .service-card img {
    width: 100px;
  }

  .portfolio-slide {
    flex: 0 0 320px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-right {
    margin-top: 10px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-image img {
    max-width: 280px;
  }

  .service-card {
    padding: 20px 15px;
  }

  .portfolio-slide {
    flex: 0 0 260px;
  }

  .portfolio-info p {
    font-size: 0.85rem;
  }

  .footer-left h3 {
    font-size: 1.4rem;
  }

  .footer-left p {
    font-size: 0.8rem;
  }
}



