@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}


body {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
/* === BASE NAVBAR STYLING === */
/* === Navbar Base === */
nav {
      position: sticky;
      top: 0;
      background: #fff;
      padding: 10px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      height: 3.5rem;
      width: auto;
    }

    .logo h1 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #0055A4;
    }

    nav ul {
      list-style: none;
      display: flex;
    }

    nav ul li {
      margin-left: 20px;
    }

    nav ul li a {
      text-decoration: none;
      color: #000;
      font-size: 1.05rem;
      font-weight: 500;
      padding: 4px 6px;
      transition: 0.3s;
    }

    nav ul li a:hover {
      color: #0055A4;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .hamburger .line {
      width: 25px;
      height: 3px;
      background-color: #333;
    }

    .hamburger.hamburger-active .line:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger.hamburger-active .line:nth-child(2) {
      opacity: 0;
    }

    .hamburger.hamburger-active .line:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* Right-Side Menubar */
    .menubar {
      position: fixed;
      top: 0;
      right: 0;
      width: 75%;
      height: 100vh;
      background: #fff;
      padding: 20% 10%;
      transform: translateX(100%);
      transition: transform 0.35s ease-in-out;
      z-index: 9999;
      box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    }

    .menubar.active {
      transform: translateX(0);
    }

    .menubar ul {
      list-style: none;
      padding-top: 3rem;
    }

    .menubar ul li {
      margin-bottom: 24px;
    }

    .menubar ul li a {
      text-decoration: none;
      color: #000;
      font-size: 1.1rem;
      font-weight: 500;
    }

    .menubar ul li a:hover {
      color: #0055A4;
    }

    /* Overlay */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.4);
      opacity: 0;
      pointer-events: none;
      z-index: 9998;
      transition: opacity 0.3s ease;
    }

    .menu-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    @media (max-width: 1160px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
  }
}


/* End of navbar styles */

/* home pages styles */

/* --- HERO SECTION WITH BACKGROUND & FADE-IN ANIMATION --- */

/* Default for laptops and tablets */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: auto;
  padding: 0 0 2rem 5%;
  gap: 40px;
  background: linear-gradient(to right, #ffffff 40%, #f1f8ff 100%);
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 -10 1000 320" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%23e0f0ff" d="M0,192L80,170.7C160,149,320,107,480,117.3C640,128,800,192,960,202.7C1120,213,1280,171,1360,149.3L1440,128V320H0Z"></path></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  animation: fadeInPage 1s ease-in-out both;
  position: relative;
  overflow: hidden;
}

.clearchoice {
  color: #FF7A00 !important;
}


/* On large desktops only (min 1440px width) */
@media screen and (min-width: 1440px) {
  .hero {
    min-height: 70vh;
    padding: 2rem 5%;
  }
}


@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 2rem 5%;
  }
}


/* FADE-IN ANIMATIONS */
@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.hero-left {
  flex: 1;
  min-width: 300px;
  padding-left: 5%;
  max-width: 50%;
}

.hero-right {
  flex: 0 0 auto;
  width: 35vw; /* adjust this value to control image width */
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: fadeInElement 1.2s ease-in-out both;
}

.hero-right img {
   width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}   

@keyframes fadeInElement {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left h1 {
  font-size: 3rem;
  color: #0055A4;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero-left p {
  font-size: 1.1rem;
  color: #333;
  max-width: 500px;
  font-weight: 400;
}

.hero-left a {
  display: inline-block;
  background-color: #0055A4;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.hero-left a:hover {
  background-color: #003C7E;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;

}


/* RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
 .hero {
    flex-direction: column;
    height: auto;
    padding: 2rem 5%;
  }

  .hero-left, .hero-right {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero-left a {
    align-self: center;
  }

  .hero-right {
    justify-content: center;
    margin-top: 2rem;
    order: 2; /* Ensure it's placed after text */
  }

  .hero-right img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
  }
}


/* END OF HOME PAGE SECTION */


/* About us section */

.about-modern {
  padding: 4rem 5%;
  background-color: #ffffff;
}

.about-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.about-title h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #FF7A00;
  position: relative;
}

.about-title .line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #888;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInPage 1.2s ease both;
}



.about-image {
  flex: 1;
  min-width: 200px;
}

.about-image img {
  width: 85%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 85, 164, 0.15);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 1rem;
}

.about-text .highlight {
  color: #0055A4;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
  font-weight: 400;
}

.about-text .secondary-text {
  color: #888;
  font-size: 0.98rem;
}

.read-more {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 10px 20px;
  border: 2px solid #FF7A00;
  color: #FF7A00;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  background-color: #FF7A00;
  color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .about-content, .about-content.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-image img {
    border-radius: 20px;
  }
}

/* Mobile view fix */
@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    padding: 0 1rem;
  }

  .about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .about-text p,
  .about-text .why-list li {
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin-top: 2rem;
  }

  .why-list {
    padding-left: 0;
    text-align: left;
    margin-top: 1rem;
  }

  .why-list li {
    padding-left: 1.8rem;
    position: relative;
  }

  .why-list li::before {
    position: absolute;
    left: 0;
    color: #FF7A00;
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="parallax"].in-view img {
  transform: scale(1.05) translateY(-10px);
  transition: transform 1s ease-out;
}


/* Mobile override */
@media screen and (max-width: 768px) {
  .about-content.reverse {
    flex-direction: column;
  }
}


.mission-section {
  position: relative;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
  text-align: center;
}

.mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h60v60H0z" fill="none"/><path d="M0 30h60M30 0v60" stroke="%23e6f0fa" stroke-width="0.5"/></svg>');
  background-size: 60px 60px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.mission-container {
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0055A4;
  position: relative;
}

.section-heading .highlight {
  color: #FF7A00;
}

.mission-text {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.8;
  font-weight: 400;
  margin-top: 0.5rem;
}

.strength-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  text-align: left;
  display: inline-block;
}

.strength-list li {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
  font-weight: 500;
}

.check-icon {
  position: absolute;
  left: 0;
  color: #FF7A00;
  font-weight: bold;
  font-size: 1.2rem;
  top: 0.1rem;
}

/* ANIMATION BASE */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Delayed animation */
[data-animate="fade-up-delay"] {
  transition-delay: 0.2s;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .section-heading {
    font-size: 1.7rem;
  }
  .mission-text,
  .strength-list li {
    font-size: 1rem;
  }
  .strength-list {
    text-align: center;
  }
}

/* Icon inside list */
.strength-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 85, 164, 0.05);
}

.strength-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 85, 164, 0.15);
}

.svg-icon {
  display: inline-block;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .strength-list li {
    flex-direction: row;
    font-size: 1rem;
  }

  .svg-icon svg {
    width: 18px;
    height: 18px;
  }
}




/* end of about us section */


/* Products Section */
.products-section {
  position: relative;
  padding: 6rem 5% 4rem;
  background: linear-gradient(to bottom, #ffffff 0%, #f1f8ff 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.products-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;    /* Center horizontally */
  align-items: center;        /* Center vertically */
  gap: 6rem;
  width: 100%;
  max-width: 1300px;
}

/* Collage Image Grid */
.products-collage {
  flex: 1;
  min-width: 280px;
}

.grid-container {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 1rem;
  margin: auto;
}

.grid-container .item {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, z-index 0.2s;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-container .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Product Labels */
.grid-container .item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  background-color: rgba(0, 85, 164, 0.9);
  color: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  white-space: wrap ;
  transition: all 0.3s ease;
  pointer-events: none;
}

.grid-container .item:hover::after,
.grid-container .item.show-label::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.grid-container .item:hover {
  z-index: 99;
  transform: scale(1.2);
}

/* Diamond Layout with 4 Items */
.item1 { grid-area: 1 / 2 / 3 / 4; }
.item2 { grid-area: 2 / 1 / 4 / 3; }
.item3 { grid-area: 2 / 3 / 4 / 5; }
.item4 { grid-area: 3 / 2 / 5 / 4; }

/* Text Column */
.products-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.section-heading {
  font-size: 2.8rem;
  color: #0055A4;
  margin-bottom: 1rem;
}

.highlight {
  color: #FF7A00;
}

.product-list {
  list-style: none;
  padding: 0;
}

.product-list li {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  position: relative;
  padding-left: 2rem;
}

.product-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #FF7A00;
  font-size: 1.2rem;
  top: 0;
}

.products-text,
.products-collage {
  flex: 1 1 45%;     /* Grow/shrink but don't exceed 45% width */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* Scroll Animation */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Behavior */
@media screen and (max-width: 992px) {
  .products-wrapper {
    gap: 4rem;
  }
  .section-heading {
    font-size: 2rem;
  }
  .product-list li {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 768px) {
  .products-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    text-align: center;
    gap: 1rem;
  }

  .products-text{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }


  .products-collage {
    width: 100%;
    display: flex;
    align-items: center;
    margin-left: 2rem;
  }

  .grid-container {
    max-width: 320px;
    height: auto;
    gap: 1.5rem;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .product-list li {
    font-size: 1rem;
    padding-left: 1.5rem;
    text-align: left; 
  }

  .products-text {
    order: 1; /* ✅ show first */
    margin-top: 0;
    padding-top:0;
  }

  .products-collage {
    order: 2; /* ✅ show second */
  }

}

/* end of products section */

/* industries section */


.mission-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
}

.logo-slider-3 {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.industries-section{

    padding-top: 6rem;

}

.industry-masonry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 100px;
  gap: 10px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.industry-item {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.industry-item img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.industry-item:hover {
  transform: scale(1.05);
}

/* Manual grid placements */
.itemi1 { grid-column: 2 / 3; grid-row: 1 / 2; }
.itemi2 { grid-column: 3 / 5; grid-row: 1 / 2; }
.itemi3 { grid-column: 5 / 6; grid-row: 1 / 2; }

.itemi4 { grid-column: 1 / 2; grid-row: 2 / 4; }
.itemi5 { grid-column: 2 / 3; grid-row: 2 / 3; }
.itemi6 { grid-column: 3 / 5; grid-row: 2 / 4; }
.itemi7 { grid-column: 5 / 6; grid-row: 2 / 3; }
.itemi8 { grid-column: 6 / 7; grid-row: 2 / 3; }

.itemi9  { grid-column: 2 / 3; grid-row: 3 / 4; }
.itemi10 { grid-column: 5 / 7; grid-row: 3 / 4; }

.itemi11 { grid-column: 2 / 4; grid-row: 4 / 5; }
.itemi12 { grid-column: 4 / 5; grid-row: 4 / 5; }

/* Responsive stacking */
@media (max-width: 768px) {
  .industry-masonry-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .industry-item {
    width: 45%;
    height: 120px;
    flex: 0 0 auto;
  }

  .industry-item img {
    width: 80%;
    height: 80%;
  }
}




/* end of industries section */

.gallery-section {
  padding: 5rem 0;
  text-align: center;
}

.gallery-section {
  background: #f3f3f3 url('images/blueprint-pattern.svg') repeat;
  background-blend-mode: overlay;
}

.swiper-slide-active img:hover {
  box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.1), 0 0 30px rgba(0, 136, 204, 0.3);
}

.gallery-section {
  background: linear-gradient(to bottom, #f3f3f3, #eaeaea);
}


.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.highlight {
  color: #1d75bc;
}

.gallerySwiper {
  width: 100%;
  padding: 2rem 0;
}

.swiper-slide {
  opacity: 0.4;
  transform: scale(0.85);
  filter: grayscale(100%) blur(1px);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.swiper-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px; /* Rounded rectangle */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
   border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 136, 204, 0.3); /* subtle blue glow */
  transform: scale(1.05);
}


/* Centered slide style */
.swiper-slide-active {
  transform: scale(1.05);
  opacity: 1;
  filter: grayscale(0%);
  z-index: 3;
}

.swiper-slide-active img:hover {
  transform: scale(1.05);
}

/* Navigation arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none; /* Prevent blocking */
}

.nav-arrow {
  font-size: 2rem;
  color: #ffffff;
  background: rgba(33, 33, 33, 0.3); /* Transparent industrial dark */
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  padding: 0.5rem 1rem;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  pointer-events: all; /* Allow clicks */
}

.nav-arrow:hover {
  transform: scale(1.1);
  background: rgba(60, 60, 60, 0.6);
}

.swiper-slide-active img {
  box-shadow: 0 20px 50px rgba(0, 136, 204, 0.2); /* industrial blue glow */
  transform: scale(1.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.swiper-slide-active img:hover {
  transform: scale(1.07);
  box-shadow: 0 30px 60px rgba(0, 136, 204, 0.35);
}



/* Dots */
.swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
  transition: background 0.3s;
}

.swiper-pagination-bullet-active {
  background: #000;
}

@media (max-width: 768px) {
  .swiper-slide img {
    height: 250px;
  }
}


/* Contact us section */
/* Container and Layout */


.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh; /* ✅ Smaller height */
  padding: 5rem 1rem;
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
}


.container {
  width: 100%;
  max-width: 1200px;
  max-height: auto; /* remove 100vh here to let section control it */
  padding: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-self: center;
}

/* Contact Form Styling */
.contact-form {
 background: linear-gradient(135deg, #0096c7, #0077b6);  
 position: relative;
}


.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #0096c7);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #0096c7;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

/* Inputs and Labels */
.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 100px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

/* Focus Effects */
.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #0096c7;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

/* File Upload Input */
.input-container input[type="file"] {
  color: #fff;
  background-color: transparent;
  border: none;
  padding-left: 0;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
}

.input-container input[type="file"]::file-selector-button {
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 5px;
  background-color: #fff;
  color: #0096c7;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: 0.3s ease;
}

.input-container input[type="file"]::file-selector-button:hover {
  background-color: #e6f7f4;
}

/* Submit Button */
.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #0096c7;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

/* Contact Info Styling */
.contact-info {
  position: relative;
  padding: 1rem 2rem;
}

.contact-info .title {
  color: #0096c7;
}

.contact-info text {
  color: #333;
  margin: 0.1rem; /* Original might be 1.5rem or 2rem */
}

.information {
  display: flex;
  color: #555;
  align-items: center;
  font-size: 0.95rem;
  margin: 0.3 rem;
}

.information i {
  color: #0096c7;
  margin-right: 0.7rem;
}

/* Social Media */
.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #0096c7,#0096c7);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

/* Decorative Backgrounds */
.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #FF7A00;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
 background: linear-gradient(to bottom, #00c9ff, #0077b6);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  width: 400px;
  background: rgba(0, 0, 0, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .contact-info:before,
  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}

.information a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.information a:hover {
  color: #0077b6; /* Neptune blue */
}

/* Modal layout */

/* === Modal Styling === */
.modal-overlay {
  position: fixed;
  padding-top: 3rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 30, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 480px;
  height: 80vh; /* Limit modal height */
  max-height: 90vh;
  padding: 1.5rem 1.5rem 1rem;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Prevent full modal overflow */
}


.modal-scroll-area {
  overflow-y: auto;
  flex: 1;
  padding-right: 5px; /* Prevent content clipping near scrollbar */
}

.modal-scroll-area {
  overflow-y: auto;
  flex: 1;
  padding-right: 5px;

  /* Hide scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

.modal-scroll-area::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}


@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.6rem;
  color: #555;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-modal:hover {
  color: #0055A4;
}

.modal-title {
  font-size: 1.5rem;
  color: #0055A4;
  margin-bottom: 1rem;
  text-align: center;
}

/* Form Fields */
.modal-input {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}

.modal-input label {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 5px;
  font-weight: 500;
}

.modal-input input,
.modal-input textarea {
  padding: 0.75rem;
  font-size: 0.95rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s ease;
}

.modal-input input:focus,
.modal-input textarea:focus {
  border-color: #0055A4;
  box-shadow: 0 0 0 2px rgba(0, 85, 164, 0.2);
}

.modal-submit {
  width: 100%;
  background: #0055A4;
  color: white;
  font-size: 1rem;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.modal-submit:hover {
  background: #003f86;
}

.modal-input input[type="file"] {
  padding: 0.5rem;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fafafa;
  cursor: pointer;
}

.modal-input input[type="file"]:focus {
  border-color: #0055A4;
  box-shadow: 0 0 0 2px rgba(0, 85, 164, 0.15);
}

.modal-input textarea {
  min-height: 80px;
  resize: vertical;
}

#quoteModal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  transition: opacity 0.3s ease;
}

#quoteModal.show {
  display: flex;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .close-modal {
    top: 40px; /* Move further down */
    right: 16px;
    font-size: 1.8rem;
    z-index: 10001; /* Ensure it's above nav */
  }

  .modal-content {
    margin-top: 2rem; /* optional push for mobile */
  }
}
  


/* Footer Styling */

.footer {
  background-color: #0c1a2b;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
  padding: 4rem 5% 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer h3,
.footer h4 {
  color: #00bcd4;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer p {
  line-height: 1.6;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
}

.footer-col ul li i {
  color: #00bcd4;
  margin-right: 10px;
  margin-top: 4px;
  min-width: 18px;
  text-align: center;
}

.footer-col a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #00bcd4;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  background-color: #1c2a3c;
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  margin-right: 10px;
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #00bcd4;
  color: #0c1a2b;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .social-icons {
    margin-top: 1rem;
  }
}

.footer-col.map .map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 188, 212, 0.1);
}

.footer-col.map iframe {
  width: 100%;
  height: 180px;
  border: none;
}

@media (max-width: 768px) {
  .footer-col.map iframe {
    height: 250px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 999;
  animation: pulse-glow 2.5s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Glow Animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Tooltip Styling */
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 999999; /* ensure it's above all other UI */
  animation: pulse-glow 2.5s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Glow Animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Tooltip Styling */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #0c1a2b;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

