/* Responsive Design */
@media (max-width: 1000px) {
    header {
        padding: 0;
    }

    .header-container {
        justify-content: flex-start;
        background: #fff;
        padding: 10px 20px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
    }

    .logo {
        position: static;
        margin-right: auto;
    }

    .logo img {
        padding: 5px 0px;
        margin-top: 0;
        background: #fff;
        width: 100px;
        height: 30px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 999;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 10px;
        text-align: left;
    }

    nav ul li a {
        color: #000 !important;
        font-size: 14px;
        font-weight: 400 !important;
    }

    nav ul li a:hover {
        color: var(--site-orange) !important;
    }

    nav ul li a.active {
        color: var(--site-orange) !important;
    }

    .menu-toggle {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        padding: 5px;
    }

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 3px;
        background: #000;
        margin: 4px 0;
        transition: all 0.3s ease;
    }

    /* Dropdown Responsive Adjustments */
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-menu.active {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 22px;
        margin: 35px 0 10px;
        font-weight: 600;
    }

    .hero-text p {
        font-weight: 400;
    }

    .hero-image {
        text-align: center;
        margin-top: 20px;
    }

    .services-container, .info-container {
        flex-direction: column;
    }

    .service-item, .info-item {
        margin: 15px 0;
    }

    /* Slider Responsive Adjustments */
    .slider {
        overflow-x: hidden; /* Enable horizontal scrolling on mobile */
    }

    .slides {
        flex-wrap: nowrap;
    }

    .slide {
        min-width: 120px; /* Smaller width for mobile */
        margin: 0 5px;
    }

    .prev-btn, .next-btn {
        display: none; /* Hide buttons on mobile, use native scrolling */
    }

    .sharepoint-container, .info-container {
        flex-direction: column;
    }

    .sharepoint-item, .info-item {
        margin: 15px 0;
    }

    .sharepoint-image{
        display: none;
    }

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

    .sharepoint-online-container, .info-container {
        flex-direction: column;
    }

    .sharepoint-online-item, .info-item {
        margin: 15px 0;
    }

    .sharepoint-online-image {
        text-align: center;
    }

    .sharepoint-use-container, .info-container {
        flex-direction: column;
    }

    .sharepoint-use-item, .info-item {
        margin: 15px 0;
    }

    .sharepoint-use-image1 {
        text-align: center;
    }

    .sharepoint-use-image {
        display: none;
    }

    .sharepoint-text-container, .info-container {
        flex-direction: column;
    }

    .sharepoint-text-item, .info-item {
        margin: 15px 0;
    }

    .security-container, .info-container {
        flex-direction: column;
    }

    .security-item, .info-item {
        margin: 15px 0;
    }

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

    .security-image {
        display: none;
    }

    /* Footer Responsive Adjustments */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-bottom: 10px;
    }

    .footer-right {
        justify-content: center;
    }
}

/* [Previous responsive CSS content remains the same until Clients Section] */

/* Clients Section Responsive Adjustments */
@media (max-width: 768px) {
    .clients-container {
        padding: 0 10px;
    }

    .clients-grid {
        grid-template-columns: 1fr; /* Stack items vertically on mobile */
        gap: 15px;
    }

    .client-item {
        padding: 10px;
    }

    .client-item p {
        font-size: 11px;
    }
}

/* [Rest of the responsive CSS content remains the same] */

/* [Previous responsive CSS content remains the same until Contact Section] */

/* [Previous responsive CSS content remains the same until Contact Section] */

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 20px; /* Maintain gap in mobile mode */
    }

    .contact-form,
    .contact-info {
        width: 100%;
        margin: 0;
    }

    .input-row {
        flex-direction: column;
    }

    .input-row input {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* [Rest of the responsive CSS content remains the same] */

/* [Rest of the responsive CSS content remains the same] */

@media (min-width: 769px){
    .sharepoint-image1{
        display: none;
    }

    .sharepoint-use-image1 {
        display: none;
    }

    .security-image1 {
        display: none;
    }
}
