/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.container p{
  font-size: 1.2rem;
}

/* Header Section */
.site-header {
  height: 40px;
  width: 100%;
  background: black;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Menu Icon */
.menu-icon {
  font-size: 26px;
  cursor: pointer;
  color: white;
}

/* Language Selector */
.language-selector select {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  font-size: 14px;
  cursor: pointer;
}

.language-selector select:focus {
  outline: none;
  border-color: #ff6600;
}
/* Header Section End */
/* ===== Intro Section ===== */
.moto-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background-color: rgba(18,68,0,1);   /* <-- Change this for full bar color */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto;
  overflow: hidden;
}

/* Left + Right boxes */
.moto-left,
.moto-right {
  flex: 1;
  text-align: center;
  padding: 6px 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: bolder;
  border-radius: 20px;
  color: black;
  background-color: #ffc001;  /* individual bg color default */
}
/* Center animated text */
.moto-center {
  flex: 2;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #ffffff;
}
.moto-text {
  display: inline-block;
  font-size: 16px;
  animation: zoomText 1.5s ease-in-out infinite;
}
/* Zoom-in Zoom-out animation */
@keyframes zoomText {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.9;
    color: #ffc001;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .moto-bar {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .moto-left, .moto-right {
    font-size: 14px;
  }
  .moto-text {
    font-size: 15px;
  }
}
/* ===== Intro Section End ===== */
/* ===== 3 Image Section ===== */
.triple-image-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 40px 20px;
  flex-wrap: wrap;  /* ensures responsiveness */
  gap: 20px;
}

.img-box {
  flex: 1 1 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 350px; /* optional limit */
}

.img-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

video{
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
}

/* Slight zoom on hover for better look */
.img-box img:hover {
  transform: scale(1.05);
}

/* ===== Responsive Behavior ===== */

/* Tablets */
@media (max-width: 991px) {
  .img-box {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

/* Mobile view: hide middle image + stack vertically */
@media (max-width: 768px) {
  .middle-img {
    display: none;
  }
  .triple-image-section {
    flex-direction: column;
    gap: 16px;
    padding: 20px 12px;
  }
  .img-box {
    max-width: 90%;
  }
  .left-img {
    order: 1;
  }
  .right-img {
    order: 2;
  }
}
/* ===== 3 Image Section End ===== */
/* ===== Big Zoom Text Section ===== */
.big-zoom-section {
  width: 100%;
  height: auto;
  background-color: #ffc001;    /* change as needed */
  text-align: center;
  padding: 8px 5px;
  overflow: hidden;
}

.big-zoom-text {
  font-size: 20px;              /* make bigger */
  font-weight: 700;
  color: #111111;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto;
  display: inline-block;
  animation: bigZoom 1.5s ease-in-out infinite;
  transition: color 0.5s ease-in-out;
}

/* Zoom in/out + color change */
@keyframes bigZoom {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    color: #111111;             /* start color */
  }
  50% {
    transform: scale(1.35);     /* more intense zoom */
    opacity: 0.9;
    color: hsl(2, 97%, 49%);             /* zoom-in color */
  }
}
/* Responsive font size */
@media (max-width: 768px) {
  .big-zoom-text {
    font-size: 24px;
  }
}
/* ===== Big Zoom Text Section End ===== */
/* ===== Main Photo section ===== */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* TOP ROW → two photos */
.top-row {
  width: 100%;
  display: flex;
  gap: 15px;
  padding: 15px;
  justify-content: center;
  background-color: #074f28;
}

.top-row img {
  width: 100%;
  height: auto;
  object-fit: contain; /* ensures no cropping */
  max-width: 550px;  /* limiting size to avoid overflow */
  border-radius: 10px;
  border: 2px solid #ffffff;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.55);
}

.top-row img:hover{
  transform: scale(0.92);
  box-shadow: 0 12px 35px rgba(0,0,0,0.55);
}

/* BOTTOM ROW → single centered photo */
.bottom-row {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 15px;
    background-color: #074f28;
}

.bottom-row img {
  width: 80%; 
  max-width: 700px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid #ffffff;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.55);
}

.bottom-row img:hover{
  transform: scale(0.92);
  box-shadow: 0 12px 35px rgba(0,0,0,0.55);
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .top-row {
    flex-direction: column;
  }

  .top-row img,
  .bottom-row img {
    width: 100%;
    max-width: none;
  }

  .bottom-row img {
    width: 100%;
  }
}
.three-image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px; /* space between images */
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 10px 0;
  box-sizing: border-box;
}

.three-image-gallery img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

/* Mobile View */
@media (max-width: 768px) {
  .three-image-gallery {
    grid-template-columns: 1fr; /* one image per row */
    width: 95%;
  }
}
/* ===== Main Photo section End ===== */
.mission-section {
  background: #074f28;         /* Dark green (Pakistani flag-like tone) */
  color: white;
  width: 100%;
  margin: 40px auto;
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-sizing: border-box;
  border-radius: 6px;
}

/* Left Text */
.mission-left {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: right;
}

/* Center Line */
.mission-line {
  width: 2px;
  background: white;
  height: 100%;
  min-height: 120px;
}

/* Right Text */
.mission-right {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-section {
    flex-direction: column;
    text-align: center;
  }

  .mission-line {
    width: 80%;
    height: 2px;       /* turns into a horizontal line on mobile */
    min-height: unset;
  }

  .mission-left {
    font-size: 1.3rem;
  }

  .mission-right {
    font-size: 0.95rem;
  }
}
/* ===== Description section ===== */
.service-box {
  width: 90%;
  margin: 40px auto;
  display: flex;
  align-items: center;   
  gap: 25px;
}

.decor-heading {
    position: relative;
    display: inline-block;
    font-size: 36px;
    font-weight: 700;
}

.decor-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;       /* text se distance */
    width: 80px;         /* underline length */
    height: 3px;         /* thickness */
    background: #1c5f40; /* green color (same style) */
    border-radius: 2px;
}

/* Left Icon */
.service-icon{
  width: 100%;
  max-width: 600px;
  padding: 40px;
}

.service-icon img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

/* Right Content */
.service-content {
  flex: 1;
}

.service-content h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
}

.service-content p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Features List */
.service-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Feature Item */
.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

/* Icon Circle */
.feature-icon {
  width: 55px;
  height: 55px;
  background: #0a4e2a;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.3s ease;
}

/* Icon Style */
.feature-icon i {
  color: white;
  font-size: 24px;
}

/* Hover → Lift Up */
.feature-item:hover .feature-icon {
  transform: translateY(-6px);
}

.feature-item span {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Responsive */
@media(max-width: 768px) {
  .service-box {
    flex-direction: column;
    text-align: center;
  }

  .feature-item {
    justify-content: center;
  }
}
/* ===== Description section End ===== */
/* ===== What we offer section ===== */
.services2 .container h2{
  color: #ffffff;
}

.offer-heading {
  width: 90%;              /* leaves notebook-like side gaps */
  margin: 30px auto;       /* centers container with top/bottom spacing */
  box-sizing: border-box;
}

.offer-heading h2 {
  color: #000;             /* black text */
  font-size: 2.5rem;         /* adjust as needed */
  text-align: left;        /* starts from left side */
  font-weight: 600;
  margin: 0;
  font-family: 'Arial', sans-serif;
}
.services2 {
  background: #074f28;   /* light pinkish background */
  padding: 2.5rem 1rem;
  text-align: center;
}

.services2 h2 {
  font-size: 2rem;
  color: #333;
}

.services2 .grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.services2 .card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services2 .card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.services2 .card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #074f28;
}

.services2 .card p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 1rem;
}

.services2 .btn-row {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.services2 .btn {
  flex: 1;
  margin: 0 5px;
  padding: 0.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.services2 .btn span {
  text-decoration: underline; /* name underline */
  margin-left: 5px;
}

/* Call Button */
.services2 .call-btn {
  background: #ccc;
  color: Black;
}
.services2 .call-btn:hover {
  background: #074f28;
  color: #ffffff;
}

/* Chat Button */
.services2 .chat-btn {
  background: #ccc;
  color: black;
}
.services2 .chat-btn:hover {
  background: #074f28;
  color: #ffffff;
}

/* Responsive */
@media (min-width: 768px) {
  .services2 .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services2 .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Second Services Section End */
/* Footer Section */
footer {
  background: #074f28; /* light black background */
  color: #fff;
  padding: 3rem 1rem 1rem;
  margin-top: 2rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr; /* Mobile par 2 column ek line me */
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr; /* Chhoti screen par ek ek section niche niche */
  }
}

.footer-section h3 {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  position: relative; /* underline ke liye zaroori  */
  display: inline-block; /* taaki line sirf text ke neeche aaye */
}

.footer-section h3::after {
  content: "";
  display: block;
  width: 50%; /* sirf aadhi line (text ka approx aadha part) */
  height: 2px;
  background: #007bff; /* line ka color */
  margin-top: 4px;
}
.footer-section p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer; /* hand shape cursor */
}

.footer-section ul li a:hover {
  color: #007bff;
  text-decoration: underline;
}

.footer-section .btn {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background: #007bff; /* blue button */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.footer-section .btn:hover {
  background: #0056b3;
}

.social-icons a img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  filter: brightness(0) invert(1); /* icons ko white bana dega */
  transition: 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #ffffff;
  padding-top: 1rem;
  font-size: 0.9rem;
}

/* Smooth scrolling effect */
html {
  scroll-behavior: smooth;
}
/* Footer Section End */
.fixed-btn {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 99999;
}

.fixed-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* LEFT CALL BUTTON */
.call-btn {
    left: 20px;
    border: 3px solid red;
}

/* RIGHT WHATSAPP BUTTON */
.whatsapp-btn {
    right: 20px;
    border: 3px solid #25D366;
}