/* slider */
       /* Optional: Add custom styles for the popup */
   /* Additional CSS styles for slider container */
   .swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide content vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}
/* CSS for small screens */
@media (max-width: 768px) {
    .swiper-slide img {
        height: auto; /* Reset height to auto for smaller screens */
        width: 100%; /* Ensure images take full width of the slider */
    }
}

/* slider end */



/* nav test */
  /* Basic reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    margin: 0;
    padding: 0;
}

/* Header styles */
#header {
    background-color: rgba(52, 58, 64, 0.1); /* Almost transparent background */
    padding: 5px 0; /* Adjusted padding for minimum height */
    border-bottom: none;
    width: 100%;
    z-index: 1000;
    text-align: center; /* Center navigation links */
    position: fixed; /* Keep navigation fixed at the top */
    top: 0; /* Position navigation at the top of the viewport */
    transition: background-color 0.3s ease; /* Smooth transition for background color change */
}

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

.header-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.header-menu li {
    margin: 0 10px; /* Reduced margin */
    position: relative;
}

.header-menu li a {
    text-decoration: none;
    color: #f8f7f1; /* Link text color */
    font-weight: bold;
    padding: 5px 10px; /* Adjusted padding */
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap; /* Ensure text remains in a single line */
    line-height: 1.5; /* Adjusted line height */
}

.header-menu li a:hover {
    background-color: #424242; /* Hover background color */
    color: #fff; /* Hover text color */
}

.sub-menu {
    display: none;
    position: absolute;
    background-color: rgba(52, 58, 64, 0.3); /* Dropdown background color */
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
    padding: 10px;
    left: 100%; /* Position the submenu to the right of the parent */
    top: 0;
    min-width: 150px;
    text-align: left;
}

.sub-menu li {
    margin: 5px 0;
}

.sub-menu li a {
    color: #fff; /* Dropdown link text color */
    display: block;
    padding: 5px 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.sub-menu li a:hover {
    background-color: #424242; /* Hover background color */
}

/* Show submenu on hover */
.header-menu .contact-submenu:hover .submenu-popup {
    display: block;
}

/* Sticky navigation styles */
.sticky-nav {
    background-color: #000 !important; /* Black background color when sticky */
    transition: background-color 0.3s ease; /* Smooth transition for background color change */
}

.sticky-nav a {
    color: #fff !important; /* White text color when sticky */
}

/* Menu toggle button */
.menu-toggle {
    display: none; /* Hide the menu toggle button by default */
    background-color: #343a40;
    color: #fff;
    border: none;
    padding: 5px 20px; /* Adjusted padding */
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    position: absolute; /* Position the toggle button */
    top: 50%; /* Align vertically */
    right: 20px; /* Adjust distance from the right edge */
    transform: translateY(-50%); /* Center vertically */
    height: 30px; /* Adjusted height to match the navigation bar */
}

/* Side navigation menu */
.side-nav {
    position: fixed;
    top: 0;
    right: -300px; /* Adjusted right position */
    width: 250px; /* Normal width for the side navigation menu */
    height: 100%;
    background-color: #343a40; /* Side navigation background color */
    transition: right 0.3s ease; /* Smooth transition for menu sliding effect */
    padding-top: 50px; /* Add padding for the menu toggle button */
    z-index: 1001; /* Ensure the side navigation appears above other content */
    overflow-y: auto; /* Add scrollbar for vertical overflow */
}

.side-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.side-nav li {
    margin-bottom: 10px;
}

.side-nav a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.side-nav a:hover {
    background-color: #ffffff; /* Hover background color */
    color: #000000;
}

/* Show submenu popup */
.submenu-popup {
    display: none;
    position: absolute;
    background-color: rgba(52, 58, 64, 0.3); /* Submenu popup background color */
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
    padding: 10px;
    left: calc(100% + 10px); /* Position the submenu popup to the right of the parent */
    top: 0;
    min-width: 150px;
    text-align: left;
}

.submenu-popup a {
    color: #fff; /* Submenu popup link text color */
    display: block;
    padding: 5px 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.submenu-popup a:hover {
    background-color: #ffffff; /* Hover background color */
    color: #000000;
}

/* Show submenu popup on click */
.header-menu .contact-submenu {
    position: relative; /* Ensure relative positioning for submenu */
}

.header-menu .contact-submenu .submenu-popup {
    position: absolute;
    top: 100%; /* Position the submenu below the parent */
    left: 0;
    display: none;
}

.header-menu .contact-submenu.open .submenu-popup {
    display: block;
}

/* Media query for smaller screens */
@media (max-width: 992px) {
    .header-menu {
        display: none; /* Hide the nav links by default on smaller screens */
    }

    .menu-toggle {
        display: block; /* Show the menu toggle button on smaller screens */
        margin: 20px 0; /* Add margin to the menu toggle button */
    }

    .side-nav {
        top: 0;
        left: -250px; /* Initially hide the side navigation menu */
        width: 250px; /* Normal width for the side navigation menu */
        padding-top: 0; /* Remove padding for the menu toggle button */
    }
     
}
/* Media query for smaller screens */

.side-nav .contact-submenu {
position: relative;
}

.side-nav .submenu-popup {
position: absolute;
top: calc(100% + 5px); /* Position the sub-menu below the parent */
left: 0;
display: none;
}
.side-nav {
position: fixed;
top: 0;
right: -300px; /* Adjusted right position */
width: 250px; /* Normal width for the side navigation menu */
height: 100%;
background-color: #343a40; /* Side navigation background color */
transition: right 0.3s ease; /* Smooth transition for menu sliding effect */
padding-top: 50px; /* Add padding for the menu toggle button */
z-index: 1001; /* Ensure the side navigation appears above other content */
}

.close-button {
position: absolute;
top: 10px;
right: 10px;
font-size: 20px; /* Adjust font size as needed */
color: #fff;
cursor: pointer;
z-index: 1002; /* Ensure the close button appears above other content */
}

.close-button:hover {
color: #ccc; /* Change color on hover */
}


/* nav test end*/

/* Partner Section Start */

.image-container {
    margin-left: -3px; /* Compensate for the negative margin on columns */
    margin-right: -3px; /* Compensate for the negative margin on columns */
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center horizontally */
}

.image-item {
    padding-left: 3px; /* Add space between columns */
    padding-right: 3px; /* Add space between columns */
    margin-bottom: 3px; /* Add space between rows */
    width: 150px; /* Set a fixed width for image containers */
    height: 150px; /* Set a fixed height for image containers */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.image-item img {
    max-width: 100%; /* Ensure image fits inside container */
    max-height: 100%; /* Ensure image fits inside container */
    display: block;
    margin: auto; /* Center the image within the container */
}


/* Partner Section End */

/*first page - padding on small screen*/

@media only screen and (max-width: 991px) {
    .col-lg-6:first-child .about-title {
        padding-left: 50px; /* Add padding to the left of the first column */
        padding-right: 50px; /* Add padding to the right of the first column */
        margin-bottom: 24px;
    }
}
        @media only screen and (max-width: 767px) {
    .col-lg-6:first-child .about-title {
        padding-left: 35px; /* Add padding to the left of the first column */
        padding-right: 35px; /* Add padding to the right of the first column */
        margin-bottom: 24px;
    }
        }
    @media only screen and (max-width: 767px) {
    .col-lg-6 .feilds {
        margin-bottom: 15px;
    }
}

/*first page - padding on small screen end*/


