@charset "utf-8";
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

/* Spinner Background */
#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Show class to display spinner */
#spinner.show {
  visibility: visible;
  opacity: 1;
}

/* Spinner Grow Animation */
.spinner-grow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #4CAF50; /* green theme */
  animation: spinner-grow 1s infinite ease-in-out;
}

@keyframes spinner-grow {
  0% { transform: scale(0); opacity: 0.5; }
  50% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0); opacity: 0.5; }
}


/* ---------- Topbar ---------- */
.topbar {
  background: #4CAF50; /* green theme */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  flex-wrap: wrap;
}

.topbar-left a {
  color: #fff;
  margin-right: 15px;
  font-size: 14px;
  text-decoration: none;
}

.topbar-left i {
  margin-right: 5px;
  color: #222;
}

.topbar-search form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.topbar-search input {
  border: none;
  padding: 6px 10px;
  outline: none;
}

.topbar-search button {
  background: transparent;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
}

.topbar-social a {
  margin-left: 10px;
  color: #fff;
  font-size: 14px;
  transition: color 0.3s;
}

.topbar-social a:hover {
  color: #222;
}
}
/* ---------- General Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #f8f9fa;
  color: #333;
}

/* ---------- Navbar ---------- */
.navbar {
  background: #222628;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  position: relative;
  flex-wrap: wrap; /* Mobile ke liye wrap enable */
}

.navbar-brand h1 {
  margin: 0;
  font-size: 28px;
  color: #4CAF50;
  font-family: 'Nunito', sans-serif;
}

.navbar-brand span {
  color: #fff;
}

.navbar-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.navbar-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: #4CAF50;
}

/* Center alignment for desktop */
.navbar-links {
  margin-left: 150px;
  margin-right: 150px;
}

/* Menu toggle button for mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
  }
  
  .navbar-links {
    flex-direction: column;
    width: 100%;
    display: none;
    text-align: center;
    margin: 10px 0 0 0;
    gap: 15px;
  }

  .navbar-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


/* Logos side by side inside navbar-brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px; /* space between the two logos */
}

/* Logo images */
.navbar-brand img.logo {
  height: 50px; /* keep uniform height */
  width: auto;
  display: block;
}
/* ---------- Projects Section ---------- */
.projects {
  padding: 80px 20px;
}

.projects .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h5 {
  display: inline-block;
  padding: 5px 15px;
  border: 2px solid #007bff;
  border-radius: 30px;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title h1 {
  font-size: 36px;
  font-weight: 800;
  color: #333;
}

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  width: 100%;
  max-width: 1200px;
}

/* Project Cards */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.project-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: height 0.4s ease;
  border-radius: 0 0 15px 15px;
}

.project-card:hover .overlay {
  height: 40%;
}

.project-card .overlay h4 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}


/* Carousel Container */
.carousel-container {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* Track for sliding */
.carousel-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 100%;
  height: 100%;
}

/* Slide */
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  max-width: 800px;
}

.carousel-caption h4 {
  font-size: 22px;
  margin-bottom: 15px;
  animation: fadeInDown 1s;
}

.carousel-caption h1 {
  font-size: 50px;
  margin-bottom: 20px;
  animation: fadeInDown 1.5s;
}

.carousel-caption .btn-primary {
  background: #4CAF50;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-caption .btn-primary:hover {
  background: #388E3C;
}

/* Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}

.carousel-control.prev { left: 15px; }
.carousel-control.next { right: 15px; }

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.carousel-indicators .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  display: inline-block;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-indicators .dot.active {
  background: #4CAF50;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 28px;
  }
  .carousel-caption h4 {
    font-size: 16px;
  }
  .carousel-caption .btn-primary {
    padding: 8px 20px;
    font-size: 14px;
  }
}

/* About banner */
/* About Banner Exact Clone CSS */
.about-banner {
    position: relative;
    width: 100%;
    height: 320px; /* Half banner height */
    background: url(../img/blue.png) center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* Dark overlay for text */
}

.about-text {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.about-text h1 {
    margin: 0 0 10px 0;
    font-size: 36px;
}

.about-text .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.about-text .breadcrumb li a {
    color: #fff;
    text-decoration: none;
}

.about-text .breadcrumb li.active {
    color: #ccc;
}

@media(max-width:768px){
    .about-banner{
        height: 150px;
    }
    .about-text h1{
        font-size:24px;
    }
}


/* About Banner End */


/* About Section 1 start*/
.about-section {
  padding: 80px 20px;
  background: #fff;
  font-family: 'Open Sans', sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* Left Image Part */
.about-left {
  flex: 1 1 45%;
  position: relative;
}

.about-img {
  position: relative;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
}

.rotate-left,
.rotate-right {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #222;
  transform: rotate(45deg);
}

.rotate-left {
  top: -15px;
  left: -15px;
}

.rotate-right {
  bottom: -15px;
  right: -15px;
}

.experiences {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}

.experiences h1 {
  font-size: 60px;
  color: #222;
  margin: 0;
}

.experiences h6 {
  margin: 0;
  font-weight: 700;
  color: #444;
}

/* Right Content Part */
.about-right {
  flex: 1 1 50%;
}

.about-item .tag {
  display: inline-block;
  padding: 6px 15px;
  border: 2px solid #0d6efd;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.about-item h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  text-align: justify;
  margin-bottom: 30px;
}

/* Service Icons */
.about-services {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 15px;
  flex-wrap: wrap;
}

.service {
  text-align: center;
  flex: 1 1 22%;
}

.icon-box {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-box i {
  font-size: 40px;
  color: #0d6efd;
}

.service h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Button */
.btn-primary {
  display: inline-block;
  margin-top: 30px;
  background: #0d6efd;
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #084298;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }
  .about-left, .about-right {
    flex: 1 1 100%;
  }
}
/*About Section 1 End */


/* ===============================
   About 2 Section (Scoped)
   =============================== */
.about2-section {
  padding: 80px 20px;
  background: #fff;
}

.about2-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

/* Left collage */
.about2-left {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 200px 200px;
  gap: 15px;
}

.about2-left .img-box img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.about2-left .img-box img:hover {
  transform: scale(1.05);
}

.about2-experience {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #1e90ff, #7aa7ff);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.about2-experience h1 {
  font-size: 3rem;
  margin: 0;
}

/* Right content */
.about2-right {
  flex: 1 1 50%;
}
.about2-right .section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1e90ff;
  margin-bottom: 10px;
  display: inline-block;
}
.about2-right h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #222;
}
.about2-right p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* Features */
.about2-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}
.about2-feature-box {
  flex: 1 1 45%;
}
.about2-feature-box img {
  width: 48px;
  margin-bottom: 12px;
}
.about2-feature-box h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #222;
}
.about2-feature-box span {
  font-size: 0.95rem;
  color: #555;
}

/* Button */
.about2-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #1e90ff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.about2-btn:hover {
  background: #0d6efd;
}

/* Responsive */
@media (max-width: 991px) {
  .about2-container {
    flex-direction: column;
  }
  .about2-left {
    grid-template-rows: 180px 180px;
  }
}
/* About2 Title (section heading) */
.about2-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about2-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #1e90ff, #00c6ff);
  border-radius: 2px;
}



/* services start */
.services {
  padding: 80px 20px;
  background: #111827;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #fff;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #fd7c10;
  margin: 10px auto 0;
  border-radius: 2px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #1f2937;
  padding: 30px 20px;
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card .icon {
  font-size: 40px;
  color: #fd7c10;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d5db;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #fd7c10, #fbbf24);
  color: #111;
}

.service-card:hover .icon {
  color: #111;
}

.service-card:hover p {
  color: #111;
}



/* Section Styling */
.projects {
  background: #f8f9fa;
  padding: 80px 20px;
  font-family: "Nunito", sans-serif;
}

.projects .container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Heading ko center kare */
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h5 {
  display: inline-block;
  padding: 5px 15px;
  border: 2px solid #007bff;
  border-radius: 30px;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title h1 {
  font-size: 36px;
  font-weight: 800;
  color: #333;
}

/* Grid Layout */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  width: 100%;
  max-width: 1200px;
}

/* Card Styling */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 15px;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card:hover img {
  transform: scale(1.1);
}

/* Overlay Styling */
.project-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: height 0.4s ease;
  border-radius: 0 0 15px 15px;
}

.project-card:hover .overlay {
  height: 40%;
}

.project-card .overlay h4 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
	



.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff;  /* sirf heading ko white kar diya */
}


.services p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #CCCCCC;
  font-size: 16px;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
  height: 260px; /* thoda bada */
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 98, 255, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .overlay {
  opacity: 1;
}

/* Responsive */
@media(max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card img {
    height: 220px;
  }
}

@media(max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card img {
    height: 200px;
  }
}



/* Call To Action */
.cta-section {
  background: #26263b; 
  padding: 60px 20px;
  margin: 80px 0;
  color: #fff;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-image img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  padding: 10px;
  background: #fff;
}

.cta-content {
  max-width: 500px;
}

.cta-content h1 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #fff;
}

.cta-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: 30px;
  outline: none;
  font-size: 16px;
}

.cta-form button {
  background: #fdd835; /* Yellow accent */
  color: #000;
  padding: 14px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.cta-form button:hover {
  background: #fff;
  color: #0056b3;
}

 /* pricing start */

/* Pricing Section */
.pricing {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
  font-family: Arial, sans-serif;
}

.pricing-header h5 {
  display: inline-block;
  padding: 6px 18px;
  border: 2px solid #0d6efd;
  border-radius: 30px;
  font-size: 16px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.pricing-header h1 {
  font-size: 32px;
  font-weight: bold;
  max-width: 600px;
  margin: auto;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Titles */
.pricing-title {
  font-size: 22px;
  font-weight: bold;
  padding: 12px;
  border-radius: 8px 8px 0 0;
}

.pricing-title.basic { background: #0d6efd; color: #fff; }
.pricing-title.standard { background: #222; color: #0d6efd; }
.pricing-title.premium { background: #0d6efd; color: #fff; }

/* Price box */
.pricing-price {
  margin: 20px 0;
  padding: 20px;
  border-radius: 8px;
}

.pricing-price.basic { background: #0d6efd; color: #fff; }
.pricing-price.standard { background: #222; color: #0d6efd; }
.pricing-price.premium { background: #0d6efd; color: #fff; }

.pricing-price h2 {
  margin: 0;
  font-size: 34px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: normal;
}

.pricing-price p {
  margin-top: 8px;
  font-size: 15px;
}

/* Features */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-size: 15px;
  text-align: left;
}

.pricing-card ul li {
  margin: 8px 0;
}

/* Buttons */
.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s;
}

.basic-btn { background: #0d6efd; color: #fff; }
.standard-btn { background: #222; color: #0d6efd; }
.premium-btn { background: #0d6efd; color: #fff; }

.btn:hover {
  transform: scale(1.05);
}

/* Featured Card Highlight */
.featured {
  border: 2px solid #0d6efd;
  transform: scale(1.05);
}

/* Responsive */
@media(max-width: 900px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
}


/* Footer Start */

/* ========== FOOTER MAIN ========== */
#pestkit-footer {
  background: #222628;
  color: #ddd;
  padding: 60px 20px 0;
  font-size: 15px;
  line-height: 1.7;
}

#pestkit-footer h4 {
  color: #ddddd8;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

#pestkit-footer p {
  color: #bbb;
  margin-bottom: 12px;
}

#pestkit-footer a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}
#pestkit-footer a:hover {
  color: #3399CC;
}

/* ========== FOOTER GRID ========== */
.pk-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* ========== FOOTER LINKS ========== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links i {
  margin-right: 8px;
  color:#4caf50;
}

/* ========== FOOTER BOTTOM ========== */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer-bottom .logo-text {
  font-size: 26px;
  font-weight: 700;
  color: #4caf50;
  margin: 0;
}
.footer-bottom .logo-text span {
  color: #fff;
}
.footer-bottom .logo-text i {
  margin-left: 6px;
  color: #fdf001;
}

/* ========== SOCIAL ICONS ========== */
.footer-bottom .social {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin: 0 6px;
  border-radius: 50%;
  background: #fdf001;
  color: #000;
  text-align: center;
  line-height: 42px;
  font-size: 18px;
  transition: 0.3s;
}
.footer-bottom .social:hover {
  background: #fff;
  color: #000;
}

/* ========== DESIGNER CREDIT ========== */
.footer-bottom .designer {
  color: #fdf001;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.footer-bottom .designer:hover {
  color: #fff;
}

/* ========== RESPONSIVE FIX ========== */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}


/* Whatsapp Call Button Start */

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.whatsapp-button i {
  margin-right: 10px;
  font-size: 20px;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}

.whatsapp-icon, .call-icon {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    z-index: 1000; /* Ensure they appear above other elements */
}

.whatsapp-icon {
    margin-bottom: 80px; /* Space between WhatsApp and Call icons */
}

.whatsapp-icon img, .call-icon img {
    width: 60px; /* Adjust the size of the icons */
    height: 60px; /* Adjust the size of the icons */
    border-radius: 50%; /* Optional: make it circular */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Optional: add shadow */
    transition: transform 0.3s; /* Smooth hover effect */
}


/* ===============================
   Theme Variables
   =============================== */
:root {
  --primary: #0d6efd;
  --secondary: #f0f3f8;
  --secondary-strong: #23314a;
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --radius: 14px;
  --shadow-sm: 0 6px 18px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 10px 28px rgba(17, 24, 39, 0.12);
}

/* ===============================
   Global
   =============================== */
body {
  font-family: Arial, sans-serif;
  color: var(--text);
  margin: 0;
  padding: 0;
  background: #fff;
}
h1 { font-size: 2rem; margin-bottom: 1rem; }
p { color: var(--muted); margin-bottom: 1rem; }
img { max-width: 100%; display: block; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: var(--secondary-strong);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  transform: translateY(-2px);
  background: #162238;
  box-shadow: var(--shadow-md);
}

/* Section Title */
.section-title {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  border-left: 3px solid var(--primary);
  padding-left: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}






/* ===============================
   Features Section
   =============================== */
.features-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.features-left {
  flex: 1;
}

.features-left h1 {
  font-weight: 800;
}

.features-left p i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.features-right {
  flex: 1;
  text-align: center;
}

.features-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* ===============================
   Responsive (Mobile Fix)
   =============================== */
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;      /* Column layout on mobile */
    text-align: center;          /* Center text */
  }

  .features-left,
  .features-right {
    flex: unset;
    width: 100%;
  }

  .features-left h1 {
    font-size: 24px;
  }

  .features-left p {
    font-size: 16px;
  }
}



/* service 2 start */
/* Services 2 Section */
.services2-section {
  padding: 80px 20px;
  background-color: #ffffff; /* Iska BG alag rakha */
  text-align: center;
}

.services2-section .services2-header {
  margin-bottom: 50px;
}

.services2-section .section-title {
  font-size: 18px;
  font-weight: 600;
  color: #e67e22;  /* Orange shade for difference */
  text-transform: uppercase;
  margin-bottom: 10px;
}

.services2-section h1 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
}

.services2-section .services2-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.services2-section .service2-card {
  background: #fdfdfd;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 320px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services2-section .service2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.services2-section .service2-img img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 20px;
}

.services2-section .service2-icon img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.services2-section .service2-text h5 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.services2-section .service2-text p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.services2-section .btn-arrow {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s;
}

.services2-section .btn-arrow:hover {
  background: #ca6f1e;
}

/* Responsive */
@media (max-width: 768px) {
  .services2-section .services2-container {
    flex-direction: column;
    align-items: center;
  }
  .services2-section .service2-card {
    hieght:70px
	width: 100%;
    max-width: 400px;
  }
}


/*Contact Start */

.map-link {
  text-decoration: none;
  color: #000;
}

.map-link:hover {
  color: #007bff; 
}

.call-link {
  text-decoration: none;   
  color: #000;             
  font-weight: bold;      
}

.call-link:hover {
  color: #007bff;           
}
.mail-link {
  text-decoration: none;
  color: #000;
}

.mail-link:hover {
  color:#007bff; 
}
/*Contact End */


