body {
    margin: 0;
    padding: 0;
}

body,
header,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Ubuntu", sans-serif;
    line-height: 1.6rem;
}

h2 {
    color: #77358b;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

p {
    /* color: #7a7a7a; */
    margin-bottom: 40px;
    font-size: 16px;
}



header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 20px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    max-height: 70px;
}

nav ul {
    font-size: 18px;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    position: relative;
}

nav a {
    color: #77358b;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

nav a:hover {
    color: #d71d58;
}

.submenu {
    width: 250px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    /* border: 1px solid #e0e0e0; */
    list-style: none;
    z-index: 9999;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
}

.submenu li {
    padding: 2px;
}

.submenu li a {
    text-decoration: none;
    display: block;
}

.submenu li+li {
    border-top: 1px solid #e0e0e0;
}

.dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #77358b;
    content: "";
    transition: border-top-color 0.3s ease;
}

nav li:hover .dropdown-arrow {
    border-top-color: #d71d58;
}

.submenu a {
    color: #77358b;
}

.submenu a:hover {
    color: #d71d58;
}

nav li:hover .submenu {
    display: block;
}

nav li:hover>a {
    color: #d71d58;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        width: 100%;
    }

    .submenu {
        position: static;
        background-color: rgb(255, 255, 255);
    }
}

/* Overlay Menu Styles */
.mobile-menu {
    overflow-y: auto;
    display: none;
    /* Initially hidden */
    position: fixed;
    /* Fixed position */
    top: 0;
    /* Align to top */
    left: 0;
    /* Align to left */
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: rgb(255, 255, 255);
    /* Semi-transparent background */
    z-index: 1000;
    /* Stack on top */
    padding-top: 60px;
    /* Space for the close button */
    transition: 0.5s;
    /* Transition for opening */
}

.mobile-menu.show {
    display: block;
    /* Show menu when toggled */
}

.mobile-menu .close {
    position: absolute;
    /* Position close button */
    top: 20px;
    /* From top */
    right: 40px;
    /* From right */
    font-size: 40px;
    /* Size */
    color: #77358b;
    /* Color */
    cursor: pointer;
    /* Pointer on hover */
}

/* Mobile Menu Links */
.mobile-menu ul {
    border: none;
    list-style: none;
    /* Remove bullets */
    padding: 0;
    /* Remove padding */
    margin: 0;
    /* Remove margin */

}

.mobile-menu li {
    padding: 15px 20px;
    /* Padding for links */

}

.mobile-menu li a {
    color: white;
    /* Link color */
    text-decoration: none;
    /* Remove underline */
    font-size: 20px;
    /* Font size */
    display: block;
    /* Block display for full width */
    color: #77358b;
}

/* Submenu styles */
.mobile-menu .submenu {
    display: none;
    /* Hide submenus */
    padding-left: 20px;
    /* Indent submenu items */
}

.mobile-menu li:hover .submenu,
.mobile-menu .submenu.show {
    display: block;
    /* Show submenu on hover or if toggled */
}

.menu-icon {
    display: none;
}

/* Mobile and tablet view */
@media (max-width: 1024px) {
    .desktop-menu {
        display: none;
        /* Hide desktop menu on mobile */
    }

    .menu-icon {
        display: block;
        font-size: 40px;
        position: absolute;
        right: 20px;
        /* Adjust as needed */
        top: 30px;
        /* Adjust for vertical positioning */
    }

    /* Make sure the logo and menu icon don't overlap */

}













/* Slider Styles */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    /* Ensure position for absolute elements */
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* General Button Styles */
.button-container {
    position: absolute;
    text-align: center;
}

.slide-button {
    background-color: #fff;
    color: #77358b;
    border: 2px solid #77358b;
    padding: 5px 16px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    max-width: 200px;
}

.slide-button:hover {
    background-color: #77358b;
    color: #fff;
}

/* Positioning for Slide 1 */
.button-slide-1 {
    bottom: 8%; 
    left: 6%; 
}

/* Positioning for Slide 2 */
.button-slide-2 {
    bottom: 8%; 
    left: 6%; 
}

/* Positioning for Slide 3 */
.button-slide-3 {
    bottom: 8%;
    left: 6%; 
}
 /* vision mission page */
.button-slide-4 {
    bottom: 8%; 
    left: 6%;
}
/* travel and hospitality */
.button-slide-5 {
    bottom: 8%; 
    right: 6%; 
}
/* elearning */
.button-slide-6 {
    bottom: 8%; 
    right: 20%;
}
/* payment solution */
.button-slide-7 {
    bottom: 8%; 
    right: 20%;
}
.button-slide-8 {
    bottom: 20%; 
    left: 7%;
}

.pagination {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.active {
    background-color: #77358b;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .button-slide-1 {
        left: 45%;
        bottom: 25%;
    }
    .button-slide-2 {
        left: 5%;
        bottom: 25%;
    }
    .button-slide-3 {
        left: 45%;
        bottom: 25%;
    }

    /* vision mission page */
    .button-slide-4 {
        left: 45%;
        bottom: 25%;
    }
    /* travel and hospitality */
    .button-slide-5 {
        left: 10%;
        bottom: 25%;
    }
    /* elearning */
    .button-slide-6 {
        left: 10%;
        bottom: 25%;
    }
    /* payment solution */
    .button-slide-7 {
        right: 75%;
        bottom: 30%;
    }
    .button-slide-8 {
        bottom: 20%; 
        left: 15%;
    }

}

@media (max-width: 768px) {
    .button-slide-1 {
        left: 37%;
        bottom: 20%;
    }
    .button-slide-2 {
        left: 5%;
        bottom: 25%;
    }
    .button-slide-3 {
        left: 37%;
        bottom: 20%;
    }
     /* vision mission page */
    .button-slide-4 {
        left: 17%;
        bottom: 10%;
    }
    /* travel and hospitality */
    .button-slide-5 {
        left: 10%;
        bottom: 20%;
    }
    /* elearning */
    .button-slide-6 {
        left: 10%;
        bottom: 20%;
    }
    /* payment solution */
    .button-slide-7 {
        right: 60%;
        bottom: 20%;
    }
    .button-slide-8 {
        bottom: 10%; 
        left: 7%;
    }
}












/* Services section home page */
.services {
    max-width: 1150px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}

.service-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping */
    gap: 20px; /* Maintain space between items */
    justify-content: center; /* Center items */
}

.service-item {
    position: relative;
    width: calc(25% - 20px);
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-radius: 5px;
    background-color: #fff;
}

/* Black opacity overlay */
.service-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Adjusted to ensure text and button are on top */
.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.service-title {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    z-index: 2;
    transition: transform 0.3s ease;
}

.service-container .know-more {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    color: #ffffff;
    padding: 7px 16px;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 5px;
    opacity: 0;
    font-size: 16px;
    transition: opacity 0.3s ease, background-color 0.3s ease, font-size 0.3s ease;
    z-index: 2;
}

.know-more:hover {
    background-color: #77358b;
    color: white;
}

.service-item:hover .overlay {
    opacity: 1;
}

.service-item:hover .service-title {
    transform: translate(-50%, -50px);
}

.service-item:hover .know-more {
    opacity: 1;
}

@media (max-width: 1024px) {
    .service-item {
        width: calc(33.333% - 20px); /* 3 items per row */
    }
}

/* Mobile view (max-width: 768px) */
@media (max-width: 768px) {
    .service-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto; /* Allow horizontal scrolling */
        gap: 10px;
        padding: 10px 10px 20px; /* Add 20px padding at the bottom */
        justify-content: flex-start;
        scroll-snap-type: x mandatory;

        /* Scrollbar customization */
        scrollbar-width: thin; /* For Firefox */
        scrollbar-color: #77358b #f0f0f0; /* Scroll thumb and track color */
    }

    /* For WebKit browsers */
    .service-container::-webkit-scrollbar {
        height: 8px; /* Height of the horizontal scrollbar */
    }

    .service-container::-webkit-scrollbar-thumb {
        background-color: #77358b; /* Scrollbar thumb color */
        border-radius: 10px; /* Rounded corners for the thumb */
    }

    .service-container::-webkit-scrollbar-track {
        background-color: #f0f0f0; /* Scrollbar track color */
    }

    .service-item {
        flex: 0 0 75%; /* Each item takes 75% of the viewport width */
        max-width: 75%;
        min-width: 75%;
        text-align: center;
        scroll-snap-align: start;
    }

    /* Remove hover effects for title and button */
    .service-item .service-title {
        transform: translateX(-50%); /* Reset transform */
        transition: none; /* Disable transition */
    }

    .service-item:hover .service-title {
        transform: translateX(-50%); /* No movement on hover */
    }

    .service-item .know-more {
        display: none; /* Hide the button */
    }

    .service-item:hover .overlay {
        opacity: 0.3; /* Keep the overlay visible at default opacity */
    }
}


















/* Industries Section */
.industries-container {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.industries-heading {
    font-size: 24px;
    font-weight: bold;
    color: #77358b;
    margin-bottom: 20px;
}

/* Flexbox for industry items */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

/* Industry item box */
.industry-item {
    position: relative;
    flex: 1 1 calc(25% - 20px);
    /* Four items per row with 20px gap */
    max-width: calc(25% - 20px);
    height: 375px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
    /* Add pointer cursor on hover */
}


.industry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

/* Overlay effect on hover */
.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Black overlay with opacity */
    opacity: 0;
    /* Hidden initially */
    transition: opacity 0.3s ease;
    /* Fade in effect */
    z-index: 1;
    /* Ensure overlay is above the image */
}


/* Adjusted industry content for visibility */
.industry-content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 100%;
    /* Full width of the container */
    text-align: center;
    color: #ffffff;
    padding: 0 10px;
    /* Add padding to prevent text from touching edges */
    transition: all 0.3s ease;
    z-index: 2;
    transform: translateX(-50%);
    /* Ensure text is above the overlay */
}


/* Title centered at the bottom */
.industry-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

/* Hover effect */
.industry-hover-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 3px;
    width: 100%;
    /* Make paragraph take full width */
    padding: 0 10px;
    /* Add padding for better text flow */
    box-sizing: border-box;
}


.industry-item:hover .industry-title {
    transform: translateY(-40px);
}

.industry-item:hover .industry-hover-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


.industry-item:hover .industry-overlay {
    opacity: 1;
    /* Show overlay on hover */
}

/* Know More Button */
.industry-hover-content .know-more {
    background-color: transparent;
    color: #ffffff;
    padding: 7px 16px;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
}

.know-more {
    display: inline-block;
    margin-top: 10px;
    background-color: transparent;
    color: #ffffff;
    padding: 7px 16px;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease, font-size 0.3s ease;
}

.know-more:hover {
    background-color: #77358b;
    color: #ffffff;
}
.industry-link {
    text-decoration: none;
    color: inherit;
    display: block; /* Ensures it spans the entire title area */
}



/* Adjusting responsiveness for smaller screens */
/* Industries Section (Responsive Styles for 1024px and 768px) */
@media (max-width: 1024px) {
    .industry-item {
        width: calc(33.333% - 20px); /* 3 items per row */
    }
}

@media (max-width: 768px) {
    .industries-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto; /* Enable horizontal scrolling */
        gap: 10px;
        padding: 10px 10px 20px; /* Add padding at the bottom */
        justify-content: flex-start;
        scroll-snap-type: x mandatory;

        /* Scrollbar customization */
        scrollbar-width: thin; /* For Firefox */
        scrollbar-color: #77358b #f0f0f0; /* Scroll thumb and track color */
    }

    /* For WebKit browsers */
    .industries-grid::-webkit-scrollbar {
        height: 8px; /* Height of the horizontal scrollbar */
    }

    .industries-grid::-webkit-scrollbar-thumb {
        background-color: #77358b; /* Scrollbar thumb color */
        border-radius: 10px; /* Rounded corners for the thumb */
    }

    .industries-grid::-webkit-scrollbar-track {
        background-color: #f0f0f0; /* Scrollbar track color */
    }

    .industry-item {
        flex: 0 0 75%; /* Each item takes 75% of the viewport width */
        max-width: 75%;
        min-width: 75%;
        text-align: center;
        scroll-snap-align: start;
    }

    .industry-item:hover .industry-title {
        transform: translateY(0px);
    }
    
    .industry-item:hover .industry-hover-content {
        display: none;
    }

    .industry-hover-content .know-more {
        display: none;
    }
    
    .know-more {
        display: none;
    }
}










/* Counter Section */
.counter-section {
    padding: 60px 20px; /* Default padding for desktop */
    background-color: #f7f7f7;
    text-align: center;
}

.counter-heading {
    font-size: 24px; /* Default for desktop */
    font-weight: bold;
    color: #77358b;
    margin-bottom: 20px;
}

.counter-description {
    padding: 2% 15%; /* Default for desktop */
    color: #333;
    margin-bottom: 40px;
    font-size: 16px; /* Default for desktop */
    line-height: 1.6;
}

/* Flexbox for counters (Desktop) */
.counter-grid {
    display: flex;
    flex-wrap: wrap; /* Enable wrapping for rows on smaller screens */
    gap: 30px; /* Adjust gap between counter items */
    justify-content: center; /* Center counters horizontally */
    max-width: 1150px; /* Max width for desktop view */
    margin: 0 auto;
}

.counter-item {
    flex: 1 1 calc(20% - 30px); /* Five counters in one row (Desktop) */
    max-width: calc(20% - 30px); /* Ensure proper alignment for five items */
    text-align: center;
    padding: 10px 0; /* Reduced vertical padding */
}

.counter-number {
    font-size: 58px; /* Default for desktop */
    font-weight: bold;
    color: #d71d58;
    margin-bottom: 10px;
}

.counter-text {
    font-size: 20px; /* Default for desktop */
    color: #333;
}

/* Tablet View (1024px) */
@media (max-width: 1024px) {
    .counter-grid {
        gap: 20px; /* Adjust gap for tablet view */
    }

    .counter-item {
        flex: 1 1 calc(33.33% - 20px); /* Three counters per row */
        max-width: calc(33.33% - 20px); /* Adjust for tablet layout */
    }

    .counter-number {
        font-size: 50px; /* Slightly smaller for tablet */
    }

    .counter-text {
        font-size: 18px; /* Adjusted text size for tablet */
    }
    .counter-description {
        padding: 2% 8%; /* Default for desktop */
    }
}

/* Mobile View (768px and below) */
@media (max-width: 768px) {
    .counter-grid {
        gap: 15px; /* Adjust gap for mobile view */
    }

    .counter-item {
        flex: 1 1 calc(45% - 15px); /* Two rows: 3 in first, 2 in second */
        max-width: calc(45% - 15px); /* Fit 3+2 layout */
    }

    /* Center the counters in the second row */
    .counter-grid > .counter-item:nth-last-child(2),
    .counter-grid > .counter-item:nth-last-child(1) {
        margin-left: auto;
        margin-right: auto;
    }

    .counter-number {
        font-size: 36px; /* Smaller font size for mobile */
    }

    .counter-text {
        font-size: 14px; /* Smaller text size for mobile */
    }
    .counter-description {
        padding: 2% 3%; /* Default for desktop */
    }
}











/* Responsive map styling */
.responsive-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}










/* Awards and Recognition Section */
.awards-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.section-heading {
    font-size: 24px;
    font-weight: bold;
    color: #77358b;
    margin-bottom: 40px;
}

.awards-carousel-wrapper {
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
    overflow: hidden;
    /* Hide overflow for seamless looping */
}

.awards-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    /* Space between awards */
}

.carousel-item {
    min-width: 240px;
    height: 230px;
    flex: 0 0 auto;
}

.carousel-item img {
    width: 240px;
    height: 230px;
    display: block;
    border-radius: 8px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-prev,
.carousel-next {
    background-color: transparent;
    border: none;
    color: #77358b;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    outline: none;
}

.carousel-prev {
    position: absolute;
    left: -40px;
    /* Position arrow outside the carousel */
}

.carousel-next {
    position: absolute;
    right: -40px;
    /* Position arrow outside the carousel */
}

.carousel-dots {
    text-align: center;
    margin-top: 15px;
}

.carousel-dots button {
    background-color: #ddd;
    border: none;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    cursor: pointer;
    outline: none;
}

.carousel-dots button.active {
    background-color: #77358b;
}

@media (max-width: 768px) {
    .carousel-dots button {
        width: 8px;
        /* Smaller width for dots */
        height: 8px;
        /* Smaller height for dots */
    }
}






/* Footer Styles */
footer {
    background-color: #f7f7f7;
    color: #fff;
    padding: 2% 0; /* Remove left and right padding */
    width: 100%;
    box-sizing: border-box;
}

/* Footer Container */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    padding: 0 20px; /* Left and right padding only for the main footer content */
    box-sizing: border-box;
}

/* Footer Copyright Section */
.footer-copyright {
    width: 100%;
    text-align: center;
    background-color: #77358b;
    color: white;
    padding: 5px 0; /* Reduced padding to decrease height */
    margin: 0; /* Ensure no extra margin adds to height */
    font-size: 14px; /* Adjust font size if necessary */
    box-sizing: border-box;
}



/* Ensure columns are flexible and responsive */
.footer-column {
    flex: 1 1 180px;
    /* Flex-grow: 1, Flex-shrink: 1, Minimum width: 180px */
    padding: 0 10px;
}

.footer-logo {
    max-width: 170px;
    margin-bottom: 20px;
}

.social-media a {
    margin-right: 10px;
    display: inline-block;
}

.social-media img {
    width: 24px;
    height: 24px;
}

/* Column Headings */
.footer-column h3 {
    color: #77358b;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

/* Links in Footer */
.footer-column ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #77358b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d71d58;
    /* Hover color */
}

/* Contact Info Styling */
.footer-column p {
    color: black;
    margin-bottom: 10px;
}

/* Adjusting the contact info column to be wider */
.footer-column:last-child {
    flex: 2 1 320px;
    /* Contact info gets double the space */
}

/* Responsive Design */
/* Responsive Design for Mobile View */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .footer-column {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    /* Hide Services and Industries columns */
    .footer-column:nth-child(3), /* Services column */
    .footer-column:nth-child(4)  /* Industries column */ {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-column {
        flex-basis: 100%;
        padding: 0;
    }

    .footer-column:last-child {
        flex-basis: 100%;
    }
}










/* why-egs */

.banner {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Default banner button style */
.banner-button {
    position: absolute;
    padding: 10px 20px;
    background-color: #fff;
    color: #77358b;
    border: 2px solid #77358b;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.banner-button:hover {
    color: #fff;
    background-color: #77358b;
}

/* Page-specific button positioning */
.button-page-1 {
    right: 25%;
    top: 60%;
    /* transform: translateY(-50%); */
}

.button-page-2 {
    left: 10%;
    top: 75%;
    /* transform: translateY(-50%); */
}


/* Responsive styling */
@media (max-width: 1024px) {
    .button-page-1 {
        right: 40%;
        top: 70%;
        /* transform: translate(50%, -50%); */
    }
}







.split-section {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    box-sizing: border-box;
    /* Ensure padding is included in total width */
}

/* Left Side and Right Side Styles */
.left-side,
.right-side {
    flex: 1;
    /* Allow both sides to grow equally */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* Add padding for internal spacing */
    box-sizing: border-box;
    /* Ensure padding is included in total width */
}

/* Centered Image */
.centered-image {
    max-width: 80%;
    /* Set max-width for larger screens */
    height: auto;
    /* Keep aspect ratio */
    object-fit: contain;
    border-radius: 15px;
}

/* Text Content */
.text-content {
    text-align: left;
}

/* Section Heading */
.section-heading {
    color: #77358b;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Highlight List */
.highlight-list {
    list-style-type: none;
    padding: 0;
}

.highlight-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

/* Mnemonic Icon */
.mnemonic-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
        /* Stack elements vertically */
        padding: 0px;
        /* Adjust padding for smaller screens */
    }

    .left-side,
    .right-side {
        justify-content: flex-start;
        /* Align content to the left */
        width: 100%;
        /* Ensure full width */
        padding: 10px;
        /* Reduce padding on small screens */
    }

    .section-heading {
        text-align: center;
        /* Center the heading */
        font-size: 22px;
        /* Slightly smaller font size */
    }

    .highlight-list li {
        justify-content: center;
        /* Center align items in the list */
    }

    .centered-image {
        max-width: 100%;
        /* Make the image responsive */
        height: auto;
        /* Maintain aspect ratio */
        margin-top: 20px;
        /* Add space above the image */
    }
}








/* vision, mission, values */


.section-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.vision-section,
.mission-values-section,
.values-section {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    overflow: hidden;
    padding: 0 20px;
    /* Added padding to match the boxed layout */
}

.vision-image,
.mission-values-image {
    flex: 0 0 30%;
    padding: 0 20px;
    box-sizing: border-box;
}

.vision-image img,
.mission-values-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 7%;
}

.vision-content,
.mission-values-content {
    flex: 0 0 70%;
    padding: 0 20px;
    box-sizing: border-box;
}

.vision-content h2,
.mission-values-content h2,
.values-content h2 {
    color: #77358b;
    /* font-size: 28px; */
    margin-bottom: 15px;
}

.vision-content p,
.mission-values-content p {
    /* font-size: 16px; */
    line-height: 1.6;
    color: #333;
}

.section-divider {
    border: none;
    border-top: 1px solid #00000042;
    margin: 50px 0;
}

/* Values Section */
.values-content {
    text-align: center;
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.values-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.value-item {
    flex: 0 0 24%;
    text-align: center;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.value-item img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    /* border-radius: 5%; */
}

.value-item h3 {
    color: #77358b;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {

    .vision-section,
    .mission-values-section,
    .values-section {
        flex-direction: column;
        padding: 10px;
    }

    .vision-image,
    .mission-values-image,
    .vision-content,
    .mission-values-content,
    .values-content {
        flex: 0 0 100%;
        padding: 10px 0;
    }

    .value-item {
        flex: 0 0 48%;
    }
}

@media (max-width: 480px) {
    .value-item {
        flex: 0 0 100%;
    }
}











/* Tabs styling */
.tabs-container {
    text-align: center;
    margin-top: 75px;
    position: sticky;
    top: 0;
    /* Stick the tabs to the top of the viewport */
    background-color: white;
    /* Ensure tabs have a background when they stick */
    z-index: 999;
    /* Ensure tabs appear above other content */
    padding: 15px 0;
    /* Add padding to prevent tabs from sticking too close to the top */
    border-bottom: 1px solid #ddd;
    /* Optional: Add a bottom border to define the tabs area */
}

.tab {
    display: inline-block;
    font-size: 26px;
    color: #77358b;
    cursor: pointer;
    margin: 0 10px;
    transition: color 0.3s;
}

.tab.active {
    font-weight: bold;
    color: #d71d58;
    background-color: white;
}

.tab:hover {
    color: #d71d58;
}

/* Separator between tabs */
.separator {
    font-size: 28px;
    color: #ccc;
    padding: 0 10px;
    /* Add padding around separator */
}

/* Horizontal line with space on left and right */
.horizontal-line {
    border: none;
    border-top: 1px solid #00000038;
    width: 90%;
    /* Reduce width to leave space on the sides */
    margin: 10px auto;
    /* Center the line */
}

/* Leadership container styling */
.leadership-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 items per row */
    gap: 10px;
    padding: 10px;
    max-width: 100%;
    /* Full width on smaller screens */
    width: 1200px;
    /* Max width for larger screens (boxed layout) */
    margin: 0 auto;
    /* Center the container horizontally */
}

/* Individual leadership item styling */
.leadership-item {
    text-align: center;
    padding: 20px;

}

.leadership-item img {
    width: 45%;
}

/* View Profile link styling */
.view-profile {
    cursor: pointer;
    color: #77358b;
    text-decoration: underline;
}

/* Hidden profile description styling */
.profile-description {
    display: none;
    /* Hidden by default */
    margin-top: 10px;
    text-align: justify;
}


/* Style for the featured leader section */
.featured-leader {
    text-align: center;
    padding: 20px;
    width: 45%;
    margin: 0 auto;
    /* Center on screen */
}

.featured-leader img {
    width: 27%;
    /* Same size as leadership-item images */
}

/* Ensures View Profile and Profile Description behave similarly to other items */
.featured-leader .view-profile {
    cursor: pointer;
    color: #77358b;
    text-decoration: underline;
}

.featured-leader .profile-description {
    display: none;
    /* Hidden by default */
    margin-top: 10px;
    text-align: justify;
}

@media (max-width: 768px) {
    .leadership-container {
        grid-template-columns: repeat(1, 1fr);
        /* 1 column on mobile */
        width: 100%;
        /* Full width on smaller screens */
    }
    .featured-leader img {
        width: 45%;
        /* Same size as leadership-item images */
    }

    .featured-leader {
        width: 100%;
    }
}













/* awards and recognition page */
.awards-section {
    padding: 20px;
    text-align: center;
    background-color: #ffffff;
    /* Optional: adds a background color to the section */
}

.section-heading {
    color: #77358b;
    font-size: 2em;
    margin-bottom: 30px;
}

.awards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* Ensure equal space between cards */
    gap: 30px;
    /* Increased space between cards */
    max-width: 1150px;
    /* Boxed container width */
    margin: 0 auto;
    /* Center the container */
    padding: 0 20px;
    /* Add space to the left and right sides of the container */
}

.award-card {
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    padding: 15px;
    background-color: #fff;
    border-radius: 18px;
    text-align: center;
    flex: 1 1 calc(33.333% - 30px);
    /* Adjust width for 3 cards per row with gap consideration */
    max-width: calc(33.333% - 30px);
    /* Ensure card width respects the gap */
    box-sizing: border-box;
}

.award-image {
    max-width: 70%;
    height: auto;
    margin-bottom: 15px;
}

.award-title {
    color: #77358b;
    font-weight: bold;
    margin-bottom: 10px;
}

.award-description {
    color: #555;
    font-size: 0.9em;
}

@media screen and (max-width: 768px) {
    .award-card {
        max-width: 100%;
        flex: 1 1 100%;
        /* Full width on small screens */
    }
}







/* Divider Style */
.divider {
    height: 2px;
    background-color: #00000042;
    margin: 0px 0px 0px 0px;

}

/* Boxed Container Style */
.boxed-container {
    max-width: 1150px;
    /* Same as awards container */
    margin: 0 auto;
    /* Center the container */
    padding: 0 20px;
    /* Add space on the left and right */
    box-sizing: border-box;
}

/* Two-Column Section Style */
.two-column-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Column Style */
.column {
    flex: 1 1 45%;
    text-align: center;
    margin-bottom: 20px;
}

.column-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.column-heading {
    color: #77358b;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.column-text {
    color: #555;
    font-size: 1em;
    line-height: 1.6;
    margin: 0 20px;
    text-align: justify;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .two-column-section {
        flex-direction: column;
    }

    .column {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }

    .column-heading,
    .column-text {
        text-align: center;
    }
}





/* Press Release Section Styling */
#press-release {
    padding: 60px 0;
}

#press-release .section-heading {
    text-align: center;
    color: #77358b;
    font-size: 2rem;
    margin-bottom: 30px;
}

.press-release-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.press-release-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    max-width: 360px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.press-release-title {
    font-weight: bold;
    color: #77358b;
    margin-bottom: 10px;
    font-size: 25px;
}

/* .divider {
    border: 0;
    height: 1px;
    background: #00000042;
    margin: 10px 0;
} */

.press-release-description {
    margin-bottom: 20px;
}

.press-release-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #77358b;
    text-decoration: none;
    border: 1px solid #77358b;
    border-radius: 4px;
}

.press-release-button:hover {
    background-color: #77358b;
    color: #fff;
}

@media (max-width: 768px) {
    .press-release-box {
        max-width: 100%;
    }
}



/* contact us page */
/* Reach Us Section */

/* Reach Us Section */
.reach-us {
    padding: 60px 0;
}

.reach-us-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.reach-us-box {
    flex: 1;
    min-width: 300px;
    padding: 40px;

    max-width: 500px;
}

.reach-us h2 {

    color: #77358b;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 50px;
    margin-top: 0px;
}

.contact-info h3 {
    color: #d71d58;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #333;
    font-size: 18px;
    margin-bottom: 25px;
}



/* Map Container */
.map-container {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

/* Responsive Design */
/* Mobile Responsive Styles */
@media (max-width: 1024px) {

    /* Reach Us Section */
    .reach-us {
        padding: 40px 10px; /* Reduces padding on mobile */
    }

    .reach-us-wrapper {
        max-width: 100%;
        padding: 0 10px; /* Add padding to avoid side overflow */
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    /* Reach Us Box */
    .reach-us-box {
        width: 100%;
        max-width: none;
        padding: 20px; /* Adjust padding for mobile view */
        box-sizing: border-box; /* Ensures padding doesn’t cause overflow */
    }

    /* Headings and Text */
    .reach-us h2 {
        font-size: 28px; /* Smaller font size for mobile */
    }

    .contact-info h3 {
        font-size: 20px;
    }

    .contact-info p {
        font-size: 16px;
    }

    /* Map Container */
    .map-container {
        width: 100%;
        max-width: none;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
}










/* deliverycenters */
.locations {
    text-align: center;
    margin: 30px 0;
    overflow: hidden;
}

.locations-list {
    list-style: none;
    padding: 0;
}

.locations-list li {
    display: inline;
    margin: 0 15px;
}

.locations-list a {
    text-decoration: none;
    color: #77358b;
    font-size: 18px;
    font-weight: bold;
}

.locations-list a:hover {
    color: #d71d58;
}

/* Gallery Container */
.location-gallery {
    text-align: center;
    margin: 20px 0;
    overflow: hidden;
}

.gallery-container {
    display: none;
}

.gallery-container img {
    width: 380px;
    /* Set a fixed width */
    height: 300px;
    /* Set a fixed height */
    object-fit: cover;
    /* Ensures images maintain aspect ratio and don't stretch */
    margin: 10px;
    /* Adds spacing between images */
    cursor: pointer;
}


.gallery-image {
    width: 300px;
    margin: 15px;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Black background with transparency */
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.locations .locations-list a.active {
    color: #d71d58;
    /* Active link color */
    font-weight: bold;
    /* Optional: Make it bold */
    text-decoration: underline;
    background-color: #fff;
    /* Optional: Add underline for better visibility */
}


















/* Carousel Section */
.custom-carousel-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    max-width: 1200px;
    overflow: hidden;
    padding: 0 20px;
}

.custom-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    transform: translateX(-calc(300px + 20px));
    /* Initially show the first real item */
}

.custom-carousel-item {
    flex: 0 0 300px;
    text-align: center;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px; */
    overflow: hidden;
    background-color: #fff;
    padding: 15px;
}

.custom-carousel-image {
    width: 60%;
    height: 20000px;
    object-fit: contain;
}

.custom-carousel-caption {
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .custom-carousel-item {
        flex: 0 0 80%;
    }

    .custom-carousel-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .custom-carousel-item {
        flex: 0 0 90%;
    }

    .custom-carousel-image {
        height: 120px;
    }
}












/* FAQ Section with Image Column */
.custom-faq-section {
    display: flex;
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
    padding: 0 20px;
    align-items: flex-start;
    /* Align items to the top */
}

.custom-faq-content-left {
    width: 50%;
    /* Adjust according to your layout */
}

.left-side-image {
    margin-top: 20px;
    max-width: 100%;
    height: auto;
    border-radius: 5%;
}

.custom-faq-content {
    width: 50%;
}




/* Image Columns */
.custom-faq-image {
    flex: 0 0 40%;
}

.image-columns {
    display: flex;
    gap: 0px;
}

.image-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.img-top,
.img-bottom,
.img-center {
    margin: 0;
    /* Ensure no margin around the images */
    padding: 0;
    /* Ensure no padding around the images */
}

/* Images in the First Column */
.img-top,
.img-bottom {
    width: 80%;
    border-radius: 8px;
}

/* Centered Image in the Second Column */
.img-center {
    width: 100%;
    margin: auto -25px;
    border-radius: 8px;
}

/* FAQ Section Styling */
.custom-faq-content {
    flex: 0 0 55%;
}

.faq-item {
    margin-bottom: -3px;
    /* Reduced space between FAQ sections */
}


.faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    padding: 10px 15px;
    /* Adjusted padding for better spacing */
    background-color: #77358b;
    /* Background color for each question */
    border-radius: 8px;
    /* Rounded corners */
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background-color: #5d2c6b;
    /* Darker background on hover */
}



.faq-answer {
    list-style: disc;
    padding-left: 40px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    margin-top: 5px;
    /* Slight space between question and answer */
    border-radius: 8px;
    padding: 10px 15px;
    /* Padding inside the answer section */
}

.faq-question.active+.faq-answer {
    opacity: 1;
    /* Show answer */
    max-height: 500px;
}

.faq-answer li {
    margin-bottom: 5px;
    font-size: 18px;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .faq-button-section {
        justify-content: center;
        /* Center the button on smaller screens */
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .custom-faq-section {
        flex-direction: column;
    }

    .custom-faq-image,
    .custom-faq-content {
        flex: 1 1 100%;
        width: fit-content;
    }
}


/* Left Side Image Wrapper */
.faq-images-wrapper {
    display: flex;
    gap: 10px;
    /* No gap between the columns */
}

.faq-image-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Image Styles */
.img-top-left {
    width: 100%;
    border-radius: 8px;
    margin-bottom: -30px;
    /* Move the first image down to touch the second column */
}

.img-bottom-right {
    width: 100%;
    border-radius: 8px;
    margin-top: 40%;
    /* Move the second image up to touch the first column */
}




/* Responsive Styles */
@media (max-width: 768px) {
    .custom-faq-content-left {
        width: 100%;
        /* Make content full width on smaller screens */
    }

    .faq-images-wrapper {
        display: flex;
        gap: 10px;
    }

    .faq-image-column {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }


    .img-top-left {
        width: 100%;
        border-radius: 8px;
        margin-bottom: -30px;
    }

    .img-bottom-right {
        width: 100%;
        border-radius: 8px;
        margin-top: 40%;
    }
}












.split-section-services {
    display: flex;
    justify-content: space-between;
    max-width: 1150px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    align-items: center;
}

.left-side-service {
    flex: 0 0 40%;
    padding-right: 10px;
    display: flex;
    justify-content: center;
    /* Center the image horizontally */
    align-items: center;
    /* Center the image vertically */
}

.left-side-service img {
    width: 90%;
    height: auto;
    border-radius: 5%;
}

.right-side-service {
    flex: 0 0 60%;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
    align-items: center;
    /* Center the text content horizontally */
    text-align: center;
    /* Center the text within the box */
}

.text-content {
    box-sizing: border-box;
}

.section-heading-services {
    color: #77358b;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description-services {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 10px;
    text-align: center;
    /* Center the paragraph */
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .split-section-services {
        flex-direction: column;
    }

    .left-side-service,
    .right-sidey-service {
        flex: 0 0 100%;
        padding: 0;
        text-align: center;
        /* Center text and content on small screens */
    }
}







/* Centered Content Section */
.centered-content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Center the text horizontally */
    padding: 40px 20px;
    /* Add some padding for spacing */
    min-height: 300px;
    /* Set a minimum height for the section */
}

/* Heading Styling */
/* .content-heading {
    font-size: 2rem; 
    color: #77358b; 
    margin-bottom: 20px; 
} */

.centered-content-section .content-heading {
    line-height: 1.2;
}

/* Paragraph Styling */
.content-paragraph {
    font-size: 1.1rem;
    color: #333333;
    max-width: 1200px;
    line-height: 1.6;
}







.cs {
    text-align: center;
    font-size: 2rem;
    margin: 7%;
}

@media (max-width: 768px) {
    .cs {
        font-size: 1rem;
        margin: 20% 5%;
    }
}

.contact-us-button a {
    text-decoration: none;
    background-color: #fff;
    color: #77358b;
    border: 1px solid #77358b;
    padding: 10px 15px;
    border-radius: 5%;
}

.contact-us-button a:hover {
    background-color: #77358b;
    color: #fff;
}








/* Custom CSS for the pink pin marker */
.custom-pin {
    position: relative;
}

.pin-marker {
    width: 20px;
    height: 26px;
    background-color: #ff69b4;
    /* Pink pin color */
    border-radius: 50% 50% 0 0;
    /* Rounded top with flat bottom */
    position: relative;
    transform: rotate(0deg);
    /* No rotation needed for vertical alignment */
}

/* Create the sharp point at the bottom */
.pin-marker::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #ff69b4;
    /* Pink pin color */
    bottom: -12px;
    /* Position the point correctly */
    left: 50%;
    transform: translateX(-50%);
}

/* White circle in the middle of the pin */
.pin-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: white;
    /* White circle */
    border-radius: 50%;
}


.para-link {
    text-decoration: none;
}


























/* Text content section for industry impact */
.industry-impact-content {
    padding: 20px;
}

.industry-impact-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #77358b;
    /* Example color */
    margin-bottom: 20px;
}

/* Styling for the bullet point list */
.industry-bullet-list {
    list-style-type: disc;
    /* Bullet points */
    padding-left: 40px;
    /* Padding for indentation */
}

.industry-bullet-list li {
    margin-bottom: 10px;
    /* Space between list items */
    font-size: 1.1rem;
    line-height: 2;
    /* Readability improvement */
}












.industry-bullet-list-para {
    list-style-type: none;
    /* Bullet points */
    padding-left: 40px;
    /* Padding for indentation */
}

.industry-bullet-list-para li {
    margin-bottom: 10px;
    /* Space between list items */
    font-size: 1.1rem;
    line-height: 2;
    /* Readability improvement */
}





.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
    display: none;
}



#awards-carousel-wrapper {
    display: flex;
    /* Ensures items are in a row */
    overflow: hidden;
    /* Hides overflow to create the carousel effect */
    width: calc(100%);
    /* Adjust as necessary */
}

.carousel-item {
    margin-right: 20px;
    /* Adjust the margin based on your layout */
}












/* Content Section Styling */
.content-container {
    font-family: inherit;
    width: 90%;
    /* Ensures responsiveness by allowing the container to take up 90% of the screen width */
    margin: 0 auto;
    /* Centers the content */
    padding: 0 20px;
    /* Adds padding for smaller screens */
}

.main-heading {
    color: #d71d58;
    font-size: 2rem;
    /* Responsive font size */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 2.5rem;
    /* Adjusted line height for better readability */
}

.sub-heading {
    color: #d71d58;
    font-size: 1.75rem;
    /* Responsive font size */
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1rem;
    /* Responsive paragraph font size */
    line-height: 1.8;
    margin-bottom: 20px;
}


.main-btn a {
    color: #77358b;
    border: 1px solid #77358b;
    padding: 10px 16px;
    border-radius: 5%;
    text-decoration: none;
}

.main-btn a:hover {
    background-color: #77358b;
    color: #fff;
}







#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 999999;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #77358b;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    /* Make the button circular */
    width: 60px;
    height: 60px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;

}

#myBtn:hover {
    background-color: #555;
}

#myBtn::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 4px solid transparent;
}




/* .carousel-wrapper {
    padding-left: 20px;
    padding-right: 20px;
} */






.carousel-wrapper {
    padding: 0 30px;
    /* Adjust as needed */
}

/* Uniform size for the images */
.owl-carousel .item img {
    width: 100%;
    /* Makes the image take full width of the container */
    height: 400px;
    /* Set a fixed height (adjust as needed) */
    object-fit: cover;
    /* Ensures the image covers the container without stretching */
}

/* Customize navigation arrows */
.owl-prev,
.owl-next {
    font-size: 2em;
    /* Size of arrows */
    color: #77358b;
    /* Arrow color */
    background: none;
    /* Remove background */
    border: none;
    /* Remove border */
}


.owl-dots {
    display: none;
}










/* Job Grid */
.job-section-container {
    max-width: 1150px;
    /* Limit the width */
    margin: 0 auto;
    /* Center the container */
    padding: 0 20px;
    /* Add padding on the left and right sides */
}

/* Grid styling for jobs with a maximum of 4 per row */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Job Filters */
.job-filters {
    margin-bottom: 20px;
}

.job-filters select {
    padding: 8px;
    margin-right: 20px;
}

.job-box {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.job-box h3 {
    color: #77358b;
    margin-bottom: 10px;
}

.job-box button {
    background-color: #77358b;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.job-box button:hover {
    background-color: #d71d58;
}

@media (min-width: 1024px) {
    .job-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Maximum 4 columns for desktop */
    }
}






/* Style for Clear Filters button */
.clear-filters-btn {
    /* background-color: #fff; */
    color: black;
    padding: 8px 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 15px;
}

.clear-filters-btn:hover {
    text-decoration: underline;
    /* background-color: #77358b; */
}

/* Style for Load More button */
.load-more-btn {
    background-color: #77358b;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: block;
    margin: 20px auto;
    /* Center the button */
}

.load-more-btn:hover {
    background-color: #d71d58;
}



























.form-container {
    margin: 0% 20%;
}

/* label {
    font-size: 16px;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
select {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
} */

.form-input {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}




/* General Styles */

/* .form-container{
    margin: 0% 20%;
    align-self: center;
}


form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-size: 16px;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
select {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

input[type="file"] {
    padding: 5px;
}

button {
    background-color: #77358b;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #d71d58;
}

#responseMessage {
    margin-top: 10px;
    font-size: 14px;
}

@media (max-width: 768px) {
   
    
    form {
        gap: 10px;
    }
    
    label {
        font-size: 14px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="file"],
    select {
        font-size: 13px;
        padding: 8px;
    }
    
    button {
        padding: 8px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    
    
    h2 {
        font-size: 20px;
    }
    
    label {
        font-size: 13px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="file"],
    select {
        font-size: 12px;
        padding: 7px;
    }
    
    button {
        padding: 7px;
        font-size: 13px;
    }
} */




/* Left column specific styling to center the image */
.testimonial-column:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Section styling */
.testimonials-section {
    padding: 50px 20px;
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
}

/* Header styling */
.testimonials-header h2 {
    font-size: 2rem;
    color: #77358b;
    margin-bottom: 10px;
}

.testimonials-header p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

/* Container styling */
.testimonials-container {
    display: flex;
    gap: 20px; /* Space between columns */
    justify-content: center; /* Center the entire layout */
    max-width: 1200px; /* Container width for alignment */
    margin: 0 auto; /* Center the container horizontally */
    padding: 0 20px; /* Extra padding for smaller screens */
}

/* Column styling */
.testimonial-column {
    flex: 1; /* Both columns take equal width */
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between rows */
}

.testimonial-box p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    position: relative; /* Required for the pseudo-element positioning */
    padding-left: 40px; /* Add more space for the larger quote */
}

.testimonial-box p::before {
    content: "“"; /* Opening quote */
    font-size: 3rem; /* Increased size for emphasis */
    font-weight: bold; /* Make the quote bold */
    color: #77358b; /* Quote color */
    position: absolute;
    left: 0;
    top: -10px; /* Adjust vertical alignment */
}

.testimonial-box span {
    font-size: 0.9rem;
    font-weight: bold;
    color: #77358b;
}

/* Testimonial Box Hover Effects */
.testimonial-box {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/testimonial1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-10px) scale(1.02); /* Slight lift and scale on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

.testimonial-box:hover::before {
    opacity: 0.3; /* Increase background brightness on hover */
    transform: scale(1.1); /* Slight zoom effect on background */
}

.testimonial-box p, 
.testimonial-box span {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.testimonial-box:hover p, 
.testimonial-box:hover span {
    transform: translateX(10px); /* Subtle text movement on hover */
    color: black; /* Ensure text remains legible on brighter background */
}

.testimonial-box:hover span {
    text-shadow: 0 2px 5px #77358b; /* Add slight shadow to the text for contrast */
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column; /* Switch to single column */
        gap: 30px; /* Add more space between items for clarity */
    }
    .testimonial-column {
        gap: 30px; /* Adjust row spacing */
    }
}

/* Section styling */
.testimonials-section {
    padding: 50px 20px;
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
}

/* Header styling */
.testimonials-header h2 {
    font-size: 2rem;
    color: #77358b;
    margin-bottom: 10px;
}

.testimonials-header p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

/* Container styling */
.testimonials-container {
    display: flex;
    gap: 20px; /* Space between columns */
    justify-content: center; /* Center the entire layout */
    max-width: 1200px; /* Container width for alignment */
    margin: 0 auto; /* Center the container horizontally */
    padding: 0 20px; /* Extra padding for smaller screens */
}

/* Column styling */
.testimonial-column {
    flex: 1; /* Both columns take equal width */
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between rows */
}

.testimonial-box p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    position: relative; /* Required for the pseudo-element positioning */
    padding-left: 40px; /* Add more space for the larger quote */
}

.testimonial-box p::before {
    content: "“"; /* Opening quote */
    font-size: 3rem; /* Increased size for emphasis */
    font-weight: bold; /* Make the quote bold */
    color: #77358b; /* Quote color */
    position: absolute;
    left: 0;
    top: -10px; /* Adjust vertical alignment */
}

.testimonial-box span {
    font-size: 0.9rem;
    font-weight: bold;
    color: #77358b;
}
/* Testimonial Box Hover Effects */
.testimonial-box {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/testimonial1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-10px) scale(1.02); /* Slight lift and scale on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

.testimonial-box:hover::before {
    opacity: 0.3; /* Increase background brightness on hover */
    transform: scale(1.1); /* Slight zoom effect on background */
}

.testimonial-box p, 
.testimonial-box span {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.testimonial-box:hover p, 
.testimonial-box:hover span {
    transform: translateX(10px); /* Subtle text movement on hover */
    color: black; /* Ensure text remains legible on brighter background */
}

.testimonial-box:hover span {
    text-shadow: 0 2px 5px #77358b; /* Add slight shadow to the text for contrast */
}


.testimonial-box p, 
.testimonial-box span {
    position: relative; /* Keep content above the pseudo-element */
    z-index: 1;
}

/* Style for the image inside the left column */
.testimonial-image {
    width: 100%; /* Keep the image responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Keep the rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Retain the shadow */
    object-fit: cover; /* Ensure the image fits nicely */
    transition: none; /* Remove any transition effects */
}

/* Remove hover effect from the image specifically */
.testimonial-box:hover .testimonial-image {
    transform: none; /* Prevent any scaling or movement */
    box-shadow: none; /* Remove hover shadow effects */
}



/* Responsive design for mobile */
@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column; /* Switch to single column */
        gap: 30px; /* Add more space between items for clarity */
    }
    .testimonial-column {
        gap: 30px; /* Adjust row spacing */
    }
}


