/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #f4f4f4;
}

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Login/Register Buttons */
/* .auth-buttons {
  position: absolute;
  right: 2px;
  top: -50px;
  transform: translateY(-50%);
  display: flex;
  gap: 5px;
}

.auth-buttons .btn {
  padding: 6px 14px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  margin-top: -30px;
  color: white;
  transition: background-color 0.3s ease;
}

.login-btn {
  background-color: green;
}

.login-btn:hover {
  background-color: greenyellow;
}

.register-btn {
  background-color: green;
}

.register-btn:hover {
  background-color: greenyellow;
} */



/* Top Header */
.top-header {
  display: flex;
  width: 100%;
  background-color: #1888b7;
  color: #fff;
  padding: 0.8rem;
  font-size: 15px;
  font-weight: 700;
}

/* Flex container */
.top-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  /* flex-wrap: wrap; */
}

/* Contact text aligned left */
.contact-text {
  margin: 0;
  flex: 1;
  text-align: left;
  white-space: nowrap;
}

/* Buttons aligned right */
.auth-buttons {
  /* background: red; */
  width: auto;
  display: flex;
  gap: 10px;
  margin-right: 50px;
}

.auth-buttons .btn {
  padding: 6px 8px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
  color: white;
  background-color: green;
  transition: background-color 0.3s ease;
}

.auth-buttons .btn:hover {
  background-color: greenyellow;
  color: #000;
}

/* Responsive fix for small screens */
@media (max-width: 600px) {
  .top-header-container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .auth-buttons{
    background: #000;
    flex-direction: column;
    height: 50%;
  }
  .auth-buttons .btn{
    padding: 2px 2px;
    font-size: 5px;
  }

  .contact-text {
    text-align: center;
    font-size: x-small;
  }
}

  .contact-text {
    text-align: center;
    font-size: 5px;
  }




/* Top Header */
/* background: #ffb85c ; */
/* .top-header {
  background-color:#1888b7;
  color: #fff;
  padding: 10px 0;
  font-size: 15px;
  font-weight:700;
  text-align: center;
} */

/* Main Header */
/* .main-header {
  background: #fff;
  /* border-bottom: 1px solid #eee; */
  /* background-color: #491f85; */
} */

/* .main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
} */

/* .logo img{
  width: 160px;
  height: 100px;
  /* margin-top: -10px;
  margin-bottom: -20px; */
} */

/* .nav-menu {
  display: flex;
  gap: 20px;
} */

/* .nav-menu a {
  text-decoration: none;
  color: #1888b7;
} */

/* .hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
} */

/* =========================================mera wala haaa ======================================*/
.main-header {
  background: #fff;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  flex-wrap: wrap;
}

.logo img {
  width: 160px;
  height: 100px;
}

/* Nav styles */
.nav-menu {
  display: flex;
  gap: 40px;
  font-weight: 800;

}

.nav-menu a {
  text-decoration: none;
  color: #1888b7;
}

/* Hamburger menu default (desktop) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* DROPDOWN (Desktop) */
.dropdown {
  position: relative;
}
.Service_drop_menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: yellow;
  z-index: 999;
}
.dropdown:hover .Service_drop_menu {
  display: block;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    padding: 10px 0;
  }

  .nav-menu.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .dropdown:hover .Service_drop_menu {
    display: none; /* disable hover dropdown for mobile */
  }

  .dropdown .dropdown-toggle::after {
    content: " ▼";
  }

  .dropdown .dropdown-toggle.active + .Service_drop_menu {
    display: block;
    position: relative;
    background: yellow;
  }
}


/* Container to position dropdown */
.dropdown {
  position: relative;
}

/* Hide dropdown initially */
.Service_drop_menu {
  display: none;
  position: absolute;
  top: 100%; /* directly below the link */
  left: 0;
  background-color: white;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding: 10px 0;
  min-width: 200px;
}

/* Show dropdown on hover */
.dropdown:hover .Service_drop_menu {
  display: block;
}

.Service_drop_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.Service_drop_menu li a {
  display: block;
  padding: 10px 16px;
  color: #1888b7;
  text-decoration: none;
}

.Service_drop_menu li a:hover {
  background-color: #f1f1f1;
  color: #2c3e50;
}




/* .navbar li.dropdown{
  position: relative;
 /* display: inline-block; */
} */

/* .dropdown-menu{
  display: none;
  position: absolute;
  top: 500%;
  left: 0;
  color: #1888b7;
  background-color: yellow;
  padding: 10px 0;
  list-style: none;
  min-width: 200px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  flex-direction: column;
} */
/* .dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #1888b7;
} */

/* .dropdown-menu li a:hover {
  background-color: yellow;
  color: #2c3e50;
} */

/*.dropdown-menu li a:hover {
  background-color: #f1f1f1;
  color:#2c3e50;
}*/
/* Hamburger Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1888b7;
}

/* Default nav style (desktop) */
.navbar ul 
{
  color:#1888b7;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
/* Responsive header */


/* .services-slider-section {
  padding: 60px 20px;
  background: #f4f4f4;
  font-family: Arial, sans-serif;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.service-card {
  flex: 0 0 300px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  scroll-snap-align: start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #007BFF;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.service-card a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.service-card a:hover {
  text-decoration: underline;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #007BFF;
  color: white;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
}

.slider-btn:hover {
  background: #0056b3;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
} */

/* Services Section */
.services-section {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: black;
}

/* Grid Container */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 10px;
}

/* Service Box */
.service-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  /* text-decoration: none; */
}

.service-box:hover {
  transform: translateY(-5px);
}
.service-box a{
  text-decoration: none;
}

/* Image Styling */
.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Heading */
.service-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1888b7;
  /* text-decoration: none; */
}
.service-box h3:hover{
  color: #28a745;
}

/* Description */
.service-box p {
  font-size: 0.95rem;
  color: black;
}

/* Responsive Breakpoints */

/* Medium Devices: Tablets and small laptops */
@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small Devices: Tablets in portrait */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Extra Small Devices: Phones */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-section h2 {
    font-size: 2rem;
  }

  .service-box {
    padding: 15px;
  }

  .service-box img {
    height: 140px;
  }

  .service-box h3 {
    font-size: 1rem;
  }

  .service-box p {
    font-size: 0.9rem;
  }
}
/* Responsive Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    display: none;
    width: 100%;
  }

  .navbar ul {
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    gap: 10px;
    border-top: 1px solid #ccc;
  }

  .navbar.active {
    display: block;
  }

  .main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.slider {
  width: 100%;
  position: relative;
}

.slides {
  display: flex;
  width: 100%;
  animation: slideAnimation 15s infinite;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit:cover;
}

.caption {
  position: absolute;
  bottom: 30px;
  left: 50px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 15px 25px;
  font-size: 24px;
  border-radius: 5px;
  font-weight: 500;
}

/* Slide Animation */
@keyframes slideAnimation {
  0%, 20% {
    transform: translateX(0%);
  }
  25%, 45% {
    transform: translateX(-100%);
  }
  50%, 70% {
    transform: translateX(-200%);
  }
  75%, 100% {
    transform: translateX(0%);
  }
}

/* About Section */
.about-section {
  display:flex;
  padding: 60px 0;
  background-color: #f9f9f9;
}

.about-content {
  display: flex;
  flex-wrap: nowrap;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1;
  width: 50%;
}

.about-text h2 {
  font-size: 24px;
  margin-bottom: 20px;
  /* margin-top: -60px; */
  color: #1888b7;
  text-align: center;
}

.about-text h2:hover{
  color:#28a745;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: black;
  margin-bottom: 15px;
  text-align: justify;
}
.about-text button{
  background-color:#1888b7;
  border-radius: 5%;
  padding: 10px 10px 10px 10px;
}
.about-text button a{
  color: #fff;
  text-decoration: none;
}
.about-text button:hover{
  background-color:#28a745;
}

.about-image {
  flex: 1 5%;
}

.about-image img {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Services Section */

.services-section {
  max-width: 1250px;
  margin: auto;
  padding-bottom:50px ;
}

.services-section h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 50px;
  color:#1888b7;
}
.services-section h2:hover{
  color:#28a745;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.card-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 10px 0;
  scrollbar-width: none; /* Firefox */
}

.card-slider::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 auto;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}
.card-slider a{
  display: block;
  text-decoration: none;
  color:inherit;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.card h3 {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #1888b7;
}
.card h3:hover{
  color: #28a745;
}

.card p {
  font-size: 0.9rem;
  color: black;
  margin-top: 8px;
}

.nav-btn {
  position: absolute;
  background-color: rgba(0,0,0,0.1);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s;
}

.left-btn {
  left: -10px;
}

.right-btn {
  right: -10px;
}

.nav-btn:hover {
  background-color: rgba(0,0,0,0.2);
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .card {
    width: 260px;
  }
}

@media (max-width: 768px) {
  .card {
    width: 220px;
  }
}

@media (max-width: 500px) {
  .card {
    width: 90vw;
  }

  .left-btn,
  .right-btn {
    display: none;
  }
}
/* service slider over */

.container1 {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-section {
    flex: 1;
}

.form-section {
    flex: 1;
    padding: 80px;
}

.form-section h2 {
    margin-top: -50px;
    margin-bottom: 20px;
    color:#1888b7;
    font-size: 32px;
}
.form-section h2:hover{
  color: #28a745;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    /* margin-bottom: 5px; */
    font-weight: bold;
}

input, textarea {
    /* padding: 10px; */
    font-size: 16px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #0056b3;
}

#formResponse {
    margin-top: 15px;
    color: green;
}


/* Why Us Section */
.why-us {
  padding: 60px 20px;
  background-color: #f4f7f9;
}

.why-us-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.why-us-image {
  flex: 1 1 30%;
}

.why-us-image img {
  width: 100%;
  border-radius: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.why-us-text {
  flex: 1 1 50%;
}

.why-us-text h2 {
  font-size: 2em;
  color: #1888b7;
  margin-bottom: 20px;
}
.why-us-text h2:hover{
  color:#28a745;
}

.why-us-text p {
  font-size: 1em;
  color: black;
  line-height: 1.6;
  margin-bottom: 20px;
}

.why-us-text ul {
  list-style: none;
  padding: 0;
}

.why-us-text ul li {
  font-size: 1em;
  margin-bottom: 10px;
  color: #1888b7;
  position: relative;
  padding-left: 25px;
}

.why-us-text ul li::before {
  /* content: "✔"; */
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}
@media (max-width: 768px) {
  .why-us-wrapper {
    flex-direction: column;
  }

  .why-us-image,
  .why-us-text {
    flex: 1 1 100%;
  }
}
/* happycutom section for home starts */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 20px;
  /* background-color: whitesmoke; */
  background-color: #1888b7;
  text-align: center;
  gap: 5px;
}

.feature-box {
  flex: 1 1 200px;
  max-width: 250px;
  padding: 20px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box img {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
}

.feature-box h3 {
  margin: 10px 0 5px;
  font-size: 20px;
  color: #1888b7;
}

.feature-box p {
  font-size: 14px;
  color: black;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .feature-box {
    max-width: 45%;
  }
}

@media screen and (max-width: 600px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature-box {
    max-width: 100%;
  }
}

/* happy custom section ends */
.testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color:#1888b7;
}
.testimonials h2:hover{
  color: #28a745;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial h3 {
  margin: 10px 0 5px;
  font-size: 1.1em;
  color:#1888b7;
}
.testimonial h3:hover{
  color:#28a745;
}

.testimonial p {
  font-size: 0.95em;
  color: black;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }
}
/* Footer Base */
.main-footer {
  /* background-color: #1e2a2f; */
  /* background-color: #000080; */
  background-color: #1888b7;
  /* background-color: #b58244; */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  /* color: white; */
}

.footer-box {
  flex: 1 1 220px;
}
.footer-box img{
  height: 60px;
  width: 20 0px;
}

.footer-box h3,
.footer-box h4 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-box p,
.footer-box ul,
.footer-box li {
  font-size: 0.95em;
  margin: 5px 0;
  color: #f4f4f4;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  color: #f4f4f4;
}

.footer-box a:hover {
  color: black;
}

/* Subscription Form */
.footer-box input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
}

.footer-box button {
  background-color: #4fc3f7;
  color: #000;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-box button:hover {
  background-color: #29b6f6;
}

#subscribeMessage {
  margin-top: 10px;
  font-size: 0.9em;
  color: #8bc34a;
}

/* Bottom Footer */
.bottom-footer {
  text-align: center;
  border-top: 1px solid burlywood;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.85em;
  /* color: black; */
}
.bottom-footer a{
    text-decoration:none;
    }

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-box {
    width: 100%;
  }
}
/* About Page */
/* Breadcrumb Hero Section */
.breadcrumb-hero {
  background: url('img/1211.webp') no-repeat center center/cover;
  color: white;
  /* padding: 80px 0; */
  position: relative;
  text-align: center;
}
.breadcrumb-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.breadcrumb-nav {
  margin-top: 10px;
  font-size: 1rem;
}
.breadcrumb-nav a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb-nav span {
  color: #ddd;
}

/* About Section Flex */
.about-flex {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 30px 15px;
}
.about-text {
  flex: 1 1 45%;
}
.about-text h2 {
  text-align: left;
  font-size: 2em;
  margin-bottom: 20px;
}
.about-text p {
  line-height: 1.6;
  margin-bottom: 20px;
}
.about-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007b3e;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
.about-image {
  flex: 1 1 50%;
  text-align: center;
}
.about-image img {
  width: 100%;
  max-width: 700px;
  border-radius: 8px;
}
.about-image-termite img {
  width: 100%;
  max-width: 700px;
  height: 330px;
  border-radius: 8px;
}

.about-us {
  max-width: 1200px;
  margin: 0 auto;
}

.section-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 10px;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.section-container:nth-child(even) {
  flex-direction: row-reverse;
}

.section-container .text {
  flex: 1 1 300px;
}

.section-container .text h2 {
  font-size: 32px;
  color: #1888b7;
  margin-bottom: 35px;
  margin-top: -35px;
}
.section-container .text h2:hover{
  color: #28a745;
}

.section-container .text p {
  font-size: 16px;
  color: black;
  text-align: justify;
}

.section-container .image {
  flex: 1 1 300px;
}

.section-container .image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 250px;
  max-height: 300px;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
    text-align: center;
  }

  .section-container:nth-child(even) {
    flex-direction: column;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }
  .about-text, .about-image {
    flex: 1 1 100%;
  }
  .breadcrumb-hero {
    padding: 50px 0;
  }
}
/* Section Styling */
.info-section {
  padding: 5px 5px;
  background-color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Text Block */
.text-block h2 {
  padding: 3%;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1888b7;
}
.text-block h2:hover{
  color:#28a745;
}
.text-block p {
  font-size: 1.1rem;
  color: #28a745;
  max-width: 600px;
  margin: 10px auto;
}
.text-block p:hover{
  color:#1888b7;
}

/* Image Block */
.image-block {
  margin-top: 30px;
}
.image-block img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  padding-bottom: 5%;
}

.service-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.text-column {
  flex: 1 1 500px;
}

.text-column h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  margin-top: -100px;
  color: #1888b7;
}
.text-column h2:hover{
  color: #28a745;
}

.text-column p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.text-column .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1888b7;
  color: white;
  text-decoration: none;
  margin-top:20px ;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.text-column .btn:hover {
  background-color: beige;
  color: black;
}

.image-column {
  flex: 1 1 400px;
  text-align: center;
}


/* Responsive */
@media (max-width: 768px) {
  .text-block h2 {
    font-size: 1.5rem;
  }
  .text-block p {
    font-size: 1rem;
  }
}
/* .contact-container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  overflow: hidden;
} */

.contact-info,
.contact-form {
  flex: 1;
  /* min-width: 500px; */
  /* gap:30%; */
  padding: 100px;
}

.contact-info h2,
.contact-form h2 {
  margin-top: -60px;
  margin-bottom: 30px;
  color:#1888b7;
}
.contact-info h2:hover{
  color: #28a745;
}

.contact-form h2:hover{
  color:#28a745;
}

.contact-info p {
  margin-bottom: 10px;
  color: black;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color:black;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1888b7;
}

form input,
form textarea {
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #28a745;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

form button:hover {
  background: #218838;
}

.map-section {
  margin-top: 10px;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  /* border-radius: 10px; */
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

.contact-container {
  max-width: 1600px;
  margin: auto;
  display: flex;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.cert{
  width: 100%;
  height: 300px;
}
.gall{
  width: 100%;
  height: 300px;
}

.contact-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}
.contact-section h1{
  font-size: 32px;
  color: #1888b7;
}
.contact-section h1:hover{
  color: #28a745;
}

.contact-container1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.contact-box {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 32%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.contact-box h3 {
  margin-bottom: 15px;
  color: #1888b7;
}

.contact-box p {
  margin: 10px 0;
  line-height: 1.6;
  color: black;
}

/* certificate */
.certificate-container {
    max-width: 1200px;
    margin: auto;
    padding: 90px;

}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.certificate-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: white;
}

/* home page - our clients */
/* .clients-section {
  padding: 40px 20px;
  background: white;
  text-align: center;
}

.clients-section h2 {
  margin-bottom: 20px;
  color: #1888b7;
  font-size: 32px;
}
.clients-section h2:hover{
  color:#28a745;
}

.clients-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.clients-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 0;
  scrollbar-width: none; 
}

.clients-slider::-webkit-scrollbar {
  display: none;
}

.client-logo {
  flex: 0 0 auto;
  width: 150px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 10px;
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.clients-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.05);
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  transition: background 0.3s;
}

.left-clients-btn {
  left: -15px;
}

.right-clients-btn {
  right: -15px;
}

.clients-nav-btn:hover {
  background: rgba(0,0,0,0.15);
}*/

/* Responsive tweaks */
/* @media (max-width: 768px) {
  .client-logo {
    width: 120px;
    height: 80px;
  }

  .clients-nav-btn {
    display: none;
     /* hide nav buttons on mobile */
  /* }
}

@media (max-width: 480px) {
  .client-logo {
    width: 100px;
    height: 70px;
  } 
} */

/* Our Clients Marquee */
.clients-section{
  display:flex ;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: white;
}
.clients-section h2{
  font-size: 32px;
  color: #1888b7;
  margin-bottom: 10px;
}
.clients-section h2:hover{
  color: #28a745;
}
.clients-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clients-slider {
  display: flex;
  padding: 30px 25px;
  flex-wrap: nowrap;
  width: 100%;
  position: relative;
  animation: scroll-marquee 40s linear infinite; /* Continuous animation */
}

.clients-slider-wrapper:hover .clients-slider {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%); /* Ensure the animation slides all blocks */
  }
}

.client-logo {
  flex-shrink: 0;
  width: 150px;
  height: 100px;
  margin-right: 10px;
  background: white;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.client-logo img {
  max-width: 100%;
  max-height: 100px;
  padding: 5px;
  object-fit: contain;
}



/* --- Responsive Breakpoints --- */

/* Extra Small Devices (Mobile Phones) - max 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .navbar ul { 
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .logo {
    text-align: center;
    font-size: 24px;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }

  .why-us-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .why-us-text h2 {
    font-size: 24px;
  }

  .caption {
    font-size: 18px;
    padding: 10px 15px;
  }

  .slide img {
    height: 250px;
  }
}

/* Small Devices (Large Phones & Small Tablets) - max 768px */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }

  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .why-us-wrapper {
    flex-direction: column;
  }

  .testimonial-container {
    flex-direction: column;
    gap: 20px;
  }

  .slide img {
    height: 300px;
  }
}

/* Medium Devices (Tablets & Small Laptops) - max 992px */
@media (max-width: 992px) {
  .navbar ul {
    gap: 20px;
  }

  .services-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-card {
    flex: 1 1 45%;
    max-width: 45%;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    height: 300px;
  }
}

/* Large Devices (Laptops and Desktops) - max 1200px */
@media (max-width: 1200px) {
  .services-grid {
    gap: 15px;
  }

  .service-card {
    padding: 15px;
  }

  .why-us-text p {
    font-size: 0.95em;
  }

  .testimonial {
    max-width: 260px;
  }
}

/* socialmedia sidebar............... */
.social-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: white;
  background-color: #333;
  border-radius: 0 5px 5px 0;
  text-decoration: none;
  font-size: 20px;
  transition: background 0.3s;
}

.social-btn:hover {
  opacity: 0.8;
}

.social-btn.whatsapp {
  background-color: #25D366;
}

.social-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-btn.facebook {
  background-color: #1877f2;
}

.social-btn.twitter {
  background-color: #1da1f2;
}

/* About page Gallery */

/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.gallery-section .gallery-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #2c3e50;
  font-weight: bold;
}

/* Responsive Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Media Queries for better control */

/* Medium Devices (tablets) */
@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 15px;
  }

  .gallery-section .gallery-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

/* Small Devices (phones) */
@media (max-width: 480px) {
  .gallery-section {
    padding: 30px 10px;
  }

  .gallery-section .gallery-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .gallery-grid {
    gap: 15px;
  }

  .gallery-item {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  }
}

.our-business {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.our-business h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

.business-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.business-image {
  flex: 1 1 45%;
  background-color: #eee;
  border-radius: 8px;
  overflow: hidden;
}

.business-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .business-container {
    flex-direction: column;
  }

  .business-image {
    flex: 1 1 100%;
  }
}