/* Base Styles */
:root {
  --primary: #0a5c36;
  --secondary: #f8f1e7;
  --accent: #d4af37;
  --text: #333;
  --light: #fff;
  --dark: #222;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: var(--secondary);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: #222 !important;
  color: var(--light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.header-single-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo-container {
  flex-shrink: 0;
}

.logo-english {
  height: 50px;
  width: auto;
}

.header-contacts {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--accent);
}

/* Navigation Styles */
nav {
  flex-grow: 1;
}

.navbar-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
  padding: 8px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.nav-menu li a:hover {
  color: var(--accent);
}

.english,
.urdu {
  display: block;
  line-height: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  position: relative;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--light);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .header-contacts {
    display: none;
  }

  .nav-menu {
    gap: 10px;
  }

  .nav-menu li a {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .header-single-line {
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo-container {
    order: 1;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 3;
  }

  nav {
    order: 4;
    width: 100%;
    display: none;
  }

  nav.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    gap: 5px;
    padding-top: 10px;
  }

  .nav-menu li a {
    padding: 8px 0;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
  }

  .english,
  .urdu {
    display: inline;
  }
}

@media (max-width: 576px) {
  .logo-english {
    height: 40px;
  }

  .header-single-line {
    gap: 5px;
  }
}
/* Hero Section */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/about.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

/* Button Styles */
.btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn:hover {
  background-color: transparent;
  color: var(--accent);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary);
  font-size: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent);
  margin: 15px auto;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.urdu-text {
  margin-top: 15px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card.arabic {
  direction: rtl;
}

/* Notification Section */
.notification-section {
  background-color: var(--light);
  padding: 60px 0;
}

.notification-card {
  background-color: var(--primary);
  color: var(--light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.notification-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.notification-content {
  margin-top: 20px;
}

.notification-content p {
  margin-bottom: 10px;
}

/* Gallery Section */
/* .gallery-section {
  background-color: var(--light);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */

/* Gallery Section Styles */
.gallery-section {
  padding: 60px 0;
  background-color: var(--light);
}

.gallery-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

.carousel-slide {
  display: none;
  width: 100%;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  display: block;
}

.grid-2x1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Carousel Controls */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: var(--primary);
  color: white;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s;
}

.indicator.active {
  background-color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .grid-2x1 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item {
    aspect-ratio: 16/9;
  }

  .carousel-prev,
  .carousel-next {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Contact Section */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contact-card {
  background-color: var(--light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.contact-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-form {
  background-color: var(--light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

/* Map Section */
.map-section {
  padding: 60px 0;
  background-color: var(--secondary);
}

.map-section h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background-color: #000;
  color: var(--light);
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 350px !important;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--accent);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s;
  text-decoration: none; /* add this line to remove underline */
}

.social-icons a:hover {
  background-color: var(--accent);
  color: var(--primary);
  transform: translateY(-5px);
}
.notification-image {
  width: 250px !important;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}
.copyright {
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  text-decoration: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 100px);
    background-color: var(--light);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }

  .nav-menu li a {
    padding: 12px 20px;
    width: 100%;
  }

  .hero {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 20px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 1.8rem;
  }

  .hero {
    height: 50vh;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .service-card {
    padding: 20px;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  margin-bottom: 15px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}

.lightbox-caption {
  color: white;
  text-align: center;
  max-width: 80%;
}

/* Navigation arrows for lightbox */
.lightbox-nav {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  box-sizing: border-box;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  padding: 15px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}
