
body {
    -webkit-user-select: none; 
    -moz-user-select: none;    
    -ms-user-select: none;     
    user-select: none;
  }


:root {
    --themt-main-color: #ffffff;
    --blue-button: #ff0000;
    --blue-button-hover: #dd0000;
    --black-button: #ff0000;
    --black-button-hover: #dd0303;
    --black-text-color: #000000;
    --white-text-color: #ffffff;
    --background-a-color: rgb(240, 240, 255);
}

* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}


::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background: #ff0000; /* Scrollbar thumb का रंग बदल दिया */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff0000; /* Hover state में भी वही रंग */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    border: 1px solid #ddd;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #ff0000 #f1f1f1; 
    box-sizing: border-box;
}



/* section one start   */




.nave-fix {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
}

nav {
    background-color: var(--themt-main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    color: var(--black-text-color);
    position: relative;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
}

nav .logo a {
    color: var(--black-text-color);
    text-decoration: none;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

nav .nav-links li a {
    color: var(--black-text-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

nav .nav-links li a:hover {
    color: var(--black-button-hover);
}

.menu-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 24px;
    color: var(--black-text-color);
    cursor: pointer;
}

.login-div {
    display: flex;
    gap: 20px;
}

.login,
.button-try-for-free {
    color: var(--white-text-color);
    padding: 15px 30px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 20px;
}

.login {
    background-color: var(--blue-button);
    transition: all 0.3s ease-in-out;
}

.login:hover {
    background-color: var(--blue-button-hover);

}

.button-try-for-free {
    background-color: var(--black-button);
    transition: all 0.3s ease-in-out;
}

.button-try-for-free:hover {
    background-color: var(--black-button-hover);
}


.button-one {
    display: none;
}


@media all and (max-width: 768px) {
    nav .nav-links {
        max-height: 0;
        gap: 2px;
        overflow: hidden;
        flex-direction: column;
        background-color: var(--themt-main-color);
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 0;
        z-index: 1;
        transition: max-height 0.4s ease-out;
    }

    nav .nav-links li a {
        display: block;
        padding: 15px;
    }

    nav .nav-links li a:hover {
        color: var(--black-text-color);
        background-color: var(--blue-button);
        border-radius: 50px;
        margin: 0px 5px;
    }

    .actives {
        background-color: var(--blue-button);
        border-radius: 50px;
        margin: 0px 5px;
    }

    .nav-links.show {
        max-height: 400px;
        padding: 0px;
    }

    .menu-toggle {
        display: block;
    }

    .login-div {
        display: none;
    }

    .button-one {
        margin: 15px 0px 20px 0px;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

}

/*  */


.bar1,
.bar2,
.bar3 {
    width: 30px;
    height: 4px;
    background-color: #262626;
    margin: 4px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: translate(0, 5.5px) rotate(-45deg);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    transform: translate(0, -10.4px) rotate(45deg);
}


.footer-bottom {
    font-size: 14px;
    border-top: 1px solid #4b4b4b;
    padding: 30px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}



.custom-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 20px 40px 20px;
}

/* Container for all footer content */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0px auto;
}

/* Individual Footer Section */


/* Section Headings */
.footer-section h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Links in Navigation Section */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #12b0f3;
}

/* Social Media Links */
.social-media {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: #12b0f3;
}

/* Customer Support Section */
.email-phone {
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    margin-bottom: 8px;
}

.email-phone a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    
}

.email-phone a:hover {
    color: #12b0f3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section {
        text-align: left;
        width: 100%;
        margin: 10px 0;
    }

    .social-media {
        justify-content: flex-start;
    }

    .footer-links, .social-media, .email-phone{
        padding: 0px 10px;
    }

    
}
