@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    overflow-x: hidden;
}

:root {
    --primary: #030b20;
    --secondary: #ffffff;
    --accent: #6366f1;
    --accent2: #00bafe;
    --accent-light: #818cf8;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --surface: #0f172a;
    --surface-light: #1e293b;
}

.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' /%3E%3C/svg%3E");
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.15;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent2);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #11d7e5;
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}



* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

ol,
ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

p {
    font-family: "Google Sans", sans-serif;
    font-size: 18px;
}

img {
    vertical-align: middle;
}

body {
    background: var(--primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
input,
form,
span,
small,
big,
div,
ol,
ul,
li,
a,
section,
i,
textarea,
nav,
footer,
header,
.navbar,
.navbar-brand {
    padding: 0;
    margin: 0;
}

/* Header start */
.custom {
    width: 100px;
}

.close {
    background: #ffffff;

    i {
        display: inline-block;
        color: #000;
        font-size: 20px;
        padding-right: 10px;
    }
}

.logo {
    font-size: 20px;
    color: #ffffff;
}

.sidenav {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}


.navbar-nav {
    .nav-item {
        margin: 0px;

        .nav-link {
            color: #ffffff;
            font-weight: bold;
            transition: all ease 0.4s;
            margin: 0px 5px;
            font-size: 16px;
        }


    }

    .nav-item:hover {
        .nav-link {
            transform: translateY(-4px);
        }
    }
}

.btn {
    i {
        color: #ffffff;
    }
}

.coloring {
    color: #ffffff;
}

.last {
    .nav-item {
        a {
            margin-top: 20px;
            display: inline-block;
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(20px);
            border-radius: 14px;
            transition: all ease 0.4s;
            color: #ffffff;
            padding: 18px;
        }

        .nav-link {

            margin: 0px 0px;
        }
    }

    .nav-item:last-child {
        margin-right: 0px;
    }

    .nav-item:hover {

        a {
            background: #ffffff;
            color: #000000;
            transform: translateY(-0px);
        }

    }
}

/* Header end */

/* Banner start  */
.banner_Header {
    margin-top: 100px;

}

.banner_text {
    h2 {
        color: transparent;
        background: linear-gradient(to bottom,
                var(--text-primary),
                var(--text-secondary));
        -webkit-background-clip: text;
        font-weight: bold;
    }

    a {
        display: inline-block;
        margin-top: 10px;
        padding: 10px 25px;
        background: #ffffff;
        border-radius: 10px;
        font-weight: 700;
        color: #000;

        i {
            margin-left: 5px;
        }
    }
}

.sun {

    height: 150px;
    width: 150px;
    border-radius: 50%;
    box-shadow: 0 0 1em white;
    justify-content: center;
    top: 400px;
}

.facebook,
.gmail,
.instagram,
.twitter,
.outlook {
    border-radius: 100%;
    justify-content: center;
}

.facebook::before,
.gmail::before,
.instagram::before,
.twitter::before,
.outlook::before {
    content: '';
    position: absolute;
    border-radius: 100%;
    width: 3em;
    height: 3em;
    background-repeat: no-repeat;
    z-index: 9999;
    filter: contrast(150%);
}

.facebook {
    top: 340px;
    width: 300px;
    height: 300px;
    animation: facebook 10s linear infinite;
}



.facebook::before {
    top: 1em;
    left: 14em;
    background: url(https://tse2.mm.bing.net/th/id/OIP._-N0rPk3XBfnfR9ZvP892wHaHa?rs=1&pid=ImgDetMain&o=7&rm=3);
    background-size: cover;
    animation: facebookr 10s linear infinite;
}

@keyframes facebook {
    to {
        transform: rotate(360deg);
    }
}

@keyframes facebookr {
    to {
        transform: rotate(-360deg);
    }
}


.gmail {
    top: 290px;
    width: 400px;
    height: 400px;
    animation: gmail 15s linear infinite;
}

.gmail::before {
    top: 1em;
    left: 20em;
    background: url(https://images.icon-icons.com/2631/PNG/512/gmail_new_logo_icon_159149.png);
    background-size: cover;
    animation: gmailr 15s linear infinite;
}

@keyframes gmail {
    to {
        transform: rotate(360deg);
    }
}

@keyframes gmailr {
    to {
        transform: rotate(-360deg);
    }
}

.instagram {
    top: 240px;
    width: 500px;
    height: 500px;
    animation: instagram 20s linear infinite;
}

.instagram::before {
    top: 1em;
    left: 26em;
    border-radius: 0%;
    background: url(https://images.icon-icons.com/836/PNG/256/Instagram_icon-icons.com_66804.png);
    background-size: cover;
    animation: instagramr 20s linear infinite;
}

@keyframes instagram {
    to {
        transform: rotate(360deg);
    }
}

@keyframes instagramr {
    to {
        transform: rotate(-360deg);
    }
}

.twitter {
    top: 190px;
    width: 600px;
    height: 600px;
    animation: twitter 25s linear infinite;
}

.twitter::before {
    top: 1em;
    left: 32em;
    border-radius: 0%;
    background: url(https://images.icon-icons.com/4354/PNG/256/268058_x-logo-icon.png);
    background-size: cover;
    animation: twitterr 25s linear infinite;
}

@keyframes twitter {
    to {
        transform: rotate(360deg);
    }
}

@keyframes twitterr {
    to {
        transform: rotate(-360deg);
    }
}

.outlook {
    top: 140px;
    width: 700px;
    height: 700px;
    animation: outlook 30s linear infinite;
}

.outlook::before {
    top: 1em;
    left: 38em;
    border-radius: 0%;
    background: url(https://images.icon-icons.com/2397/PNG/256/microsoft_office_outlook_logo_icon_145721.png);
    background-size: cover;
    animation: outlookr 30s linear infinite;
}

@keyframes outlook {
    to {
        transform: rotate(360deg);
    }
}

@keyframes outlookr {
    to {
        transform: rotate(-360deg);
    }
}

.banner_txt_Sec {
    margin-top: 200px;
    color: #ffffff;
}

.banner_heading {
    h1 {
        font-weight: bold;
        color: #ffffff;
        text-transform: uppercase;
        font-size: 50px;
    }

    p {
        font-weight: 400;
        margin-top: 50px;
    }
}

/* Banner end  */

/* Review part start */
.review_Sec {
    margin: 50px 0px;
}

.review_color {


    padding: 50px 30px;
    border-radius: 30px;
}

.review_part {

    h2 {
        color: transparent;
        background: linear-gradient(to bottom,
                var(--text-primary),
                var(--text-secondary));
        -webkit-background-clip: text;
        font-weight: bold;
        font-size: 40px;
    }

    p {
        font-size: 15px;
    }

}

.mtc {
    margin-top: 300px;
}

/* Review part end */




/* contact start */








@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

nav {
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.hero {
    padding: 8rem 4rem 12rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #f8fafc 30%, #64748b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.contact-container {
    max-width: 1400px;
    margin: -8rem auto 0;
    padding: 0 4rem 8rem;
    position: relative;
    z-index: 20;
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

.info-panel {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    position: sticky;
    top: 2rem;
}

.info-section {
    margin-bottom: 3rem;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-content {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-content a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--text-primary);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.form-panel {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 4rem;
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.required {
    color: var(--accent-light);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(15, 23, 42, 0.8);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.priority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.75rem;
}

.priority-option {
    position: relative;
}

.priority-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.priority-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.9rem;
}

.priority-label:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

.priority-option input:checked+.priority-label {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.priority-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-low {
    background: #10b981;
}

.dot-medium {
    background: #f59e0b;
}

.dot-high {
    background: #ef4444;
}

.file-zone {
    margin-top: 0.75rem;
    position: relative;
    padding: 3rem 2rem;
    background: rgba(15, 23, 42, 0.6);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.file-zone:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(99, 102, 241, 0.4);
}

.file-zone input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.file-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.file-subtext {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    opacity: 0.6;
}

.file-name {
    margin-top: 1rem;
    color: var(--accent-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.submit-btn:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.success-message {
    display: none;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    color: #10b981;
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 6rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to bottom,
            var(--text-primary),
            var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .hero {
        padding: 4rem 2rem 8rem;
    }

    .contact-container {
        padding: 0 2rem 4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-panel {
        position: static;
    }

    .form-panel {
        padding: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .form-row,
    .priority-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .nav-links {
        display: none;
    }
}





/* contact end */



/* About start */

.about_Sec {
    margin-top: 50px;
}

.about_text {
    h2 {
        color: transparent;
        background: linear-gradient(to bottom,
                var(--text-primary),
                var(--text-secondary));
        -webkit-background-clip: text;
        font-weight: bold;
    }

    p {
        font-weight: 200;
        color: transparent;
        background: linear-gradient(to top,
                var(--text-primary),
                var(--text-secondary));
        -webkit-background-clip: text;
    }
}

/* About end */

/* connect start */
.connect_sec {
    margin-top: 100px;
}

.Contact_card {
    padding: 50px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;

    p {
        font-size: 16px;
        margin-top: 20px;
    }

    a {
        display: inline-block;
        padding: 10px 30px;
        margin-top: 50px;
        border-radius: 16px;
        color: var(--text-primary);
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* connect end */


/* wwbi start */
.WWBI_sec {
    margin-top: 300px;
}

.wwbi_main {
    margin-top: 100px;
}

.wwbi_part {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;

    h2 {
        color: transparent;
        background: linear-gradient(to bottom,
                var(--text-primary),
                var(--text-secondary));
        -webkit-background-clip: text;
        font-weight: bold;
        font-size: 30px;
    }

    p {
        font-size: 13px;
    }
}

/* wwbi end */
/* Products strat */
.common_heading {
    h4 {
        margin-top: 60px;
    }
}

.banner_heading {
    h1 {
        font-weight: bold;
        color: transparent;
        background: linear-gradient(to bottom,
                var(--text-primary),
                var(--text-secondary));
        -webkit-background-clip: text;
        text-transform: uppercase;
        font-size: 50px;
    }

    p {
        font-weight: 400;
        margin-top: 50px;
    }
}

.product_part {
    padding-top: 40px;
    background: transparent;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0px 20px;
}

.marquee-left,
.marquee-right {
    display: flex;
    width: max-content;
}

.marquee-left img,
.marquee-right img {
    height: 90px;
    margin-right: 80px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

.marquee-left {
    animation: scroll-left 30s linear infinite;
}

.marquee-right {
    animation: scroll-right 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.catagory_part {
    padding-top: 40px;
    background: transparent;
    padding-bottom: 50px;
}

.nav-item {
    margin: 0 auto;
    justify-content: space-between;
}

.nav_link2 {
    padding: 10px 25px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px !important;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
    transition: 0.4s;
    margin-top: 50px;
}

.nav_link2:hover {
    background: rgba(15, 23, 42, 0.4);
    box-shadow: 0px 0px 3px var(--accent);
}


.nav-link {
    font-size: 15px;
    font-weight: 500;
}


.nav-link:hover {
    color: #ffffff;
}

.nav-link i {
    margin-right: 5px;
}


.catagory_item {
    padding: 40px 40px;
    margin-left: 30px !important;
    background: linear-gradient(-90deg, rgba(27, 23, 65, 0.323), #132c34c2);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px 10px 30px 10px;
    margin: 115px 0px 0px;
    border: 1px solid #22456c;
    transition: all linear 0.4s;
    border-top: 3px solid #1d4b9c;
}

.catagory_item:hover {
    box-shadow: 3px 3px 25px #22456c;
}

.catagory_item img {
    height: 35px;
    text-align: left !important;
    margin-top: -30px;
    margin-left: -15px;
}

.catagory_item h3 {
    margin-top: 10px;
    margin-left: -10px;
    text-align: left;
    color: #ffffff;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;

}

.catagory_item h4 {
    margin-top: 10px;
    margin-left: -10px;
    text-align: left;
    color: #ffffff;
    text-transform: capitalize;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    text-align: left;
    margin-bottom: 5px;
    font-family: "Montserrat", sans-serif;
}

.check_box {
    text-align: left;
    margin-top: 40px;
    color: #0de13b;
}

.small_text {
    color: #fffafa;
    font-size: 16px;
    font-weight: 500;
    margin-left: 5px;
    letter-spacing: 1px;
}

.prize_product {
    margin-top: 15px;
    font-family: "Montserrat", sans-serif;
    color: #f8f8f8;

    span {
        font-size: 20px;
        font-weight: 700;
    }

    del {
        font-weight: 500;
        margin-top: 10px;
        font-size: 18px;
        margin-left: 10px;
        color: #e10d0d96;
    }
}

.button_group {
    text-align: center;
    margin-top: 35px;
    background: #0b2149;
    padding: 10px 40px;
    border-radius: 10px;
    display: inline-block;
    transition: 0.4s;
}

.button_group a {
    font-size: 18px;
    text-align: center;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

.button_group:hover {
    display: inline-block;
    color: #7f7575;

    transform: translateY(-4px);
}

.button_group a i {
    margin-left: 5px;
}

.footer-section {
    padding-top: 30px;
}

.list-unstyled {
    margin: auto;

    .deco {
        margin: 0px 5px;
    }
}

.product_txt_Sec {
    margin-top: 1000px;
}

.product_sec {
    margin-bottom: 200px;
}

.read_more {
    a {
        display: inline-block;
        margin-top: 50px;
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 24px;
        padding: 1rem 2rem;
        color: #ffffff;
        font-weight: bold;
    }
}

/* Products end */

.position_img {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 5em;
    right: 2em;
    z-index: 9999;
    transition: all linear 0.3s;
}

.position_img:hover {
    transform: translateY(-4px);
}

.dropdown-menu {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;

    li {
        margin-top: 10px;

        a {
            color: #ffffff;

            i {
                color: #ffffff;
            }
        }

        a:hover {
            border-radius: 14px;
        }
    }
}

/* mobile nav start */
.mobile_nav {

    position: fixed;
    bottom: 0px;
    padding-top: 7px;

}

.navbar {
    padding-left: 0px;
    border-top: 1px solid #ffffff;
    width: 100%;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);

    ul {
        li {
            margin: 0px 5px;

            a {
                color: #ffffff;
            }
        }
    }
}

.mob_nav {}

.mobile_navigation {
    position: sticky;
    bottom: 0px;
    left: auto;
    padding-top: 7px;
}

/* mobile nav end */