
/* Added mobile sidebar menu styles and improved responsive design */
/* Mobile Sidebar Menu */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: left 0.4s ease;
    box-shadow: 2px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-item {
    padding: 16px 24px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

.mobile-menu-item:hover {
    background: #f5f5f5;
    padding-left: 32px;
    color: #54A1EA;
}

.mobile-menu-close {
    /* position: absolute;
    top: 20px;
    left: 24px; */
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

.mobile-menu-toggle i {
    color: white;
    font-size: 20px;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Cursor hover effects for menu items and social links */
.menu-link, .social-link, .icon, .nav-item, .mobile-menu-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-link:hover, .social-link:hover, .icon:hover {
    transform: scale(1.1);
}


/* Added responsive styles and GSAP animation classes */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        z-index: 50;
    }
    .nav-links.active {
        display: flex;
    }
}
.nav-item {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    /* z-index: 9999; */
}
.nav-item.active {
    background-color: #54A1EA;
    color: white;
    border-radius: 0px 30px 30px 0px;
    /* z-index: 9999; */
}
.nav-item:not(.active) {
    background: #f3f4f6;
    color: #4b5563;
}
.nav-item:not(.active):hover {
    background: #e5e7eb;
    /* padding-left: 1.75rem; */
}


/* Accordion Section */
.accordion-section {
    padding: 80px 20px;
    background: #f9f9f9;
}
.accordion-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}
.accordion-header {
    background: #fff;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-size: 15px;
}
.accordion-header:hover {
    background: #54A1EA;
    color: white;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}
.accordion-content.active {
    max-height: 500px;
    padding: 20px;
}
.progress-item {
    margin-bottom: 30px;
}
.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}
.progress-bar {
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: #54A1EA;
    width: 0;
    transition: width 1s ease;
    border-radius: 5px;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    position: relative;
    z-index: 9999;
    background-color: #212d3b;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 80px;
}
.section-header h1 {
    /* font-size: 38px; */
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.section-header p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}
.services-layout {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
}
.services-left {
    display: flex;
    flex-direction: column;
    gap: 100px;
    text-align: right;
    margin-top: 3vw;
}
.services-right {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-left: -3vw;
    z-index: 99999999;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 25px;
}
.service-item.right-align {
    flex-direction: row-reverse;
    text-align: left;
}
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4299e1 0%, #5bb3f5 100%);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.3);
    transition: all 0.3s ease;
}
.service-content {
    max-width: 250px;
}
.service-title {
    font-size: 24px;
    color: white;
    margin-bottom: 12px;
    font-weight: 600;
}
.service-description {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}
.phone-mockup {
    position: relative;
}

.step-card:hover .head h3{
    color: #54A1EA;
    transition: all ease 0.5s;
}

.blog-card:hover .post-title h3{
    color: #54A1EA;
    transition: all ease 0.5s;
}

/* Footer Styles */
.top-bar {
    background-color: #202732;
    border-bottom: 1px solid #354555;
}
.footer-main {
    background-color: #202732;
    padding: 80px 0 60px 0;
}
.footer-bottom {
    background-color: #212d3b;
    border-top: 1px solid #354555;
}
.section-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: #3b82f6;
}
.text-content {
    color: #8b9cb0;
    font-size: 14px;
    line-height: 24px;
}
.read-more {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.read-more:hover {
    gap: 12px;
}
.post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
    padding-bottom: 1vw;
}
.post-image {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}
.post-title {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}
.post-title:hover {
    color: #3b82f6;
}
.post-date {
    color: #54A1EA;
    font-size: 15px;
    font-weight: 500;
}
.form-input {
    width: 100%;
    background-color: #373D47;
    border: none;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    padding: 10px 10px;
}
.form-input::placeholder {
    color: #7a8896;
    font-size: 12px;
    font-style: italic;
}
/* .form-input:focus {
    background-color: #485d72;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
} */
.input-wrapper {
    position: relative;
    margin-bottom: 15px;
}
.input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #7a8896;
    font-size: 16px;
}
textarea.form-input {
    resize: none;
    padding-right: 18px;
}
.submit-btn {
    width: 60%;
    padding: 14px;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact-item {
    margin-bottom: 25px;
}
.contact-label {
    color: #7a8896;
    font-size: 13px;
    margin-bottom: 8px;
}
.contact-text {
    color: #d5dce5;
    font-size: 14px;
    line-height: 22px;
}
.footer-link {
    color: #7a8896;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #54A1EA;
}
.copyright {
    color: #7a8896;
    font-size: 13px;
}

/* Improved responsive styles with better spacing for mobile and tablets */
@media (max-width: 1200px) {
    nav {
        left: 0 !important;
        width: 90%;
    }
    .accordion-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .services-layout {
        flex-direction: column;
        align-items: center;
    }
    .services-left, .services-right {
        margin: 0;
        text-align: center;
        gap: 60px;
    }
    .service-item, .service-item.right-align {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav {
        position: relative !important;
    }
    .nav-links {
        display: none !important;
    }
    .hero {
        height: auto !important;
        min-height: auto !important;
    }
    .hero .flex {
        flex-direction: column !important;
    }
    .accordion-section {
        padding: 40px 15px;
    }
    .accordion-header {
        padding: 15px;
        font-size: 13px;
    }
    .accordion-content.active {
        padding: 15px;
        font-size: 14px;
    }
    .section-header h1, .section-header h2 {
        font-size: 24px !important;
    }
    .section-header p {
        font-size: 13px !important;
        padding: 0 10px;
    }
    .services-section {
        padding: 60px 15px;
    }
    .service-title {
        font-size: 20px;
    }
    .service-description {
        font-size: 14px;
    }
    .scroll-up, .scroll-indicator-container, .scroll-down {
        display: none;
    }
    .footer-main {
        padding: 40px 0 30px 0;
    }
    .submit-btn {
        width: 100%;
    }
    /* Better spacing for small screens */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .py-12, .py-20 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .px-4, .px-12, .px-52 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .submit-btn {
        width: 100%;
    }
    .accordion-container {
        padding: 0 20px;
    }
    .services-left, .services-right {
        gap: 70px;
    }
}
