:root {
  --primary: #1a5276;
  --secondary: #2980b9;
  --accent: #f8c425;
  --light: #ecf0f1;
  --dark: #1e1e1e;
  --success: #27ae60;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: var(--dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  /* padding: 20px 0; */
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.admin-link {
  background-color: var(--success);
  padding: 8px 15px;
  border-radius: 5px;
  margin-left: 15px;
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: no-repeat center center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  padding-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #d35400;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent);
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services Section */
.services {
  background-color: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 15px;
}

/* Projects Section */
.swiper {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
}

.project-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}

.project-badge.ongoing {
  background-color: #f39c12;
}

.project-badge.completed {
  background-color: var(--success);
}

.project-date {
  color: #ccc;
  font-size: 14px;
  margin-top: 5px;
}

/* Gallery Section */
.gallery {
  background-color: var(--light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 30px;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.lightbox-content {
  display: block;
  margin: 60px auto;
  max-width: 90%;
  max-height: 80%;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.caption {
  color: white;
  text-align: center;
  padding: 10px 0;
  max-width: 80%;
  margin: 0 auto;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s;
  user-select: none;
}

.next {
  right: 0;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.9);
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form button {
  background-color: var(--accent);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #d35400;
}

/* Footer Styles */
footer {
  background-color: var(--dark);
  color: white;
  text-align: center;
  padding: 30px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 20px;
}

.footer-links li {
  margin: 0 15px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.social-links {
  margin-bottom: 20px;
}

.social-links a {
  color: white;
  font-size: 20px;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--accent);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--primary);
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    transition: left 0.3s;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .admin-link {
    margin-left: 0;
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .about-content {
    flex-direction: column;
  }

  .swiper {
    height: 300px;
  }

  .swiper-slide-content {
    padding: 10px;
  }
}

/* Modern 4-column Services Section */
.services-grid.four-column {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card.modern-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #eee;
}

.service-card.modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.service-card.modern-card .service-icon {
  font-size: 42px;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card.modern-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-card.modern-card .service-content {
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-card.modern-card .service-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 15px;
  border-radius: 4px;
  transition: all 0.3s;
  font-size: 14px;
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
}

.btn-outline i {
  font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .services-grid.four-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid.four-column {
    grid-template-columns: 1fr;
  }

  .service-card.modern-card {
    padding: 20px 20px;
  }
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 4px;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.btn-outline i {
  font-size: 12px;
  transition: transform 0.3s;
}

.btn-outline:hover i {
  transform: translateX(3px);
}
/* Services Section */
.services-grid.four-column {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card.modern-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card.modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card.modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.service-card.modern-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 42px;
  color: var(--accent);
  margin-bottom: 20px;
  transition: color 0.3s;
}

.service-card.modern-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--primary);
  transition: color 0.3s;
}

.service-content {
  margin-bottom: 10px;
  flex-grow: 1;
  text-align: left;
}

.bullet-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  line-height: 1.5;
}

.check-icon {
  color: var(--accent);
  margin-right: 10px;
  margin-top: 3px;
  font-size: 14px;
  flex-shrink: 0;
  transition: color 0.3s;
}

.service-content span {
  color: #666;
  font-size: 14px;
  transition: color 0.3s;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 4px;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.btn-outline i {
  font-size: 12px;
  transition: transform 0.3s;
}

/* Hover States */
.service-card.modern-card:hover h3,
.service-card.modern-card:hover .service-content span,
.service-card.modern-card:hover .service-icon,
.service-card.modern-card:hover .check-icon {
  color: white;
}

.service-card.modern-card:hover .btn-outline {
  border-color: white;
  color: white;
}

.service-card.modern-card:hover .btn-outline:hover {
  background: white;
  color: var(--primary);
}

.btn-outline:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid.four-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid.four-column {
    grid-template-columns: 1fr;
  }

  .service-card.modern-card {
    padding: 25px 20px;
  }
}
.related-services {
  margin-top: 60px;
}

.related-services .section-title h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary);
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.custom-service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.custom-service-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.custom-service-card .service-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.custom-service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.custom-service-card .service-content {
  text-align: left;
  margin-bottom: 20px;
}

.custom-service-card .bullet-point {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
}

.custom-service-card .check-icon {
  color: var(--accent);
  margin-right: 8px;
  font-size: 1rem;
}

.custom-service-card .btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 5px;
  border: 1px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  transition: 0.3s;
}

.custom-service-card .btn:hover {
  background-color: var(--primary);
  color: #fff;
}

@media (max-width: 992px) {
  .related-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .related-services-grid {
    grid-template-columns: 1fr;
  }
}
.custom-service-card .service-content {
  display: flex;
  flex-direction: column; /* <== forces vertical layout */
  gap: 8px;
}

.custom-service-card .bullet-point {
  display: flex;
  align-items: center;
}
.about {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.section-title h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.section-title h2 span {
  color: #f8c425;
}

.title-decoration {
  width: 80px;
  height: 4px;
  background: #f8c425;
  margin: 15px auto;
  border-radius: 2px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

.about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.03);
}

.btn.read-more {
  display: inline-block;
  padding: 12px 25px;
  background: #f8c425;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn.read-more:hover {
  background: #d35400;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.btn.read-more i {
  margin-left: 8px;
}

/* Full About Section */
.full-about {
  padding: 60px 0;
  background: white;
}

.about-section {
  margin-bottom: 60px;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  color: #333;
}

.section-header i {
  font-size: 2rem;
  margin-right: 15px;
  color: #f8c425;
}

.section-header h3 {
  font-size: 1.8rem;
  margin: 0;
}

/* Resources Section */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.resource-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.resource-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.resource-icon {
  width: 70px;
  height: 70px;
  background: #f8c425;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.resource-item h4 {
  margin: 15px 0;
  color: #333;
}

/* Experience Section */
.experience-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.experience-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.experience-list li {
  margin-bottom: 12px;
  color: #555;
  display: flex;
  align-items: flex-start;
}

.experience-list i {
  color: #f8c425;
  margin-right: 10px;
  margin-top: 3px;
}

.projects-gallery {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.project-thumbnail {
  height: 200px;
  flex: 1;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.project-thumbnail:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Commitments Section */
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.commitment-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  transition: all 0.3s;
}

.commitment-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.commitment-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: white;
}

.commitment-icon.safety {
  background: #3498db;
}

.commitment-icon.quality {
  background: #2ecc71;
}

.commitment-icon.responsiveness {
  background: #9b59b6;
}

.commitment-icon.partnership {
  background: #e74c3c;
}

.commitment-item h4 {
  margin: 15px 0;
  color: #333;
}

/* Ambitions Section */
.ambitions-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.vision-statement {
  background: #f9f9f9;
  padding: 30px;
  border-left: 4px solid #f8c425;
  border-radius: 0 8px 8px 0;
}

.vision-statement blockquote {
  margin: 0;
  position: relative;
}

.vision-statement blockquote p {
  font-size: 1.3rem;
  color: #333;
  font-style: italic;
  margin-bottom: 15px;
}

.vision-statement blockquote i.fa-quote-left {
  color: #f8c425;
  font-size: 2rem;
  position: absolute;
  left: -15px;
  top: -15px;
}

.vision-statement blockquote footer {
  color: #777;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .resources-grid,
  .commitments-grid {
    grid-template-columns: 1fr;
  }

  .projects-gallery {
    flex-direction: column;
  }
}
.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-pagination .page-link {
  display: inline-block;
  padding: 8px 16px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}

.gallery-pagination .page-link:hover {
  background: #f8c425;
  color: white;
  border-color: #f8c425;
}

.gallery-pagination .page-link.active {
  background: #f8c425;
  color: white;
  border-color: #f8c425;
  font-weight: bold;
}

.gallery-pagination .page-link i {
  margin: 0 5px;
}
.projects {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.section-title h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
}

.section-title h2 span {
  color: #f8c425;
}

.title-decoration {
  width: 80px;
  height: 4px;
  background: #f8c425;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

/* Projects Filter */
.projects-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  color: #555;
}

.filter-btn:hover,
.filter-btn.active {
  background: #f8c425;
  color: white;
  border-color: #f8c425;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.project-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  z-index: 2;
}

.project-badge.completed {
  background: #2ecc71;
}

.project-badge.ongoing {
  background: #3498db;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(230, 126, 34, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-details {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 30px;
  transition: all 0.3s;
}

.view-details:hover {
  background: white;
  color: #f8c425;
}

.view-details i {
  margin-left: 8px;
}

.project-info {
  padding: 20px;
}

.project-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #666;
}

.project-meta i {
  margin-right: 5px;
  color: #f8c425;
}

.project-card h3 {
  margin: 0 0 10px;
  color: #333;
  font-size: 1.3rem;
}

.project-description {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
}

.project-date {
  color: #666;
}

.project-date i {
  margin-right: 5px;
  color: #f8c425;
}

.project-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.category-tag {
  background: #f5f5f5;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 0.75rem;
  color: #555;
}

/* CTA Section */
.projects-cta {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}

.projects-cta p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #f8c425;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #d35400;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-image {
    height: 200px;
  }
}
/* Error and Success Messages */
.error-message {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
}

.input-error {
  border-color: #e74c3c !important;
}

.form-error-message,
.success-message {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  text-align: center;
}

.form-error-message {
  background-color: #fdecea;
  color: #e74c3c;
  border: 1px solid #e74c3c;
}

.success-message {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #2e7d32;
}

/* Loading state for button */
button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
.service-detail {
  padding: 80px 0;
}
.service-header {
  margin-bottom: 40px;
  text-align: center;
}
.service-header h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.service-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-content3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.service-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.service-image img {
  width: 100%;
  height: auto;
  display: block;
}
.service-description {
  line-height: 1.8;
}
.service-features {
  margin: 30px 0;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.feature-icon {
  color: var(--accent);
  margin-right: 15px;
  font-size: 1.2rem;
  margin-top: 3px;
}
.related-services {
  margin-top: 60px;
}
.related-services h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .service-content {
    grid-template-columns: 1fr;
  }
  .service-header h1 {
    font-size: 2rem;
  }
}
/* Loading Screen Styles */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.loader {
  text-align: center;
}

.loader-spinner {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

.loader-logo img {
  max-width: 100px;
  height: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Lazy loading styles */
img.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.lazy-load.loaded {
  opacity: 1;
}
.lazy-img {
  filter: blur(10px);
  transition: filter 0.5s ease;
}

.lazy-img:not([src="assets/images.jpg"]) {
  filter: blur(0);
}
/* Loading Spinner Styles */
#loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.spinner {
  width: 70px;
  height: 70px;
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.logo-loading {
  width: 150px;
  height: auto;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
