/*------------------------------------------------------------------
[Master Stylesheet]

Project:  Artelligence
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header
3. Banner Section
4. About Us Section
5. Services Section
6. Choose us Section
7. Case study Section
8. Testimonials Section
9. Partner Section
10. FAQ's Section
11. Footer Section
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&amp;family=Ubuntu:wght@300;400;500;700&amp;display=swap');

:root {
    --e-global-color-primary: #262626;
    --e-global-color-secondary: #2be0f7;
    --e-global-color-text: #787878;
    --e-global-color-accent: #2293aa;
    --e-global-color-white: #ffffff;
    --e-global-color-very-dark-grayish-blue:#3e454a;
    --e-global-color-very-dark-blue:#042237;
    --e-global-color-dark-blue:#052b45;
    --e-global-color-very-blue:#03263e;
    --e-global-color-very-dark-mostly-black-blue:#02162d;
    --e-global-color-dark-cyan:#2397ae;
    --e-global-color-light-black:#2e2e2e;
    --e-gradient-1:#02162d;
    --e-gradient-2:#36e0f7;
}

body{
    font-family: 'Ubuntu', sans-serif;
}

.h1, h1 {
    font-size: 66px;
    line-height: 72px;
    font-weight: 700;
}
.h2, h2 {
    font-size: 46px;
    line-height: 52px;
    font-weight: 700;
    color: #a78232;
}
.h3, h3{
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: var(--e-global-color-primary);
}
.h4, h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    color: var(--e-global-color-primary);
}
.h5, h5 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    text-transform: uppercase;
    color: #a78232;
}
.h6, h6 {
    font-size: 22px;
    line-height: 55px;
    font-weight: 400;
    color: var(--e-global-color-primary);
}
p {
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    color: var(--e-global-color-text);
}
.text-size-18 {
    font-size: 18px;
    line-height: 30px;
}
.text-size-16 {
    font-size: 16px;
    line-height: 22px;
}

/* Home Page Style */

/* Main Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(2, 22, 45, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(36, 224, 247, 0.1);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(2, 22, 45, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.main-header .navbar {
    padding: 15px 0;
    display: flex;
    align-items: center;
}

.header-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.main-header .navbar-brand {
    margin-right: auto;
}

/* Desktop Navigation */
.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.navbar-nav .nav-item {
    list-style: none;
}

.navbar-nav .nav-link {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 10px 18px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a68131, #a78232);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 36px);
}

.navbar-nav .nav-item.active .nav-link {
    color: #a78232 !important;
}

.navbar-nav .nav-item.active .nav-link::after {
    width: calc(100% - 36px);
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-btn i {
    font-size: 12px;
}

.header-btn-login {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.header-btn-register {
    color: #ffffff;
    background: linear-gradient(135deg, #a68131, #a78232);
    box-shadow: 0 4px 15px rgba(167, 130, 50, 0.3);
}

.header-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 130, 50, 0.4);
}

/* Hamburger Menu */
.navbar-toggler {
    display: none;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 2px;
}

.hamburger span:nth-child(2) {
    top: 11px;
}

.hamburger span:nth-child(3) {
    bottom: 2px;
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .hamburger span:nth-child(3) {
    bottom: 11px;
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #02162d 0%, #03263e 100%);
    z-index: 1001;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(36, 224, 247, 0.1);
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-body {
    padding: 30px 25px;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav-item {
    margin-bottom: 5px;
}

.mobile-nav-link {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-item.active .mobile-nav-link {
    background: rgba(167, 130, 50, 0.2);
    color: #a78232;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(36, 224, 247, 0.1);
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-btn i {
    font-size: 14px;
}

.mobile-btn-login {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.mobile-btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.mobile-btn-register {
    background: linear-gradient(135deg, #a68131, #a78232);
    color: #ffffff;
}

.mobile-btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(167, 130, 50, 0.3);
}

/* Responsive Header */
@media (max-width: 991px) {
    .main-header {
        background: rgba(2, 22, 45, 0.98);
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    .header-actions {
        display: none;
    }
}
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}
.navbar-brand{
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar{
    position: relative;
    padding: 42px 0;
    z-index: 1;
}
.navbar-nav li{
    margin: 0 12px;
}
.navbar-nav li:first-child{
    margin-left: 0;
}
.navbar-nav li:last-child{
    margin-right: 0px;
    padding-right: 0;
    margin-left: 31px;
}
.navbar-nav .dropdown{
    margin: 0 15px 0 20px;
}
.navbar-nav .nav-item .dropdown-item{
    color: var(--e-global-color-black) !important;
    transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-item .dropdown-item:hover{
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
    transition: all 0.3s ease-in-out;
    border-radius: 3px 3px 0 0;
}
.navbar-nav .drop-down-pages .active > a{
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}
.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
}
.navbar-nav .dropdown-menu {
    background-color: var(--e-global-color-white);
    position: absolute;
    left: -20px;
    top: 38px;
    padding: 0;
    border: none;
    box-shadow: 1px 1px 30px rgb(0 0 0 / 20%);
}
.navbar-nav .drop-down-pages li{
    margin: 0;
}
.navbar-nav .drop-down-pages .nav-item a {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    padding: 12px 20px;
    margin-top: 0;
}
.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}
.navbar-nav .drop-down-pages li:last-child{
    margin-left: 0;
}
/* About us */

.about-section{
    padding: 160px 0 172px;
}
.about-section .about_wrapper{
    position: relative;
}
.about-section .about_wrapper .about-image1{
    position: absolute;
    left: -30px;
    top: -30px;
}
.about-section .about_wrapper .about-image2{
    position: absolute;
    right: -22px;
    top: 322px;
}
.about-section .about_content{
    padding-left: 55px;
}
.about-section .about_content h2{
    margin: 0 -10px 18px 0;
}
.about-section .about_content p{
    margin: 0 -10px 16px 0;
}
.about-section .about_content .about-lowercontent .image{
    float: left;
    padding-top: 8px;
}
.about-section .about_content .about-lowercontent .content {
    padding-left: 83px;
}
.about-section .about_content .about-lowercontent h4{
    margin-bottom: 3px;
}
.about-section .about_content .about-lowercontent p{
    margin-bottom: 14px;
}
.about-section .about_content .about-lowercontent .text{
    margin-bottom: 35px;
}
.about-section .about_content .read_more{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 4px 2px 4px 42px;
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to right, #a68131 0%, #a78232 100%);
}
.about-section .about_content .read_more:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #a68131 0%, #a78232 100%);
}
.about-section .about_content .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.about-section .about_content .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}

/* Services */

.service-section{
    background-color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0;
}
.service-section .service-image{
    position: absolute;
    left: -106px;
    top: 26px;
}
.service-section .service_content{
    padding-top: 120px;
}
.service-section .service_content h2{
    padding-right: 86px;
    margin-bottom: 15px;
}
.service-section .service_content p{
    padding-right: 30px;
    margin-bottom: 35px;
}
.service-section .service_content .read_more{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 4px 2px 4px 42px; 
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}
.service-section .service_content .read_more:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}
.service-section .service_content .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.service-section .service_content .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}
.service-section .service_contentbox .service-box{
    background: var(--e-global-color-white);
    border-radius: 30px;
    padding: 35px 15px;
    text-align: center;
    margin-bottom: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #249cb3;
}
.service-section .service_contentbox .service-box:hover{
    background-image: linear-gradient(to right, #009fff 0%, #009fff 100%);
    border-bottom: 2px solid #000000;
    transform: translateY(-5px);
}
.service-section .service_contentbox .service-box:hover h4{
    color: var(--e-global-color-white);
}
.service-section .service_contentbox .service-box:hover p{
    color: var(--e-global-color-white);
}
.service-section .service_contentbox .service-box figure{
    background: #eafcfe;
    border-radius: 100px;
    height: 120px;
    width: 120px;
    line-height: 120px;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.service-section .service_contentbox .service-box figure:hover{
    transform: translateY(-5px);
}
.service-section .service_contentbox .service-box .read_more{
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    color: var(--e-global-color-secondary);
    text-transform: uppercase;
}
.service-section .service_contentbox .box-top{
    padding-top: 30px;
}

/* Why choose us */

.choose-section{
    /* background: url("../images/choose-background.png"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 147px 0 160px
}
.choose-section .choose-sideshape{
    position: absolute;
    right: 0;
    top: 0;
}
.choose-section .choose_wrapper{
    position: relative;
}
.choose-section .choose_wrapper .choose-image{
    position: absolute;
    top: -222px;
    left: -230px;
}
.choose-section .choose_content{
    padding-left: 70px;
}
.choose-section .choose_content h5{
    margin-bottom: 6px;
    color: #a78232 !important;
}
.choose-section .choose_content h2{
    margin-bottom: 16px;
}
.choose-section .choose_content p{
    margin-bottom: 15px;
}
.choose-section .choose_content .text{
    font-weight: 500;
    margin-bottom: 13px;
}
.choose-section .choose_content .text1{
    margin-bottom: 33px;
}
.choose-section .choose_content ul li .circle {
    background-image: linear-gradient(to right, #082e45 0%, #17677e 51%, #249cb3 100%);
    border-radius: 100px;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    margin-right: 12px;
    margin-left: 0;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.choose-section .choose_content ul li .circle:before {
    font-size: 14px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.choose-section .choose_content .read_more{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 4px 2px 4px 42px; 
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    position: relative;
    z-index: 1;
}
.choose-section .choose_content .read_more:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}
.choose-section .choose_content .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.choose-section .choose_content .read_more:hover .circle{
    background-color: var(--e-global-color-very-dark-blue);
}
.choose-section .choose_content .read_more:hover .circle:before{
    color: var(--e-global-color-white);
}
.choose-section .choose_content .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}
.choose-section .choose-sideshape2{
    position: absolute;
    right: 0;
    bottom: 0;
}

/* Case Study */

.study-section {
    padding: 130px 0 140px;
}
.study-section .study_content{
    text-align: center;
}
.study-section .study_content h5{
    margin-bottom: 10px;
}
.study-section .study_content h2{
    margin-bottom: 34px;
}
.study-section .case-box {
    margin-bottom: 30px;
}
.study-section .overlay:hover figure {
    border-radius: 30px;
    opacity: 1;
    background-image: linear-gradient(to right, #06243b 0%, #36e0f7 100%);
}
.study-section .overlay:hover img{
    opacity: 0.4;
}
.study-section .case-box .image{
    position: relative;
}
.study-section .case-box .content{
    position: absolute;
    padding: 0 50px 0 30px;
    margin-top: -196px;
}
.study-section .case-box .content h4{
    margin-bottom: 18px;
}
.study-section .case-box .content span{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    border-radius: 20px;
    background-color: #ff3030;
    padding: 5px 18px;
    text-align: center;
    display: inline-block;
    margin-bottom: 14px;
}
.study-section .case-box .circle {
    background-image: linear-gradient(to right, #0f4a61 0%, #1d7d94 51%, #28a8bf 100%);
    border-radius: 100px;
    height: 45px;
    width: 45px;
    line-height: 45px;
    margin-left: -2px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.study-section .case-box:hover .circle{
    background-image:  linear-gradient(to right, #ffffff 0%, #ffffff 51%, #ffffff 100%);
}
.study-section .case-box:hover .circle:before{
    color: var(--e-global-color-secondary);
}
.study-section .case-box .circle:before{
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.study-section .lower-images{
    margin-bottom: 28px;
}
.study-section .button{
    text-align: center;
}
.study-section .view_all{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 6px 2px 6px 52px;
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}
.study-section .view_all:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}
.study-section .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 20px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.study-section .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}

/* Testimonial */

.testimonial-section{
    background-color: #eafcfe;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 109px 0 112px;
    position: relative;
    overflow: hidden;
}
.testimonial-section .testimonial-sideimage {
    position: absolute;
    right: -106px;
    top: -32px;
}
.testimonial-section .heading{
    text-align: center;
}
.testimonial-section h2 {
    margin-bottom: 38px;
}
.testimonial-section p{
    font-size: 22px;
    line-height: 35px;
    font-weight: 400;
    margin-bottom: 14px;
    color: var(--e-global-color-light-black);
}
.testimonial-section .testimonial_content h5{
    margin-bottom: 4px;
}
.testimonial-section .testimonial_content .text-size-18{
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--e-global-color-secondary);
}
.testimonial-section .testimonial_content span{
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    color: var(--e-global-color-text);
    display: block;
}
.testimonial-section .testimonial_content .content-box .testimonial-image{
    position: absolute;
    top: 50px;
    left: -150px;
}
.testimonial-section .testimonial_content .content-box .box {
    background-image: linear-gradient(to right, #082e45 0%, #17677e 51%, #249cb3 100%);
    border-radius: 100px;
    height: 64px;
    width: 64px;
    padding-top: 17px;
    text-align: center;
    display: inline-block;
    border: 1px solid transparent;
    position: relative;
    top: -136px;
    left: -330px;
}
.testimonial-section .testimonial_content .content-box{
    border: 1px solid var(--e-global-color-white);
    border-bottom: 2px solid #249cb3;
    background: var(--e-global-color-white);
    border-radius: 35px;
    padding: 62px 68px 5px 143px;
    width: 74%;
    position: relative;
    margin-left: 218px;
    text-align: left;
    margin-bottom: 68px;
}
.testimonial-section .testimonial_content .content-box .circle {
    border-radius: 100px;
    height: 97px;
    width: 97px;
    line-height: 97px;
    text-align: center;
    display: inline-block;
    background: var(--e-global-color-secondary);
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
#carouselExampleControls{
    text-align: center;
    display: inline-block;
    border-radius: 100px; 
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}
#carouselExampleControls .carousel-control-prev{
    position: relative;
    left: -33px;
    top: 184px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    color: var(--e-global-color-white);
    opacity: 1;
    border: 1px solid #404e60;
    background: var(--e-global-color-very-dark-mostly-black-blue);
    padding: 0 10px;
    font-weight: bold;
    border-radius: 100px;
    display: inline-block;
}
#carouselExampleControls .carousel-control-next{
    position: relative;
    right: -28px;
    top: 110px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    color: var(--e-global-color-white);
    opacity: 1;
    border: 1px solid #404e60;
    background: var(--e-global-color-very-dark-mostly-black-blue);
    padding: 0 10px;
    font-weight: bold;
    border-radius: 100px;
    display: inline-block;
}
#carouselExampleControls .carousel-control-prev:hover,
#carouselExampleControls .carousel-control-next:hover {
    background-image: linear-gradient(to right,  #082e45 0%, #17677e 51%, #249cb3 100%);
    color: var(--e-global-color-white);
}
.testimonial-section .pagination-outer{
    position: absolute;
    right: 0;
    top: 0;
}
.testimonial-section .partner-section{
    text-align: center;
    position: relative;
}
.testimonial-section .partner-section .partner img{
    transition: all 0.3s ease-in-out;
}
.testimonial-section .partner-section .partner img:hover{
    filter: brightness(0.2);
    transform: translateY(-5px);
}
.testimonial-section .partner-section .partner li{
    display: inline-block;
    margin: 0 40px;
}
.testimonial-section .partner-section .partner li:first-child{
    margin-left: -4px;
}
.testimonial-section .partner-section .partner li:last-child{
    margin-right: 0;
}

/* FAQ / Need*/

.faq-section{
    padding: 182px 0 142px;
    position: relative;
}
.faq-section .accordion-card{
    box-shadow: 1px 1px 70px rgba(95 208 243 / 21%);
    background: var(--e-global-color-white);
    width: 100%;
    border-radius: 25px;
    margin-bottom: 16px;
    padding: 0 20px;
    margin-left: 10px;
}
.faq-section .accordian-inner p{
    font-weight: 400;
    border-left: 3px solid var(--e-global-color-secondary);
    padding-left: 12px;
}
.faq-section .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}
.faq-section .accordian-inner .card-body {
    padding: 0px 18px 38px;
    margin: 0 -18px;
    border-bottom: 2px solid #249cb3;
    border-radius: 15px;
}
.faq-section .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}
.faq-section .accordian-inner .accordion-card i{
    position: absolute;
    right: 20px;
    margin: -6px 0;
}
.faq-section .accordian-inner .accordion-card .btn {
    padding: 18px 0px 14px;
    text-decoration: none;
    text-align: left;
    display: block;
}
.faq-section .faq_content h5{
    margin-bottom: 10px;
}
.faq-section .faq_content h2{
    margin-bottom: 37px;
}
.faq-section .faq_content p{
    margin-bottom: 33px;
}
.faq-section .faq_content h4{
    font-weight: 500;
    /* margin-bottom: 16px; */
    display: inline-block;
}
.faq-section .faq_content .text-size-16{
    margin-bottom: 22px;
}
.faq-section .accordion-card a.btn.btn-link {
    position: relative;
}
.faq-section .accordion-card .btn-link:before {
    content: "\f068";
    position: absolute;
    text-align: center;
    right: 0px;
    top: 16%;
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-family: 'FontAwesome';
    display: inline-block;
    vertical-align: middle;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    color: var(--e-global-color-white);
    font-size: 18px;
    border-radius: 100px;
}
.faq-section .accordion-card .collapsed:before {
    content: "\2b";
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    color: var(--e-global-color-white);
    border-radius: 100px;
    text-align: center;
}
.faq-section .faq_content a{
    font-size: 18px;
    line-height: 18px;
    color: var(--e-global-color-white);
}

.faq-section .need-section{
    padding-left: 45px;
    margin-top: -20px;
}
.faq-section .need_content .faq-image{
    position: absolute;
    right: -20px;
    top: -24px;
    z-index: -1;
}
.faq-section .need_content h2{
    text-align: center;
    margin-bottom: 26px;
}
.faq-section .need_content p{
    padding: 0 20px;
    margin-bottom: 30px;
}
.faq-section .need_content {
    box-shadow: 1px 1px 57px rgb(95 208 243 / 15%);
    border-radius: 25px 25px 35px 35px;
    width: 100%;
    padding: 53px 30px 60px;
    background-color: var(--e-global-color-white);
    border: 1px solid white;
    border-bottom: 2px solid #249cb3;
    transition: all 0.3s ease-in-out;
    text-align: center;
    position: relative;
}
.form_style::placeholder{
    color: var(--e-global-color-text);
}
.faq-section .need_content input {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 1px 1px 57px rgba(95 208 243 / 7%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 14px 22px;
    margin-bottom: 17px;
    width: 100%;
    overflow: visible;
    outline: none;
}
.faq-section .need_content textarea {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 1px 1px 57px rgba(95 208 243 / 7%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 14px 22px;
    width: 100%;
    height: 130px;
    margin-bottom: 34px;
    resize: none;
    outline: none;
    overflow: auto;
}
.faq-section .need_content .submit_now{
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    padding: 4px 4px 4px 36px;
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
    border: 0px solid #082e45;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}
.faq-section .need_content .submit_now:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}
.faq-section .need_content .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.faq-section .need_content .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}

/* Footer */

.footer-section{
    /* background: url(../images/footer-background.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    position: relative;
    /* overflow: hidden; */
}
.footer-section .footer-logo{
    margin-bottom: 8px;
    position: relative;
    top: -14px;
}
.footer-section .footer-sideshape{
    position: absolute;
    left: -16px;
    top: -14px;
}
.footer-section .middle-portion{
    padding-bottom: 80px;
}
.footer-section .middle-portion .footer-text{
    margin-bottom: 16px;
    line-height: 30px;
}
.footer-section .middle-portion .heading{
   margin-bottom: 18px;
}
.footer-section .middle-portion .social-icons .circle{
    display: inline-block;
}
.footer-section .middle-portion .social-icons i{
    background: linear-gradient(to right, #a78232 0%, #a78232 51%, #a78232 100%);
    border-radius: 100px;
    border: 1px solid #ffffff;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    margin: 0 2px;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion .social-icons li:first-child{
    margin-left: 0;
}
.footer-section .middle-portion .social-icons li:last-child{
    margin-right: 0;
}
.footer-section .middle-portion .social-icons i:hover{
    /* background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%); */
    border: 1px solid #17677e;
    transform: translateY(-5px);
    color: var(--e-global-color-white);
}
.footer-section .middle-portion .social-icons a{
    color: var(--e-global-color-white);
}
.footer-section .middle-portion .list-pd{
    padding-left: 14px;
}
.footer-section .middle-portion .links .text-size-16 {
    position: relative;
    margin-left: 15px;
    font-weight: 400;
    top: 2px;
    font-family: 'Manrope', sans-serif;
    color: #000000;
}
.footer-section .middle-portion .links li{
    margin-bottom: 8px;
}
.footer-section .middle-portion .icon .text-size-16 {
    color: #000000;
}
.footer-section .middle-portion .icon {
    padding-right: 20px;
    margin-left: -30px;
}
.footer-section .middle-portion .icon li{
    margin-bottom: 10px;
}
.footer-section .middle-portion .links li i {
    font-size: 12px;
    transition: all 0.3s ease;
    color: #000000;
}
.footer-section .middle-portion ul li:hover i, .footer-section .middle-portion ul li:hover  {
    color: var(--e-global-color-secondary);
}
.footer-section .middle-portion ul li:hover .text, .footer-section .middle-portion ul li:hover  {
    color: var(--e-global-color-secondary);
}
.footer-section .middle-portion .icon .footer-location{
    color: #000000;
    position: absolute;
    line-height: 16px;
    font-size: 16px;
    left: -12px;
    margin-top: 3px;
    transition: all 0.3s ease-in-out;
}
.footer-section .middle-portion .icon .footer-location:hover{
    transform: translateY(-5px);
}
.footer-section .middle-portion .icon li {
    padding-left: 34px;
    margin-bottom: 14px;
}
.footer-section .copyright {
    text-align: center;
    padding: 20px 0px;
    color: var(--e-global-color-white);
    border-top: 1px solid #2b465e;
}
.footer-section .copyright p{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
}
.footer-section .footer-image{
    position: absolute;
    right: 90px;
    bottom: 64px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.footer-section .footer-image:hover{
    transform: translateY(-5px);
}
#fixed-form-container{
    position: fixed;
    bottom: 6px;
    right: 0;
    width: 25%;
    text-align: center;
    margin: 0;
    z-index: 1;
}
#fixed-form-container .body{
    border: 1px solid var(--e-global-color-secondary);
    box-shadow: 1px 1px 57px rgb(95 208 243 / 30%);
    border-radius: 30px;
    width: 60%;
    padding: 20px 20px 30px;
    background-color: var(--e-global-color-white);
    text-align: center;
    position: relative;
    left: 110px;
    top: -215px;
    display: none;
}
#fixed-form-container .body input {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 1px 1px 57px rgb(95 208 243 / 7%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 4px 14px;
    margin-bottom: 17px;
    width: 100%;
    overflow: visible;
    outline: none;
}
#fixed-form-container .body textarea {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 1px 1px 57px rgb(95 208 243 / 7%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 4px 14px;
    width: 100%;
    height: 118px;
    margin-bottom: 8px;
    resize: none;
    outline: none;
    overflow: auto;
}
#fixed-form-container .body .submit_now {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    padding: 12px 25px;
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
    border: 0px solid #082e45;
    background-image: linear-gradient(to right, var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}
#fixed-form-container .body .submit_now:hover {
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}

/* Projects Page */

.sub-banner {
    background: url("../images/sub-bannerbackgroung.html");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.sub-banner .header{
    padding: 0 280px 0 265px;
}
.sub-banner .banner-section{
    padding: 95px 0 172px;
    overflow: hidden;
}
.sub-banner .sub-bannersideshape{
    position: absolute;
    left: -38px;
    top: -14px;
}
.sub-banner .banner-section .banner_content p {
    padding-right: 60px;
    margin-bottom: 27px;
}
.sub-banner .banner-section .banner_content .box{
    background-color: var(--e-global-color-very-blue);
    color: var(--e-global-color-white);
    padding: 12px 35px; 
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    position: relative;
}
.sub-banner .banner-section .banner_content .box i:before {
    font-size: 14px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.sub-banner .banner-section .banner_content .box .first{
    margin-left: 16px;
}
.sub-banner .banner-section .banner_content .box .second{
    margin-right: 10px;
}
.sub-banner .banner-section .banner_content .box span{
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    display: inline-block;
}
.sub-banner .banner-section .banner_content .box .box_span{
    color: var(--e-global-color-secondary);
}
.sub-banner .banner-section .banner_content h1{
    padding-right: 0;
}
.sub-banner .banner-section .sub-bannersideshape2{
    position: absolute;
    left: -32px;
    bottom: -20px;
    z-index: 0;
}
.sub-banner .banner-section .banner_wrapper{
    position: relative;
}
.sub-banner .banner-section .banner_wrapper .sub-bannerimage{
    position: absolute;
    bottom: -360px;
    right: -396px;
}

/* About Page */

.aboutpage-section{
    padding: 162px 0 146px;
}
.aboutpage-section .aboutpage_wrapper{
    position: relative;
}
.aboutpage-section .aboutpage_wrapper .aboutpage-image{
    position: absolute;
    top: -30px;
    left: 14px;
}
.aboutpage-section .aboutpage_wrapper .aboutpage-image2{
    position: absolute;
    left: -14px;
    top: 424px;
    z-index: -1;
}
.aboutpage-section .aboutpage_content{
    padding-left: 70px;
}
.aboutpage-section .aboutpage_content h5{
    margin-bottom: 6px;
}
.aboutpage-section .aboutpage_content h2{
    margin: 0 -20px 16px 0;
}
.aboutpage-section .aboutpage_content p{
    margin: 0 -20px 15px 0
}
.aboutpage-section .aboutpage_content .text{
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--e-global-color-primary);
}
.aboutpage-section .aboutpage_content .text1{
    margin-bottom: 33px;
}
.aboutpage-section .aboutpage_content ul li .circle {
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    border-radius: 100px;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    margin: 0 12px 0 0;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.aboutpage-section .aboutpage_content ul li .circle:before {
    font-size: 14px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-white);
}
.aboutpage-section .aboutpage_content .read_more{
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 4px 2px 4px 42px; 
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
}
.aboutpage-section .aboutpage_content .read_more:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #052b45 0%, #052b45 51%, #052b45 100%);
}
.aboutpage-section .aboutpage_content .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.aboutpage-section .aboutpage_content .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}

/* Counter */

.counter-section{
    /* background-color: #eafcfe; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding: 130px 0 427px; */
}
.counter-section .counter-sideimage{
    position: absolute;
    left: -108px;
    top: -34px;
}
.counter-section .counter-box{
    background: var(--e-global-color-white);
    border-radius: 30px;
    padding: 35px 40px;
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #ffffff;
}
.counter-section .counter-box:hover{
    transform: translateY(-5px);
}
.counter-section .counter-box figure{
    background: #eafcfe;
    border-radius: 100px;
    height: 120px;
    width: 120px;
    line-height: 120px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin: 0 auto 15px;
}
.counter-section .counter-box figure:hover{
    transform: translateY(-5px);
}
.counter-section .counter-box h3{
    display: inline-block;
}
.counter-section .counter-box .plus{
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: var(--e-global-color-primary);
}
.counter-section .counter-box .text-size-16{
    display: block;
}
.videosection{
    text-align: center;
    margin-top: -358px;
}
.faqneed-section {
    padding: 162px 0 142px;
    position: relative;
}

/* FAQ Page */

.accordian-section{
    padding: 133px 0;
    position: relative;
}
.accordian-section .accordian_content{
    text-align: center;
}
.accordian-section .accordion-card{
    box-shadow: 1px 1px 70px rgba(95 208 243 / 21%);
    background: var(--e-global-color-white);
    width: 100%;
    border-radius: 15px;
    margin-bottom: 16px;
    padding: 0 20px;
}
.accordian-section .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}
.accordian-section .accordian-inner .card-body {
    padding: 0px 25px 38px;
    margin: 0 -22px;
    border-bottom: 2px solid #249cb3;
    border-radius: 15px;
}
.accordian-section .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}
.accordian-section .accordian-inner .accordion-card i{
    position: absolute;
    right: 20px;
    margin: -6px 0;
}
.accordian-section .accordion-card a.btn.btn-link {
    position: relative;
}
.accordian-section .accordian-inner .accordion-card .btn {
    padding: 18px 0px 16px;
    text-decoration: none;
    text-align: left;
    display: block;
}
.accordian-section .accordian_content h5{
    margin-bottom: 10px;
}
.accordian-section .accordian_content h2{
    margin-bottom: 40px;
}
.accordian-section .accordian-inner p{
    font-weight: 400;
    border-left: 3px solid var(--e-global-color-secondary);
    padding-left: 16px;
}
.accordian-section .accordian-inner h4{
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0;
}
.accordian-section .accordian-inner a{
    font-size: 18px;
    line-height: 18px;
    color: var(--e-global-color-white);
}
.accordian-section .accordion-card .btn-link:before {
    content: "\f068";
    position: absolute;
    text-align: center;
    right: -2px;
    top: 16%;
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-family: 'FontAwesome';
    display: inline-block;
    vertical-align: middle;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    color: #ffffff;
    font-size: 18px;
    border-radius: 100px;
}
.accordian-section .accordion-card .collapsed:before {
    content: "\2b";
    width: 48px;
    height: 48px;
    line-height: 48px;
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    color: #ffffff;
    border-radius: 100px;
    text-align: center;
}

/* Team Page */

.team-section{
    background-color: #eafcfe;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 134px 0 108px;
}
.team-section .team-sideimage {
    position: absolute;
    left: -108px;
    top: 264px;
}
.team-section .team_content{
    text-align: center;
}
.team-section .team_content h2{
    margin-bottom: 38px;
}
.team-section .team-box{
    position: relative;
    text-align: center;
    margin-bottom: 33px;
    padding-bottom: 35px;
    background-color: var(--e-global-color-white);
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #249cb3;
}
.team-section .team-box figure{
    margin-bottom: 25px;
}
.team-section .team-box h4{
    margin-bottom: 2px;
}
.team-section .team-box span{
    display: block;
    margin-bottom: 16px;
}
.team-section .team-box li{
    display: inline-block;
}
.team-section .team-box i{
    background-image: linear-gradient(to right,  var(--e-gradient-1) 0%, var(--e-gradient-2) 100%);
    border-radius: 100px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    margin: 0 3px;
    border: 1px solid var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}
.team-section .team-box li:hover{
    transform: translateY(-5px);
}
.team-section .team-box li:first-child{
    margin-left: 0;
}
.team-section .team-box li:last-child{
    margin-right: 0;
}
.team-section .team-box li a{
    color: var(--e-global-color-white);
}
.team-section .team-box:hover i{
    background-image: linear-gradient(to right, #042237 0%, #042237 51%, #042237 100%);
    border: 1px solid #17677e;
}

/* Service Page */

.provide-section{
    background-color: #eafcfe;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 134px 0 124px;
}
.provide-section .team-sideimage {
    position: absolute;
    left: -110px;
    top: 148px;
}
.provide-section .provide_content{
    text-align: center;
}
.provide-section .provide_content h2{
    margin-bottom: 35px;
    padding: 0 90px;
}
.provide-section .service_contentbox .service-box{
    background: var(--e-global-color-white);
    border-radius: 30px;
    padding: 40px 35px;
    margin-bottom: 27px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid #249cb3;
}
.provide-section .service_contentbox .service-box h4{
    display: inline-block;
    margin-bottom: 6px;
}
.provide-section .service_contentbox .service-box p{
    margin-bottom: 22px;
}
.provide-section .service_contentbox .service-box .box-content {
    position: relative;
    padding-left: 16px;
    display: inline-block;
    width: 74%;
}
.provide-section .service_contentbox .service-box figure{
    background: #eafcfe;
    border-radius: 100px;
    height: 120px;
    width: 120px;
    line-height: 120px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.provide-section .service_contentbox .service-box:hover{
    background-image: linear-gradient(to right, #082e45 0%, #17677e 51%, #249cb3 100%);
    border-bottom: 2px solid #249cb3;
    transform: translateY(-5px);
}
.provide-section .service_contentbox .service-box:hover h4{
    color: var(--e-global-color-white);
}
.provide-section .service_contentbox .service-box:hover p{
    color: var(--e-global-color-white);
}
.provide-section .service_contentbox .service-box .box-image {
    float: left;
    width: 26%;
}
.provide-section .service_contentbox .service-box figure:hover{
    transform: translateY(-5px);
}
.provide-section .service_contentbox .service-box .read_more{
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    color: var(--e-global-color-secondary);
    text-transform: uppercase;
}

/* Contact Page Style */

.contact-section{
    padding: 146px 0 112px;
    position: relative;
}
.contact-section .contact_content h2 {
    margin-bottom: 30px;
}
.contact-section .contact_content h5{
    margin-bottom: 10px;
}
.contact-section .contact-box{
    box-shadow: 1px 1px 57px rgb(95 208 243 / 15%);
    background: var(--e-global-color-white);
    border-radius: 20px;
    padding: 31px 35px 31px 33px;
    margin-bottom: 28px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border-right: 2px solid #249cb3;
    width: 83%;
}
.contact-section .contact-box .box-image{
    float: left;
    width: 26%;
}
.contact-section .contact-box figure{
    background-image: linear-gradient(to right, #0b3950 0%, #197188 51%, #26a2b9 100%);
    border-radius: 100px;
    height: 110px;
    width: 110px;
    line-height: 110px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0;
}
.contact-section .contact-box figure:hover{
    transform: translateY(-5px);
}
.contact-section .contact-box .box-content{
    position: relative;
    padding-left: 32px;
    margin-top: 14px;
    display: inline-block;
    width: 74%;
}
.contact-section .contact-box h4{
    font-weight: 700;
    margin-bottom: 14px;
}
.contact-section .contact-box .heading{
    margin-bottom: 11px;
}
.contact-section .contact-box p{
    margin-top: -10px;
    margin-bottom: 4px;
}
.contact-section .contact-box .box-content a {
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}
.contact-section .contact-box .box-content a:hover {
    color: var(--e-global-color-secondary);
}
.contact-section .need-section {
    margin-top: -32px;
    margin-left: -38px;
}
.contact-section .need_content .faq-image{
    position: absolute;
    right: -20px;
    top: -24px;
    z-index: -1;
}
.contact-section .need_content h2{
    text-align: center;
    margin-bottom: 26px;
}
.contact-section .need_content p{
    padding: 0 20px;
    margin-bottom: 30px;
}
.contact-section .need_content {
    box-shadow: 1px 1px 57px rgb(95 208 243 / 15%);
    border-radius: 25px 25px 35px 35px;
    width: 85%;
    margin-top: 50px;
    padding: 50px 30px 60px;
    background-color: var(--e-global-color-white);
    border: 1px solid white;
    border-bottom: 2px solid #249cb3;
    transition: all 0.3s ease-in-out;
    text-align: center;
    position: relative;
}
.form_style::placeholder{
    color: var(--e-global-color-text);
}
.contact-section .need_content input {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 1px 1px 57px rgba(95 208 243 / 7%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 17px;
    width: 100%;
    overflow: visible;
    outline: none;
}
.contact-section .need_content textarea {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    box-shadow: 1px 1px 57px rgba(95 208 243 / 7%);
    background-color: var(--e-global-color-white);
    color: var(--e-global-color-text);
    border: 1px solid #dae7fb;
    border-radius: 10px;
    padding: 14px 18px;
    width: 100%;
    height: 130px;
    margin-bottom: 34px;
    resize: none;
    outline: none;
    overflow: auto;
}
.contact-section .need_content .submit_now{
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    padding: 4px 4px 4px 36px;
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
    border: 0px solid #082e45;
    background-image: linear-gradient(to right, #a78232 0%, #a78232 51%, #a78232 100%);
}
.contact-section .need_content .submit_now:hover{
    color: var(--e-global-color-white);
    background-image: linear-gradient(to right, #a78232 0%, #a78232 51%, #a78232 100%);
}
.contact-section .need_content .circle {
    background: var(--e-global-color-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    margin: 0 3px 0 12px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.contact-section .need_content .circle:before {
    font-size: 18px;
    padding-top: 2px;
    font-family: 'FontAwesome';
    transition: all 0.3s ease;
    color: var(--e-global-color-dark-blue);
}
.contact_map_section {
    overflow: hidden;
    margin-bottom: -5px;
}
.contact_map_section iframe:hover {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

/* Mining Plans Section */
.plans-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.plans-section .plans-header {
    margin-bottom: 60px;
}

.plans-section .plans-header h5 {
    margin-bottom: 10px;
}

.plans-section .plans-header h2 {
    margin-bottom: 15px;
}

.plans-section .plans-header p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.plans-section .plan-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid #249cb3;
    transition: all 0.3s ease-in-out;
}

.plans-section .plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.plans-section .plan-card-reverse {
    background: linear-gradient(135deg, #02162d 0%, #03263e 100%);
}

.plans-section .plan-card-reverse .plan-content h3,
.plans-section .plan-card-reverse .plan-description,
.plans-section .plan-card-reverse .feature-label,
.plans-section .plan-card-reverse .feature-value,
.plans-section .plan-card-reverse .coins-label {
    color: #ffffff;
}

.plans-section .plan-card-reverse .feature-item {
    background: rgba(255, 255, 255, 0.1);
}

.plans-section .plan-card-reverse .coin-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.plans-section .plan-card-reverse .plan-hash {
    background: rgba(54, 224, 247, 0.2);
}

.plans-section .plan-card-reverse .plan-hash i,
.plans-section .plan-card-reverse .plan-hash span {
    color: #2be0f7;
}

.plans-section .plan-card-reverse .plan-button {
    background-image: linear-gradient(to right, #a68131 0%, #a78232 100%);
}

.plans-section .plan-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.plans-section .plan-image {
    margin: 0;
}

.plans-section .plan-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
}

.plans-section .plan-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #a68131 0%, #a78232 100%);
    padding: 8px 20px;
    border-radius: 25px;
}

.plans-section .badge-text {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.plans-section .plan-content {
    padding-left: 20px;
}

.plans-section .plan-card-reverse .plan-content {
    padding-left: 0;
    padding-right: 20px;
}

.plans-section .plan-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #262626;
}

.plans-section .plan-description {
    font-size: 16px;
    line-height: 26px;
    color: #787878;
    margin-bottom: 25px;
}

.plans-section .plan-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.plans-section .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.plans-section .feature-item:hover {
    background: #eafcfe;
}

.plans-section .feature-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #082e45 0%, #249cb3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plans-section .feature-icon i {
    color: #ffffff;
    font-size: 16px;
}

.plans-section .feature-info {
    display: flex;
    flex-direction: column;
}

.plans-section .feature-label {
    font-size: 12px;
    color: #787878;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plans-section .feature-value {
    font-size: 16px;
    font-weight: 600;
    color: #262626;
}

.plans-section .feature-value.profit {
    color: #28a745;
}

.plans-section .plan-coins {
    margin-bottom: 20px;
}

.plans-section .coins-label {
    font-size: 14px;
    color: #787878;
    display: block;
    margin-bottom: 10px;
}

.plans-section .coin-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.plans-section .coin-tag {
    background: #eafcfe;
    color: #082e45;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.plans-section .plan-hash {
    background: linear-gradient(135deg, rgba(54, 224, 247, 0.15) 0%, rgba(2, 22, 45, 0.15) 100%);
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
}

.plans-section .hash-rate {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plans-section .hash-rate i {
    color: #2397ae;
    font-size: 18px;
}

.plans-section .hash-rate span {
    font-size: 18px;
    font-weight: 600;
    color: #262626;
}

.plans-section .plan-button {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 14px 30px;
    text-align: center;
    display: inline-block;
    border-radius: 30px 30px 30px 0;
    color: #ffffff !important;
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(to right, #02162d 0%, #36e0f7 100%);
}

.plans-section .plan-button:hover {
    background-image: linear-gradient(to right, #a68131 0%, #a78232 100%);
    color: #ffffff;
    transform: translateX(5px);
}

.plans-section .plan-button .circle {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    margin: 0 0 0 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.plans-section .plan-button .circle:before {
    font-size: 14px;
    font-family: 'FontAwesome';
    color: #ffffff;
}

.plans-section .no-plans {
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.plans-section .no-plans-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #eafcfe 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.plans-section .no-plans-icon i {
    font-size: 40px;
    color: #249cb3;
}

.plans-section .no-plans h3 {
    margin-bottom: 15px;
}

.plans-section .no-plans p {
    max-width: 500px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    padding: 140px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #02162d 0%, #03263e 50%, #042237 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(36, 224, 247, 0.15) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(36, 224, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 224, 247, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #a78232, #a68131);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s infinite ease-in-out;
}

.particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(167, 130, 50, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.particle-1 { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 18s; }
.particle-2 { left: 20%; top: 80%; animation-delay: -2s; animation-duration: 22s; }
.particle-3 { left: 30%; top: 40%; animation-delay: -4s; animation-duration: 16s; }
.particle-4 { left: 50%; top: 60%; animation-delay: -6s; animation-duration: 20s; }
.particle-5 { left: 70%; top: 30%; animation-delay: -8s; animation-duration: 24s; }
.particle-6 { left: 80%; top: 70%; animation-delay: -10s; animation-duration: 19s; }
.particle-7 { left: 90%; top: 50%; animation-delay: -12s; animation-duration: 21s; }
.particle-8 { left: 40%; top: 10%; animation-delay: -14s; animation-duration: 17s; }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-30px) translateX(15px) rotate(90deg); opacity: 0.8; }
    50% { transform: translateY(-15px) translateX(-10px) rotate(180deg); opacity: 0.4; }
    75% { transform: translateY(-40px) translateX(20px) rotate(270deg); opacity: 0.7; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(167, 130, 50, 0.2), rgba(167, 129, 49, 0.1));
    border: 1px solid rgba(167, 130, 50, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge .badge-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #a68131, #a78232);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge .badge-icon i {
    color: #ffffff;
    font-size: 12px;
}

.hero-badge span {
    color: #a78232;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 52px;
    line-height: 62px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.title-highlight {
    background: linear-gradient(135deg, #a68131, #a78232);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2be0f7;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(36, 224, 247, 0.5), transparent);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #a68131, #a78232);
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(167, 130, 50, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(167, 130, 50, 0.5);
    background: linear-gradient(135deg, #a78232, #a68131);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i {
    font-size: 14px;
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.trust-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.trust-icons {
    display: flex;
    gap: 15px;
}

.trust-icons i {
    font-size: 24px;
    color: #a78232;
    transition: all 0.3s ease;
}

.trust-icons i:hover {
    color: #2be0f7;
    transform: scale(1.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-image {
    margin: 0;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

/* Floating Crypto Cards */
.floating-crypto {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float-card 4s ease-in-out infinite;
}

.floating-crypto.crypto-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-crypto.crypto-2 {
    top: 45%;
    left: -30px;
    animation-delay: -1s;
}

.floating-crypto.crypto-3 {
    bottom: 20%;
    right: -10px;
    animation-delay: -2s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    75% { transform: translateY(-5px) rotate(-2deg); }
}

.crypto-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f7931a, #ffab40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crypto-icon.eth {
    background: linear-gradient(135deg, #627eea, #8b9ff3);
}

.crypto-icon.ltc {
    background: linear-gradient(135deg, #345d9d, #5a7fb8);
}

.crypto-icon i {
    color: #ffffff;
    font-size: 18px;
}

.crypto-label {
    font-weight: 700;
    color: #262626;
    font-size: 14px;
}

.crypto-change {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
    background: rgba(40, 167, 69, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

/* Mining Progress Card */
.mining-progress {
    position: absolute;
    bottom: 5%;
    left: -40px;
    background: linear-gradient(135deg, rgba(2, 22, 45, 0.95), rgba(3, 38, 62, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(36, 224, 247, 0.2);
    border-radius: 20px;
    padding: 20px 25px;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: float-card 5s ease-in-out infinite;
    animation-delay: -1.5s;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.progress-value {
    color: #2be0f7;
    font-size: 18px;
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, #2be0f7, #a78232);
    border-radius: 10px;
    animation: progress-fill 2s ease-out forwards;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes progress-fill {
    0% { width: 0%; }
    100% { width: 75%; }
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.progress-stats strong {
    color: #2be0f7;
}

/* Earnings Card */
.earnings-card {
    position: absolute;
    top: 20%;
    right: -30px;
    background: linear-gradient(135deg, #28a745, #34ce57);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
    animation: pulse-glow-green 3s ease-in-out infinite;
}

@keyframes pulse-glow-green {
    0%, 100% { box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4); }
    50% { box-shadow: 0 15px 45px rgba(40, 167, 69, 0.6); }
}

.earnings-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earnings-icon i {
    color: #ffffff;
    font-size: 20px;
}

.earnings-info {
    display: flex;
    flex-direction: column;
}

.earnings-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.earnings-value {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 42px;
        line-height: 52px;
    }
    
    .floating-crypto.crypto-1 {
        right: 0;
    }
    
    .mining-progress {
        left: -20px;
        min-width: 250px;
    }
    
    .earnings-card {
        right: 0;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 120px 0 100px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-badge {
        margin: 0 auto 25px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 46px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        margin-top: 60px;
    }
    
    .floating-crypto {
        display: none;
    }
    
    .mining-progress {
        position: relative;
        left: 0;
        margin: 30px auto 0;
    }
    
    .earnings-card {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px auto 0;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 38px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 26px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .plans-section .plan-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .plans-section .plan-card-reverse .plan-content {
        padding-right: 0;
    }
    
    .plans-section .plan-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .plans-section {
        padding: 60px 0;
    }
    
    .plans-section .plan-card {
        padding: 25px;
    }
    
    .plans-section .plan-content h3 {
        font-size: 24px;
    }
}

/* ========== SECTION HEADER STYLES ========== */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(167, 130, 50, 0.2), rgba(167, 129, 49, 0.1));
    border: 1px solid rgba(167, 130, 50, 0.3);
    color: #a78232;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 20px;
}

.section-title .text-gradient {
    background: linear-gradient(135deg, #a68131, #a78232);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    line-height: 28px;
    color: #787878;
    max-width: 600px;
    margin: 0 auto;
}

.section-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #a68131, #a78232);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(167, 130, 50, 0.3);
}

.section-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(167, 130, 50, 0.4);
    color: #ffffff;
}

.section-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.section-btn:hover i {
    transform: translateX(5px);
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.about-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-bottom: 3px solid #249cb3;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.about-card .about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #02162d, #249cb3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.about-card .about-icon i {
    font-size: 28px;
    color: #ffffff;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 15px;
}

.about-card p {
    font-size: 16px;
    line-height: 26px;
    color: #787878;
    margin-bottom: 25px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #262626;
    font-weight: 500;
}

.about-feature i {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #a68131, #a78232);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.about-image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(2, 22, 45, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
}

.overlay-content {
    display: flex;
    flex-direction: column;
}

.overlay-number {
    font-size: 36px;
    font-weight: 700;
    color: #a78232;
    line-height: 1;
}

.overlay-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.about-cta {
    margin-top: 60px;
}

/* ========== ROADMAP SECTION ========== */
.roadmap-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #a78232, rgba(167, 130, 50, 0.2));
}

.roadmap-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

.roadmap-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 3px solid #a78232;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.roadmap-live .roadmap-marker {
    background: linear-gradient(135deg, #a68131, #a78232);
    border-color: #a78232;
}

.roadmap-live .roadmap-marker i {
    color: #ffffff;
}

.roadmap-upcoming .roadmap-marker i {
    color: #a78232;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.roadmap-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid #249cb3;
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-content:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.roadmap-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.roadmap-status.live {
    background: linear-gradient(135deg, #28a745, #34ce57);
    color: #ffffff;
    animation: pulse 2s infinite;
}

.roadmap-status.upcoming {
    background: rgba(167, 130, 50, 0.15);
    color: #a78232;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.roadmap-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 10px;
}

.roadmap-content p {
    font-size: 15px;
    line-height: 24px;
    color: #787878;
    margin-bottom: 0;
}

.roadmap-icon {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(167, 130, 50, 0.1), rgba(167, 129, 49, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-icon i {
    font-size: 20px;
    color: #a78232;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-bottom: 3px solid #249cb3;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a68131, #a78232);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #02162d, #249cb3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #a68131, #a78232);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 30px;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    line-height: 24px;
    color: #787878;
    margin-bottom: 20px;
}

.feature-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a78232;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-link a:hover {
    color: #a68131;
    gap: 12px;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #02162d 0%, #03263e 50%, #042237 100%);
    position: relative;
}

.services-content {
    padding-right: 40px;
}

.services-content .section-badge {
    background: rgba(167, 130, 50, 0.2);
    border-color: rgba(167, 130, 50, 0.3);
}

.services-content .section-title {
    color: #ffffff;
}

.services-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(36, 224, 247, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(36, 224, 247, 0.3);
    transform: translateX(10px);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a68131, #a78232);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 20px;
    color: #ffffff;
}

.service-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.service-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.services-section .service-item .service-info h4,
.services-section .service-item .service-info p {
    color: #ffffff !important;
}

.services-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.services-image img {
    width: 100%;
    border-radius: 24px;
}

.services-image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(2, 22, 45, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px;
}

.overlay-stats {
    display: flex;
    justify-content: space-around;
}

.overlay-stats .stat {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.overlay-stats .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #a78232;
    line-height: 1;
}

.overlay-stats .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 36px;
        line-height: 46px;
    }
}

@media (max-width: 991px) {
    .about-section,
    .roadmap-section,
    .features-section,
    .services-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .services-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .roadmap-item {
        padding-left: 60px;
    }
    
    .roadmap-marker {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
        line-height: 38px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card {
        padding: 30px;
    }
    
    .about-image-wrapper {
        min-height: 300px;
        margin-top: 30px;
    }
    
    .roadmap-timeline::before {
        display: none;
    }
    
    .roadmap-item {
        padding-left: 0;
    }
    
    .roadmap-marker {
        position: relative;
        margin-bottom: 20px;
    }
    
    .roadmap-icon {
        display: none;
    }
    
    .overlay-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-bottom: 3px solid #249cb3;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #02162d, #249cb3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: #ffffff;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 14px;
    color: #787878;
    margin-bottom: 5px;
}

.contact-details a,
.contact-details span {
    font-size: 15px;
    color: #a78232;
    font-weight: 600;
    text-decoration: none;
}

.contact-details a:hover {
    color: #a68131;
}

.contact-social {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-bottom: 3px solid #249cb3;
}

.contact-social h4 {
    font-size: 18px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #a68131, #a78232);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(167, 130, 50, 0.4);
    color: #ffffff;
}

.contact-form-wrapper {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    width: 100%;
    border-bottom: 3px solid #249cb3;
}

.contact-form-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 30px;
}

.contact-form-card .form-group {
    margin-bottom: 20px;
}

.contact-form-card .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form-card .form-control:focus {
    outline: none;
    border-color: #a78232;
    box-shadow: 0 0 0 3px rgba(167, 130, 50, 0.1);
    background: #ffffff;
}

.contact-form-card textarea.form-control {
    resize: none;
    height: 120px;
}

.contact-submit {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #a68131, #a78232);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(167, 130, 50, 0.4);
}

.contact-submit i {
    font-size: 14px;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
}}
