/* =====================================
   GLOBAL STYLES
   ===================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  color: #fff;
}

/* =====================================
   NAVIGATION BAR (STICKY + RESPONSIVE)
===================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 80px;
  background-color: #0f4c81;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  
}

/* ---------- LOGO ---------- */
.logo img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

/* ---------- NAV LINKS ---------- */
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.8px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #cde7ff;
  opacity: 0.85;
}

/* ---------- BUTTON ---------- */
.btn-outline {
  border: 1px solid #ffffff;
  padding: 6px 16px;
  border-radius: 3px;
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #0f4c81;
}

/* ---------- NAV BUTTON ---------- */
.nav-button {
  text-align: right;
}

/* ---------- HAMBURGER ---------- */
.hamburger {
  display: none; /* hidden by default for desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* =====================================
   RESPONSIVE DESIGN
===================================== */
@media (max-width: 950px) {
  .navbar {
    padding: 14px 30px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #0f4c81;
    flex-direction: column;
    align-items: flex-start;
    width: 220px;
    padding: 20px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .hamburger {
    display: flex; /* show hamburger on small screens */
    margin-left: auto; /* push to right edge */
  }

  .nav-button {
    display: none; /* hide desktop button */
  }

  /* Button inside dropdown */
  .mobile-btn {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 20px;
  }

  .logo img {
    height: 35px;
  }
}

/* Hide mobile quote on desktop */
@media (min-width: 951px) {
  .mobile-btn {
    display: none !important;
  }
}



/* ========================================================== */

/* --------------------------
   CONTACT SECTION- Section one
--------------------------- */


.contact-section-1 {
  position: relative;
  width: 100%;
  height: 50vh; /* Half of the desktop screen height */
  background: url("environmental-pollution-factory-exterior-night.jpg") center/cover no-repeat;
 display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  
  text-align: center;
}

/* Optional overlay to darken the image for better text visibility */
.contact-section-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 76, 129, 0.5); /* semi-transparent blue overlay */
  z-index: 1;
}


.contact-header h1{
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 35px;
}


/* Text styling */
.contact-header {
  position: relative;
  z-index: 2;
 
  text-align: center;
}




/* ============================= */
/* CARDS SECTION STYLING  */
/* ============================= */
/* Main Section */
.services-section {
  background: #f9fbfd;
  padding: 100px 60px;
  margin-top: -50px;
}

/* Container width increased */
.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Section */
.services-header {
  position: relative;
  margin-bottom: 50px;
}

.services-header .small-title {
  color: #000000;
  font-weight: 600;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #3b6dfc;
}

.services-header h2 span {
  color: #3b6dfc;
}



/* Grid Layout (5 Cards in One Row) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Service Card Styling */
.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 5px 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: left;
  
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Icon Box */
.service-card .icon {
  width: 60px;
  height: 60px;

  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.service-card .icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/* Text Styling */
.service-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.service-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

/* Learn More Link */
.learn-more {
  color: #3b6dfc;
  text-decoration: none;
  font-weight: 500;
}

.learn-more:hover {
  text-decoration: underline;
}

/* ========== Responsive ========== */

/* Medium screens (3 cards per row) */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet (2 cards per row) */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .view-all-btn {
    position: static;
    margin-top: 15px;
    display: inline-block;
  }
}

/* Mobile (1 card per row) */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}




/* ========================================================== */




/* =============== CONTACT SECTION =============== */
.contact-section {
  
  background: #f8f9fa; /* Light grey background */
  padding: 80px 0;
  overflow-x: hidden;
  margin-top: -100px;
}

/* ---------- FLEX CONTAINER ---------- */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  
  gap: 40px;
}

/* ---------- LEFT INFO BOX ---------- */
.contact-info {
 
  background: #0f4c81; /* Deep blue tone */
  color: #fff;
  padding: 40px;
  border-radius: 16px;
  width: 35%;
  background-size: cover;
}

.contact-info h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 18px;
  color: #ffffff;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.8;
  color: #cfd8e3;
}


/* ---------- RIGHT FORM BOX ---------- */
.contact-form {
  background: #fff;
  flex: 1;
  border-radius: 16px;
  padding: 40px 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form .section-subtitle {
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form h2 {
  font-size: 28px;
  color: #000000;
  margin: 10px 0 30px;
}

.contact-form h2 span {
  color: #0f4c81; /* Highlighted keyword color */
}

/* ---------- FORM ELEMENTS ---------- */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #007bff; /* Blue border on focus */
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

/* ---------- BUTTON ---------- */
.btn {
  background: #0f4c81;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #072947; /* Darker shade on hover */
}

/* ---------- SCROLL ANIMATION ---------- */
.fade-slide {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-slide.appear {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }
}












/* =========================
   MAP SECTION STYLING
========================= */
.map-section {
  background-color: #f9f9f9;
  padding: 80px 0;
 margin-top: -100px;
  text-align: center;
}

.map-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.map-section h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 30px;
  font-weight: 600;
}

.map-box {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-box iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 15px;
}
/* =========================
   FOOTER SECTION STYLE
========================= */

.footer {
  background: linear-gradient(135deg, #0a3b66 0%, #0f4c81 100%);
  color: #d4e1f5;
  padding: 60px 100px 20px;
  
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer h2 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 2px;
  background: #4dd1f9;
  border-radius: 2px;
}

.footer p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col ul li a {
  color: #c6d4e9;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-col ul li a:hover,
.footer-col ul li:hover {
  color: #4dd1f9;
  transform: translateX(3px);
}

.footer-line {
  margin-top: 20px;
  width: 60px;
  height: 3px;
  background: #4dd1f9;
  border-radius: 2px;
}

.social-icons {
  margin-top: 30px;
}

.social-icons a {
  display: inline-block;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background:#4dd1f9 ;
  color: #fff;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #b8c8dd;
}

.footer-bottom span {
  color: #4dd1f9;
  font-weight: 600;
}

/* ===== Scroll Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons a {
    margin: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}



/* --------------------------
   CONTACT SECTION
--------------------------- */
.contact-banner {
    background: #e7e5f4;
    padding: 70px 0;
    text-align: center;
    
}

.contact-content .small-title {
    color: #6b6a89;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1d1d3c;
}

.contact-box-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 0 20px;
    
}

.contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
    text-align: left;
}

.contact-box .icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-box .label {
    font-size: 12px;
    font-weight: 600;
    color: #6b6a89;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-box .value {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d3c;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-box {
        width: 100%;
        max-width: 320px;
    }
}
