body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("/static/images/hero.ea18ddbecdb6.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 0 5%;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 110%;
    }
}

.hero-content {
    max-width: 600px;
    padding-top: 140px;
    padding-left: 80px;
    position: relative;
    animation: fadeInUp 1s ease-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h5 {
    color: #4CAF50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation-delay: 0.3s;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
    animation-delay: 0.6s;
}

/* Button Container */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.discover-btn {
    background: #4CAF50;
    color: white;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    font-size: 15px;
    animation-delay: 0.9s;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.discover-btn:hover {
    background: #3e8e41;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.discover-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.discover-btn::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #4CAF50;
    transition: all 0.4s;
}

.discover-btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

.outline-btn {
    background: transparent;
    color: white;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
    flex-shrink: 0;
    animation-delay: 0.9s;
}

.outline-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.outline-btn:active {
    transform: translateY(-1px);
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero {
        height: 90vh;
        text-align: center;
        padding: 0 20px;
        animation: none;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 85vh;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .discover-btn,
    .outline-btn {
        padding: 12px 25px;
        width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        gap: 15px;
    }
}

/* Specialization Section */
.specialization {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.specialization-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.specialization-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.specialization-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.specialization-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.specialization-item:hover .specialization-icon {
    background: #4CAF50;
    color: white;
}

.specialization-icon i {
    font-size: 32px;
    color: #333;
    transition: all 0.3s ease;
}

.specialization-item:hover .specialization-icon i {
    color: white;
}

.specialization-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: all 0.3s ease;
}

.specialization-item:hover h3 {
    color: #4CAF50;
}

/* Featured Services Section */
.featured-services {
    padding: 100px 0;
    background-color: #fff;
}

.featured-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    font-size: 32px;
}

.service-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

/* About Us Section */
.about-us {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content {
    max-width: 500px;
}

.about-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #4CAF50;
    font-size: 20px;
    width: 30px;
}

.feature-item span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.explore-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background-color: #4CAF50;
    color: white;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 15px;
}

.explore-btn:hover {
    background-color: #3e8e41;
}

/* CONTACT US PAGE */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.submit-btn:hover {
    background: #3e8e41;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-block h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.info-block h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #4CAF50;
}

.info-block p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}
/* TEAM SECTION STYLES */
.team {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: #4CAF50;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 18px;
  color: #7f8c8d;
  font-weight: 500;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.team-member {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 25px;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.member-image {
  height: 250px;
  overflow: hidden;
  margin-bottom: 20px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
}

.member-name {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}
.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TESTIMONIALS SECTION STYLES */
.testimonials {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 40px;
}

.testimonial-image {
  flex: 0 0 300px;
}

.client-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content {
  flex: 1;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonials-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: 100%;
  z-index: 1;
}

.earth-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  opacity: 0.8;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: #4CAF50;
  font-weight: 500;
}

.testimonial-carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 10px;
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 14px;
  color: #7f8c8d;
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.carousel-prev,
.carousel-next {
  background: #4CAF50;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #3e8e41;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}

.dot.active {
  background: #4CAF50;
}
.testimonials {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    text-align: left;
    margin-bottom: 60px;
}

.testimonials-label {
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.testimonials-title {
    color: #1f2937;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 500px;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-image {
    position: relative;
}

.testimonial-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.testimonial-image img.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.testimonial-text {
    padding-left: 40px;
}

.testimonial-quote {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-quote.fade-out {
    opacity: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.author-avatar img.fade-out {
    opacity: 0;
}

.author-info h4 {
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    transition: opacity 0.5s ease-in-out;
}

.author-info h4.fade-out {
    opacity: 0;
}

.author-info p {
    color: #6b7280;
    font-size: 14px;
    transition: opacity 0.5s ease-in-out;
}

.author-info p.fade-out {
    opacity: 0;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 30px;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-rating.fade-out {
    opacity: 0;
}

.star {
    color: #fbbf24;
    font-size: 20px;
}

.testimonial-nav {
    display: flex;
    gap: 8px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background-color: #10b981;
    transform: scale(1.2);
}

.nav-dot:hover {
    background-color: #10b981;
    opacity: 0.7;
}



/* Responsive Design */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-container {
        padding: 0 16px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-text {
        padding-left: 0;
        order: 2;
    }

    .testimonial-image {
        order: 1;
    }

    .testimonial-quote {
        font-size: 16px;
    }

    .author-info h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 28px;
    }

    .testimonial-quote {
        font-size: 15px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .testimonials-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .testimonial-image {
    flex: 0 0 100%;
    max-width: 400px;
    margin: 0 auto 40px;
  }
  
  .testimonials-bg {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .testimonial-content {
    padding: 30px 20px;
  }
  
  .testimonials-bg {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
  }
  
  .carousel-controls {
    justify-content: center;
    gap: 20px;
  }
  
  .testimonials-bg {
    display: none;
  }
}
/* Responsive Styles */
@media (max-width: 768px) {
  .team {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .team-members {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .member-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .team {
    padding: 40px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .team-members {
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 992px) {
    .about-us-container,
    .contact-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 70px 0;
    }

    .about-us-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .info-block {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-form h3 {
        font-size: 22px;
    }

    .info-block h4 {
        font-size: 18px;
    }
}
