/* ---------------- GENERAL STYLES ---------------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  padding-top: 100px;
}
/* ---------------------------------splashpage----------------------------------- */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

#splash.fade-out {
  opacity: 0;
  pointer-events: none;
}
#splash img{
  width: 100%;
  height: 123%;
}




/* ---------------- NAVBAR ---------------- */
.navbar {
  
    width: 100%;
    height: 100px;
    background: #02323E;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
  
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999; /* keep above everything */
  }
  
 


/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #d2322d;
  cursor: pointer;
  margin-left: 250px;
}

.navbarlogo {
  width: 338px;
  height: 101px;
  background-color: white;
}
.navbarlogo img {
  margin-left: 19px;
    height: 101px;
    width: 200px;
  position: relative;
  left: 50px;
  bottom: 10px;
}


/* Social icons */
.social-icons {
  margin-left: 50px;
  display: flex;
  gap: 15px;
  font-size: 20px;
}


.social-icons a {
  color: white;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #a0211e;
}
/* ---------- BELOW SLIDER SECTION (HORIZONTAL) ---------- */
.belowslider {
  display: flex;
  align-items: center;
  
}

/* Buttons Left Section */
.buttons-left {
  display: flex;
 padding-right: 150px;
  gap: 15px;
}

/* Buttons */
.buttons-left button {
  background: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: white;
}

.buttons-left button:hover {
  background-color: #d2322d;
border-radius: 20px;
padding: 10px;
  color: white;
}


/* ---------------- SLIDER SECTION ---------------- */
.hero-slider { width:100%; height:90vh; position:relative; overflow:hidden; }

/* slides */
.hero-slide {
  width:100%;
  height:100vh;
  position:absolute;
  top:-80px; left:0;
  opacity:0;
  transition: opacity 0.6s ease-in-out;
  pointer-events:none;
}
.hero-slide.active {
  opacity:1;         /* visible */
  pointer-events:auto;
  z-index:1;
}

/* images */
.hero-slide img { width:75%; height:100%;
  opacity: 0.7;
  object-fit:cover; margin-top:80px; 
margin-left: 338px;}

/* text container */
.hero-text {
  position: absolute;
  top: 48%;
  left: 220px;
  transform: translate(-50%, -50%);
width: 30%;
  color: black;
  text-align: left;

  /* Box Style */
  
  padding: 22px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
 

  z-index: 2;
  max-width: 480px;
  }
  
  .hero-text ul {
    padding-left: 18px;
    padding-top: 25px;
    margin: 10px 0 0 0;
     color:#f30d0d;
     font-weight: bold;
  
}
.hero-text h4 {
  margin: 0;
  font-size: 15px;
}

/* default line state - no animation until .animate is present */
.hero-text span {
  display:block;
  opacity:0;
  transform:translateY(10px);
  will-change: opacity, transform;
}

/* animation ONLY when .animate class is present */
.hero-text.animate span {
  animation: lineFade 0.55s ease forwards;
}

/* stagger using --i set on each span */
.hero-text.animate ul li span { animation-delay: calc(var(--i) * 0.16s); }
.hero-text.animate h4 span {
  animation-delay: calc(var(--i,1) * 0.16s); }

/* keyframes */
@keyframes lineFade {
  to { opacity:1; transform:translateY(0); }
}

/* small responsive */
@media (max-width:900px) {

  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 0;          /* FIX */
  }

  .hero-text { 
    left: 10%; 
    top: 45%; 
    max-width: 90%; 
    padding: 12px; 
  }

  .hero-text h4 { font-size:20px; }
}


/* Buttons hidden by default */
.slider-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Show buttons when hovering over slider */
.hero-slider:hover .slider-btn {
  opacity: 1;
  pointer-events: auto;
}

/* Navigation Buttons Design */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  padding: 2px 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

/* Left button */
.prev-btn {
  left: 20px;
}

/* Right button */
.next-btn {
  right: 20px;
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .slider-btn {
    font-size: 28px;
    padding: 6px 10px;
  }
  .prev-btn { left: 8px; }
  .next-btn { right: 8px; }
}









/* ---------- SOME DETAILS ABOUT SITE ---------- */
.some-details-about-site {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 80px;
  /* background-color: #ffffff; */
  width: 80%;
  margin: auto;
}

.detail-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.detail-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #d2322d;
}

.detail-card h3 {
  margin: 15px 0 10px;
  color: #222;
  font-size: 1.3rem;
  font-weight: 700;
}

.detail-card p {
  margin: 0 15px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}
hr{
  width: 80%;
  margin: auto;
}
h2{
  text-align: center;
}

/* ---------- WHAT CLIENTS SAY SECTION ---------- */
.client-slider {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}


/* === SLIDES WRAPPER === */
.slide-track {
  display: flex;
  width: 200%;              /* total slides → 2 slides */
  transition: transform 0.6s ease-in-out;
}


/* === EACH SLIDE === */
.slide {
  width: 50%;               /* 2 slides → each slide = 50% */
  display: flex;
  justify-content: center;
  gap: 30px;
}


/* === CLIENT CARD === */
.client-card {
  display: flex;
  width: 28%;               /* makes 3 cards per slide */
  min-width: 280px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 12px;
  text-align: left;
}

/* Fix for slide 2 (only 2 cards) */
.slide:nth-child(2) .client-card {
  width: 30%;
}


/* === CLIENT IMAGE === */
.client-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}


/* === CLIENT DETAILS === */
.client-details p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.client-details h3 {
  font-size: 1.1rem;
  margin-top: 10px;
  margin-bottom: 5px;
}

.client-details h4 {
  font-size: 0.9rem;
  color: #333;
}


/* === SHOW MORE BUTTON === */
.show-more {
  display: inline-block;
  margin: 25px auto 0;       /* centered */
  margin-left: 1250px;
  padding: 10px 25px;
  font-size: 10px;
  background: #d34242;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;     /* for <a> tag */
  transition: 0.3s;
}

.show-more:hover {
  background: #a12b2b;
}
/* -------------------------showmoreclientspage------------------------------ */
/* MAIN CLIENT PAGE WRAPPER */
.showmoreclientspage {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 50px 7%;
  background: #f7f7f7;
}

/* INDIVIDUAL CARD */
.client-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  gap: 20px;
  transition: 0.3s ease;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* IMAGE */
.client-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}

/* TEXT SECTION */
.client-details {
  flex: 1;
  text-align: left;
}

.client-details p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 10px;
}

.client-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: #d34242;
  margin-bottom: 5px;
}

.client-details h4 {
  font-size: 14px;
  color: #555;
}
/* ------------------- OUR SERVICES SECTION ------------------- */
.our-services-row1 {
  background-color: #f8f8f8;
  padding: 120px 10%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  justify-content: center;
  align-items: start;
}

/* Cards */
.our-services-row1 div[class*="service-card"] {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 15px;
}

/* Hover effect */
.our-services-row1 div[class*="service-card"]:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Image */
.our-services-row1 img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 4px solid #ff4c4c;
}

/* Title */
.our-services-row1 h3 {
  font-size: 20px;
  font-weight: 700;
  padding: 12px 15px;
  color: #222;
  text-align: center;
}

/* Description */
.our-services-row1 p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  padding: 0 18px 18px;
  text-align: justify;
  background: #fff;
}

/* ------------------- MOBILE VERSION (Vertical scroll) ------------------- */
@media (max-width: 768px) {

  /* Change grid to vertical list */
  .our-services-row1 {
    display: block;   /* stack cards */
    padding: 40px 20px;
  }

  .our-services-row1 div[class*="service-card"] {
    width: 100%;
    margin-bottom: 25px;
  }
}


/* ========== OUR SERVICES SECTION ========== */
.our-services {
  background-color: #f8f8f8;
  padding: 100px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Title and description container */
.detail-our-services {
  text-align: center;
  max-width: 1000px;
}

.detail-our-services h3 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

/* optional underline below heading */
.detail-our-services h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #ff4c4c;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Main image */
.detail-our-services img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  margin: 25px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Paragraph text */
.detail-our-services p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  background-color: white;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* --------------------------------our-expertise------------------ */
.expertise-section {
  width: 100%;
  padding: 50px 0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #d34242;
}

.expertise-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;          /* Important: allows 3 + 3 layout */
  gap: 25px;
  padding: 0 20px;
}

.expertise-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 30%;
  min-height: 320px;   /* Same height */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.expertise-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.expertise-card h3 {
  font-size: 20px;
  padding: 15px;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .expertise-cards {
      flex-direction: column;
      align-items: center;
  }
  
  .expertise-card {
      width: 90%;
  }
}


/* ----------------------about-us------------------------ */
.about-wrap {
  font-family: Arial, sans-serif;
  background: #fafafd;
  padding: 40px 0 36px 0;
}
.about-title {
  max-width: 1140px;
  margin: 0 auto 16px auto;
  font-size: 24px;
  color: #d34242;
  letter-spacing: .5px;
  padding-left: 24px;
  font-weight: bold;
}
.about-content {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  display: flex;
  gap: 32px;
  padding: 32px;
  box-shadow: 0 2px 10px #0001;
}
.about-left {
  flex: 2;
  font-size: 15px;
  color: #222;
  line-height: 1.61;
}
.about-left p {
  margin: 0 0 13px 0;
  text-align: justify;
}
.about-right {
  flex: 1;
  min-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 10px;
}
.about-img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px #0001;
}
.about-quote {
  width: 94%;
  background: #eaf7fd;
  border-left: 3.5px solid #27b4e2;
  border-radius: 6px;
  padding: 14px 17px 10px 18px;
  font-size: 13.9px;
  color: #2281ad;
  margin-bottom: 5px;
}
.quote-text {
  font-style: italic;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2281ad;
}
.quote-facts {
  color: #333;
  font-size: 13px;
  margin: 0 0 0 13px;
  padding: 0;
}
.quote-facts li {
  margin-bottom: 4px;
}

.Our-Team-of-Professionals p {
  width: 90%;
  margin: auto;
  background: #eaf7fd;
  border-left: 3.5px solid #27b4e2;
  border-radius: 6px;
  padding: 14px 17px 50px 18px; /* reduce bottom padding */
  font-size: 13.9px;
  color: #2281ad;
  margin-bottom: 5px;
  position: relative; /* IMPORTANT */
}

.read-more-btn {
  position: absolute;
  right: 1px;   /* space from right */
  bottom: 1px;  /* space from bottom */
  background-color: #d34242;
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 10px;
}

.read-more-btn:hover {
  background-color: #b83333;
}


/* -----------------------------------Our-Team-of-Professionals-page--------------------- */
/* Page top spacing */
.Our-Team-of-Professionals-page {
  padding-top: 150px;
}

/* Blue Paragraph Box */
.Our-Team-of-Professionals-page p {
  width: 90%;
  margin: auto;
  background: #eaf7fd;
  border-left: 3.5px solid #27b4e2;
  border-radius: 6px;
  padding: 14px 17px;
  font-size: 14px;
  color: #2281ad;
  margin-bottom: 30px;
}

/* 3 column layout */
.three-columns {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; 
  gap: 20px;
}

/* IMAGE STYLING — NO OVERLAPPING */
.left-column img,
.center-column img,
.right-column img {
  width: 100%;
  height: auto;          /* images will NOT overlap */
  max-height: 300px;     /* keeps all images visually similar */
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;   /* clean spacing */
}

/* Center Column Text */
.center-column {
  text-align: center;
  padding-top: 220px;
}
.center-column h3 {
  margin-bottom: 20px;
  color: #d34242;
  font-size: 22px;
}
.name-box {
  width: 180px;                 /* box width */
  background: #eaf7fd;          /* light blue background */
  border: 2px solid #27b4e2;    /* blue border */
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  color: #d34242;               /* red text */
  font-size: 18px;
  margin: 10px auto;            /* centers the box */
  font-weight: bold;
}

/* ====== 4-Column Service Section ====== */
.our-services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 150px 10%;
  background-color: #f8f8f8;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #ff4c4c;
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.footer {
  background-color: #2c2c2c;
  color: white;
  font-family: Arial, sans-serif;
  padding: 20px 0;
  font-size: 13px;
}

.container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 180px;
  margin: 10px;
}

.footer-section h3 {
  border-bottom: 2px solid #555;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li{
  margin: 8px 0;
  cursor: pointer; 
}
.footer-section ul li a {
  color: white;
  text-decoration: none;
}

.footer-section ul li:hover {
  text-decoration: underline;
}

.footer-section.newsletter input[type="email"] {
  padding: 6px;
  font-size: 12px;
  margin-right: 5px;
  width: 70%;
  border-radius: 3px;
  border: none;
}

.footer-section.newsletter button {
  padding: 6px 12px;
  font-size: 12px;
  background-color: #2e8b57;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.footer-section.newsletter button:hover {
  background-color: #256b45;
}

.footer-section.contact-us address {
  line-height: 1.5;
  font-style: normal;
}
.footer-section.contact-us a{
  color: white;
}
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 10px;
  text-align: center;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 20px auto 0;
  color: #bbb;
}


/* ---------------- RESPONSIVE DESIGN ---------------- */

/* For tablets and medium screens */
@media (max-width: 1024px) {

  /* Navbar */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .navbarlogo img {
    margin-left: 0;
    width: 90px;
    height: 80px;
  }

  .navbar-links-container {
    margin-right: 0;
    align-items: flex-start;
  }

  .navbarlinks,
  .navbarlinks2 {
    gap: 15px;
    flex-wrap: wrap;
  }

  /* Slider */
  .slider {
    max-height: 400px;
  }

  .slide img {
    height: 400px;
  }

  /* Below slider */
  .belowslider {
    
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 20px;

    display: none; /* hidden initially */
    flex-direction: column;
    gap: 15px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
  
/* When hamburger is clicked */
.belowslider.active {
  display: flex;
}

  .buttons-left {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .text-right {
    width: 100%;
    flex: unset;
    text-align: center;
  }

  /* Site details cards */
  .some-details-about-site {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px 40px;
  }

  /* Clients section */
  .what-clients-says-about-us {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 10px;
  }

  .client-card {
    flex-basis: 45%;
  }

  /* Footer */
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    font-size: 12px;
  }
}

/* For mobile screens */
@media (max-width: 768px) {

  /* Navbar */
  .navbar {
    padding: 10px;
    font-size: 12px;
  }

  .navbarlinks,
  .navbarlinks2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .search-container input {
    width: 120px;
  }

  /* Slider */
  .slide img {
    height: 300px;
  }

  /* Below slider */
  .belowslider {
    padding: 10px;
    margin-top: 25px;
    background-color: #222;
  }

  .buttons-left button {
    font-size: 14px;
    padding: 10px 16px;
  }

  .text-right h2 {
    font-size: 1.3rem;
  }

  /* Site details */
  .some-details-about-site {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  /* Client section */
  .client-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .client-card img {
    margin: 0 0 10px 0;
  }

  /* Footer */
  .footer-section h3 {
    font-size: 14px;
  }

  .footer-section ul li {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}

/* For extra small screens */
@media (max-width: 480px) {

  /* Navbar logo smaller */
  .navbarlogo img {
    width: 100px;
    height: 60px;
  }

  /* Slider */
  .slide img {
    height: 250px;
  }

  /* Buttons below slider */
  .buttons-left {
    flex-direction: column;
    gap: 8px;
  }

  .buttons-left button {
    width: 100%;
  }

  .text-right h2 {
    font-size: 1.1rem;
  }

  .text-right p {
    font-size: 0.9rem;
  }

  /* Client cards stack */
  .what-clients-says-about-us {
    flex-direction: column;
  }

  .client-card {
    flex-basis: 100%;
  }

  /* Footer */
  .footer {
    font-size: 11px;
    padding: 15px;
  }

  .footer-bottom {
    text-align: center;
  }
}
/* ---------------------------------------contact------------------------------------------ */
.contact-page {
  font-family: Arial, sans-serif;
  background: #f6f6f6;
  padding: 30px;
 
}

.contact-container {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.contact-form-section {
  flex: 1;
  margin-right: 40px;
  min-width: 320px;
}

.contact-form-section h2 {
  margin-top: 0;
  color: #d34242;
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 8px;
  margin-bottom: 13px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
  background: #fafafa;
}

.contact-form textarea {
  min-height: 70px;
  resize: vertical;
}

.contact-form button {
  display: inline-block;
  background: #d34242;
  color: #fff;
  padding: 9px 22px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 7px;
}

.contact-form button:hover {
  background: #a52a2a;
}

.contact-details-section {
  flex: 1;
  min-width: 320px;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 22px 22px;
  color: #333;
  box-sizing: border-box;
}

.contact-details-section h3 {
  color: #333;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 7px;
  margin-bottom: 16px;
}

.contact-details-section h4 {
  color: #d34242;
  margin: 14px 0 7px 0;
  font-size: 15px;
}

.contact-details-section a {
  color: #336699;
  text-decoration: none;
}

.contact-details-section a:hover {
  text-decoration: underline;
}

.contact-map-section {
  margin-top: 32px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  padding: 22px;
}

.contact-map-section h3 {
  color: #d34242;
  margin-top: 0;
  margin-bottom: 15px;
}

.google-map iframe {
  width: 100%;
  border-radius: 6px;
  border: none;
}

@media (max-width: 920px) {
  .contact-container {
    flex-direction: column;
    padding: 16px;
  }
  .contact-form-section,
  .contact-details-section {
    margin-right: 0;
    margin-bottom: 24px;
  }
}

/* Responsive Navbar */
@media (max-width: 900px) {
  body {
    padding-top: 70px;
  }
  .navbar {
    height: 70px;
    padding: 0 16px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
 /* LOGO LEFT */
 .navbarlogo {
  width: auto;
  height: auto;
  background: none;
  position: relative;
  right: 50px;
}
.navbarlogo img {
  width: 120px;
  height: auto;
  margin: 0;
}

 
  /* NAV LINKS DROPDOWN */
  .navbar-links-container {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #02323E;
    display: none;
    flex-direction: column;
    z-index: 999;
  }

  .navbarlinks,
  .navbarlinks2 {
    flex-direction: column;
    align-items: center;
    padding:  0;
    gap: 15px;
  }

  .navbarlinks a,
  .navbarlinks2 a {
    color: white;
    font-size: 16px;
    text-decoration: none;
  }

  .hamburger {
    display: block;
    font-size: 26px;
    position: relative;
    right: 40px;
  }
  .social-icons {
    margin-left: 90px;
    display: flex;
    gap: 15px;
  }
  .navbar-links-container.active {
    display: flex;
  }
}
@media (max-width: 768px) {
  .our-services {
    padding: 100px 5%;
  }

  .detail-our-services h3 {
    font-size: 26px;
  }

  .detail-our-services p {
    font-size: 15px;
    padding: 20px;
  }
}
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    padding: 19px;
    gap: 18px;
  }

  .about-title {
    padding-left: 8px;
  }

  .about-content img {
    width: 80%; /* make image smaller */
    max-width: 300px; /* optional: limit the max size */
    height: auto; /* keeps the aspect ratio */
    margin: 0 auto; /* centers the image */
    display: block;
  }
}
@media (max-width: 900px) {
  .three-columns {
    grid-template-columns: 1fr;  /* stack vertically */
  }

  .left-column img,
  .center-column img,
  .right-column img {
    max-height: 260px; /* smaller on mobile */
  }
}
/* ---------about-client-slider------------ */
@media (max-width: 900px) {
  .slide {
    flex-wrap: wrap;
  }
  .client-card {
    width: 90%;
  }
}

@media (max-width: 600px) {
  .client-card {
    width: 100%;
  }
}
/* RESPONSIVE STYLES */

@media (max-width: 1200px) {
  .showmoreclientspage {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .showmoreclientspage {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .showmoreclientspage {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .client-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .client-card img {
    margin-bottom: 15px;
  }
}
/* Large Tablets & Small Laptops */
@media (max-width: 1200px) {
  .hero-text {
    left: 50%;
    width: 70%;
    padding: 18px;
    top: 40%;
  }
  .hero-text h4 {
    font-size: 22px;
  }
}

/* ================= HERO RESPONSIVE ================= */
@media (max-width: 900px) {

  .hero-slider {
    height: 80vh;
  }

  .hero-slide {
    height: 80vh;
    top: 0;
  }

  .hero-slide img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    opacity: 0.75;
  }

  /* KEEP TEXT ON IMAGE */
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.75);
    text-align: center;
  }

  .hero-text h4 {
    font-size: 18px;
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  .hero-slider {
    height: 75vh;
  }

  .hero-slide {
    height: 75vh;
  }

  .hero-text {
    left: 50%;
    top: 50%;
    width: 85%;
    padding: 14px;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .hero-text h4 {
    font-size: 18px;
    line-height: 1.4;
  }
}

/* EXTRA SMALL MOBILES */
@media (max-width: 480px) {

  .hero-text {
    width: 92%;
    padding: 12px;
  }

  .hero-text h4 {
    font-size: 16px;
  }
}
.highlight-blue {
  font-style: italic;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2281ad;
}
.quote-facts-left{
  width: 90%;
  background: #eaf7fd;
  border-left: 3.5px solid #27b4e2;
  border-radius: 6px;
  padding: 14px 17px 10px 18px;
  font-size: 13.9px;
  color: #2281ad;
  margin-bottom: 5px;
}

