/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@font-face {
    font-family: Vazir;
    font-style: normal;
    font-weight: normal;
    src: url('../../fonts/Vazir.eot');
    src: url('../../fonts/Vazir.eot?#iefix') format('embedded-opentype'), url('../../fonts/Vazir.woff2') format('woff2'), url('../../fonts/Vazir.woff') format('woff'), url('../../fonts/Vazir.ttf') format('truetype');
}

@font-face {
    font-family: Vazir;
    font-style: normal;
    font-weight: bold;
    src: url('../../fonts/Vazir-Bold.eot');
    src: url('../../fonts/Vazir-Bold.eot?#iefix') format('embedded-opentype'), url('../../fonts/Vazir-Bold.woff2') format('woff2'), url('../../fonts/Vazir-Bold.woff') format('woff'), url('../../fonts/Vazir-Bold.ttf') format('truetype');
}

#navbar a {
    font-family: Vazir !important;
    font-weight: normal;
}


/*--------------------------------------------------------------
# CSS Variables - Dark Theme
--------------------------------------------------------------*/
:root {
    --primary-color: #00d4ff;
    --primary-dark: #00a8cc;
    --primary-light: #4de8ff;
    --secondary-color: #7c3aed;
    --accent-color: #10b981;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(20, 20, 30, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #6b7280;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 212, 255, 0.15);
    --gradient-1: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    --gradient-2: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-3: linear-gradient(180deg, rgba(0,212,255,0.1) 0%, transparent 100%);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: Vazir, 'Open Sans', sans-serif;
    font-weight: normal;
    color: var(--text-secondary);
    direction: rtl;
    text-align: right;
    background: var(--gradient-1);
    background-attachment: fixed;
    min-height: 100vh;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Vazir, "Roboto", sans-serif;
    color: var(--text-primary);
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--gradient-2);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    transition: all 0.4s;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.5s;
    z-index: 997;
    height: 80px;
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 30px;
}

#header .logo a {
    color: #fff;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#header .logo img {
    max-height: 40px;
}

@media (max-width: 991px) {
    #header .logo a {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    #header .logo a {
        font-size: 12px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

@media (max-width:990px) {
    .navbar {
        margin-right: auto;
    }
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 22px;
}


/* .navbar a, */

.navbar a:focus {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 0 4px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    position: relative;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: var(--gradient-2);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--primary-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 8px 25px;
    margin-left: 12px;
    border-radius: 8px;
    color: #fff;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    border: 2px solid var(--primary-color);
    background: transparent;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: var(--gradient-2);
    border-color: transparent;
}

.navbar .getstarted:hover:before,
.navbar li:hover>.getstarted:before {
    visibility: hidden;
}

.navbar .dropdown ul {
    display: inline-block;
    position: absolute;
    right: -100px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    width: 150px;
    display: inline-grid;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: var(--text-secondary);
    float: right;
}

.navbar .dropdown ul a:hover {
    background: rgba(0, 212, 255, 0.1);
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--primary-color);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        right: 100%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #5c9f24;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    left: 15px;
    padding: 10px 0;
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    font-size: 15px;
    color: var(--text-secondary);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--primary-color);
}

.navbar-mobile>ul>li {
    white-space: nowrap;
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    color: var(--primary-color);
    padding-left: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #5c9f24;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.8);
    overflow: hidden;
    padding: 0;
}

#hero .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: 0.3;
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .carousel-content {
    text-align: center;
}

#hero h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
}

#hero h2 span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#hero p {
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.2s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    opacity: 0.6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

#hero .btn-get-started {
    font-family: Vazir, "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 35px 14px 35px;
    border-radius: 30px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    text-transform: uppercase;
    border: none;
    background: var(--gradient-2);
    box-shadow: 0 5px 20px var(--shadow-color);
}

#hero .btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 80px 0;
}

.section-bg {
    background: rgba(15, 15, 25, 0.5);
}

.section-title {
    text-align: center;
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    margin-bottom: 0;
    color: var(--text-secondary);
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .content h3 {
    font-weight: 700;
    font-size: 34px;
    color: var(--text-primary);
}

.about .content p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.about .content .icon-box {
    margin-top: 25px;
    padding: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about .content .icon-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.about .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
    color: var(--text-primary);
}

.about .content .icon-box i {
    font-size: 48px;
    float: left;
    color: var(--primary-color);
}

.about .content .icon-box p {
    font-size: 15px;
    color: var(--text-muted);
    margin-left: 60px;
}

.about .image {
    background: url("../img/about.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .about .image {
        text-align: center;
    }
    .about .image img {
        max-width: 80%;
    }
}

@media (max-width: 667px) {
    .about .image img {
        max-width: 100%;
    }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .box {
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all ease-in-out 0.4s;
    height: 100%;
    backdrop-filter: blur(10px);
}

.services .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.services .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: var(--text-primary);
}

.services .box p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.services .box:hover {
    background: var(--gradient-2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    border-color: transparent;
}

.services .box:hover span,
.services .box:hover h4,
.services .box:hover p {
    color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

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

.faq .faq-list li + li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.faq .faq-list li:hover {
    border-color: var(--primary-color);
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: Vazir, "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
    color: var(--text-primary);
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: var(--primary-color);
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary-color);
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    color: var(--text-secondary);
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: var(--text-secondary);
}

.faq .faq-list a.collapsed:hover {
    color: var(--primary-color);
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}
  


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact .contact-info:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact .contact-info address,
.contact .contact-info p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact .contact-info a {
    color: var(--text-secondary);
}

.contact .contact-info a:hover {
    color: var(--primary-color);
}

.contact .contact-address,
.contact .contact-phone,
.contact .contact-email {
    margin-bottom: 20px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
    border-radius: 8px;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: var(--accent-color);
    text-align: center;
    padding: 15px;
    font-weight: 600;
    border-radius: 8px;
}

.contact .php-email-form .loading {
    display: none;
    background: var(--bg-card);
    text-align: center;
    padding: 15px;
    border-radius: 8px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--primary-color);
    border-top-color: transparent;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    box-shadow: none;
    font-size: 14px;
    height: auto;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.contact .php-email-form button[type=submit] {
    background: var(--gradient-2);
    border: 0;
    padding: 12px 35px 14px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 30px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact .php-email-form button[type=submit]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 768px) {
    .contact .contact-phone {
        border-left: 1px solid var(--border-color);
        border-right: 1px solid var(--border-color);
    }
    .contact .contact-address,
    .contact .contact-phone,
    .contact .contact-email {
        padding: 20px 0;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 0 0 30px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-top: 1px solid var(--border-color);
}

#footer .footer-top {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: Vazir, "Roboto", sans-serif;
    color: var(--text-secondary);
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: var(--gradient-2);
    border-color: transparent;
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: var(--text-secondary);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--primary-color);
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px 10px;
    position: relative;
    border-radius: 30px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 8px 15px;
    width: calc(100% - 110px);
    background: transparent;
    color: var(--text-primary);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    left: -2px;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 25px;
    background: var(--gradient-2);
    color: #fff;
    transition: 0.3s;
    border-radius: 30px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    box-shadow: 0 5px 20px var(--shadow-color);
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}


/*--------------------------------------------------------------
# language
--------------------------------------------------------------*/

.header-left {
    position: relative;
    right: 310px;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}
.ml-1{
    margin-left: 0.25rem !important;
}

@media (max-width:991px) {}

@media(min-width:991px) {
    .lang-li {
        color: white;
    }
}

.cursor-pointer {
    cursor: pointer;
}

/* Language Switcher */
.lang-li {
    position: relative;
}

.lang-li-a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lang-li-a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-li .popup {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card, rgba(15, 15, 25, 0.95));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    border-radius: 10px;
    padding: 10px;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.lang-li .popup a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--text-color, #fff);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.lang-li .popup a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/*--------------------------------------------------------------
# Custom Cards & Components
--------------------------------------------------------------*/

/* Product Cards */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.product-card img {
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.product-card h3,
.product-card h4,
.product-card h5 {
    color: var(--text-primary);
}

.product-card p {
    color: var(--text-secondary);
}

/* Glass Effect */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Primary Button */
.btn-primary-custom {
    background: var(--gradient-2);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-color);
    color: #fff;
}

/* Outline Button */
.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 10px 28px;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--gradient-2);
    border-color: transparent;
    color: #fff;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.feature-icon:hover {
    background: var(--gradient-2);
    border-color: transparent;
    transform: scale(1.1);
}

.feature-icon:hover i {
    color: #fff;
}

/* Text Colors */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--text-secondary) !important;
}

/* Background Colors */
.bg-dark-custom {
    background: var(--bg-dark) !important;
}

.bg-card-custom {
    background: var(--bg-card) !important;
}

/* Glow Effects */
.glow {
    box-shadow: 0 0 30px var(--shadow-color);
}

.glow-text {
    text-shadow: 0 0 20px var(--shadow-color);
}

/* Bootstrap Overrides for Dark Theme */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.card-body {
    color: var(--text-secondary);
}

.card-title {
    color: var(--text-primary);
}

.list-group-item {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.table {
    color: var(--text-secondary);
}

.table thead th {
    color: var(--text-primary);
    border-color: var(--border-color);
}

.table td, .table th {
    border-color: var(--border-color);
}

.badge {
    font-weight: 500;
}

.badge-primary, .bg-primary {
    background: var(--gradient-2) !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: #fff;
}

/* Main Content Wrapper */
main {
    background: transparent;
}

/* Page Headers */
.page-header {
    padding: 120px 0 60px;
    background: var(--gradient-3);
}

.page-header h1 {
    color: var(--text-primary);
    font-size: 42px;
    font-weight: 700;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/" !important;
    color: var(--text-secondary);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    float: right;
}

.breadcrumb-item a {
    color: var(--text-secondary);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--shadow-color); }
    50% { box-shadow: 0 0 40px var(--shadow-color); }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

