/*------------------------------------------------------------------
 * Multipurpose: Free Template by FreeHTML5.co
 * Author: https://freehtml5.co
 * Facebook: https://facebook.com/fh5co
 * Twitter: https://twitter.com/fh5co
 -------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of styles content]
 
1 - Header
2 - Hero
3 - CTA
4 - Services
5 - Featured
6 - Recent Posts
7 - Trust
8 - Pricing Tables
9 - Testimonials
10 - Clients
11 - CTA 2
12 - Footer Widgets
13 - Foot Note
--------------------------------------------------------------------*/
/*-----------------------------------
    1 - Header
------------------------------------*/
html, body {
    overflow-x: hidden !important;
}
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    height: 100%; /* Make the image height match the hero section height */
    width: auto; /* Maintain the original width aspect ratio */
    object-fit: contain; /* Ensure the image fits within the container without distortion */
}

.services-section {
    padding: 60px 0;
}

.service-card {
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    height: 100%; /* Allow the card to grow based on content */
}

.service-img {
    width: 100%;
    max-height: 200px; /* Set a max height for the image */
    height: auto; /* Let the height be determined by the aspect ratio */
    object-fit: contain; /* Ensure the image covers without distortion */
    object-position: center; /* Center the image within the card */
}

.service-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align text at the top */
    text-align: center;
    padding: 15px;
    flex-grow: 1; /* Allow this section to take available space */
  
}

.service-title {
    font-size: 1.25rem;
}

.service-text {
    font-size: 1rem;
    color: #555;
}


.title-blue {
    color: #007bff; /* Adjust this color as needed */
}

.text-center {
    text-align: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-sm-6,
.col-lg-4 {
    display: flex;
    justify-content: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}


/* Carousel Container */
.hero {
    position: relative; /* Ensure proper positioning */
}

.carousel-item {
    display: flex; /* Enable flexbox for items */
    justify-content: center; /* Center content */
    align-items: center; /* Center content vertically */
}

    .carousel-item img {
        width: 100%; /* Ensure images take full width */
        height: auto; /* Maintain aspect ratio */
        object-fit: cover; /* Ensure image covers the area */
    }

.carousel-caption {
    justify-content: center;
    align-content: center;
    text-align: center; /* Center text */
    color: #fff; /* Text color */
    padding: 20px; /* Padding around text */
    border-radius: 10px; /* Rounded corners */
    max-width: 50%; /* Limit width of the caption */
    margin: auto; /* Center caption horizontally */
    box-sizing: border-box; /* Include padding in width calculation */
    width: 100%; /* Full width of the card */
    height: auto; /* Allow height to adjust based on content */
}

    /* Responsive Font Size */
    .carousel-caption h5 {
        font-size: 1.2rem; /* Decrease font size */
        line-height: 1.4; /* Adjust line height for better readability */
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption {
        padding: 15px; /* Adjust padding on smaller screens */
    }

        .carousel-caption h5 {
            font-size: 0.5rem; /* Smaller font size for better fit */
        }
}

@media (max-width: 480px) {
    .carousel-item {
        height: 40vh; /* Further reduce height for very small screens */
    }

    .carousel-caption {
        padding: 5px; /* Reduce padding further */
    }

        .carousel-caption h5 {
            font-size: 0.5rem; /* Even smaller font size for very small screens */
        }
}


/*-------------------*/

/* Updates Section Styles */
.updates {
    padding: 2rem 0; /* Add padding to the top and bottom */
    background-color: #f8f9fa; /* Light background for contrast */
}

.updates-title {
    margin-bottom: 1.5rem; /* Space below the title */
}

.updates-heading {
    font-size: 2rem; /* Title size */
    color: #101111; /* Blue color for heading */
}

.updates-carousel-container {
    position: relative; /* Positioning for buttons */
    overflow: hidden; /* Hide overflow from sliding images */
}

.updates-carousel {
    display: flex; /* Flexbox for carousel layout */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
}

.updates-carousel-track {
    display: flex; /* Horizontal layout for slides */
    transition: transform 0.5s ease; /* Smooth transition for sliding */
}

.updates-carousel-slide {
    min-width: 300px; /* Minimum width for slides */
    margin: 0 10px; /* Spacing between slides */
    flex-shrink: 0; /* Prevent shrinking */
}

    .updates-carousel-slide img {
        width: 100%; /* Ensure images take full width of their container */
        height: auto; /* Maintain aspect ratio */
        border-radius: 10px; /* Optional: Rounded corners for images */
    }

.updates-carousel-button {
    background-color: #101111; /* Button background color */
    color: white; /* Button text color */
    border: none; /* No border */
    padding: 10px; /* Padding for buttons */
    cursor: pointer; /* Pointer cursor on hover */
    position: absolute; /* Positioning to the sides */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust position */
    z-index: 1; /* Ensure buttons are above the carousel */
}

    .updates-carousel-button.left {

        left: 10px; /* Position left button */
    }

    .updates-carousel-button.right {
        right: 10px; /* Position right button */
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .updates-carousel-slide {
        min-width: 200px; /* Smaller minimum width for mobile */
    }

    .updates-heading {
        font-size: 1.5rem; /* Smaller heading for mobile */
    }
}


/
/*
 Partners Carousel Container 
.partners-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;  Center the carousel container 
overflow: hidden;
}

.partners-carousel-button {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

    .partners-carousel-button.left {
        left: 10px;
    }

    .partners-carousel-button.right {
        right: 10px;
    }

.partners-carousel-track {
    display: flex;
    align-items: center;  Center the slides vertically 
overflow: auto;
    scroll-behavior: smooth;
    gap: 20px;  Add space between slides 
}

.partners-carousel-slide {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
}

.partners-circle-card {
    width: 100%;
    height: 100%;
    background: #f4f4f4;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;  Ensure image does not overflow 
}

.partners-image {
    width: 100%;
    height: 100%;
    object-fit: cover;  Cover the circle card 
}
*/
/* Ensure the circles are responsive 
@media (max-width: 768px) {
    .partners-carousel-slide {
        width: 120px;
        height: 120px;
    }

    .partners-circle-card {
        width: 100%;
        height: 100%;
    }

    .partners-image {
        width: 100%;
        height: 100%;
    }
}
*/


/* Section background and layout */
.hero {
    background-color: #f8f9fa; /* Light background color */
    padding: 50px 0; /* Add some padding for better spacing */
    position: relative;
}

    /* Container styling */
    .hero .container {
        position: relative;
    }

    /* Positioning the content to appear below the image */
    .hero .swiper-slide {
        display: flex;
        align-items: flex-start; /* Align items to the top */
    }

    /* Slide content styling */
    .hero .slide-content {
        position: relative;
        z-index: 2; /* Ensure content is above other elements */
        padding-top:500px;
    }

    
    /* Additional styling if needed */
    .hero .single-slide p {
        font-size: 1.2rem;
        line-height: 1.5;
        padding-top: 500px;
    }

/* Ensure the navbar items are positioned correctly */
/* Ensure header and navbar are properly aligned */


    header .container {
        display: flex;
        align-items: center;
        justify-content: space-between; /* Space out heading and nav items */
        padding: 10px 20px; /* Add some padding for better spacing */
    }

/* Style the heading in the navbar */
.navbar h1 {
    font-size: 16px; /* Adjust the font size */
    font-weight: 700; /* Make the heading bold */
    margin: 0; /* Remove default margins */
    white-space: nowrap; /* Prevent the text from wrapping to the next line */
    color: #f1f2f3; /* Add a color to make it stand out */
}

/* Ensure proper alignment of navbar items */
.navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none; /* Remove bullet points */
}

/* Ensure each nav item stays in line */
.navbar .nav-item {
    position: relative;
    margin: 0; /* Remove default margins */
}

/* Style the nav links */
.navbar .nav-link {
    padding: 0.5rem 0.8rem; /* Padding inside each link */
    color: white;
    text-decoration: none; /* Remove underline from links */
    white-space: nowrap; /* Prevent text from wrapping */
}

/* Style the dropdown menu */
.navbar .nav-item .dropdown-menu {
    display: none; /* Hide the dropdown by default */
    position: absolute;
    top: 100%; /* Position the dropdown below the parent item */
    left: 0;
    z-index: 1000; /* Ensure dropdown is on top of other content */
    background-color: #fff; /* Background color of the dropdown */
    border: 1px solid #ddd; /* Border color */
    border-radius: 0.25rem; /* Rounded corners */
    min-width: 160px; /* Minimum width of the dropdown menu */
}

/* Show the dropdown menu on hover */
.navbar .nav-item:hover .dropdown-menu {
    display: block; /* Show dropdown when parent is hovered */
}

/* Style dropdown items */
.navbar .dropdown-item {
    padding: 0.5rem 1rem; /* Padding inside each item */
    color: #333; /* Text color for dropdown items */
    text-decoration: none; /* Remove underline from links */
    display: block; /* Ensure items take up full width */
}

    /* Style dropdown item on hover */
    .navbar .dropdown-item:hover {
        background-color: #f8f9fa; /* Background color on hover */
    }



/* Style the navbar toggler button */
.navbar-toggler {
    margin-left: auto; /* Push the toggler to the right */
}

/* Style the login button with effects */
.navbar .nav-item a[href="#login"] {
    background-color: #3498db; /* Background color for the button */
    color: #fff; /* Text color */
    padding: 0.5rem 1rem; /* Padding */
    border-radius: 4px; /* Rounded corners */
    font-weight: 600; /* Make text bold */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Transition effects */
}

    .navbar .nav-item a[href="#login"]:hover {
        background-color: #2980b9; /* Darker background color on hover */
        transform: scale(1.05); /* Slightly enlarge the button on hover */
    }

/* Responsive adjustments for smaller screens */
@media (max-width: 767px) {
    .navbar h1 {
        font-size: 15px; /* Smaller font size on mobile */
    }

    .navbar-nav {
        flex-direction: column; /* Stack nav items vertically */
        align-items: flex-start; /* Align items to the left */
    }

        .navbar-nav .nav-link {
            padding: 0.5rem 1rem; /* Adjust padding */
        }
}

/* General Styles */
body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #E4080A;
}





/* styles.css */
/* styles.css */

/* Implementation Section */
.implementation-section {
    align-items: center;
    padding: 40px 0; /* Padding for the section */
}

.implementation-heading {
    padding-top: 10px;
    font-size: 26px; /* Font size for the heading */
    font-weight: bold;
    margin-bottom: 40px; /* Space below the heading */
}

/* Container for proper alignment */
.container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
}

/* Card Container */
.row {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping of columns if needed */
    justify-content: center; /* Center the cards horizontally within the row */
}

/* Card Styling */
.plain-card {
    margin: 10px; /* Space between cards */
    padding: 20px; /* Padding inside each card */
    background-color: rgb(76, 87, 106);
    border: 1px solid #ccc; /* Optional: border for a slight outline */
    border-radius: 8px; /* Rounded corners */
    width: 80%; /* Adjust width to make the cards smaller */
    height: 200px; /* Fixed height for the cards */
    display: flex;
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Shadow for a subtle depth effect */
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .plain-card {
        width: 100%; /* Full width on small screens */
        max-width: none; /* Remove maximum width */
        height: auto; /* Adjust height based on content */
    }
}

.section-title {
    margin-bottom: 20px;
}

.title-color {
    color: #007bff; /* Title color */
}

header {
    background-color: #7A9078;
    color: #fff;
    z-index: 1000;
}

    header a {
        color: #fff;
    }

    header::after {
        content: "";
        width: 100%;
        height: 2px;
        background-color: rgba(255, 255, 255, 0.02);
        position: absolute;
        left: 0;
        bottom: -20px;
    }

.nav-link {
    font-family: "Rajdhani", sans-serif;
    text-transform: none;
}

.contact {
    font-size: 12px;
}

.tel {
    margin-right: 30px;
}

.contact i {
    color: #ee1515;
    margin-right: 10px;
}

.login {
    padding: 10px 20px;
    font-size: 14px;
    margin-right: 25px;
    text-transform: uppercase;
}

    .contact a:hover,
    .login:hover {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
    }

    .login i {
        color: #ee1515;
        margin-right: 8px;
    }

.navbar>h1 {
   justify-content:flex-start;
}

.social {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

    .social li:not(:last-child) {
        margin-right: 20px;
    }

    .social a {
        font-size: 14px;
        display: inline-block;
        width: 40px;
        height: 40px;
        border: 1px solid #ee1515;
        border-radius: 4px;
        line-height: 40px;
        text-align: center;
        background-color: transparent;
        transition: all 0.25s ease-in-out;
    }

        .social a:hover {
            color: #fff;
            background-color: #ee1515;
        }

.navbar-brand img {
    width: 135px;
}

.navbar-collapse .search-form input[type="text"] {
    border: 1px solid #ced4da;
    color: #333;
    padding: 1.5625rem 0.625rem;
}

.navbar-collapse .search-form .btn {
    margin-top: 0;
    border-radius: 0;
    margin-left: -1px;
}

.navbar-collapse .nav-link {
    font-size: 1.125rem;
    transition: all 0.2s ease-in-out;
}

    .navbar-collapse .nav-link:hover {
        color: #ee1515;
    }

.cart,
.login-icon,
.search-icon {
    color: #fff;
    font-size: 1.5rem;
}

    .cart:hover,
    .login-icon:hover,
    .search-icon:hover {
        color: #ee1515;
    }

.cart {
    margin-left: 20px;
}

form input.btn-primary:hover,
form button.btn-primary:hover {
    background-color: #fff;
    color: red;
}

/*-----------------------------------
    1 - Hero
------------------------------------*/


.hero {
    position: relative;
    width: 100%;
    height:90vh;
}

.carousel {
    position: relative;
    width: 100%;

    .carousel-inner{
    height: 100%;

.carousel-item {
    height: 100%;
}


.carousel-caption {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: $carousel-caption-color;
    padding: $carousel-caption-padding-y;
    width: $carousel-caption-width;
    text-align: center;
    border-radius: 0.5rem;
   
}



.carousel-control-prev,
.carousel-control-next {
    filter: invert(1);
    // Make control icons white opacity: $carousel-control-opacity;
    transition: opacity $carousel-control-transition;
    &:hover


    opacity: $carousel-control-hover-opacity;
    // Change opacity on hover
}

&-icon {
    width: $carousel-control-icon-width;
    background-image: $carousel-control-prev-icon-bg;
    // Background for prev icon
}

&-next-icon {
    background-image: $carousel-control-next-icon-bg;
    // Background for next icon
}

}

.carousel-indicators {
    [data-bs-target]

{
    background-color: rgba(255, 255, 255, $carousel-indicator-opacity);
    // Semi-transparent indicators width: $carousel-indicator-width;
    height: $carousel-indicator-height;
    margin: $carousel-indicator-spacer;
    &.active

{
    background-color: $carousel-indicator-active-bg;
    // Active indicator color opacity: $carousel-indicator-active-opacity;
    // Active opacity
}

transition: opacity $carousel-indicator-transition; // Transition for indicators
}
}
}


    .hero .container {
        height: 800px;
       
    }

    .hero .slide-content {
        padding-top: 500px;
        color: #ffff;
    }

        .hero .slide-content span {
            color: #ee1515;
        }

        .hero .slide-content h1 {
            color: #fff;
            text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.56);
            text-transform: uppercase;
            -webkit-transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
            transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
            font-weight: bold;
        }

        .hero .slide-content p {
            color: #170936;
            -webkit-transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
            transform: matrix(0.93128, 0, 0, 0.93128, 0, 0);
            padding: 35px 0 35px 30px;
            background-color: rgba(255, 255, 255, 0.51);
            border-radius: 10px;
            margin-bottom: 0;
        }

        .hero .slide-content .btn {
            margin-top: 50px;
        }

            .hero .slide-content .btn:last-child {
                margin-left: 30px;
            }

    .hero .arr-left,
    .hero .arr-right {
        font-size: 3rem;
        display: block;
        color: #fff;
        text-align: center;
        position: absolute;
        top: 85%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 9;
    }

        .hero .arr-left:hover,
        .hero .arr-right:hover {
            cursor: pointer;
        }

    .hero .arr-right {
        right: 15px;
    }

    .hero .diag-bg {
        width: 100%;
        height: 100%;
        -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
        clip-path: polygon(0 0, 100% 100%, 100% 0);
        background-color: rgba(240, 0, 255, 0.1);
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .hero .texture {
        width: 100%;
        height: 100%;
        background: url("../images/hero-texture.png") no-repeat center;
        background-size: cover;
        opacity: 0.4;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .hero::after {
        content: "";
        width: 100%;
        height: 2px;
        background-color: rgba(255, 255, 255, 0.02);
        position: absolute;
        left: 0;
        bottom: 29%;
    }

    .hero::before {
        content: "";
        width: 100%;
        height: 2px;
        background-color: rgba(255, 255, 255, 0.02);
        position: absolute;
        left: 0;
        bottom: 58%;
    }

/*-----------------------------------
    1 - CTA
------------------------------------*/
.cta-content {
    padding: 30px 0 90px;
    color: #fff;
    background-color: #ee1515;
    position: relative;
    z-index: 1;
}

    .cta-content::after {
        content: "";
        width: 100%;
        height: 100%;
        background-color: rgba(24, 9, 53, 0.77);
        position: absolute;
        top: -25px;
        left: -1px;
        z-index: -1;
        transition: all 0.2s ease-in-out;
    }

    .cta-content .subscribe-btn {
        align-self: flex-end;
        margin-right: 30px;
    }

/*-----------------------------------
    1 - Services
------------------------------------*/
.title {
    font-weight: 700;
    text-transform: uppercase;
}

    .title h6 {
        letter-spacing: 4px;
        margin-bottom: 20px;
    }

    .title h1 {
        font-size: 25px;
    }

    .title .title-blue {
        color: #26264b;
    }

    .title .title-primary {
        color: #ee1515;
    }

.Implementation-section {
    padding: 60px 0;
    font-size: 26px;
}
/* Background color for the section */
.goals {
    padding: 60px 0;
    background-color: #f0f8ff; /* Example background color (light blue); adjust as needed */
    padding: 2rem 0; /* Adjust padding as needed */
}

/* styles.css */
.services {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-container {
    text-align: center;
    max-width: 800px; /* Adjust the maximum width of the card container */
    margin: 0 auto; /* Center the container */
}

.title {
    margin-bottom: 20px; /* Space below the title */
}

.title-blue h1 {
    color: #007bff; /* Example color for the title */
}

.card-body {
    display: flex;
    justify-content: center;
    align-items: center;
   
}



.title {
    text-align: center;
    margin-bottom: 20px; /* Space below the title */
}

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

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 33.33%; /* Show 3 images at a time */
    box-sizing: border-box;
    padding: 0 10px; /* Space between slides */
}

    .carousel-slide img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px; /* Optional: rounded corners for images */
    }

.carousel-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%; /* Round buttons */
    width: 40px; /* Set a fixed size */
    height: 40px; /* Set a fixed size */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    .carousel-button.left {
        left: 10px; /* Space from the left edge */
    }

    .carousel-button.right {
        right: 10px; /* Space from the right edge */
    }
/* Italic style for the paragraph */
.italic-text {
    color: #e7e7e7;
    font-style: italic;
    margin-bottom: 2rem; /* Adjust margin as needed */
}

.goal-text {
    font-size: 25px;
    size: 10px;
    color: #fafafa;
}

.goal-logo {
    width: 10px;
}

/* Container for the goal image and text */
.goal-text {
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    align-items: center; /* Center align the image and text horizontally */
    text-align: center; /* Center align the text */
    margin: 1rem 0; /* Adjust margin as needed */
}

/* Style for the logo */
.goal-logo {
    width: 30px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    filter: brightness(0) invert(1); /* Change logo color to white */
    margin-bottom: 0.5rem; /* Space between the image and text */
}

/* Style for the text description */
.goal-description {
    font-size: 1rem; /* Adjust font size as needed */
    color: #fff8f8; /* Adjust text color as needed */
}

/* Additional styles for the title and goal icon if needed */
.title-blue {
    color: #007bff; /* Adjust title color as needed */
    font-size: 2.5rem; /* Adjust font size as needed */
}

/* Goal icon styling */
.goal-icon {
    font-size: 1.5rem; /* Adjust size of the icon as needed */
    color: #007bff; /* Adjust color to match your design */
    margin-right: 0.5rem; /* Space between the icon and text */
}

.goals {
    background-color: rgb(76, 87, 106);
}

.services {
    padding: 80px 0 50px;
}

    .services .title {
        margin-bottom: 20px;
    }

    .services .media {
        margin: 20px 0;
    }

    .services h5 {
        color: #26264b;
        border-bottom: 2px solid #e7e7e7;
        padding-bottom: 5px;
        margin-bottom: 10px;
    }

/*-----------------------------------
    1 - Featured
------------------------------------*/
.featured {
    padding: 80px 0;
    background-color: #fafafa;
}

    .featured p {
        margin: 35px 0 53px;
    }

    .featured .media i {
        font-size: 24px;
        color: #ee1515;
    }

    .featured .media h5 {
        text-transform: uppercase;
        color: #26264b;
    }

    .featured .btn {
        margin-top: 80px;
    }

.featured-img {
    position: relative;
    height: 530px;
    margin-top: 60px;
}

.featured-big {
    position: absolute;
    bottom: 0;
    right: 0;
}

.featured-small {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px 25px 0 0;
    background-color: #fff;
}

/*-----------------------------------
    1 - Recent Posts
------------------------------------*/
.recent-posts {
    padding: 65px 0 100px;
}

    .recent-posts .btn {
        margin-top: 60px;
    }

    .recent-posts .row .col-lg-6:nth-of-type(odd) .post-thumb {
        margin-top: 30px;
    }

    .recent-posts .row .col-lg-6:nth-of-type(even) .post-thumb {
        margin-bottom: 30px;
    }

.single-rpost {
    margin: 35px 0 0;
}

.post-thumb {
    flex: 0 0 273px;
}

.post-content {
    color: #ccc;
}

    .post-content time {
        font-size: 14px;
        color: #ccc;
    }

    .post-content h3 {
        margin: 10px 0 2px;
    }

        .post-content h3 a {
            color: #26264b;
            font-weight: 600;
        }

            .post-content h3 a:hover {
                font-weight: 700;
                text-decoration: none;
            }

    .post-content a {
        color: #ccc;
    }

        .post-content a:hover {
            color: #26264b;
        }

    .post-content .post-btn {
        color: #6e6e6e;
        text-align: center;
        font-size: 10px;
        display: inline-block;
        width: 38px;
        height: 38px;
        line-height: 38px;
        border-radius: 50%;
        background-color: whitesmoke;
    }

        .post-content .post-btn:hover {
            color: #fff;
            background-color: #ee1515;
        }

/*-----------------------------------
    1 - Trust
------------------------------------*/
.trust {
    padding: 75px 0;
    background-color: #26264b;
    color: #ddd;
    position: relative;
}

    .trust .title {
        margin-bottom: 46px;
    }

    .trust h1 {
        color: #fff;
    }

    .trust h5 {
        font-size: 24px;
        color: #fefefe;
        margin: 28px 0 12px;
    }

    .trust ul {
        color: #fff;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }

    .trust li {
        margin-bottom: 15px;
    }

    .trust .gallery img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        height: 100%;
    }

    .trust .gal-img {
        display: inline-block;
        position: relative;
        z-index: 1;
    }

        .trust .gal-img i {
            font-size: 72px;
            color: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            opacity: 0;
            z-index: 2;
        }

        .trust .gal-img::after {
            content: "";
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: all 0.2s ease-in-out;
        }

        .trust .gal-img:hover {
            cursor: pointer;
        }

            .trust .gal-img:hover i {
                opacity: 1;
            }

            .trust .gal-img:hover::after {
                opacity: 1;
            }

    .trust .gal-img3 {
        top: -50%;
        left: 50%;
    }

/*-----------------------------------
    1 - Pricing Table
------------------------------------*/
.pricing-table {
    padding: 100px 0;
}

.single-pricing {
    padding: 65px 0 40px;
    margin-top: 23px;
    color: #fff;
    background: #26264b;
    border: 0px solid #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

    .single-pricing span {
        font-size: 12px;
        text-transform: uppercase;
        padding: 6px 15px;
        border-radius: 15px;
        background-color: transparent;
        position: absolute;
        top: 28px;
        right: 6px;
        transition: all 0.2s ease-in-out;
    }

    .single-pricing h2 {
        margin-bottom: -5px;
    }

    .single-pricing .desc {
        color: #9d9d9d;
        padding-bottom: 30px;
        margin-bottom: 32px;
        border-bottom: 2px solid #2f2f2f;
        transition: all 0.2s ease-in-out;
    }

    .single-pricing .price {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .single-pricing p {
        color: #ddd;
    }

        .single-pricing p:last-of-type {
            margin-bottom: 25px;
        }

    .single-pricing svg {
        width: 170px;
        position: absolute;
        top: -45px;
        right: -60px;
        z-index: -1;
        transition: all 0.5s ease-in-out;
    }

    .single-pricing:hover {
        border: 4px solid #fff;
        box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.16);
        margin: 19px 0 -4px;
    }

        .single-pricing:hover span {
            background-color: #26264b;
        }

        .single-pricing:hover .desc {
            color: #fff;
            border-bottom: 2px solid rgba(245, 245, 245, 0.322);
        }

        .single-pricing:hover svg {
            width: 500%;
            top: -200%;
            right: -50%;
        }

        .single-pricing:hover .btn {
            box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
        }

/*-----------------------------------
    1 - Testimonials
------------------------------------*/
.testimonial-and-clients {
    background: url(../images/test-clients-bg.png) center center/cover no-repeat #ee1515;
}

.testimonials {
    padding: 95px 0 85px;
    color: #fff;
    border-bottom: 1px solid #26264b;
}

    .testimonials .test-img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        margin: 0 auto;
        overflow: hidden;
    }

        .testimonials .test-img img {
            -o-object-fit: cover;
            object-fit: cover;
            width: 100%;
            height: 90px;
        }

    .testimonials h5 {
        color: #26264b;
        margin-top: 15px;
    }

    .testimonials span {
        color: #c4c4c4;
        display: inline-block;
        margin: 0 0 17px;
    }

    .testimonials p {
        font-size: 17px;
        line-height: 27px;
    }

.test-pagination {
    text-align: center;
    margin-top: 8px;
}

    .test-pagination span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background-color: #26264b;
        margin-bottom: 0;
        transition: all 0.2s ease-in-out;
    }

        .test-pagination span:hover {
            cursor: pointer;
        }

        .test-pagination span:not(:last-child) {
            margin-right: 10px;
        }

        .test-pagination span.swiper-pagination-bullet-active {
            width: 12px;
            height: 12px;
            background-color: white;
        }

/*-----------------------------------
    1 - Clients
------------------------------------*/
.clients {
    padding: 70px 0;
}

    .clients .swiper-wrapper {
        text-align: center;
    }

/*-----------------------------------
    1 - CTA 2
------------------------------------*/
.cta2 {
    margin: 50px 0 -30px;
}

/*-----------------------------------
    1 - Footer
------------------------------------*/
footer {
    background: url(../images/footer-bg.png) center center/cover no-repeat #26264b;
}

/*-----------------------------------
    1 - Footer Widgets
------------------------------------*/
/* default Footer Widgets */
.default-footer {
    padding: 50px 0;
    background-color: #1c334a; /* Adjust background color as needed */
}

    .default-footer .container {
        max-width: 1140px; /* Adjust container width if needed */
    }

    .default-footer .single-widget {
        color: #aaa;
    }

        .default-footer .single-widget .widget-title {
            font-size: 17px;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 20px;
        }

        .default-footer .single-widget i {
            color: #ee1515;
        }

        .default-footer .single-widget h6 {
            color: #fff;
        }

    .default-footer .contact-widget a {
        color: #aaa;
    }

    .default-footer .contact-widget i {
        font-size: 22px;
    }

    .default-footer .contact-widget .social-media-icons a {
        display: inline-block;
        width: 36px;
        height: 36px;
        line-height: 36px;
        background-color: #444;
        color: #ddd;
        text-align: center;
        margin-right: 10px;
        border-radius: 10px;
        transition: background-color 0.3s;
    }

        .default-footer .contact-widget .social-media-icons a:hover {
            background-color: #ee1515;
        }

    /* Google Maps Widget */
    .default-footer .map-widget {
        margin-top: 20px;
    }

        .default-footer .map-widget .map-container iframe {
            border: 0;
            width: 100%; /* Make iframe responsive */
            height: 250px; /* Adjust height */
        }



/* Responsive Adjustments */
@media (max-width: 768px) {
    .default-footer .col-md-6 {
        width: 100%;
    }

    .default-footer .col-xl-4,
    .default-footer .col-xl-8 {
        width: 100%;
    }

    .default-footer .single-widget {
        margin-bottom: 30px; /* Space between widgets */
    }
}
/* Af footer widget*/
.af-footer {
    padding: 50px 0;
    background: url('https://img.freepik.com/premium-vector/green-yellow-waves-white-background_1302-5992.jpg?w=2000') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    position: relative;
    border-bottom: 5px solid #2e7d32;
    border-top: 5px solid #2e7d32;
}

.af-footer .row > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.af-footer .contact-widget {
    text-align: left;
    width: 100%;
}

.af-footer .map-container iframe {
    width: 100%;
    height: 250px;
}

.af-footer .single-widget {
    color: #2e7d32;
}

.af-footer .single-widget .widget-title {
    font-size: 17px;
    text-transform: uppercase;
    color: #2e7d32;
    margin-bottom: 20px;
}

.af-footer .single-widget i {
    color: #2e7d32;
}

.af-footer .single-widget h6 {
    color: #2e7d32;
}

.af-footer .single-widget ul li a {
    color: #2e7d32;
    text-decoration: none;
    transition: color 0.3s ease;
}

.af-footer .single-widget ul li a:hover {
    color: #1b5e20;
}

.af-footer .contact-widget a {
    color: #2e7d32;
}

.af-footer .contact-widget i {
    font-size: 22px;
    color: #2e7d32;
}

.af-footer .social-media-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    color: #2e7d32;
    text-align: center;
    margin-right: 10px;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid #2e7d32;
}

.af-footer .social-media-icons a:hover {
    background-color: #2e7d32;
    color: #ffffff;
}



    /* Google Maps Widget */
    .af-footer .map-widget {
        margin-top: 20px;
    }

        .af-footer .map-widget .map-container iframe {
            border: 0;
            width: 100%; /* Make iframe responsive */
            height: 250px; /* Adjust height */
        }



/* Responsive Adjustments */
@media (max-width: 768px) {
    .af-footer .col-md-6 {
        width: 100%;
    }

    .af-footer .col-xl-4,
    .af-footer .col-xl-8 {
        width: 100%;
    }

    .af-footer .single-widget {
        margin-bottom: 30px; /* Space between widgets */
    }
}
.nav-item {
    color: white;
}


/*custom css form sidebar*/


.page {
    display: flex;
}

.sidebar {
    position: sticky;
    top: 0;
    left: 0;
    height: 100%;
    /*width: 280px;*/ /* Adjust width as necessary */
    background-color: #f8f9fa; /* Example background */
    z-index: 10;
    overflow-y: auto; /* Allow the sidebar to scroll if content exceeds height */
}

.content-wrapper {
    /*width: calc(100% - 250px);*/ /* Ensure the main content takes up remaining space */
    overflow-x: hidden;
    /*overflow-y: auto;*/ /* Enable scrolling for overflowing content */
}






/**/

.form-control {
    width: 200px; /* Set your desired width */
}





/* --------------------
    RWI Operational Area
-------------------------*/

.responsive-image {
    width: 1100px; /* Fixed width for desktop */
    height: 800px; /* Fixed height for desktop */
    object-fit: cover; /* Maintain aspect ratio while covering the area */
    display: block; /* Ensure no extra space below the image */
    margin: 0 auto; /* Center the image in its container */
}

/* Media query for mobile view */
@media (max-width: 768px) {
    .responsive-image {
        width: 90%; /* Responsive width for mobile */
        height: auto; /* Maintain aspect ratio on mobile */
        max-height: 600px; /* Optional: limit the height for mobile */
    }
}



