/* Regent Pest Control - Main Stylesheet */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2e7d32;
  --primary-light: #60ad5e;
  --primary-dark: #005005;
  --secondary: #ff6d00;
  --secondary-light: #ff9e40;
  --secondary-dark: #c43c00;
  --text-dark: #212121;
  --text-light: #757575;
  --background: #f5f5f5;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f1f1f1;
  --gray: #e0e0e0;
  --success: #4caf50;
  --warning: #ff9800;
  --danger: #f44336;
  --info: #2196f3;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

[class*="col-"] {
  padding: 0 15px;
}

.col-1 { width: 8.33%; }
.col-2 { width: 16.66%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33%; }
.col-5 { width: 41.66%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33%; }
.col-8 { width: 66.66%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-12 { width: 100%; }

/* Header Styles */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.sticky {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.3s ease;
}

.sticky .header-inner {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 15px;
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu li a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

.nav-menu li a:hover {
  color: var(--primary);
  text-decoration: none;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* Submenu Styles */
.nav-menu li {
  position: relative;
}

.nav-menu li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-menu li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu li .submenu li {
  margin: 0;
  width: 100%;
}

.nav-menu li .submenu li a {
  display: block;
  padding: 8px 15px;
  color: var(--text-dark);
  font-weight: 400;
}

.nav-menu li .submenu li a:hover {
  background-color: rgba(46, 125, 50, 0.1);
}

.nav-menu li .submenu li a::after {
  display: none;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  background-color: var(--primary);
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 150px 0 100px;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* Services Section */
.services {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section-title.text-left {
  text-align: left;
}

.section-title.text-left h2::after {
  left: 0;
  transform: none;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  flex-grow: 1;
}

.read-more {
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.read-more i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--gray-light);
}

.about-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 20px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--white);
  font-size: 1.5rem;
}

.feature-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.feature-text p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--white);
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
}

.testimonial-card {
  background-color: var(--gray-light);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--primary-light);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
  margin-top: auto;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.author-info p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Hide testimonial controls on desktop - show all testimonials at once */
@media (min-width: 992px) {
  .testimonial-controls {
    display: none;
  }
  
  .testimonial-card {
    display: flex;
  }
}

/* Only show testimonial controls on mobile */
@media (max-width: 991px) {
  .testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  
  .testimonial-prev, 
  .testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .testimonial-prev:hover, 
  .testimonial-next:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
  }
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
}

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

.footer-links li a {
  color: var(--gray);
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--primary-light);
  padding-left: 5px;
  text-decoration: none;
}

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

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

.social-links {
  display: flex;
  list-style: none;
}

.social-links li {
  margin-right: 10px;
}

.social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links li a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Certifications */
.certifications {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.certification-logo {
  height: 60px;
  width: auto;
  margin: 0;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  object-fit: contain;
  max-width: 120px;
}

.certification-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Certification Cards */
.certification-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.certification-card .certification-logo {
  height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 0;
  filter: grayscale(0);
  opacity: 1;
}

.certification-card .certification-logo img {
  max-height: 80px;
  max-width: 80%;
  object-fit: contain;
}

.certification-content {
  padding: 20px;
  flex-grow: 1;
}

.certification-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Feature Icons */
.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-text {
  flex-grow: 1;
}

.feature-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.feature-text p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Choose Icons */
.choose-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.choose-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.choose-text {
  flex-grow: 1;
}

.choose-text h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.choose-text p {
  margin-bottom: 0;
}

/* Gallery */
.gallery {
  padding: 80px 0;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.gallery-filter button {
  background: none;
  border: none;
  padding: 8px 20px;
  margin: 0 5px 10px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.gallery-filter button.active,
.gallery-filter button:hover {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
}

.gallery-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 250px;
}

.gallery-item img {
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  padding: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  color: var(--white);
}

.gallery-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray);
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info {
  background-color: var(--primary);
  color: var(--white);
  padding: 30px;
  border-radius: 8px;
  height: 100%;
}

.contact-info h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: var(--white);
  opacity: 0.8;
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--white);
}

.contact-section .row {
  margin-bottom: 50px;
}

.invalid-feedback {
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 5px;
}

.is-invalid {
  border-color: #ff6b6b !important;
}

.is-valid {
  border-color: var(--success) !important;
}

.alert {
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.alert-success {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
  margin-top: 5px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

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

  .nav-menu li {
    margin: 15px 0;
    position: relative;
  }
  
  .nav-menu li .submenu {
    position: static;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 15px;
    margin-top: 10px;
  }
  
  .nav-menu li:hover .submenu {
    display: block;
  }
  
  .nav-menu li .submenu li {
    margin: 8px 0;
  }
  
  .nav-menu li .submenu li a {
    padding: 5px 10px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-12 {
    width: 100%;
  }
  
  .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .service-content p {
    flex-grow: 1;
  }
  
  .about-content, .about-img {
    margin-bottom: 30px;
  }
  
  .order-md-1 {
    order: 1;
  }
  
  .order-md-2 {
    order: 2;
  }
}

@media (max-width: 767px) {
  .header-inner {
    height: 70px;
  }

  .logo img {
    height: 40px;
  }

  .logo h1 {
    font-size: 1.2rem;
  }

  .nav-menu {
    top: 70px;
    width: 100%;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero h2 {
    font-size: 2rem;
  }

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

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-12 {
    width: 100%;
  }
  
  .certification-card .certification-logo {
    height: 140px;
    padding: 15px;
  }
  
  .certification-card .certification-logo img {
    max-height: 90px;
  }
  
  .feature-icon, .choose-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .choose-text h3, .feature-text h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 20px;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

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

  .col-xs-12 {
    width: 100%;
  }
  
  .service-img {
    height: 180px;
  }
  
  .feature-item, .choose-list li {
    margin-bottom: 20px;
  }
  
  .certification-card .certification-logo {
    height: 120px;
  }
  
  .certification-card .certification-logo img {
    max-height: 80px;
  }
  
  .certification-content {
    padding: 20px;
  }
  
  .certification-content h3 {
    font-size: 1.1rem;
  }
  
  .why-choose-us {
    padding: 80px 0 50px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

/* Page Banner */
.page-banner {
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
}

.page-banner h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-banner p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Services Overview */
.services-overview {
  padding: 80px 0 40px;
}

.services-nav {
  margin-top: 40px;
}

.services-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-nav ul li {
  margin: 0 10px 10px;
}

.services-nav ul li a {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--gray-light);
  border-radius: 30px;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services-nav ul li a:hover,
.services-nav ul li a.active {
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
}

/* Service Detail */
.service-detail {
  padding: 80px 0;
}

.service-detail:nth-child(odd) {
  background-color: var(--white);
}

.service-detail:nth-child(even) {
  background-color: var(--gray-light);
}

.service-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.service-features li i {
  color: var(--primary);
  margin-right: 10px;
  margin-top: 5px;
}

.commercial-types {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 30px;
}

.commercial-type {
  width: 25%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.commercial-type i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.commercial-type span {
  font-weight: 500;
}

.commercial-type:hover {
  transform: translateY(-5px);
}

@media (max-width: 767px) {
  .commercial-type {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .commercial-type {
    width: 100%;
  }
}

/* Team Section - Removed as requested */
/* No team section styles here */

/* Video Gallery */
.video-gallery {
  padding: 80px 0;
}

.video-item {
  margin-bottom: 30px;
}

.video-thumbnail {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 300px;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: rgba(46, 125, 50, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  background-color: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 20px 0;
}

.video-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.video-info p {
  color: var(--text-light);
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: -40px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* FAQ Accordion */
.faq-section {
  padding: 80px 0;
  background-color: var(--white);
}

.accordion {
  margin-top: 40px;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background-color: var(--white);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
  background-color: var(--primary-light);
  color: var(--white);
}

.accordion-header h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-header h3 {
  color: var(--white);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--white);
}

.accordion-content p {
  padding: 20px;
  margin: 0;
  border-top: 1px solid var(--gray);
}

/* About Company Section */
.about-company {
  padding: 80px 0;
}

.about-content {
  padding: 20px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-image {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Stats - Modern Layout */
.about-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}

.stat-item {
  flex: 1;
  min-width: 150px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.stat-text {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .about-stats {
    flex-direction: column;
  }
  
  .stat-item {
    width: 100%;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0 80px; /* Increased top padding for more space */
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px; /* Increased bottom margin */
  margin-top: 30px; /* Added top margin */
}

.gallery-filter button {
  background: none;
  border: none;
  padding: 10px 20px;
  margin: 0 5px 10px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.3s ease;
  border-radius: 30px;
}

.gallery-filter button.active,
.gallery-filter button:hover {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(46, 125, 50, 0.2);
}

.gallery-container {
  margin-top: 30px;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 80px 0;
  background-color: var(--gray-light);
}

.mission-card,
.vision-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.card-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.mission-card p,
.vision-card p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Our Values Section */
.our-values {
  padding: 80px 0;
}

.value-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.value-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(46, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background-color: var(--primary);
  color: var(--white);
}

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

.value-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Certifications Section */
.certifications-section {
  padding: 80px 0;
  background-color: var(--white);
}

.certification-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.certification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.certification-card .certification-logo {
  height: 180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  margin: 0 auto;
  filter: grayscale(0);
  opacity: 1;
  transition: all 0.3s ease;
  text-align: center;
}

.certification-card:hover .certification-logo {
  background-color: transparent;
}

.certification-card .certification-logo img {
  max-height: 120px;
  max-width: 90%;
  object-fit: contain;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: block;
}

.certification-card:hover .certification-logo img {
  transform: scale(1.05);
}

.certification-content {
  padding: 25px;
  flex-grow: 1;
  border-top: 1px solid var(--gray);
}

.certification-content h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.certification-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 120px 0 80px; /* Increased top padding for more space */
  background-color: var(--gray-light);
}

.choose-content {
  padding: 20px 0;
}

.choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.choose-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.choose-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.choose-text {
  flex-grow: 1;
}

.choose-text h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.choose-text p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Responsive Styles for Certification Cards */
@media (max-width: 991px) {
  .certification-card .certification-logo {
    height: 160px;
    padding: 20px;
  }
  
  .certification-card .certification-logo img {
    max-height: 100px;
  }
}

@media (max-width: 767px) {
  .certification-card .certification-logo {
    height: 140px;
    padding: 15px;
  }
  
  .certification-card .certification-logo img {
    max-height: 90px;
  }
}

@media (max-width: 575px) {
  .certification-card .certification-logo {
    height: 120px;
  }
  
  .certification-card .certification-logo img {
    max-height: 80px;
  }
  
  .certification-content {
    padding: 20px;
  }
  
  .certification-content h3 {
    font-size: 1.1rem;
  }
}

/* Language Popup Styles */
.language-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.5s ease-out;
}

.language-popup-content {
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  width: 90%;
  text-align: center;
  animation: popIn 0.5s ease-out;
}

.language-popup p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.language-popup-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.language-popup-buttons .btn {
  padding: 10px 20px;
  font-size: 1rem;
  min-width: 140px;
  font-weight: 500;
}

.language-popup-buttons .btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.language-popup-buttons .btn-outline:hover {
  background-color: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 575px) {
  .language-popup-content {
    width: 85%;
    padding: 20px;
  }
  
  .language-popup-buttons {
    flex-direction: column;
  }
  
  .language-popup-buttons .btn {
    width: 100%;
  }
} 