/* What We Offer Section */
     .carousel {
            position: relative;
            width: 100%;
            margin: auto;
            overflow: hidden;
        }

        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-item {
            min-width: 100%;
            box-sizing: border-box;
            background-size: cover;
            background-position: center;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: flex-start; /* Align content to the left */
            color: white;
            text-align: left; /* Align text to the left */
            position: relative;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5); /* Dark overlay */
            z-index: 1;
        }

        .carousel-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            padding: 40px; /* Add more padding */
            margin-left: 80px; /* Add margin to the left */
            background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text */
            border-radius: 10px;
        }

        .carousel-content h2 {
            font-size: 2.5rem; /* Larger heading */
            font-weight: bold;
            margin-bottom: 20px; /* Space below heading */
            color: #fff; /* Ensure text is white */
        }

        .carousel-content p {
            font-size: 1.2rem; /* Slightly larger paragraph text */
            line-height: 1.6; /* Improve line spacing */
            color: #f0f0f0; /* Light gray for better readability */
        }

        .carousel-control-prev, .carousel-control-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            z-index: 100;
        }

        .carousel-control-prev {
            left: 10px;
        }

        .carousel-control-next {
            right: 10px;
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 1024px) {
            .carousel-content {
                margin-left: 40px; /* Reduce left margin for tablets */
                padding: 30px; /* Slightly reduce padding */
            }

            .carousel-content h2 {
                font-size: 2rem; /* Smaller heading for tablets */
            }

            .carousel-content p {
                font-size: 1.1rem; /* Slightly smaller paragraph text */
            }
        }

        @media (max-width: 768px) {
            .carousel-item {
                height: 500px; /* Reduce carousel height for smaller devices */
            }

            .carousel-content {
                margin-left: 20px; /* Further reduce left margin */
                padding: 20px; /* Reduce padding for mobile */
                max-width: 80%; /* Allow more width for smaller screens */
            }

            .carousel-content h2 {
                font-size: 1.8rem; /* Smaller heading for mobile */
            }

            .carousel-content p {
                font-size: 1rem; /* Smaller paragraph text for mobile */
            }
        }

        @media (max-width: 480px) {
            .carousel-item {
                height: 400px; /* Further reduce carousel height for very small devices */
            }

            .carousel-content {
                margin-left: 10px; /* Minimal left margin */
                padding: 15px; /* Minimal padding */
                max-width: 90%; /* Use more width for very small screens */
            }

            .carousel-content h2 {
                font-size: 1.5rem; /* Even smaller heading */
            }

            .carousel-content p {
                font-size: 0.9rem; /* Smaller paragraph text */
            }
        }
        /* What We Offer Section */
    .what-we-offer {
        padding: 80px 4%;
        background: #fff;
        text-align: center;
    }

    .what-we-offer h2 {
        font-size: 2rem;
        font-weight: 300;
        margin-bottom: 40px;
        color: #3c92e8;
    }

    .offer-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .offer-card {
        background: #3c92e8; /* Updated background color */
        padding: 20px;
        border-radius: 10px;
        width: 100%;
        color: #fff; /* White text color */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .offer-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .offer-card h3 {
        font-size: 1.2rem;
        font-weight: 300;
        margin-bottom: 10px;
        color: #fff; /* White text color */
    }

    .offer-card p {
        font-size: 1rem;
        color: #fff; /* White text color */
    }

    .offer-card i {
        font-size: 2rem; /* Icon size */
        margin-bottom: 20px; /* Space below the icon */
        color: #fff; /* White icon color */
    }

 
   @media(max-width:768px){
     .offer-cards {
            display: grid;            
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
        }
        .stats-cards {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
        }
   }
        /* Stats Section */
        .stats {
            padding: 60px 4%;
            background: #f9f9f9;
            text-align: center;
        }

        .stats h2 {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 40px;
            color: #3c92e8;
        }

        .stats-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            width: 100%;
            min-width: 200px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .stat-card h3 {
            font-weight: 300;
            font-size: 2rem;
            color: #3c92e8;
        }

        .stat-card p {
            font-size: 1rem;
            color: #555;
        }

  @media(max-width:768px){
    
        .stats-cards {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            padding: 0 4%;
        }
   }
    @media(max-width:868px){
    
        .stats-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            padding: 0 4%;
        }
   }
    @media(max-width:768px){
    
        .stats-cards {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            padding: 0 4%;
        }
   }
      
 /* Container for the About Us Section */
        .about-us {
            display: flex;
           align-items: flex-start;
            gap: 20px;
           
            margin: 60px 4%!important;
            margin-bottom: 20px!important;
        }

        /* Image Section */
        .about-one {
            position: relative;
            flex: 1;
            width: 100%;
            
        }

        .about-one img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }

        .about-one p {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            padding: 20px 4%;
            border-radius: 5px;
            font-size: 14px;
            text-align: right;
        }

        /* Text Section */
        .about-two {
            flex: 2;
            
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            
        }

        .about-two h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #3c92e8;
            font-weight: 300;
        }

        .about-two p {
            font-size: 1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Learn More Button */
        .learn-more-btn {
            display: inline-block;
            padding: 10px 20px;
            background: #3c92e8;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1rem;
            transition: background 0.3s ease;
        }

        .learn-more-btn:hover {
            background: #2a7bbf;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-us {
                flex-direction: column;
               
            }
 
            .about-one p {
                font-size: 12px;
                padding: 8px;
            }
        }

         /* Section Styling */
        .card-section {
            padding: 0px 4%;
            background: #fff;
        }

        .card-section h2 {
            font-size: 2rem;
            font-weight: 300;
            color: #3c92e8;/* Deep Ocean Blue */
            margin-bottom: 40px;
            text-align: center;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        .card-item {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .card-item img {
            width: 100%;
            height: 180px;
            object-fit: cover;
           
            margin-bottom: 20px;
        }

        .card-item h3 {
            font-size: 24px;
            font-weight: 600;
            color: #3c92e8; /* Deep Ocean Blue */
            margin-bottom: 15px;
        }

        .card-item p {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .card-item a {
            display: inline-block;
            padding: 10px 20px;
            background: #3c92e8; /* Deep Ocean Blue */
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .card-item a:hover {
            background: #002244; /* Darker shade of blue */
        }

        /* Responsive Design */
        @media (max-width: 868px) {
            .card-section {
                padding: 40px 5%;
            }
            .card-grid {
            display: flex;
        }
      
            .card-grid {
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                gap: 20px;
                padding-bottom: 20px;
            }

            .card-item {
                flex: 0 0 90%; /* 1 item per row on mobile */
                scroll-snap-align: start;
            }
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 60px 4%;
             background: #f9f9f9;
            position: relative;
            overflow: hidden;
        }

        .testimonials-section h2 {
            font-size: 2rem;
            font-weight: 300;
            color: #3c92e8; /* Deep Ocean Blue */
            margin-bottom: 40px;
            text-align: center;
        }

        .testimonials-container {
            max-width: 800px; /* Limit the width of the slider */
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

    .testimonials-section {
    position: relative;
    padding: 60px 6%;
    text-align: center;
    background: #f9f9f9;
    overflow: hidden;
}

.testimonials-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-card h3 {
    margin: 10px 0;
    font-size: 1.5rem;
    color: #333;
}

.testimonial-card .rating {
    color: #ffcc00;
    font-size: 1.2rem;
    margin: 10px 0;
}

.testimonial-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}


     /* Blog Page Container */
        .blog-page {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;

            padding: 60px 10%;
        }

        /* Left Side: Main Blog */
       

        .main-blog-card {
            background: #fff;
         
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

       
        .main-blog-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .main-blog-card-content {
            padding: 10px 0;
        }

        .main-blog-card .date {
            font-size: 14px;
            color: #777;
            margin-bottom: 10px;
        }

        .main-blog-card h3 {
            font-size: 20px;
            font-weight: 300;
            color: #3c92e8;
            margin-bottom: 10px;
        }
        .main-blog h1{
            font-size: 2rem;
            margin-bottom: 20px;
            color: #3c92e8;
            font-weight: 300;
        }

        .main-blog-card p {
            font-size: 16px;
            color: #555;
            margin-bottom: 20px;
        }

        .main-blog-card .read-more {
            display: inline-block;
            padding: 10px 10px;
       
            color: #3c92e8;
            
        }

        .main-blog-card .read-more:hover {
            color: #2a7bbf;
        }

        /* Right Side: Other Blogs Slider */
        .other-blogs {
            flex: 1;
        }

        .other-blogs h2 {
            font-size: 2rem;
            font-weight: 300;
            color: #3c92e8;
            margin-bottom: 20px;
        }

        .other-blogs-slider {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding-bottom: 0px;
        }

        .other-blogs-slider .blog-card {
            
        display: flex;
        align-items: start;
        gap: 1rem;
        justify-content: flex-start;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

      
        .other-blogs-slider .blog-card img {
            width: 150px;
            height: 100px;
            object-fit: cover;
        }

        .other-blogs-slider .blog-card-content {
            padding: ;        }

        .other-blogs-slider .blog-card .date {
            font-size: 12px;
            color: #777;
            margin-bottom: 10px;
        }

        .other-blogs-slider .blog-card h3 {
            font-size: 16px;
            font-weight: 300;
            color: #3c92e8;
            margin-bottom: 10px;
        }

        .other-blogs-slider .blog-card .read-more {
            display: inline-block;
            padding: 8px 16px;
            
            color: #3c92e8;
            text-decoration: none;
            
        }

        .other-blogs-slider .blog-card .read-more:hover {
            color: #2a7bbf;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .blog-page {
                display: flex;
                flex-direction: column;
                gap: 0px;
            }

            .other-blogs h2 {
                font-size: 20px;
            }

            .other-blogs-slider {
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
            }

            .other-blogs-slider .blog-card {
                flex: 0 0 calc(100% - 20px);
                scroll-snap-align: start;
            }
            .other-blogs-slider {
            display: flex;
            flex-direction: row;
            gap: 20px;
            padding-bottom: 20px;
        }
        .other-blogs h2 {
            font-size: 2rem;
            font-weight: 300;
            color: #3c92e8;
            margin-bottom: 20px;
        }
        }
   .event-section {
    padding: 20px;
   padding: 60px 4%;
    background: url('../img/15.jpg') center center/cover no-repeat; /* Center and cover the background */
    background-attachment: fixed; /* Fix the background image */
    position: relative; /* Required for the overlay */
    color: white; /* Ensure text is visible */
    text-align: center; /* Center-align text */
   
    overflow: hidden; /* Ensure the overlay doesn't overflow */
}

.event-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay with 60% opacity */
    z-index: 1; /* Place the overlay above the background image */
}

.event-section * {
    position: relative; /* Ensure content is above the overlay */
    z-index: 2; /* Place content above the overlay */
}

    /* Card Layout */
    .event-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .event-card {
      display: flex;
      align-items: center;
      background-color: #f9f9f9;
      border-radius: 10px;
      padding: 15px;
      
    }

    .event-card img {
      width: 150px;
      height: 150px;
     
      object-fit: cover;
      margin-right: 20px;
    }

    .event-card-content {
      flex: 1;
    }

    .event-card h4 {

      font-size: 1.2rem;
      margin: 0 0 10px;

    }

    .event-card p {
      font-size: 16px;
      color: #555!important;
      margin: 5px 0;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .event-card i {
      color: #3c92e8;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .event-grid {
        grid-template-columns: 1fr;
      }

      .event-card {
        flex-direction: column;
        text-align: center;
      }
        .event-section {
      padding: 20px;
      margin: 60px 2%;
     
    }

      .event-card img {
        margin-right: 0;
        width: 100%;
        margin-bottom: 15px;
      }
    }

    .upcoming-events h3 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 40px;
         color: #3c92e8;
    }
     .upcoming-events p {
        text-align: center;
        font-size: 16px;
        color: #555;
        
    }