* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif;
}
h1 {
  font-size: clamp(1.5rem, 5vw, 3rem); /* min: 1.5rem, ideal: 5vw, max: 3rem */
}

h2 {
  font-size: clamp(1.25rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.1rem, 3vw, 2rem);
}

p, li {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
}
nav a,
nav a:visited,
nav a:focus,
nav a:active,
nav a:hover,
nav .active {
  color: white !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  margin-left: 30px;
font-size: 1rem;
}


.logo {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

h2{
  padding: 10px;
}

.hero {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
 animation: fadeBackground 1s ease-in-out;
  transition: background-image 1.5s ease-in-out;
}
@keyframes fadeBackground {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  animation: heroTextFade 1s ease-out forwards;
  animation-delay: 0.5s;
}
@keyframes heroTextFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.btn {
  background-color: white;
  color: #007BFF;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
  color: white;
}

.scroll-indicator {
      animation: bounce 2s infinite;
      font-size: 2rem;
      position: absolute;
      bottom: 1rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: white;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0) translateX(-50%); }
      50% { transform: translateY(10px) translateX(-50%); }
    }
.about {
  padding: 100px 50px;
  background-color:#f8f9fa;
}
.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  text-align: center;
}
.about-text {
  width: 100%;
  max-width: 800px; 
  margin: 0 auto;
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  box-sizing: border-box;
  text-align: center;
}
.about strong {
  color:#007BFF ;
}

.about-text p {
  margin-bottom: 1em;
   color: #01497c;
}

#abt-btn {
  display: inline-block;
  padding: 10px 16px;
  font-size: 1rem;
   color: #01497c;
  text-decoration: none;
  border-radius: 5px;
 
}

#abt-btn:hover {

  transform: scale(1.2);
}

@media (max-width: 768px) {
  .about-text {
    padding: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  nav a{
    display: block;
  }
  #abt-btn {
    font-size: 0.95rem;
    padding: 8px 14px;
  }
  #abt-btn:hover {
 text-decoration: underline;
  transform: scale(1.1);
}
}


@media (max-width: 480px) {
  .about-text {
    padding: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  #abt-btn {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}
.what-we-offer {
  padding: 80px 50px;
  background-color: #f8f9fa;
  text-align: left;
}
h2{
  font-size: 2.5rem;
  color: #007BFF;
  margin-bottom: 10px;
  border-left: 4px #007BFF solid ;
  text-align: left;
}
.services-section {
  background-color: #f9fbfd;
  padding: 4rem 1rem;
  font-family: sans-serif;
}

.services-section h2 {
  
  font-size: 2rem;
  color: #01497c;
  margin-bottom: 3rem;
}


.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image,
.service-text {
  flex: 1 1 50%;
  padding: 1rem;
}

.service-image img {
  width: 100%;
  border-radius
  padding: 5px;
}


.service-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 4px #01497c dashed;
}

.service-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.service-text a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #01497c;
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
}


@media (max-width: 768px) {
 .service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  gap: 1rem;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image,
.service-text {
  flex: 1 1 50%;
  padding: 1rem;
  box-sizing: border-box;
}

.service-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.service-text {
  color: #01497c;
  text-align: center;
}
}

#projectCarousel {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
#projectCarousel h2{
  margin-left: 10px;
}


.carousel-item img {
  height: 400px;
  object-fit: cover;
}


.carousel-caption {
  background: rgba(1, 73, 124, 0.7);
  border-radius: 0.5rem;
  padding: 1rem;
}

.carousel-caption h5,
.carousel-caption p {
  color: #fff;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 70% 70%;
   width: 60px;
   height: 60px; 
}

.contact {
  padding: 80px 50px;
  background-color: #f8f9fa;
  text-align: center;
   color: #01497c;
}


.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background-color: #f9f9f9; 
  border-radius: 10px;
}

.contact-info,
form {
  flex: 1 1 45%;
  min-width: 280px;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: #007bff;
  font-size: 1.2rem;
  min-width: 24px;
}


form {
  display: flex;
  flex-direction: column;
}

form label {
  font-weight: bold;
  margin-top: 1rem;
  color: #333;
}

form input,
form textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 0.3rem;
  font-size: 1rem;
  resize: vertical;
}

form button {
  margin-top: 1.5rem;
  padding: 0.8rem;
  border: none;
  background-color: #007bff;
  color: white;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #0056b3;
}


@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

}



@media (max-width: 768px) {
  .about-content {
    flex-direction: column; 
    padding: 20px;
  }

  .about .text, .about .image {
    flex: 1 1 100%; /* full width */
  }

  .service-list {
    flex-direction: column; 
    width: 100%;
  }

  .service-list button {
    flex: 1 1 100%; 
    margin: 5px 0;
  }

  .projects-grid {
    flex-direction: column;
    align-items: center;
  }

  .project-card {
    width: 90%; 
  }
}
.services-section {
  background-color: #f9fbfd;
  padding: 4rem 1rem;
  font-family: sans-serif;
}

.services-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #01497c;
  margin-bottom: 3rem;
}


.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image,
.service-text {
  flex: 1 1 50%;
  padding: 1rem;
}

.service-image img {
  width: 100%;
  border-radius: 1rem;
}

.service-text {
  color: #01497c;
}

.service-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-text p {
  margin-bottom: 1rem;
}

.service-text a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #01497c;
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
}

.footer {
  background: linear-gradient(to right, #01497c, #0369a1);
  color: white;
  padding: 3rem 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 300px;
  margin: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #a2d2ff;
  margin-bottom: 1rem;
  border-left: 3px solid #a2d2ff;
}

.footer-column h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #a2d2ff;
  border-left: 3px solid #a2d2ff;
  padding-left: 10px;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #a2d2ff;
  letter-spacing: 0.5px;
}

.footer-column p {
  margin: 0.5rem 0;
  color: #e0f2ff;
  line-height: 1.5;
}
.social-icons {
  display: flex;
  justify-content: center;
  align-content: center;
}

.social-icons a {
  color: white;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
  margin: 1rem;
}

.social-icons a:hover {
  color: #a2d2ff;
  transform: scale(1.2);
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #cceeff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .about-text {
    padding: 15px;
    font-size: 0.95rem;
  }

  #abt-btn {
    font-size: 0.95rem;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .about-text {
    padding: 10px;
    font-size: 0.9rem;
  }

  #abt-btn {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}

