* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #fff;
    overflow-x: hidden;
}

/* HEADER */

header {
    width: 100%;
    height: 80px;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.menu-btn {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    position: absolute;
    transition: 0.4s ease;
    border-radius: 2px;
}

.menu-btn span:nth-child(1) {
    top: 0;
}

.menu-btn span:nth-child(2) {
    top: 8px;
}

.menu-btn span:nth-child(3) {
    top: 16px;
}

/* हैमबर्गर टू क्रॉस एनीमेशन */
.menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-only {
    display: none;
}

.logo img {
    width: 120px;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.navbar nav {
    margin-left: auto;
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.login-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.login-btn:hover {
    background: #1d4ed8;
}

/* home */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BUTTONS */

.swiper-button-next,
.swiper-button-prev {
    color: white;
}

/* PAGINATION */

.swiper-pagination-bullet {
    background: white;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ff7a00;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        /* लोगो को बाएँ और बटन को दाएँ कोने में फिक्स करता है */
        align-items: center;
        padding: 0 20px;
    }

    .navbar nav {
        display: contents;
        /* nav कंटेनर को लेआउट से हटाता है ताकि लिंक्स सही से स्लाइड हों */
    }

    .menu-btn {
        display: block;
        z-index: 1001;
        margin: 0;
        /* margin-left auto की ज़रूरत नहीं क्योंकि justify-content काम कर रहा है */
    }

    .mobile-only {
        display: block;
        width: 100%;
    }

    .nav-links .mobile-only a {
        background: #2563eb;
        color: #fff !important;
        text-align: center;
        border-radius: 30px;
        margin-top: 20px;
        display: block;
        padding: 12px 25px;
        font-weight: bold;
        transition: 0.3s;
    }

    .navbar>.login-btn,
    .nav-links:not(.active) {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* दाईं ओर से बाहर रखें */
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: flex-start;
        /* लिंक्स को साफ़ दिखने के लिए बाएँ अलाइन करें */
        padding: 100px 40px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: flex !important;
    }

    .nav-links.active {
        right: 0;
        /* क्लिक करने पर अंदर लाएँ */
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 999;
        display: block;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        /* प्रीमियम लुक के लिए टेक्स्ट लेफ्ट अलाइन */
        opacity: 0;
        transform: translateX(30px);
        /* दाईं ओर से आने वाला स्मूथ एनीमेशन */
        transition: 0.5s;
        margin: 15px 0;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(0.1s * var(--i, 1));
    }
}

/* HERO */

.hero {
    margin-top: 80px;
    width: 100%;
    height: 90vh;
    background: url('ALL IN ONE SOLUTION  ABHI SUVIDHA.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

.hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: auto;
}

/* SECTION */

section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 45px;
    margin-bottom: 50px;
    font-weight: bold;
}

/* HOME SECTION */

.home-section {
    width: 100%;
    padding-top: 30px;
    margin-top: 60px;
    margin-bottom: 0px;
}

.slider-container {
    width: 100%;
    margin: auto;
}

.mySwiper {
    width: 100%;
    height: 700px;
    border-radius: 25px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
}

.swiper-pagination-bullet {
    background: white;
}

.swiper-pagination-bullet-active {
    background: #2563eb;
}

@media(max-width:768px) {

    .mySwiper {
        height: 250px;
    }

}

/* ABOUT */
.heading {
    text-align: center;
    font-size: 35px;
    margin-bottom: 50px;
}

.about-box {
    max-width: 1100px;
    margin: auto;
    background: #f9fafb;
    padding: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .about-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

.about-box:hover {
    border: 4px solid #2563eb;
}

.about-box img {
    width: 140px;
}

.about-content h3 {
    font-size: 38px;
    color: #2563eb;
    margin-bottom: 20px;
}

.about-content p {
    line-height: 1.8;
    color: #555;
    font-size: 18px;
}

/* SERVICES SECTION */

.services-section {
    background: #eff6ff;
    padding: 80px 20px;
    overflow: hidden;
}

/* TITLE */

.services-title {
    text-align: center;
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 60px;
    color: #111827;
}

/* CONTAINER */

.services-container {
    overflow: hidden;
    width: 100%;
    padding: 10px;
    display: block;
}

/* सही तरीके से निरंतर स्क्रॉल के लिए लीनियर ट्रांज़िशन */
.servicesSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

/* HIDE SCROLLBAR */

.services-container::-webkit-scrollbar {
    display: none;
}

/* CARD */

.service-card {
    width: 220px;
    /* कार्ड की चौड़ाई कम की गई */
    background: white;
    border-radius: 30px;
    padding: 25px 20px;
    /* पैडिंग कम की गई */
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    height: auto;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */

.service-card img {
    width: 80px;
    /* इमेज का साइज़ संतुलित किया गया */
    height: 80px;
    object-fit: contain;
    margin-bottom: 25px;
}


/* TITLE */

.service-card h3 {
    font-size: 20px;
    /* फोंट साइज़ कम किया गया */
    font-weight: 600;
    margin-bottom: 18px;
    color: #111827;
}

/* DESCRIPTION */

.service-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .services-title {
        font-size: 36px;
    }

    .service-card {
        width: 180px;
        /* मोबाइल पर और भी कॉम्पैक्ट */
        padding: 20px 15px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
    }

}

/* FEATURES SECTION */

.features-section {
    background: #ffffff;
    padding: 80px 20px;
}

/* TITLE */

.features-title {
    text-align: center;
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 60px;
    color: #111827;
}

/* CONTAINER */

.features-container {
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.feature-card {
    background: #2563eb;
    border-radius: 40px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    transition: 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.05);
}

/* IMAGE */

.feature-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 25px;
}

/* TITLE */

.feature-card h3 {
    font-size: 34px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

/* DESCRIPTION */

.feature-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #f3f4f6;
}

/* TABLET */

@media(max-width:992px) {

    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* MOBILE */

@media(max-width:768px) {

    .features-title {
        font-size: 36px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        border-radius: 25px;
        padding: 35px 25px;
    }

    .feature-card h3 {
        font-size: 26px;
    }

    .feature-card p {
        font-size: 15px;
    }

}

/* PARTNER SECTION */

.partner-section {
    background: #f9fafb;
    padding: 80px 20px;
}

/* TITLE */

.partner-title {
    text-align: center;
    font-size: 55px;
    font-weight: bold;
    color: #111827;
    margin-bottom: 100px;
}

/* CONTAINER */

.partner-container {
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* CARD */

.partner-card {
    position: relative;

    background: #2563eb;

    border-radius: 24px;

    padding: 80px 25px 35px;

    text-align: center;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);

    transition: 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* FLOATING ICON */

.partner-icon {
    position: absolute;

    top: -40px;
    left: 50%;

    transform: translateX(-50%);

    width: 85px;
    height: 85px;

    border-radius: 50%;

    background: white;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.partner-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

/* TITLE */

.partner-card h3 {
    font-size: 30px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

/* DESCRIPTION */

.partner-card p {
    color: black;
    font-size: 16px;
    line-height: 1.7;
}

/* TABLET */

@media(max-width:992px) {

    .partner-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* MOBILE */

@media(max-width:768px) {

    .partner-title {
        font-size: 36px;
        margin-bottom: 70px;
    }

    .partner-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .partner-card {
        padding: 70px 20px 30px;
    }

    .partner-card h3 {
        font-size: 24px;
    }

    .partner-card p {
        font-size: 15px;
    }

}

/* CONTACT */


.contact-section {
    width: 100%;
    background: #2563eb;
    padding: 80px 20px;
}

/* TITLE */

.contact-title {
    text-align: center;
    color: white;
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 60px;
}

/* CONTAINER */

.contact-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

/* CARD */

.contact-card {
    background: #efefef;

    border-radius: 30px;

    padding: 35px 30px;

    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* HEADER */

.contact-header {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 25px;
}

/* ICON */

.contact-icon {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #60a5fa;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
}

/* TITLE */

.contact-header h3 {
    font-size: 32px;
    font-weight: bold;
    color: #111827;
}

/* TEXT */

.contact-card p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* TABLET */

@media(max-width:992px) {

    .contact-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* MOBILE */

@media(max-width:768px) {

    .contact-title {
        font-size: 36px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-card {
        border-radius: 22px;
        padding: 25px 20px;
    }

    .contact-header h3 {
        font-size: 24px;
    }

    .contact-card p {
        font-size: 15px;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

}

/* FOOTER */

.footer {
    width: 100%;
    background: #1f1a1a;
    color: white;
    padding: 60px 20px 30px;
}

/* CONTAINER */

.footer-container {
    max-width: 1300px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 40px;
}

/* BOX */

.footer-box h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

/* PARAGRAPH */

.footer-box p {
    font-size: 17px;
    line-height: 2;
    color: #d1d5db;
}

/* LIST */

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li a {
    text-decoration: none;
    font-size: 17px;
    color: #d1d5db;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-box ul li a:hover {
    color: #60a5fa;
    padding-left: 5px;
}

/* BOTTOM */

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #4b5563;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 16px;
}

/* TABLET */

@media(max-width:992px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* MOBILE */

@media(max-width:768px) {

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-box h2 {
        font-size: 24px;
    }

    .footer-box p,
    .footer-box ul li {
        font-size: 15px;
        line-height: 1.8;
    }

    .footer-bottom p {
        font-size: 14px;
    }

}