.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fd7e14;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 10px;
  font-size: 28px;
}

.mobile-nav-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 28px;
  color: #fd7e14;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1003;
}

.mobile-nav-toggle:hover {
  color: #fd7e14;
  transform: rotate(90deg);
}

.navmenu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: white;
  padding: 70px 20px 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  overflow-y: auto;
  transition: right 0.3s ease;
}

.navmenu.active {
  display: flex;
  right: 0;
}

.navmenu ul {
  flex-direction: column;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu li {
  width: 100%;
  border-bottom: 1px solid #eee;
  position: relative;
}

.navmenu a {
  color: #2c3e50;
  text-decoration: none;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: all 0.3s ease;
}

.navmenu a:hover {
  color: #fd7e14;
  background: #f8f9fa;
}

.navmenu .active {
  color: #fd7e14;
  background: #f8f9fa;
  font-weight: 600;
}

.dropdown>a {
  padding-right: 10px;
}

.toggle-dropdown {
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
}

.dropdown.active .toggle-dropdown {
  transform: rotate(0deg);
}

.dropdown ul {
  display: none;
  position: static;
  background: white;
  min-width: 200px;
  box-shadow: none;
  border-radius: 5px;
  z-index: 1000;
  flex-direction: column;
  padding: 10px 0;
  margin-left: 15px;
  width: calc(100% - 15px);
  animation: none;
}

.dropdown.active>ul {
  display: flex;
}

.dropdown .dropdown ul {
  left: 100%;
  top: 0;
}

.content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 800px;
  margin-top: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show navmenu and overlay for all screen sizes, toggled by JS */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  transition: opacity 0.3s ease;
}

.overlay.active {
  display: block;
}

/* For large screens, navmenu is hidden by default and toggled by button */
@media (min-width: 1123px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navmenu {
    display: none;
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 70px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    overflow-y: auto;
    transition: right 0.3s ease;
  }

  .navmenu.active {
    display: flex;
    right: 0;
  }

  .navmenu ul {
    flex-direction: column;
    width: 100%;
  }

  .navmenu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .navmenu a {
    padding: 18px 15px;
    width: 100%;
  }
}





 





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

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    position: relative;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
    padding: 0;
}

.about-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-content p.fst-italic {
    font-style: italic;
    color: #6c757d;
    border-left: 3px solid #fd7e14;
    padding-left: 15px;
    margin-bottom: 25px;
}

.about-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.about-content ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-content ul li i {
    font-size: 24px;
    color: #fd7e14;
    margin-right: 15px;
    margin-top: 5px;
}

.about-content ul li div h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.about-content ul li div p {
    color: #6c757d;
    margin-bottom: 0;
}

.about-content > p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Image gallery styling */
.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.image-container img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fd7e14;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .about-content {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
}









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

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    position: relative;
}

.service-content {
    padding-right: 20px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-content p.fst-italic {
    font-style: italic;
    color: #6c757d;
    border-left: 3px solid #fd7e14;
    padding-left: 15px;
    margin-bottom: 25px;
}

.service-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-content ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-content ul li i {
    font-size: 24px;
    color: #fd7e14;
    margin-right: 15px;
    margin-top: 5px;
}

.service-content ul li div h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.service-content ul li div p {
    color: #6c757d;
    margin-bottom: 0;
}

.service-content > p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Service Areas Styling */
.service-areas {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-areas h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.service-areas h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fd7e14;
}

.areas-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.area-item {
    background: white;
    padding: 12px 15px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.area-item i {
    color: #fd7e14;
    margin-right: 10px;
    font-size: 16px;
}

.area-item span {
    color: #2c3e50;
    font-weight: 500;
}

.coverage-note {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px dashed #dee2e6;
    color: #6c757d;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .service-content {
        padding-right: 0;
    }
    
    .areas-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .areas-container {
        grid-template-columns: 1fr;
    }
}






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

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    position: relative;
}

.services-content {
    padding-right: 20px;
}

.services-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-content p.fst-italic {
    font-style: italic;
    color: #6c757d;
    border-left: 3px solid #fd7e14;
    padding-left: 15px;
    margin-bottom: 25px;
}

.services-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.services-content ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.services-content ul li i {
    font-size: 24px;
    color: #fd7e14;
    margin-right: 15px;
    margin-top: 5px;
}

.services-content ul li div h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.services-content ul li div p {
    color: #6c757d;
    margin-bottom: 0;
}

.services-content > p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Services Grid Styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.service-icon {
    font-size: 40px;
    color: #fd7e14;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-card p {
    color: #6c757d;
    font-size: 14px;
}

/* Service Image Styling */
.service-image {
    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;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .services-content {
        padding-right: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}






/* Zigzag Layout Styling */
.service-additional-zigzag {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-additional-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.service-additional-item.reverse {
  flex-direction: row-reverse;
}

.service-additional-content {
  flex: 1;
}

.service-additional-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.service-additional-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #fd7e14;
}

.service-additional-content p {
  color: #6c757d;
  margin-bottom: 20px;
}

.service-additional-features {
  list-style: none;
  margin-bottom: 25px;
  padding: 0;
}

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

.service-additional-features li i {
  font-size: 20px;
  color: #fd7e14;
  margin-right: 15px;
  margin-top: 3px;
}

.service-additional-features li span {
  color: #2c3e50;
  font-weight: 500;
}

.service-additional-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-additional-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.service-additional-image:hover img {
  transform: scale(1.05);
}

.service-additional-cta {
  display: inline-block;
  background: #fd7e14;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-additional-cta:hover {
  background: #fd7e14;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {

  .service-additional-item,
  .service-additional-item.reverse {
    flex-direction: column;
  }

  .service-additional-content,
  .service-additional-image {
    width: 100%;
  }

  .service-additional-image {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .service-additional-item {
    gap: 25px;
  }
}









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

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
  position: relative;
}

/* Contact Info Styling */
.contact-info {
  padding-right: 30px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #fd7e14;
}

.contact-info p {
  color: #6c757d;
  margin-bottom: 30px;
}

.contact-details {
  list-style: none;
  margin-bottom: 40px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-details li i {
  font-size: 24px;
  color: #fd7e14;
  margin-right: 15px;
  margin-top: 3px;
}

.contact-details li div {
  color: #2c3e50;
}

.contact-details li div strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-details li div a {
  color: #fd7e14;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-details li div a:hover {
  color: #fd7e14;
  text-decoration: underline;
}

.business-hours {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
}

.business-hours h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.business-hours h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #fd7e14;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #2c3e50;
}

.hours-list li span:first-child {
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  background: #fd7e14;
  color: white;
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: #fd7e14;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Map Styling */
.map-container {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .contact-info {
    padding-right: 0;
  }

  .map-container iframe {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .contact-details li {
    flex-direction: column;
  }

  .contact-details li i {
    margin-bottom: 10px;
  }
}








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

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 30px;
}

/* Why Choose Us Cards */
.why-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid transparent;
}

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

.why-card:nth-child(1) .why-card {
    border-top-color: #e67e22;
}

.why-card:nth-child(2) .why-card {
    border-top-color: #e67e22;
}

.why-card:nth-child(3) .why-card {
    border-top-color: #e67e22;
}

.why-card:nth-child(4) .why-card {
    border-top-color: #e67e22;
}

.why-icon {
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 2.8rem;
    padding: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.why-card p {
    color: #6c757d;
    font-size: 16px;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 70px 0;
}

.stat-card {
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
}

.stat-card:nth-child(1) .stat-number {
    color: #e67e22;
}

.stat-card:nth-child(2) .stat-number {
    color: #27ae60;
}

.stat-card:nth-child(3) .stat-number {
    color: #2980b9;
}

.stat-card:nth-child(4) .stat-number {
    color: #f1c40f;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .col-lg-3, .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .why-card {
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
