/*font for all/
/* Importing Fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Applying Fonts to All Text Elements */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'nunito', sans-serif; /* Poppins font set kiya */
    font-weight: 150;
    color: #108ac4;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}



/* Links */
a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

/* Navigation Links (like in your navbar) */
.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

/* Dropdown Items */
.dropdown-item {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #4a4a4a;
}

/* Buttons (like Call Now and Brochure) */
.btn, .call-now, .brochure-download {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
}
/* Prevent selection for the entire navbar */
.navbar {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard */
}

/* Prevent logo selection specifically */
.navbar-brand img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none; /* Prevent any pointer events on the image itself */
}

/* Ensure logo link is clickable */
.navbar-brand {
    pointer-events: auto; /* Re-enable pointer events for the link */
}

/* Prevent text selection for navbar links and dropdowns */
.navbar-nav .nav-link,
.navbar-actions .call-now,
.navbar-actions .brochure-download,
.dropdown-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto; /* Ensure links/buttons remain clickable */
}

/* Ensure dropdown toggle works */
.dropdown-toggle {
    pointer-events: auto;
}
/* font for all end*/


/*slider-1 start*/
/* why-choose-us.css */
/* Reset any conflicting styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.why-choose-us-container {
    width: 100%;
    background: #ffffff; /* Fixed white background */
    padding: 20px 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    -webkit-user-select: none; /* Disable selection */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard */
    -webkit-touch-callout: none; /* iOS Safari */
}

.why-choose-us-wrapper {
    width: 100%;
    overflow: hidden;
}

.why-choose-us-slider {
    display: flex;
    animation: scrollRightToLeft 22s linear infinite; /* Same speed everywhere */
    width: calc(100% + 100% + 100%); /* Triple width to ensure seamless loop with clones */
    -webkit-user-select: none; /* Disable selection */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard */
}

.why-choose-us-slide {
    min-width: calc((100vw - 180px) / 7); /* 7 slides in desktop, 180px total margin (15px * 12), using viewport width */
    height: 160px; /* Increased height for larger icons and text */
    margin: 0 15px; /* Equal distance between icons */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-user-select: none; /* Disable selection */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard */
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
    background: transparent;
    border: none;
    box-shadow: none;
    -webkit-user-select: none; /* Disable selection */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard */
}

.slide-content img {
    width: 100px; /* Doubled to 2x */
    height: 100px; /* Doubled to 2x */
    object-fit: contain; /* Prevents cutting */
    margin-bottom: 10px; /* Increased margin for larger icons */
    max-width: 100%; /* Ensures image doesn't exceed container */
    max-height: 100%; /* Ensures image doesn't exceed container */
    -webkit-user-select: none; /* Disable selection */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard */
    pointer-events: none; /* Disable interaction */
}

.slide-content span {
    font-family: 'Inter', sans-serif !important;
    font-size: calc(0.7vw + 1px); /* Reduced by 1px */
    font-weight: 700; /* Bold (changed from 300) */
    color: #000000; /* Changed to black from #0b669c */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: normal; /* Multi-line text */
    word-wrap: break-word; /* Words wrap to next line */
    word-break: keep-all; /* Prevents word split */
    width: 120px; /* Increased from 100px to 120px for better fit with bold text */
    text-align: center; /* Center align text */
    overflow: visible; /* Ensure no text is hidden */
    max-height: none; /* Allow text to expand */
    -webkit-user-select: none; /* Disable selection */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard */
    pointer-events: none; /* Disable interaction */
}

/* Animation for right to left scroll */
@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0); /* Start from left */
    }
    100% {
        transform: translateX(-66.66%); /* Adjusted to 2/3 of width for seamless loop with 15 slides */
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .why-choose-us-slide {
        min-width: calc((100vw - 144px) / 7); /* Responsive with viewport width */
        height: 140px; /* Adjusted height */
        margin: 0 12px;
    }

    .slide-content img {
        width: 90px; /* Adjusted for responsiveness */
        height: 90px;
        margin-bottom: 8px;
    }

    .slide-content span {
        font-size: calc(0.8vw + 1px); /* Reduced by 1px */
        width: 115px; /* Adjusted for responsiveness */
    }
}

@media (max-width: 991px) {
    .why-choose-us-slide {
        min-width: calc((100vw - 120px) / 7); /* Responsive with viewport width */
        height: 120px; /* Adjusted height */
        margin: 0 10px;
    }

    .slide-content img {
        width: 80px; /* Adjusted for responsiveness */
        height: 80px;
        margin-bottom: 6px;
    }

    .slide-content span {
        font-size: calc(1vw + 1px); /* Reduced by 1px */
        width: 110px; /* Adjusted for responsiveness */
    }
}

@media (max-width: 768px) {
    .why-choose-us-slide {
        min-width: calc((100vw - 15px) / 3); /* 3 slides on mobile, 15px total margin */
        height: 120px; /* Same size */
        margin: 0 2.5px; /* Reduced gap */
    }

    .why-choose-us-slider {
        animation: scrollRightToLeft 22s linear infinite; /* Same speed as desktop */
        width: calc(100vw * (15 / 3 + 2)); /* Responsive width for 15 slides + 2 clones */
    }

    .slide-content img {
        width: 80px; /* Same size */
        height: 80px;
        margin-bottom: 5px;
    }

    .slide-content span {
        font-size: calc(1.2vw + 1px); /* Reduced by 1px */
        width: 110px; /* Adjusted for responsiveness */
    }
}

@media (max-width: 576px) {
    .why-choose-us-slide {
        min-width: calc((100vw - 15px) / 3); /* 3 slides on smaller mobile */
        height: 110px; /* Same size */
        margin: 0 2.5px; /* Reduced gap */
    }

    .slide-content img {
        width: 70px; /* Same size */
        height: 70px;
        margin-bottom: 4px;
    }

    .slide-content span {
        font-size: calc(1.5vw + 1px); /* Reduced by 1px */
        width: 105px; /* Adjusted for responsiveness */
    }
}

/* Ensure continuous infinite loop and pause on hover */
.why-choose-us-slider {
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.why-choose-us-slider:hover {
    animation-play-state: paused; /* Pause animation on hover */
}

/* Keep running, no pause when not hovering */
.why-choose-us-slider:not(:hover) {
    animation-play-state: running;
}

/*slider-1 end*/

/*products-1*/
/* popular-products.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.popular-products {
    width: 100%;
    background: #f8f9fa; /* Light background */
    padding: 40px 0;
}

.popular-products-container {
    max-width: 1080px; /* Instagram size approximation */
    margin: 0 auto;
    text-align: center;
    padding: 0 15px;
}

.popular-products-container h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: #0083d1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.popular-products-slider {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.product-card {
    min-width: calc((100% - 60px) / 3); /* 3 cards in desktop, 60px total margin (20px * 3 spaces) */
    margin: 0 10px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-card img {
    width: 100%;
    height: 300px; /* Adjusted to fit within 1080px context */
    object-fit: cover; /* Ensure image fits without distortion */
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #333;
    text-align: center;
    line-height: 1.3;
    white-space: normal;
    word-break: keep-all;
    hyphens: none;
    width: 100%;
}

/* Scroll Buttons */
.scroll-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.scroll-button {
    width: 10px;
    height: 10px;
    background: #ccc; /* Gray */
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.scroll-button.active {
    background: #fff; /* White for active */
    border: 2px solid #0083d1; /* Blue border */
}

.scroll-button:hover {
    background: #bbb;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .product-card {
        min-width: calc((100% - 40px) / 2); /* 2 cards in tablet */
        margin: 0 10px;
    }

    .product-card img {
        height: 250px;
    }

    .product-card h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .product-card {
        min-width: calc((100% - 20px) / 2); /* 2 cards in phone */
        margin: 0 10px;
    }

    .product-card img {
        height: 200px;
    }

    .product-card h3 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .product-card {
        min-width: calc((100% - 20px) / 1); /* 1 card in smaller phone */
        margin: 0 10px;
    }

    .product-card img {
        height: 180px;
    }

    .product-card h3 {
        font-size: 0.8rem;
    }
}

/*products-1 end*/

/*products slider start/















/*body css/
/* body.css */

/* Reset default margins and padding */
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scroll */
    font-family: Arial, sans-serif; /* Default font */
    line-height: 1.6;
}

/* Container for main content */
.main-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Text */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

p {
    margin: 0;
    padding: 0;
}

/* Responsive Grid System (if needed) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0; /* No gap as per requirement */
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .main-container {
        width: 100%;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 991px) {
    .main-container {
        width: 100%;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-container {
        width: 100%;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p {
        font-size: 0.95rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .main-container {
        width: 100%;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.9rem;
    }
}

/* Ensure no unwanted spacing */
* {
    box-sizing: border-box;
}

/* Prevent content from touching edges on mobile */
@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }
}


/*body css end/

/* Base Styles for the Section */
/* Base Styles for the Section */
.index_who {
    position: relative;
    width: 100%;
    background: #006DAD; /* Deep blue background */
    padding-top: 80px;
    overflow: hidden;
}

/* Background Layer with Image - Fully Responsive */
.index_who_bg {
    position: relative;
    width: 100%;
    height: auto;
    background: url('https://cdn.globalso.com/gkbmgroup/style/global/img/index_9.png') no-repeat center center;
    background-size: cover; /* Ensures full coverage */
    margin: 0;
    padding: 0;
}

/* Layout Container */
.layout.flex_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Box Styling */
.box {
    flex: 0 0 50%;
    max-width: 600px;
    padding: 40px;
    text-align: left;
    color: #fff;
}

/* Title Styling */
.index_tit {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.index_tit span {
    color: #fff;
    font-weight: 400;
}

/* Paragraph Styling */
.box p {
    font-size: 1.1rem;
    color: #d1e0ff;
    line-height: 1.8;
    margin: 15px 0;
}

/* Button Styling */
.about_button {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
    margin-top: 20px;
}

.about_button::after {
    content: '→';
    margin-left: 10px;
    font-size: 1.2rem;
}

.about_button:hover {
    background: #fff;
    color: #0056b3;
}

/* Counter Section Styling */
.scoll_num {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    list-style: none; /* Remove bullet points */
    padding: 0;
}

/* Individual Counter Item */
.scoll_num li {
    flex: 0 0 auto;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

/* Number Styling - Bigger, Bold, White */
.scoll_num h2 {
    font-size: 5rem; /* Increase size */
    font-weight: 900; /* Make bold */
    color: #fff; /* Set white */
    display: flex;
    align-items: baseline;
    justify-content: center;
}

/* Small + Sign After Numbers */
.scoll_num li:not(:last-child) h2::after {
    content: "+";
    font-size: 2rem;
    font-weight: 600;
    margin-left: 5px;
}

/* Text Below Number */
.scoll_num p {
    font-size: 1.2rem;
    color: #d1e0ff;
    margin: 0;
    text-transform: capitalize;
}

/* Vertical Line Separator */
.scoll_num li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 80%;
    background: rgba(255, 255, 255, 0.5);
}

.flex_row span{
    color: white;
    font-size:40px;
    font-weight: bold;
}

/* ✅ Responsive Adjustments */

/* Tablets (up to 991px) */
@media (max-width: 991px) {
    .index_who_bg {
        background-position: center center;
        background-size: cover;
    }
    .layout.flex_row {
        justify-content: center;
    }
    .box {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 30px;
    }
    .index_tit {
        font-size: 2.5rem;
    }
    .scoll_num {
        justify-content: center;
        gap: 30px;
    }
    .scoll_num li {
        flex: 0 0 33.33%;
    }
}

/* Mobile Devices (up to 576px) */
@media (max-width: 576px) {
    .index_who_bg {
        background-position: center center;
        background-size: cover; /* Ensures full visibility */
    }
    .index_who{
        padding-top:20px;
        
    }
    .box {
        padding: 20px;
         text-align: center;
    }
    .index_tit {
        font-size: 2rem;
    }
    .box p {
        font-size: 1rem;
    }
    .about_button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .scoll_num {
        flex-direction: column;
        gap: 20px;
    }
    .scoll_num li::after {
        display: none; /* Hide vertical line */
    }
    .scoll_num h2 {
        font-size: 4rem;
    }
    .scoll_num p {
        font-size: 1rem;
    }
}

/* Animation Compatibility (for WOW.js) */
.fadeInRightA {
    visibility: hidden;
}




.footerrr {
    background-color: #222;
    color: #363636;
}

.footer-bgrr {
    background-image: url('img/dibu11.webp');
    background-size: cover;
    background-position: center;
    width: 100%;
    margin: 0;
}

/* Footer main container */
.footer-containerrr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 50px;
}

/* Common styling for footer columns */
.footer-columnrr {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

/* Logo Styling - Bigger & Centered */
.footerrr {
    background-color: #222;
    color: #363636;
}

.footer-bgrr {
    background-image: url('img/dibu11.webp');
    background-size: cover;
    background-position: center;
    width: 100%;
    margin: 0;
}

/* Footer main container */
.footer-containerrr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 50px;
}

/* Common styling for footer columns */
.footer-columnrr {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

/* Logo Styling - Bigger & Centered */
.footer-logorr {
    max-width: 200px; /* Bigger Logo */
    max-height: auto;
    display: block;
    margin: 0 auto 15px;
}

.company-inforr p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    justify-content: center;
}

/* Social Icons */
.social-iconsrr {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-iconsrr a {
    color: #2c1f1f;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-iconsrr a:hover {
    color: #f39c12;
}

/* Category links */
.category-linksrr h3,
.inquiry-formrr h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.category-linksrr ul {
    list-style: none;
    padding: 0;
}

.category-linksrr ul li {
    margin-bottom: 8px;
}

.category-linksrr ul li a {
    text-decoration: none;
    color: #403e3e;
    transition: color 0.3s;
}

.category-linksrr ul li a:hover {
    color: #f39c12;
}

/* Inquiry form */
#inquiry-formrr {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#inquiry-formrr input,
#inquiry-formrr textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#inquiry-formrr textarea {
    height: 80px;
}

#inquiry-formrr button {
    background: #f39c12;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

#inquiry-formrr button:hover {
    background: #e67e22;
}

.form-message {
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-containerrr {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-columnrr {
        max-width: 100%;
    }

    .footer-logorr {
        max-width: 180px; /* Slightly Smaller for Tablets */
    }
}

@media (max-width: 768px) {
    .footer-logorr {
        max-width: 160px; /* Balanced for Small Screens */
    }
}

@media (max-width: 480px) {
    .footer-logorr {
        max-width: 140px; /* Best for Mobile */
    }
}









/*navbar start*/
/* Action Buttons */
/* Navbar General Styles */
.navbar {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1050;
    background: #fff;
    padding: 15px 0;
}

.navbar-brand img {
    max-height: 90px;
    width: auto;
}

.navbar-toggler {
    border: none;
    outline: none;
    font-size: 5em; /* Increased size */
    padding: 30px;
}

.navbar-toggler-icon {
    width: 5em; /* Increased size */
    height: 5em;
    transition: transform 0.3s ease-in-out;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(90deg);
}

.navbar-nav .nav-link {
    font-size: 18px; /* Reduced size */
    color: #333;
    padding: 16px 24px;
    transition: color 0.3s ease-in-out;
    font-weight: normal;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: #007bff;
}

/* Dropdown Styling */
.dropdown-menu {
    background: #fff;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    display: none;
    position: absolute;
    z-index: 1050;
}

.dropdown-item {
    font-size: 16px; /* Reduced size */
    color: #333;
    padding: 12px 18px;
}

.dropdown-item:hover {
    background: #007bff;
    color: #fff;
}

/* Enable Hover for Dropdowns (Desktop Only) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }
    .dropdown-menu .dropdown:hover > .dropdown-menu {
        display: block;
        left: 100%;
        top: 0;
    }
    .navbar-nav {
        display: flex;
        justify-content: center;
        gap: 38px; /* Reduced gap */
    }
}

/* Mobile Friendly Dropdowns (Click to Open and Close) */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 15px;
    }
    .navbar-nav {
        text-align: left;
    }
    .nav-item {
        padding: 10px 0;
    }
    .dropdown-menu {
        text-align: left;
        display: none;
        position: static;
        box-shadow: none;
        width: 100%;
    }
    .dropdown-toggle::after {
        content: '\25BC';
        float: right;
    }
    .dropdown.show > .dropdown-menu {
        display: block;
    }
    .dropdown-menu .dropdown.show .dropdown-menu {
        display: block;
        left: 0;
    }
    
    /* Fix for Nested Dropdowns in Mobile */
    .dropdown-menu .dropdown .dropdown-menu {
        display: none;
        position: relative;
        left: 20px;
        width: calc(100% - 40px);
        background: #f8f9fa;
        padding-left: 10px;
    }
    .dropdown-menu .dropdown.show > .dropdown-menu {
        display: block;
    }
}

/* Toggle Open and Close Functionality */
.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse.show {
    display: block;
}

/* Ensure Navbar Toggler Closes Properly */
.navbar-toggler.collapsed .navbar-toggler-icon {
    transform: rotate(0deg);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* JavaScript Controlled Styles */
.navbar-toggler.active .navbar-toggler-icon {
    transform: rotate(90deg);
}

/*navbar end/

/*text content*/
.containerss {
    width: 100%;
    margin: 25px;
    padding: 40px;
    background: white;
    }



.subtitle {
    color: #0083d1;
    font-size: 30px;
    font-weight: lighter;
   
}
.divider {
    margin: 10px auto;
    width: 50px;
    height: 3px;
    background-color: #1d5c99;
}
.description {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 15px;
   
}
@media (max-width: 1024px) {
    .containerss {
        width: 95%;
        margin: 20px auto;
        padding: 15px;
    }
}
@media (max-width: 768px) {
    .containerss {
        width: 100%;
        margin: 20px auto;
        padding: 10px;
        border-radius: 0;
        box-shadow: none;
    }
    .title, .subtitle {
        font-size: 20px;
    }
    .description {
        font-size: 14px;
    }
}

/*image slider start*/
/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Slider container */
.slider {
    width: 100%;
    height: 150px; /* Adjust height as needed */
    overflow: hidden;
    background: #f5f5f5; /* Light background */
    position: relative;
}

/* Slide track (holds all logos) */
.slide-track {
    display: flex;
    width: calc(250px * 10); /* Width based on number of slides (5 logos x 2 for loop) */
    animation: scroll 20s linear infinite; /* Animation duration and type */
}

/* Individual slide */
.slide {
    width: 250px; /* Width of each logo container */
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Logo image styling */
.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Animation keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5)); /* Moves half the track for seamless loop */
    }
}

/* Optional: Pause animation on hover */
.slider:hover .slide-track {
    animation-play-state: paused;
}


/*image slider*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0.5px auto;
    overflow: hidden;
}

.slider-images {
    display: flex;
    transition: transform 0.8s ease;
}

.slider-images img {
    width: 100%;
    height: auto;
}

.slider-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.nav-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-bullet:hover {
    background-color: #ccc;
}

.active {
    background-color: #007bff;
}
/*image slider end*/