/* =============================
   GLOBAL STYLES
============================= */
body {
  padding-top: 0;
  margin: 0;
  overflow-x: hidden;
}

/* =============================
   NAVBAR
============================= */
.navbar {
  transition: background-color 0.4s ease, top 0.3s ease;
}

.navbar.transparent {
  background-color: transparent !important;
}

.navbar.scrolled {
  background-color: rgb(221, 236, 237) !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo {
  height: 45px; /* adjust height as needed */
  width: auto; /* keep aspect ratio */
  object-fit: contain;
}

/* Base nav link style */
.navbar .nav-link {
  color: black !important;
  font-weight: 600;
  font-size: x-large;
  padding: 0 15px;
  transition: color 0.3s ease;
}

/* Hover + active states */
.navbar .nav-link:hover {
  color: #6191a0 !important;
}
.navbar .nav-link.active {
  color: #14657a !important;
}

/* Divider only for desktop */
.navbar-nav .nav-item:not(:last-child) .nav-link {
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}

/* =============================
   MOBILE/TABLET NAVBAR
============================= */
@media (max-width: 991px) {
  /* Remove dividers */
  .navbar-nav .nav-item .nav-link {
    border-right: none !important;
    margin-right: 0;
  }

  .navbar-toggler .close {
    display: none; /* hidden by default */
    font-size: 1.8rem;
  }

  .navbar-toggler .hamburger {
    font-size: 1.8rem;
  }

  /* When menu is open */
  .navbar-toggler.open .hamburger {
    display: none;
  }

  .navbar-toggler.open .close {
    display: inline;
  }

  /* Dropdown container */
  .navbar-collapse {
    background: rgba(128, 128, 128, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
  }

  /* Center links */
  .navbar-collapse .navbar-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }

  /* Mobile link style */
  .navbar-collapse .nav-link {
    color: rgb(0, 0, 0) !important;
    font-weight: 600;
    font-size: 1.2rem;
  }

  .navbar-collapse .nav-link:hover {
    color: #00bfff !important;
  }
}

/* =============================
   CONTENT SECTIONS
============================= */
.content-section {
  width: 100vw;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.content-section.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* =============================
   HERO SECTION (HOME PAGE)
============================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  animation: heroImageIn 1.2s ease-out forwards;
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  visibility: hidden; /* ensure it's not clickable until animation */
}

.hero-image.animate {
  visibility: visible;
  animation: heroImageIn 5.2s ease-out forwards;
}

@keyframes heroImageIn {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-tagline {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 10s ease-out forwards;
  position: absolute;
  top: 13%;
  left: 4%;
  color: #424242;
  font-size: 2rem;
  line-height: 1.3;
  text-shadow: 2px 2px 6px rgb(147 147 147 / 70%);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive: smaller text on mobile */
@media (max-width: 768px) {
  .hero-tagline {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero-tagline {
    font-size: 1.1rem;
    line-height: 1.2;
  }
}

.tagline-right {
  display: inline-block;
  margin-left: 40px; /* adjust this value to push right */
}

/* =============================
   Trusted Section
============================= */
.trusted-section h2 {
  font-size: 2.5rem;
}
.trusted-section .text-info {
  color: #2a9cbe !important;
}

/* Gallery */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  background: #f8f9fa;
  display: inline-block; /* shrink-wrap to image */
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* ensure full image always visible */
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05); /* small zoom on hover */
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  text-align: center;
}

.gallery-card h6 {
  font-weight: bold;
}

.gallery-card p {
  font-size: 0.85rem;
  margin: 5px 0 0;
}

/* Lightbox Modal */
.modal-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 10px;
  transition: opacity 0.5s ease;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: white;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
  padding: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #009ccc;
}

.lightbox-prev {
  left: 0px;
  text-decoration: none;
}

.lightbox-next {
  right: 0px;
  text-decoration: none;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: -16px;
  right: 5px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  z-index: 1000;
}

.close-btn:hover {
  color: #ff3b3b;
}

/* Fade Animation */
.fade-in {
  opacity: 0;
}
.fade-in.show {
  opacity: 1;
}

/* Stats Section */
.stats-section {
  background-color: #ffffff; /* match screenshot bg */
  border-top: 1px solid #00bcd4;
  border-bottom: 1px solid #00bcd4;
}

.stats-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #37474f;
}

.stats-section p {
  font-weight: 600;
  color: #37474f;
  margin-top: 10px;
}

/* Hero section with background image */
.hero {
  max-height: 100vh;
  /* height: 100vh; */
  background: url("6.png") no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}

/* Overlay to add readability */
.overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 3rem;
}

/* Content styling */
.content h4 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
  margin-top: 10px;
}

.content h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 0 0 1.5rem;
}

/* Mobile adjustment */
@media (max-width: 576px) {
  .content h1 {
    font-size: 1.5rem; /* smaller text for phones */
  }
}

.contact-btn {
  background-color: #006d8e;
  border: none;
  padding: 0.8rem 1.5rem;
  margin-bottom: 10px;
  font-size: 1rem;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 600;
}
.contact-btn:hover {
  background-color: #007e89;
}

/* Footer */
.social-links {
    margin-top: 10px;
  }

  .social-links a {
    display: inline-block;
    margin: 0 5px;
    transition: transform 0.2s ease;
  }

  .social-links a:hover {
    transform: scale(1.1);
  }

  .linkedin-icon {
    width: 28px;
    height: 28px;
  }
footer .company {
  font-size: 1.8rem;
  margin: 0.5rem 0;
  color: #006d8e;
}

footer nav a {
  color: #000;
  text-decoration: none;
  margin: 0 0.2rem;
  transition: color 0.3s ease;
}

footer nav a:hover {
  text-decoration: none; /* no underline */
  color: gray; /* hover turns gray */
}

footer nav a.active {
  color: #009ccc;
  font-weight: bold;
  text-decoration: none; /* keep no underline for active */
}

footer p {
  font-size: 0.9rem;
  color: #444;
  text-decoration: none; /* keep no underline for active */
}

footer nav a.active {
  color: #009ccc;
  font-weight: bold;
  text-decoration: none;
}

footer {
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f1f7fb;
  padding: 1rem 2rem;
  border-top: 2px solid #ccc;
  text-align: center;
  z-index: 1000;
  text-decoration: none; /* keep no underline for active */
}

.content-sectionx {
  padding-bottom: 120px; /* prevents content overlap */
  text-decoration: none; /* keep no underline for active */
}

footer nav a.active {
  color: #006d8e;
  font-weight: bold;
  text-decoration: none; /* keep no underline for active */
}

/* Preloader overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* background color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Spinner animation */
/* Preloader overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #363636; /* page background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Logo beating animation */
.preloader-logo {
  width: 120px; /* adjust to your logo size */
  animation: beat 0.6s ease-in-out 3; /* beat 3 times */
}

@keyframes beat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Hide preloader after fade out */
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* =============================
   who we are page
============================= */

.content-section {
  display: none;
  min-height: 100vh;
}

.content-section.active {
  display: block;
}

/* Who We Are image */
.hero-image-whoweare {
  width: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  animation: heroImageIn 1.2s ease-out forwards;
}

/* Fade + zoom animation */
@keyframes heroImageIn {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Who We Are section */
.sectionWhoWeeAre {
  text-align: center;
  background: #fff;
}

/* Heading animation */
.sectionWhoWeeAre h2 {
  padding: 50px;
  font-size: 32px;
  color: #444;
  text-align: center;
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.sectionWhoWeeAre h2.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Columns layout */
.columns {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.column {
  width: 30%;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  opacity: 0; /* hidden at start */
  transform: translateY(60px); /* slide up effect */
  transition: all 0.8s ease-out;
}

.column.in-view {
  opacity: 1;
  transform: translateY(0);
}

.column::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #0097a7;
  margin: 0 auto 15px auto;
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.6s ease-out;
}

.column.in-view::before {
  opacity: 1;
  transform: scaleX(1);
}

/* Responsive: stack columns */
@media (max-width: 900px) {
  .columns {
    flex-direction: column;
    align-items: center;
  }
  .column {
    width: 80%;
  }
}

/* Value Proposition Section */
/* Value Proposition Section */
.value-section {
  text-align: center;
  background: #fff;
  padding: 60px 20px;
}

.value-section h2 {
  font-size: 36px;
  color: #444;
  margin-bottom: 50px;
  font-weight: 700;

  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.value-section h2.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Columns container */
.value-columns {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}

/* Each box */
.value-box {
  width: 23%;
  text-align: center;

  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.value-box.in-view {
  opacity: 1;
  transform: translateY(0);
}

.value-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.4;
}

.value-box .underline {
  width: 60px;
  height: 4px;
  background: #0097a7;
  margin: 0 auto 15px auto;

  opacity: 0;
  transform: scaleX(0);
  transition: all 0.6s ease-out;
}

.value-box.in-view .underline {
  opacity: 1;
  transform: scaleX(1);
}

.value-box img {
  width: 100%;
  height: 300px;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.value-box:hover img {
  transform: scale(1.05);
}

/* Default (desktop) already defined above */

/* Tablet */
@media (max-width: 1000px) {
  .value-box {
    width: 45%;
    height: 50%; /* ✅ shrink box height */
  }

  .value-box img {
    height: 50%; /* ✅ image takes 50% of box */
    object-fit: cover;
  }

  .value-box h3 {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .value-box {
    width: 100%;
    height: 50%; /* ✅ shrink box height */
  }

  .value-section h2 {
    font-size: 26px; /* smaller heading */
    margin-bottom: 30px;
  }

  .value-box h3 {
    font-size: 15px; /* smaller text */
  }

  .value-box img {
    height: 50%; /* ✅ image takes 50% of box */
    object-fit: cover;
    border-radius: 3px;
  }
}

/* Section Titles */
.mission-section h2,
.sectors-section h2 {
  text-align: center;
  font-size: 32px;
  color: #444;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Mission Boxes */
.mission-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.mission-box {
  flex: 1;
  min-width: 250px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.mission-box img {
  width: 60px;
  margin-bottom: 15px;
}

/* Sectors Section */
.sectors-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.sector-box {
  width: 30%;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
  margin-bottom: 20px;
}

.sector-box h3 {
  height: 55px;
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.sector-box h3::before {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #0097a7;
  margin: 0 auto 12px auto;
}

.sector-box img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .mission-box,
  .sector-box {
    width: 45%;
  }
}
@media (max-width: 600px) {
  .mission-box,
  .sector-box {
    width: 100%;
  }
}

/* mission icon style */
.mission-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  background-color: #0097a7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/* Shine effect */
.mission-icon::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: rotate(25deg) translateX(-100%);
  animation: shine 3s infinite;
}

/* Keyframes for shine */
@keyframes shine {
  0% {
    transform: rotate(25deg) translateX(-120%);
  }
  50% {
    transform: rotate(25deg) translateX(120%);
  }
  100% {
    transform: rotate(25deg) translateX(-120%);
  }
}

/*lines under mission and sectors*/
/* Add dividers between sections */
.content-section section {
  border-top: 1px solid #ddd; /* thin gray line */
  padding-top: 60px; /* space after the line */
  margin-top: 60px; /* space before the line */
}

/* Optional: remove border for the very first section */
.content-section section:first-of-type {
  border-top: none;
  margin-top: 0;
  background-color: #eaeaea;
  gap: 1px;
  padding-top: 40px;
}

/* Industry Section */
.industry-section {
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
  text-align: center;
}
.hero-image-industry {
  width: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  animation: heroImageIn 1.2s ease-out forwards;
}

.industries-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 40px;
  margin-top: 40px;
}

/* Grid Layout */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  width: 100%;
  padding-bottom: 65px;
}

/* Industry Card */
.industry-card {
  position: relative;
  overflow: hidden;
}

.industry-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(70%);
  transition: transform 0.4s ease;
}

.industry-card:hover img {
  transform: scale(1.05);
}

/* Overlay Text */
.industry-overlay {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Underline Bar */
.industry-overlay .underline {
  margin-top: 6px;
  width: 100px;
  height: 4px;
  background: #288faa;
  margin-left: auto;
  margin-right: auto;
}

/* Section Wrapper */
.industries-detail-section {
  width: 100%;
  background: #fff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Industry Row */
.industry-row {
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1px;
  align-items: stretch;
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

/* Delay animations for staggered effect */
.industry-row:nth-child(1) {
  animation-delay: 0.3s;
}
.industry-row:nth-child(2) {
  animation-delay: 0.6s;
}
.industry-row:nth-child(3) {
  animation-delay: 0.9s;
}

/* Left Image */
.industry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Middle Gradient Content */
.industry-content {
  padding: 25px;
  background: linear-gradient(90deg, #007c92, #70bdc4, #caf3f2);
  color: #4d4d4d;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industry-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.industry-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
}

/* Right Commodities */
.industry-commodities {
  padding: 25px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industry-commodities h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.industry-commodities ul {
  list-style: disc;
  padding-left: 18px;
  color: #444;
}

/* Motion Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .industry-row {
    grid-template-columns: 1fr;
  }
  .industry-content {
    text-align: center;
    align-items: center;
  }
  .industry-commodities {
    text-align: center;
  }
}

/* Section Background */
.catalogue-form-section {
  /* background: linear-gradient(135deg, #004c66, #0099a8); */
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Form Container */
.form-container {
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: fadeSlideUp 1s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

.form-container h2 {
  font-size: 1.8rem;
  color: #003b49;
  margin-bottom: 8px;
}

.form-container p {
  color: #007c92;
  margin-bottom: 20px;
}

/* Input Rows */
.catalogue-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.catalogue-form input,
.catalogue-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #268ea9;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  background: #fff;
}

.catalogue-form input:focus,
.catalogue-form textarea:focus {
  border-color: #007c92;
  transform: scale(1.02);
}

/* Textarea */
.catalogue-form textarea {
  resize: none;
  margin-bottom: 15px;
}

/* reCAPTCHA */
.captcha-box {
  margin: 15px 0;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  background: #268ea9;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #007c92;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .catalogue-form .form-row {
    flex-direction: column;
  }
}

/* Contact Us page */

/* General Section */
.contact-section {
  font-family: Arial, sans-serif;
  color: #222;
  text-align: center;
  background: #fff;
}

/* Hero Image */
.contact-hero img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Addresses */
.addresses {
  padding: 2rem 1rem;
}

.addresses h2 {
  margin-bottom: 1.5rem;
  font-size: 32px;
  font-weight: bold;
  color: #7b7b7b;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.address-box {
  background: #f2fbfd;
  padding: 1rem;
  border-top: 4px solid #ddeced;
  min-height: 120px;
}

.address-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
}

/* Contact Form */
.contact-form {
  padding: 2rem 1rem;
  background: #fff;
  border-top: 4px solid #ddeced;
}

.contact-form h2 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #8f8f8f;
}

form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

input,
textarea {
  flex: 1;
  padding: 0.8rem;
  border: 2px solid #ddeced;
  border-radius: 6px;
  font-size: 0.95rem;
  width: 100%;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Fake Captcha */
.fake-captcha {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

/* Submit Button */
button {
  background: #006d8e;
  color: white;
  padding: 0.9rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: not-allowed;
  transition: 0.3s;
}

button.enabled {
  cursor: pointer;
  background: #007a99;
}










.fake-recaptcha {
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  background: #f9f9f9;
  margin: 10px auto;
}

.fake-recaptcha input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.fake-recaptcha label {
  font-size: 14px;
  color: #333;
  flex: 1;
}

.recaptcha-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  color: #555;
}

.recaptcha-logo img {
  width: 24px;
  height: 24px;
}

.recaptcha-logo a {
  color: #555;
  text-decoration: none;
  font-size: 10px;
}

.submit-btn:disabled {
  background: #aaa;
  cursor: not-allowed;
}



.fake-captcha {
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 54%;
  background: #f9f9f9;
  margin: 15px 0;
  font-family: Arial, sans-serif;
}

.captcha-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.captcha-left label {
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.captcha-left input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.captcha-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  color: #555;
}

.captcha-right img {
  width: 24px;
  height: 24px;
  margin-bottom: 3px;
}

.captcha-right a {
  color: #555;
  text-decoration: none;
  font-size: 10px;
}

button:disabled {
  background: #aaa;
  cursor: not-allowed;
}


.social-links i {
  color: #0077b5; /* LinkedIn blue */
  transition: transform 0.2s ease;
}
.social-links i:hover {
  transform: scale(1.2);
}
#map-img {
    width: 50%;
    height: 100%;
  }

  /* On tablets & mobiles, make it 100% */
  @media (max-width: 768px) {
    #map-img {
      width: 100%;
      height: 100%;
    }
  }


