/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
}

.hero-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    color: white;
    z-index: 2;
}


.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    border: 2px solid #4CAF50;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.navbar {
  min-height: 120px;
}

.navbar-nav .nav-link {
  font-size: 1rem; 
  padding: 0.5rem 1rem;
}

.navbar-brand img {
  max-height: 100px;
  width: auto;
}


.content-section {
    padding: 80px 0;
    background-color: #ffffff;
}


.section-header {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    color: #333;
    position: relative;
}


.section-header2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #333;
  position: relative;
}

.section-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 2.5rem;
    color: #333;    
    margin-bottom: 20px;
    font-weight: 700;
}

.text-content .description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 35px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #3e8e41;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-wrapper {
    flex: 1;
}

.image-wrapper img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .text-content {
        order: 2;
        text-align: center;
    }
    
    .image-wrapper {
        order: 1;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
}





.services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #e0f7e9;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.1);
  }
  
  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .card-cta {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
  }


  
  .services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
  }
  
  .services-container {
    display: flex;
    gap: 40px;
    align-items: stretch; /* Equal height */
  }
  
  .image-column {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .services-column {
    flex: 1;
  }
  
  .service-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border-left: 4px solid #4CAF50;
  }
  
  .service-box:hover {
    transform: translateY(-3px);
  }
  
  .icon {
    font-size: 28px;
    margin-top: 5px;
  }
  
  /* Responsive: Stack on mobile */
  @media (max-width: 768px) {
    .services-container {
      flex-direction: column;
    }
    
    .image-column {
      height: 300px; /* Fixed height on mobile */
    }
    
    .service-box {
      border-left: 4px solid #4CAF50; /* Revert to left border on mobile */
      border-right: none;
    }
  }
  .hover-text-white:hover {
    color: white !important;
    transition: color 0.2s ease;
  }


  .image-text-section {
    padding: 60px 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .text-content {
    flex: 1;
  }
  
  .image-content {
    flex: 1;
  }
  
  .image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  
  @media (max-width: 768px) {
    .content-wrapper {
      flex-direction: column;
    }
    
    .image-content {
      order: -1;
    }
  }

  .display-4 { font-size: 2.5rem; }
  .display-6 { font-size: 2rem; }
  .card { border-radius: 10px; }
  .table td, .table th { vertical-align: middle; }

  .card {
    border-radius: 10px;
    border-width: 2px;
}
select.form-control, 
input.form-control,
textarea.form-control {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ced4da;
}
.form-label {
    margin-bottom: 0.5rem;
}



.section {
  margin-bottom: 50px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  font-weight: bold;
  color: #2980b9;
}

.last-updated {
  font-style: italic;
  color: #7f8c8d;
  margin-bottom: 20px;
}

