 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background-color: #f9f9f9;
     overflow-x: hidden;
        margin: 0;
        padding: 0;
 }


/* Custom Styles for hero section */

 .full-bg-slide {
     background: url('./assets/images/home/Banner2.png') no-repeat center center;
     background-size: cover;
     height: 95vh;
     min-height: 500px;
 }

 /* Make sure slide content stays centered */
 .carousel-caption {
     bottom: 0;
     top: 0;
     display: flex;
     align-items: center;
     text-align: left;
 }

 /* Force text to black for readability */
 .carousel-item.active h1,
 .carousel-item.active h5,
 .carousel-item.active p {
     color: #000 !important;
 }

 .carousel-item.active h2 {
     color: #8cc4e2 !important;
 }

 .expertise-card {
    position: relative;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.expertise-card img {
    width: 100%;
    display: block;
}

.expertise-card p {
    position: absolute;
    bottom: 10px; /* adjust vertical position */
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}


 /* Responsive tweaks */
 @media (max-width: 768px) {
     .full-bg-slide {
         height: auto;
         padding: 80px 0;
     }

     .carousel-caption {
         text-align: center;
     }
 }
 /* Responsive Fix */
.hero-carousel .carousel-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 95vh;
}

/* Adjust height for tablets */
@media (max-width: 992px) {
  .hero-carousel .carousel-item {
    height: 70vh;
    margin-top: 70px;
  }
}

/* Adjust height for mobile */
@media (max-width: 576px) {
  .hero-carousel .carousel-item {
    height: 55vh;
    margin-top: 60px;
    background-size: contain; /* show full image without cutting */
    background-position: center top;
  }
}






 /* Custom Styles for our service */
 .index_service_bg {
     background: #fff;
 }

 .card {
     border-radius: 15px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

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

 .btn-primary {
     background-color: #0dcaf0;
     border: none;
     border-radius: 25px;
 }

 .btn-primary:hover {
     background-color: #0bb3d9;
 }

 /* our projects */
 :root {
     --primary-color: #3366cc;
     --secondary-color: #ff6600;
     --dark-color: #333;
     --light-color: #f4f4f4;
 }


.our_work_bg {
    background: url('assets/images/home/our_work_bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */
    position: relative;
    padding: 20px 0;
    border-radius: 10px;
}


 .section_title h2 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 15px;
     color: black;
 }

 .section_title h2 span {
     color: var(--secondary-color);
 }

 .section_title p {
     font-size: 1.1rem;
     max-width: 700px;
     margin: 0 auto;
     color: black;
 }

 .post-slide {
     background: #fff;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     margin: 15px;
     height: 100%;
 }

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

 .post-img {
     position: relative;
     overflow: hidden;
     height: 200px;
 }

 .post-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: all 0.5s ease;
 }

 .post-slide:hover .post-img img {
     transform: scale(1.1);
 }

 .over-layer {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(51, 102, 204, 0.8);
     display: flex;
     justify-content: center;
     align-items: center;
     opacity: 0;
     transition: all 0.5s ease;
 }

 .post-slide:hover .over-layer {
     opacity: 1;
 }

 .over-layer i {
     color: #fff;
     font-size: 30px;
 }

 .post-content {
     padding: 20px;
 }

 .post-content a {
     font-size: 1.2rem;
     font-weight: 700;
     color: var(--primary-color);
     text-decoration: none;
     margin-bottom: 10px;
     display: block;
     transition: all 0.3s ease;
 }

 .post-content a:hover {
     color: var(--secondary-color);
 }

 .post-description {
     color: #1d1c1c;
     line-height: 1.6;
     margin-bottom: 0;
     font-size: 0.95rem;
 }

 /* Carousel Controls */
 .carousel-control-prev,
 .carousel-control-next {
     width: 50px;
     height: 50px;
     background: var(--primary-color);
     border-radius: 50%;
     top: 50%;
     transform: translateY(-50%);
     opacity: 0.8;
 }

 .carousel-control-prev {
     left: -25px;
 }

 .carousel-control-next {
     right: -25px;
 }

 .carousel-control-prev:hover,
 .carousel-control-next:hover {
     opacity: 1;
 }

 /* Responsive Adjustments */
 @media (max-width: 1200px) {
     .post-img {
         height: 180px;
     }

     .post-content {
         padding: 15px;
     }
 }

 @media (max-width: 992px) {
     .carousel-control-prev {
         left: 10px;
     }

     .carousel-control-next {
         right: 10px;
     }

     .post-img {
         height: 160px;
     }
 }

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

     .section_title h2 {
         font-size: 2rem;
     }

     .section_title p {
         font-size: 1rem;
     }

     .post-content {
         padding: 15px;
     }

     .post-content a {
         font-size: 1.1rem;
     }

     /* Show 2 cards on tablet */
     .col-md-3 {
         flex: 0 0 50%;
         max-width: 50%;
     }
 }

 @media (max-width: 576px) {
     .post-img {
         height: 160px;
     }

     .post-content {
         padding: 12px;
     }

     /* Show 1 card on mobile */
     .col-md-3 {
         flex: 0 0 100%;
         max-width: 100%;
     }

     .carousel-control-prev,
     .carousel-control-next {
         width: 40px;
         height: 40px;
     }
 }

 /* Custom carousel indicators */
 .carousel-indicators {
     bottom: -60px;
 }

 .carousel-indicators button {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background-color: var(--primary-color);
     opacity: 0.5;
 }

 .carousel-indicators .active {
     opacity: 1;
 }

 /* Card height adjustment for consistency */
 .card-row {
     display: flex;
     flex-wrap: wrap;
 }

 .post-slide {
     display: flex;
     flex-direction: column;
 }

 .post-content {
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .post-description {
     flex-grow: 1;
 }

 /*our client section */


 .clients-section {
     background: #f8f9fa;
     padding: 40px 20px;
     border-radius: 8px;
     margin: 20px auto;
     max-width: 100%;
 }

 .section-title {
     text-align: center;
     margin-bottom: 30px;
 }

 .section-title h2 {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 10px;
     color: black;
 }

 .section-title h2 span {
     color: #ff6600;
 }

 .section-title p {
     font-size: 1rem;
     color: #666;
     max-width: 700px;
     margin: 0 auto;
 }

 .client-logo {
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 15px;
     height: 100px;
     margin-bottom: 15px;
 }

 .client-logo img {
     max-width: 100%;
     max-height: 70px;
 }

 @media (max-width: 768px) {
     .section-title h2 {
         font-size: 1.75rem;
     }

     .client-logo {
         height: 85px;
         padding: 12px;
     }

     .client-logo img {
         max-height: 60px;
     }
 }

 @media (max-width: 576px) {
     .section-title h2 {
         font-size: 1.5rem;
     }

     .client-logo {
         height: 80px;
         padding: 10px;
     }

     .client-logo img {
         max-height: 50px;
     }
 }
/* Testimonials Section */
  