/* Global Styles */
:root {
  --primary-color: #28a745;
  --accent-color: #28a745;
  --secondary-color: #2196F3;
  --dark-color: #222;
  --light-color: #fff;
  --gray-bg: #f4f7f6;
  --footer-bg: #222;
}

body {
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 72px;
  color: #333;
  background: #f8f9fa;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('images/solar-bg.jpg') no-repeat center center/cover;
  min-height: 750px;
  display: flex;
  align-items: center;
}

/* Ensure hero children fill height for background image */
.hero,
.hero > .container,
.hero > .container > .row {
  height: 100%;
}

.hero .display-3 {
  font-size: 3.5rem;
  font-weight: 900;
  text-shadow: 0 4px 24px rgba(0,0,0,0.18);
  letter-spacing: 1px;
}

.hero .btn-success {
  box-shadow: 0 4px 24px rgba(40,167,69,0.18);
  font-size: 1.2rem;
  padding: 0.9rem 2.5rem;
  border-radius: 0.7rem;
  background: linear-gradient(90deg, #28a745 0%, #43e97b 100%);
  border: none;
  transition: box-shadow 0.2s, background 0.2s;
}

.hero .btn-success:hover {
  background: #155d27;
  box-shadow: 0 8px 32px rgba(40,167,69,0.22);
}

.hero .scroll-down {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  font-size: 2.2rem;
  color: #fff;
  opacity: 0.7;
  animation: bounce 1.6s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0);}
  50% { transform: translateX(-50%) translateY(12px);}
}

/* Animated Underline */
.animated-underline {
  width: 80px;
  height: 4px;
  background: #28a745;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.animated-underline::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  animation: underline-shine 3s infinite;
}

@keyframes underline-shine {
  0% { left: -40px; }
  50% { left: calc(100% + 40px); }
  100% { left: -40px; }
}

/* Carousel Styles */
.carousel {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.carousel-image-container {
  min-height: 400px;
  background: #fff;
}

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

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(40, 167, 69, 0.3);
  border: none;
  margin: 0 5px;
}

.carousel-indicators button.active {
  background-color: #28a745;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #28a745;
  border-radius: 50%;
  padding: 1rem;
}

/* Service Features */
.service-features {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* About Section */
.bg-light {
  background-color: #fff !important;
}

/* Projects Section */
#projects {
  background: #f4f7f6;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
#projects .lead, #projects .section-title + .lead {
  color: #181c1f;
  font-weight: 600;
}
.project-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(40, 167, 69, 0.10);
  border: 2.5px solid #e6f4ea;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  background: #fff;
}
.project-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(40, 167, 69, 0.18);
  border-color: var(--primary-color);
}
.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  transition: filter 0.3s, transform 0.3s;
}
.project-card:hover img {
  filter: brightness(0.92) saturate(1.1);
  transform: scale(1.04);
}
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(40, 167, 69, 0.92) 0%, rgba(40, 167, 69, 0.18) 100%);
  color: #fff;
  padding: 2.2rem 1.5rem 1.2rem 1.5rem;
  border-radius: 0 0 18px 18px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: left;
}
.project-card:hover .project-overlay {
  transform: translateY(0);
}
.project-overlay h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: #fff;
  letter-spacing: 0.5px;
}
.project-overlay p {
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  color: #e6f4ea;
}
.project-overlay .btn {
  font-size: 0.98rem;
  font-weight: 700;
  padding: 0.45rem 1.3rem;
  border-radius: 0.5rem;
  background: var(--primary-color);
  color: #fff;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.project-overlay .btn:hover {
  background: #155d27;
  color: #fff;
}
@media (max-width: 992px) {
  .project-card img {
    height: 180px;
  }
  .project-overlay {
    padding: 1.2rem 1rem 0.8rem 1rem;
  }
}
@media (max-width: 768px) {
  #projects {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }
  .project-card {
    border-radius: 12px;
  }
  .project-card img {
    border-radius: 12px 12px 0 0;
    height: 120px;
  }
  .project-overlay {
    border-radius: 0 0 12px 12px;
    padding: 0.8rem 0.7rem 0.5rem 0.7rem;
  }
}

/* Clients Section Styles */
.clients-section {
  padding: 4.5rem 0;
}

.clients-section .section-title {
  color: var(--primary-color) !important;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.clients-section .section-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.clients-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.clients-container .client-logo,
.clients-container.marquee .client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 75px;
  margin: 0 2rem 2rem 0;
}

.clients-container .client-logo img,
.clients-container.marquee .client-logo img {
  max-height: 90px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 16px;
  transition: transform 0.2s;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
  color: #333;
}

.nav-btn:hover {
  background: #f1f1f1;
}

.nav-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.prev-btn {
  left: -20px;
}

.next-btn {
  right: -20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .clients-container .client-logo,
  .clients-container.marquee .client-logo {
    width: 110px;
    height: 55px;
  }
  .clients-container .client-logo img,
  .clients-container.marquee .client-logo img {
    max-height: 40px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 3rem 0;
  }
  .clients-container .client-logo,
  .clients-container.marquee .client-logo {
    width: 80px;
    height: 36px;
  }
  .clients-container .client-logo img,
  .clients-container.marquee .client-logo img {
    max-height: 24px;
  }
}

@media (max-width: 576px) {
  .clients-section {
    padding: 2rem 0;
  }
  .clients-container .client-logo,
  .clients-container.marquee .client-logo {
    width: 80px;
    height: 40px;
  }
  .clients-container .client-logo img,
  .clients-container.marquee .client-logo img {
    max-height: 28px;
  }
}

@media (max-width: 480px) {
  .clients-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Facts Section Styles - Updated for Website Theme */
.facts-section {
  padding: 2.5rem 0;
  background-color: #f4f7f6;
  color: #222;
  text-align: center;
}
.facts-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px;
}
.facts-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}
.fact-card {
  padding: 1.1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(40, 167, 69, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1.5px solid #e6f4ea;
}
.fact-card:hover {
  box-shadow: 0 8px 24px rgba(40, 167, 69, 0.15);
  transform: translateY(-6px) scale(1.04);
}
.fact-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
  font-family: 'Segoe UI', 'Arial', sans-serif;
}
.fact-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
}
@media (max-width: 768px) {
  .facts-section {
    padding: 1.2rem 0;
  }
  .facts-title {
    font-size: 1.2rem;
  }
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
  .fact-number {
    font-size: 1.2rem;
  }
  .fact-title {
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }
  .facts-section {
    padding: 0.7rem 0;
  }
}

/* Leadership Messages Section */
.leadership-section {
  padding: 5rem 0;
  background-color: #f4f7f6;
}

.leadership-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f1c40f;
  margin: 1rem auto 0;
}

.messages-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.message-card {
  display: flex;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.leader-image {
  flex: 0 0 300px;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.message-card:hover .leader-image img {
  transform: scale(1.05);
}

.message-content {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.leader-name {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.leader-position {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 1rem;
}

.leader-position::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #f1c40f;
}

.message-text {
  margin-top: 1rem;
}

.message-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #34495e;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .leader-image {
      flex: 0 0 250px;
  }
  
  .message-content {
      padding: 2rem;
  }
}

@media (max-width: 768px) {
  .message-card {
      flex-direction: column;
  }
  
  .leader-image {
      flex: 0 0 300px;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .leader-name {
      font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .leadership-section {
      padding: 3rem 0;
  }
  
  .leader-image {
      flex: 0 0 200px;
}

  .message-content {
      padding: 1.5rem;
  }
  
  .section-title {
      font-size: 1.75rem;
      margin-bottom: 2rem;
  }
}


/* Values Section */
.values-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.values-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #f1c40f;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-color: #f1c40f;
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: #f1c40f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.value-description {
  color: #7f8c8d;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .values-section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .value-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .value-icon {
  width: 60px;
  height: 60px;
  }
  
  .value-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .value-title {
    font-size: 1.3rem;
  }
  
  .value-description {
    font-size: 1rem;
  }
}



/* Enhanced Testimonials Section */
#testimonials {
  background: #f4f7f6;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
#testimonials .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0.7rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.2px;
}
#testimonials .container {
  max-width: 1000px;
  padding-left: 0;
  padding-right: 0;
}
#testimonials .row {
  gap: 0;
}
#testimonials .testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(40, 167, 69, 0.13);
  border-left: 6px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  margin-bottom: 2.2rem;
  padding: 2.2rem 2.2rem 1.5rem 3.5rem;
  animation: fadeInUp 0.8s ease both;
}
#testimonials .testimonial-card::before {
  content: '\201C';
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  font-size: 4.5rem;
  color: var(--primary-color);
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
.testimonial-text {
  color: #181c1f;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 1.12rem;
  margin-bottom: 1.2rem;
  padding: 0;
  min-height: 0;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1.5px solid #e6f4ea;
  background: #f8f9fa;
  border-radius: 0 0 12px 12px;
  z-index: 1;
}
.testimonial-author h5 {
  color: #181c1f;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 1.12rem;
}
.testimonial-author p {
  color: #333;
  font-weight: 600;
  font-size: 1.01rem;
  margin-bottom: 0;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@media (max-width: 768px) {
  #testimonials .testimonial-card {
    padding: 1.1rem 0.7rem 1rem 1.7rem;
    border-radius: 12px;
  }
  #testimonials .testimonial-card::before {
    font-size: 2.5rem;
    left: 0.5rem;
    top: 0.5rem;
  }
  .testimonial-author {
    padding-top: 0.7rem;
    border-radius: 0 0 8px 8px;
  }
}

/* Enhanced Contact Section */
#contact {
  background: #f8f9fa;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(40, 167, 69, 0.08);
  padding: 2.5rem 1.5rem;
  margin-top: 2rem;
}
#contact .section-title {
  color: var(--primary-color);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
#contact .contact-info {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(40, 167, 69, 0.07);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 2rem;
}
#contact .contact-form {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(40, 167, 69, 0.07);
  padding: 2rem 1.5rem;
}
#contact .form-control {
  border-radius: 0.5rem;
  border: 1.5px solid #e6f4ea;
  padding: 14px;
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
  background: #f8f9fa;
  transition: border-color 0.2s;
}
#contact .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.08);
  background: #fff;
}
#contact .btn-success {
  background: linear-gradient(90deg, #28a745 0%, #218838 100%);
  box-shadow: 0 4px 16px rgba(40,167,69,0.12);
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 2.5rem;
  letter-spacing: 0.5px;
  transition: box-shadow 0.3s, transform 0.3s;
}
#contact .btn-success:hover {
  box-shadow: 0 8px 32px rgba(40,167,69,0.18);
  transform: translateY(-2px) scale(1.04);
}
#contact .social-links a {
  font-size: 1.4rem;
  margin-right: 1.2rem;
  color: var(--primary-color);
  background: #e6f4ea;
  border-radius: 50%;
  padding: 0.5rem 0.7rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
#contact .social-links a:hover {
  background: var(--primary-color);
  color: #fff !important;
  transform: scale(1.12);
}
@media (max-width: 768px) {
  #contact {
    padding: 1.5rem 0.5rem;
  }
  #contact .contact-info, #contact .contact-form {
    padding: 1rem 0.7rem;
  }
}

/* Contact Section */
.contact-form .form-control {
  border-radius: 0;
  border: 1px solid #ddd;
  padding: 12px;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.social-links a {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

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

/* Footer */
footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-color) !important;
}

/* Modal Styles */
.modal-content {
  border-radius: 12px;
  overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .carousel-image-container {
    min-height: 300px;
  }
  
  .carousel-item .row {
    flex-direction: column;
  }
  
  .carousel-item .col-md-6 {
    width: 100%;
  }
  
  .carousel-item img {
    min-height: 250px;
  }
}

/* About Section Enhancements */
#about {
  background: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#about .row {
  /* Remove custom flex and direction so Bootstrap grid works */
  /* display: flex; */
  /* align-items: flex-start; */
  /* justify-content: flex-start; */
  /* gap: 0.5rem; */
}
#about img {
  display: block;
  margin: 0;
  width: 100%;
  max-width: 600px;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(40, 167, 69, 0.08);
  border: 4px solid var(--primary-color);
  transition: border-color 0.4s, transform 0.4s;
}
#about img:hover {
  border-color: #6ee7b7;
  transform: scale(1.04);
}
#about .section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.1rem;
  position: relative;
  display: inline-block;
}
#about .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
  margin-top: 0.5rem;
  margin-left: 0;
}
#about .lead {
  font-size: 1.18rem;
  color: #263238;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
#about p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.1rem;
}
@media (max-width: 992px) {
  #about .row {
    flex-direction: column;
    gap: 1.2rem;
  }
  #about img {
    margin-left: auto;
    margin-right: auto;
    height: 340px;
    max-width: 500px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  #about .section-title {
    font-size: 1.5rem;
  }
  #about img {
    height: 220px;
    max-width: 340px;
    border-radius: 10px;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Modern Button Styles */
.btn, .btn-success, .btn-outline-light {
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.btn-outline-light {
  background: var(--light-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn:hover, .btn-success:hover, .btn-outline-light:hover {
  box-shadow: 0 8px 32px rgba(40,167,69,0.18);
  transform: translateY(-2px) scale(1.04);
}

/* Card Hover Effects */
.project-card, .testimonial-card, .fact-card {
  transition: box-shadow 0.3s cubic-bezier(.4,0,.2,1), transform 0.3s cubic-bezier(.4,0,.2,1);
}
.project-card:hover, .testimonial-card:hover, .fact-card:hover {
  box-shadow: 0 12px 32px rgba(40, 167, 69, 0.18);
  transform: translateY(-8px) scale(1.03);
}

/* Section Padding for Openness */
section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--gray-bg);
}
section:nth-of-type(even) {
  background: #f4f7f6;
}
.section-divider {
  display: block;
  width: 100%;
  height: 32px;
  background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 1440 60" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H1440V60C960 40 480 40 0 60V0Z" fill="%23e6f4ea"/></svg>') no-repeat center/cover;
  border: none;
  margin: 0;
  padding: 0;
}

.section-divider svg {
  width: 100%;
  height: 32px;
  display: block;
}

/* Modern Card Styles */
.project-card, .testimonial-card, .fact-card, .client-logo {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: var(--light-color);
  transition: all 0.3s ease;
}
.project-card:hover, .testimonial-card:hover, .fact-card:hover, .client-logo:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

/* AOS Animations */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos].aos-animate {
  opacity: 1;
}

/* Footer Gradient & Social Icons */
footer {
  background: linear-gradient(90deg, #222 0%, #155d27 100%);
  color: #fff;
  box-shadow: 0 -2px 16px rgba(40,167,69,0.07);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
footer a, .social-links a {
  color: var(--light-color);
  opacity: 0.85;
  transition: color 0.3s, opacity 0.3s;
}
footer a:hover, .social-links a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
}
.social-links a {
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: color 0.3s, transform 0.3s;
}
.social-links a:hover {
  color: var(--primary-color) !important;
  transform: none;
}

/* Premium Spacing */
.container {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Marquee/Auto-scroll for client logos */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 0;
  margin: 0;
}
.clients-container.marquee {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  animation: marquee 18s linear infinite;
  will-change: transform;
}
.marquee {
  animation: marquee 18s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.clients-container.marquee .client-logo {
  flex: 0 0 auto;
}

/* Section Titles: green for headings, yellow for highlights */
.section-title, .facts-title {
  color: var(--primary-color);
}
section:nth-of-type(3) .section-title,
section:nth-of-type(5) .section-title {
  color: var(--secondary-color);
}
section:nth-of-type(4) .section-title {
  color: var(--accent-color);
}

/* Alternate button styles */
.btn-accent {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.btn-accent:hover {
  background: #1769aa;
  box-shadow: 0 8px 32px rgba(33,150,243,0.18);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: var(--accent-color);
  color: #222;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.btn-secondary:hover {
  background: #FFC400;
  color: #222;
  box-shadow: 0 8px 32px rgba(255,214,0,0.18);
  transform: translateY(-2px) scale(1.04);
}

/* Card hover with accent shadow */
.project-card:hover, .testimonial-card:hover, .fact-card:hover, .client-logo:hover {
  box-shadow: 0 15px 30px rgba(40, 167, 69, 0.12), 0 8px 32px rgba(40, 167, 69, 0.10);
  border-color: var(--primary-color);
}

/* Icon color accents */
.facts-section .fact-card .fact-number {
  color: var(--primary-color);
}
.service-features li:before {
  color: var(--primary-color);
}
.contact-info i, .social-links a {
  color: var(--primary-color) !important;
}

/* SVG divider gradient */
.section-divider svg path {
  fill: var(--gray-bg);
}
.section-divider svg defs {
  display: block;
}

/* Add gradient definition to SVGs in HTML: 
<defs><linearGradient id="divider-gradient" x1="0" y1="0" x2="1" y2="0">
  <stop offset="0%" stop-color="#f8fafc"/>
  <stop offset="100%" stop-color="#FFD600"/>
</linearGradient></defs>
*/

/* Enhanced Navbar Styles */
.navbar {
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(40, 167, 69, 0.08), 0 1.5px 0 #e6f4ea;
  border-radius: 0 0 18px 18px;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  transition: box-shadow 0.3s, background 0.3s;
}
.navbar .navbar-brand {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: var(--primary-color) !important;
}
.navbar-nav .nav-link {
  color: #222 !important;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.6rem 1.1rem;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:focus {
  color: var(--primary-color) !important;
  border-bottom: 2.5px solid var(--primary-color);
  background: none;
}
.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  border-bottom: 2.5px solid var(--primary-color);
  background: none;
}
.navbar-toggler {
  border: none;
  box-shadow: none;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 2px var(--primary-color);
}
@media (max-width: 992px) {
  .navbar {
    border-radius: 0 0 10px 10px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .navbar-nav .nav-link {
    padding: 0.7rem 1.2rem;
    font-size: 1.1rem;
  }
}

.about-img-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.about-text-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.about-text-inner {
  padding-left: 1.5rem;
  border-left: 3px solid #e6f4ea;
  width: 100%;
}
@media (max-width: 992px) {
  .about-img-col {
    justify-content: center;
    align-items: flex-start;
    height: auto;
  }
  #about img {
    margin-left: auto;
    margin-right: auto;
    height: 180px;
    max-width: 90vw;
    margin-bottom: 1rem;
  }
}

#services {
  background: linear-gradient(135deg, #f4f7f6 0%, #e6f4ea 100%);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.1rem;
  position: relative;
  display: inline-block;
}
.section-subtitle {
  font-size: 1.18rem;
  color: #263238;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.service-card {
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(40,167,69,0.10);
  border: 2.5px solid #e6f4ea;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 370px;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(40,167,69,0.18);
  border-color: var(--primary-color);
}
.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem auto;
  background: linear-gradient(135deg, #28a745 0%, #43e97b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(40,167,69,0.10);
}
.service-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #198754;
  margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 1.05rem;
  color: #263238;
  margin-bottom: 1.2rem;
}
.service-card .btn {
  font-size: 1.08rem;
  font-weight: 700;
  padding: 0.6rem 2.2rem;
  border-radius: 0.5rem;
  background: var(--primary-color);
  color: #fff;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(40,167,69,0.10);
}
.service-card .btn:hover {
  background: #155d27;
  color: #fff;
  box-shadow: 0 6px 18px rgba(40,167,69,0.13);
}
@media (max-width: 992px) {
  .service-card {
    min-height: 320px;
    border-radius: 12px;
  }
  .value-icon {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  #services {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }
  .service-card {
    min-height: 220px;
    border-radius: 10px;
    padding: 1.2rem 0.7rem;
  }
  .value-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Typography Enhancement */
h1, h2, h3, h4, h5, h6, .section-title, .facts-title {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.fact-card {
  transition: box-shadow 0.3s, transform 0.3s;
  will-change: transform, box-shadow;
}
.fact-card:hover {
  box-shadow: 0 12px 32px 0 #43e97b55, 0 0 24px 4px #28a74533;
  transform: scale(1.06) perspective(600px) rotateY(8deg);
}
.fact-number.animated-pulse {
  animation: pulse 0.7s cubic-bezier(.4,0,.2,1);
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}