:root {
  /* --dark: #041E51; */
  --dark: #001b4c;
  --green: #3cb043;
  --muted: #f5f7fa;
  --white: #fff;
  --maxW: 1200px;
  font-family: "Open Sans", sans-serif;
}

* {
  box-sizing: border-box;
}
body {
  /* font-family: "Montserrat", sans-serif; */
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: #222;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: var(--maxW);
  margin: 0 auto;
  /* padding: 2rem; */
}

/* HEADER */
.site-header {
  background: var(--dark);
  color: var(--white);
  /* padding: 0.8rem 0; */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.brand .logo {
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease-in-out;
  margin: 0%;
  padding: 0%;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: block;
  font-size: 20px;
  padding: 20px;
}

.site-nav a:hover{
  background-color: var(--white) !important;
  color: var(--dark) !important;
  text-decoration: none;
  font-weight: 600;
  display: block;
  font-size: 20px;
  padding: 20px;
}

.site-nav a.active{
  background-color: var(--white) !important;
  color: var(--dark) !important;
  text-decoration: none;
  font-weight: 600;
  display: block;
  font-size: 20px;
  padding: 20px;
}

/* .site-nav .cta {
  background: #3CB043;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
} */

/* Hamburger menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Slide background images */
/* .slide-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-dar-es-salaam.jpg');
}

.slide-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/slide2.avif');
}

.slide-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/slide3.avif');
}

.slide-4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/slide4.avif');
}
         */
.hero-inner {
    max-width: 900px;
    padding: 0 20px;
    
    z-index: 1;
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #45a049, #4CAF50);
}

.slanted {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-3deg);
    transform-origin: bottom left;
    z-index: 1;
}

.slanted-bottom {
    height: 150px;
}

.slide-indicators {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 2;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.3);
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Partners Section */
.partners {
    padding: 70px 20px;
    background: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.partners-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 1.8rem;
    font-weight: 600;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.partner-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 20px;
    min-height: 80px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logos img {
    height: 50px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.partner-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.partners-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(76, 175, 80, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-nav:hover {
    background: rgba(76, 175, 80, 1);
    transform: translateY(-50%) scale(1.1);
}

.partners-prev {
    left: 10px;
}

.partners-next {
    right: 10px;
}

.partners-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.partner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-indicator.active {
    background-color: #4CAF50;
    transform: scale(1.2);
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

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

.service-icon {
    background: linear-gradient(135deg, #4CAF50, #2c3e50);
    color: white;
    padding: 30px;
    text-align: center;
    font-size: 2.5rem;
}

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

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    display: flex;
    align-items: center;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 0.9rem;
}

.service-link {
    display: inline-block;
    color: #4CAF50;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-link:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.about-section {
    padding: 100px 20px;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #4CAF50, #2c3e50);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

/* About Image Slideshow */
.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 400px;
}

.about-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.about-slide.active {
    opacity: 1;
    z-index: 1;
}

/* .about-slide-1 {
    background-image: url('../images/planners-blueprint.jpg');
}

.about-slide-3 {
    background-image: url('../images/IMG_6543.jpg');
}

.about-slide-2 {
    background-image: url('../images/about.jpg');
}

.about-slide-4 {
    background-image: url('../images/about3.jpg');
} */

.about-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 4000;
}

.about-slide:hover .about-slide-content {
    transform: translateY(0);
}

.about-slide-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.about-slide-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: #2c3e50;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-slide-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.about-slide-prev {
    left: 15px;
}

.about-slide-next {
    right: 15px;
}

.about-slide-indicators {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.about-slide-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-slide-indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.feature {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-shadow: 2 5px 15px rgba(0, 0, 0, 0.05);
}

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

.feature i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 2.4rem;
    }
    
    .about-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 70px 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1.05rem;
    }
    
    .about-image {
        height: 300px;
        min-width: 100%;
    }
    
    .about-slide-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 20px;
    }
    
    .about-image {
        height: 250px;
    }
    
    .about-slide-nav {
        display: none;
    }
    
    .feature {
        min-width: 100%;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c3e50, #1a2530);
    color: white;
    padding: 60px 0 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-right: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.logo-text .company-tagline {
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 500;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-center h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #4CAF50;
    position: relative;
    display: inline-block;
}

.footer-center h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4CAF50;
    border-radius: 2px;
}

.footer-center p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #ccc;
    display: flex;
    align-items: flex-start;
}

.footer-center p i {
    color: #4CAF50;
    margin-right: 10px;
    width: 20px;
    text-align: center;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

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

.social-icon:hover {
    background: #4CAF50;
    transform: translateY(-3px);
}

.footer-right h5 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #4CAF50;
    position: relative;
    display: inline-block;
}

.footer-right h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4CAF50;
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #4CAF50;
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .section-title h2 {
        font-size: 2.4rem;
    }
    
    .partner-logos {
        gap: 30px;
    }
    
    .partner-logos img {
        height: 45px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-column {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .slanted {
        height: 80px;
    }
    
    .slanted-bottom {
        height: 120px;
    }
    
    .slide-indicators {
        bottom: 100px;
    }
    
    .slide-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1.05rem;
    }
    
    .partners {
        padding: 50px 20px;
    }
    
    .partner-logos {
        gap: 25px;
    }
    
    .partner-logos img {
        height: 40px;
    }
    
    .partners-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .services-section {
        padding: 70px 20px;
    }
}

@media (max-width: 600px) {
    .partner-logos {
        gap: 20px;
    }
    
    .partner-logos img {
        height: 35px;
    }
    
    .partners-title {
        font-size: 1.5rem;
    }
    
    .partner-slide {
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .about-section, .services-section {
        padding: 50px 20px;
    }
    
    .partner-logos {
        gap: 15px;
    }
    
    .partner-logos img {
        height: 30px;
    }
    
    .partners-nav {
        display: none;
    }
    
    .service-content {
        padding: 20px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-nav {
    flex-direction: column;
    background: #0B1E3F;
    position: absolute;
    top: 60px;
    right: 0;
    width: 220px;
    padding: 1rem;
    border-radius: 0 0 8px 8px;

    /* hidden by default */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  .site-nav a.active{
    background-color: var(--white) !important;
    color: var(--dark) !important;
    text-decoration: none;
    font-weight: 600;
    display: block;
    font-size: 20px;
    padding: 20px;
  }

  .site-nav.show {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
  }
}

/* ABOUT PAGE */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Vertical line */
.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: #0a8f3a;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

/* Timeline items */
.timeline-item {
  padding: 20px 30px;
  position: relative;
  width: 50%;
}

/* Content box styling */
.timeline-item .content {
  background-color: #26a65b;
  color: white;
  padding: 20px;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.timeline-item .content h2 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 600;
}

.timeline-item .content p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

/* Positioning */
.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

/* Dots on the central line */
.timeline-item::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  right: -7px;
  background-color: white;
  border: 3px solid #0a8f3a;
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.right::before {
  left: -7px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 25px;
  }

  .timeline-item.right {
    left: 0;
  }

  .timeline-item::before {
    left: 14px;
  }
}

/* SERVICES */
        /* Page Banner */
.services-banner {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-banner.small {
    height: 60vh;
}

.banner-inner {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.page-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.page-banner p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Content Block */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-block {
    padding: 80px 0;
}

/* Services Filter */
.services-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    color: #2c3e50;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: #4CAF50;
    border-color: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* Service Categories */
.service-category {
    margin-bottom: 80px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #4CAF50, #2c3e50);
    margin: 10px auto 0;
    border-radius: 2px;
}

.category-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Carousel */
.service-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 0px 100px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    padding: 10px 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 350px;
    opacity: 1;
    transform: translateY(0);
}

.service-card.hidden {
    display: none;
}

.service-card.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

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

.service-icon {
    background: linear-gradient(135deg, #4CAF50, #2c3e50);
    color: white;
    padding: 30px;
    text-align: center;
    font-size: 2.5rem;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    display: flex;
    align-items: center;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 0.9rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #4CAF50;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background: rgba(255, 255, 255, 0.9); */
    background: #4CAF50 !important;
    color: #2c3e50 !important;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: #4CAF50 !important;
    color: white !important;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 17px;
}

.carousel-next {
    right: 17px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background-color: #4CAF50;
    transform: scale(1.3);
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
    border-radius: 20px;
    margin: 60px 0;
}

.process-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50, #1a2530) !important;
    color: white;
    padding: 80px 0;
    /* border-radius: 20px; */
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

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

.btn-outline:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 300px;
    }
}

@media (max-width: 992px) {
    .page-banner h1 {
        font-size: 3rem;
    }
    
    .page-banner p {
        font-size: 1.3rem;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 280px;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .carousel-prev {
        left: 17px;
    }
    
    .carousel-next {
        right: 17px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 60vh;
    }
    
    .page-banner.small {
        height: 60vh;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .page-banner p {
        font-size: 1.2rem;
    }
    
    .content-block {
        padding: 60px 0;
    }
    
    .services-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .process-steps {
        gap: 20px;
    }
    
    .process-step {
        min-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-banner {
        height: 50vh;
    }
    
    .page-banner.small {
        height: 50vh;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .content-block {
        padding: 40px 0;
    }
    
    .service-content {
        padding: 20px;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-icon {
    background: linear-gradient(135deg, #4CAF50, #2c3e50);
    color: white;
    padding: 30px;
    text-align: center;
    font-size: 2.5rem;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    display: flex;
    align-items: center;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 0.9rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #4CAF50;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Service Categories */
.service-category {
    margin-bottom: 60px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #4CAF50, #2c3e50);
    margin: 10px auto 0;
    border-radius: 2px;
}

.category-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Process Section */
.process-section {
    background: var(--white);
    padding: 80px 0;
    border-radius: 20px;
    margin: 60px 0;
    width: 100%;
}

.process-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50, #1a2530);
    color: white;
    padding: 80px 0;
    /* border-radius: 20px; */
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

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

.btn-outline:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-banner h1 {
        font-size: 3rem;
    }
    
    .page-banner p {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 60vh;
    }
    
    .page-banner.small {
        height: 60vh;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .page-banner p {
        font-size: 1.2rem;
    }
    
    .content-block {
        padding: 60px 0;
    }
    
    .services-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .process-steps {
        gap: 20px;
    }
    
    .process-step {
        min-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-banner {
        height: 50vh;
    }
    
    .page-banner.small {
        height: 50vh;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .content-block {
        padding: 40px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding: 20px;
    }
}

/* PROJECTS */
.projects-preview .project-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.project-card {
  display: block;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  color: #fff;
  text-decoration: none;
}
.project-card .overlay {
  position: absolute;
  inset: 0;
  padding: 1rem;
  background: linear-gradient(180deg,rgba(0,0,0,0.1),rgba(0,0,0,0.45));
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.project-hero{
  padding: 100px 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.project-hero h1{
  font-size: 70px;
  font-weight: bold;
  color: var(--white)
}
.project-hero p{
  font-size: 30px;
  font-weight: bold;
  color: var(--white)
}
.project-hero {
  font-size: 30px;
  font-weight: bold;
}

/* CTA */
/* .cta {
  background: linear-gradient(90deg,var(--dark),var(--green));
  color: #fff;
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem auto;
  max-width: var(--maxW);
}
.cta .btn-primary {
  background: #fff;
  color: var(--dark);
} */

/* About Page */
/* Hero Banner */

.about-banner {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.banner-inner {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.page-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.page-banner p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slanted {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-3deg);
    transform-origin: bottom left;
    z-index: 1;
}

.slanted-bottom {
    height: 150px;
}

/* Content Block */
.content-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.mission_vision {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 60px;
    position: relative;
}

.mission_vision::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #4CAF50, #2c3e50);
    margin: 15px auto 0;
    border-radius: 2px;
}

.two-col {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.two-col > div {
    flex: 1;
    min-width: 300px;
}

.two-col h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.two-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #4CAF50;
    border-radius: 2px;
}

.two-col p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Mission & Vision Cards */
.mission-vision-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.mv-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #4CAF50;
}

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

.mv-card i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.mv-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* Profile Card */
.profile-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

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

.profile-card img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.profile-card-content {
    padding: 30px;
}

.profile-card h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.profile-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.profile-title {
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.profile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.profile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-social a:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-3px);
}

/* Values Section */
.values-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
}

.values-title {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.value-item i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin: 80px 0;
    padding: 50px 20px;
    background: linear-gradient(135deg, #2c3e50, #1a2530);
    border-radius: 15px;
    color: white;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-banner h1 {
        font-size: 3rem;
    }
    
    .page-banner p {
        font-size: 1.3rem;
    }
    
    .mission_vision {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 60vh;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .page-banner p {
        font-size: 1.2rem;
    }
    
    .mission_vision {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 60px 20px;
    }
    
    .two-col {
        gap: 40px;
    }
    
    .slanted {
        height: 80px;
    }
    
    .slanted-bottom {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        height: 50vh;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .mission_vision {
        font-size: 1.8rem;
    }
    
    .content-block {
        padding: 40px 20px;
    }
    
    .mv-card, .value-item {
        min-width: 100%;
    }
}


/* PROJECT PAGE */
 /* Banner Section */
.project-banner {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 100px;
    position: relative;
    text-align: center;
    overflow: hidden;
    background-repeat: no-repeat;
}
/*         
.page-banner::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-3deg);
    z-index: 1;
} */


.banner-inner {
    position: relative;
    z-index: 2;
}

.banner-inner h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.banner-inner p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Content Section */
.content-block {
    padding: 80px 0;
}

/* Carousel Section */
.projects-carousel-section {
    position: relative;
    padding: 40px 0 80px;
}

.carousel-header {
    text-align: center;
    margin-bottom: 50px;
}

.carousel-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.carousel-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.project-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    min-height: 450px;
}

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

.project-thumb {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.project-thumb::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 82, 118, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-project {
    color: white;
    background: var(--secondary);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.project-card:hover .view-project {
    transform: translateY(0);
}

.project-meta {
    padding: 25px;
}

.project-meta h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.4rem;
    transition: var(--transition);
}

.project-card:hover .project-meta h3 {
    color: var(--secondary);
}

.project-location, .project-year {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--gray);
}

.project-location i, .project-year i {
    margin-right: 8px;
    color: var(--secondary);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.project-tag {
    background: var(--light-gray);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.carousel-btn {
    background: var(--green) !important;
    color: white !important;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--green);
    color: white !important;
    transform: scale(1.1);
}

/* Stats Section */
.projects-stats {
    background: var(--light);
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .project-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .banner-inner h1 {
        font-size: 2.5rem;
    }
    
    .banner-inner p {
        font-size: 1.1rem;
    }
    
    .project-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .carousel-header h2 {
        font-size: 2rem;
    }
}


/* CONTENT */
.content-block {
  padding: 3rem;
  background: var(--muted);
  border-radius: 8px;
  margin-top: 2rem;
}

/* PROJECT LIST */
.project-list-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.project-card-2 {
  display: block;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.project-card-2 .thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
}
.project-card-2 .meta {
  padding: .75rem;
}

/* CONTACT */
/* Header */
.contact-hero {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Main Content */
.contact-section {
    padding: 80px 0px 0px 0px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #7f8c8d;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary);
    background-color: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

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

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #3498db !important;
    color: white !important;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
}

.info-card h3 i {
    color: #3498db;
    font-size: 1.6rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
}

.contact-method:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-details p {
    color: #7f8c8d;
    margin-bottom: 5px;
}

.contact-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Social Media */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    /* background: #E8E9EB !important;
    padding: 20px; */
    margin-top: 60px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    /* padding: 20px; */
    /* background: #E8E9EB !important; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 80px;
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-header p {
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-question {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question i {
    color: #3498db;
}

.faq-answer {
    color: #7f8c8d;
    padding-left: 26px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-container,
    .info-card {
        padding: 25px;
    }
    
    .faq-section {
        padding: 40px 25px;
    }
}

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

.contact-form-container,
.info-card {
    animation: fadeIn 0.6s ease forwards;
}

.contact-form-container {
    animation-delay: 0.1s;
}

.info-card:nth-child(1) {
    animation-delay: 0.2s;
}

.info-card:nth-child(2) {
    animation-delay: 0.3s;
}


/* HOME PAGE SOLUTION SECTION */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

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

.col-md-4 {
    width: 100%;
    padding: 15px;
}

@media (min-width: 768px) {
    .col-md-4 {
        width: 33.333%;
    }
}

.inner_solution_content {
    background: #001b4c;;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

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

.inner_solution_content.media {
    /* padding: 50; */
    align-items: stretch;
}

.solution-icon {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.solution-icon i {
    z-index: 1;
}

.media-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.media-body h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.media-body h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #3498db;
    border-radius: 2px;
}

.media-body p {
    color: #ffffff;
    margin-bottom: 20px;
    flex-grow: 1;
}

.solution-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #3498db;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 2px solid #3498db;
}

.solution-btn:hover {
    background: transparent;
    color: #3498db;
}

/* Animation for cards on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.inner_solution_content {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.inner_solution_content:nth-child(2) {
    animation-delay: 0.2s;
}

.inner_solution_content:nth-child(3) {
    animation-delay: 0.4s;
}

/* Filter buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* .filter-btn {
    padding: 10px 20px;
    margin: 5px 10px;
    background: white;
    border: 2px solid #3498db;
    color: #3498db;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active, .filter-btn:hover {
    background: #3498db;
    color: white;
} */

/* Responsive adjustments */
@media (max-width: 767px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .solution-icon {
        height: 150px;
        font-size: 3rem;
    }
    
    .media-body {
        padding: 20px;
    }
}

/* HOME CAROUSEL BLOG SECTION */

/* BLOGS STYLES */
.blogs_header_section{
    width: 100%;
}

.blogs_header_section .container_blogs{
    background-color: #081323;
    width: 100%;
    color: white;
    text-align: center;
    padding: 50px 0px;
}

.blogs_header_section .container_blogs h1{
    margin: 0px;
}

.blogs_header_section .container_blogs_description{
    background-color: #43A047;
    width: 100%;
    color: white;
    text-align: center;
    padding: 50px 0px;
    display: flex;
    justify-content: center;

}

.blogs_header_section .container_blogs_description .blog_description{
    width: 70%;
}

.news_outer_content{
    width: 100%;
    display: flex;
    justify-content: center;
}

.news_outer_content .news_card{
    width: 50%;
    background-color: #dddfdf;
    margin: 20px 0px 5px 0px;
}

.news_outer_content .news_content{
    padding: 10px;
}

/* FOOTER */
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  color: #fff;
}
.site-footer {
  background: var(--dark);
  color: #fff;
  padding-top: 1rem;
}
.footer-bottom {
  background: #081323;
  padding: .75rem;
  text-align: center;
  color: #ccc;
  font-size: .9rem;
}

/* RESPONSIVE FIXES */
@media (max-width:900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .project-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .project-list-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width:600px) {
  .project-grid, .project-list-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
