* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
   
}

.containers {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
   
}
.hero-img{
    width: 50%;
   
}
.hero-img img{
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.header {
    background-color: #438fbf;
    background: linear-gradient(to right, #438fbf, #438fbf, #8da0c4);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 150px;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 24px;
}

.main-nav a {
    color: white;
    font-size: 14px;
    transition: opacity 0.3s;
}

.main-nav a:hover, .main-nav a.active {
    opacity: 0.8;
}

.header-right {
    display: flex;
    align-items: center;
}

.language-selector {
    margin-left: 16px;
    display: none;
}

.lang-btn {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: white;
    padding: 4px 12px;
    cursor: pointer;
    font-size: 14px;
    position: relative;
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 6px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 20px;
    position: relative;
    margin-left: 16px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 18px;
}


.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #438fbf, #438fbf, #8da0c4);
    padding: 20px;
    z-index: 99;
    display: none;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
}

.mobile-menu li {
    margin-bottom: 15px;
}
.widget-area{
    background: linear-gradient(to right, #438fbf, #438fbf, #8da0c4);
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.774);
    font-size: 16px;
    display: block;
    padding: 5px 0;
}


.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background-color: #0284c7;
    color: white;
}

.btn-primary:hover {
    background-color: #0369a1;
}

.btn-green {
    background-color: #22c55e;
    color: white;
}

.btn-green:hover {
    background-color: #16a34a;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline.dark {
    border-color: #1e3a8a;
    color: #1e3a8a;
}

.btn-outline.dark:hover {
    background-color: rgba(30, 58, 138, 0.1);
}

.main-nav{
    margin-left: auto;
}

.main-nav ul li a{
    font-size: 9pt;
}


.hero-section {
    background: linear-gradient(to right, #438fbf, #438fbf, #8da0c4);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: rgba(233, 228, 228, 0.829);
    position: relative;
    padding: 100px 0 50px 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-content {
    max-width: 600px;
    background-image: url('assets/img/laptop3.jpg');
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.highlight {
    color: #38bdf8;
    font-size: 15pt;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.features-list {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.check-icon {
    color: #38bdf8;
    margin-right: 12px;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background-color: #38bdf8;
}


.features-section {
    padding: 64px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: #1e3a8a;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #111827;
}

.feature-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}


.about-section {
    padding: 64px 0;
    background-color: #f9fafb;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #111827;
}

.about-content p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-tabs {
    display: flex;
    margin: 24px 0;
    border-bottom: 1px solid #e5e7eb;
}

.tab-btn {
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.3s;
}

.tab-btn.active {
    color: #1e3a8a;
    border-bottom-color: #1e3a8a;
}

.tab-content {
    display: none;
    margin-bottom: 24px;
}

.tab-content.active {
    display: block;
}


.why-us-section {
    padding: 64px 0;
    background-color: #fff;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 16px;
    color: #111827;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 48px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-us-card {
    text-align: center;
    padding: 24px;
}

.why-us-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background-color: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    font-size: 24px;
}

.why-us-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.why-us-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}


.journey-section {
    padding: 64px 0;
    background: linear-gradient(to right, #1e3a8a, #2563eb);
    color: white;
}

.journey-section .section-title,
.journey-section .section-subtitle {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}


.advantage-section {
    padding: 64px 0;
    background-color: #f9fafb;
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.advantage-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #111827;
}

.advantage-content p {
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.6;
}

.advantage-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.advantage-video {
    border-radius: 8px;
    overflow: hidden;
}

.advantage-video video {
    width: 100%;
    display: block;
}


.process-section {
    padding: 64px 0;
    background-color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    text-align: center;
    padding: 24px;
}

.process-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: #0284c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.process-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background-color: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.process-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}


.services-section {
    padding: 64px 0;
    background-color: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: #1e3a8a;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.center-button {
    text-align: center;
}


.mining-section {
    padding: 64px 0;
    background-color: #fff;
}

.mining-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.mining-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #111827;
}

.mining-content p {
    color: #4b5563;
    line-height: 1.6;
}

.mining-image img {
    width: 100%;
    border-radius: 8px;
}


.testimonials-section {
    padding: 64px 0;
    background-color: #f9fafb;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    color: #111827;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: #6b7280;
}


.notification-popup {
    position: fixed;
    left: 24px;
    bottom: 24px;
    background-color: #22c55e;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 10;
    animation: fadeInOut 5s forwards;
    width: 300px;
    display: none;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}


.crypto-ticker {
    background-color: #f3f4f6;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #e5e7eb;
}

.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    margin: 0 16px;
    font-size: 14px;
}

.ticker-name {
    font-weight: 500;
    color: #4b5563;
}

.ticker-price {
    margin-left: 8px;
    font-weight: 600;
}

.ticker-change {
    margin-left: 8px;
}

.ticker-change.positive {
    color: #10b981;
}

.ticker-change.negative {
    color: #ef4444;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-20%);
    }
}


.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.chat-button button {
    background-color: #0284c7;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notification {
    background-color: #ef4444;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-left: 8px;
}




.faq-section {
    padding: 64px 0;
    background-color: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: #f9fafb;
    cursor: pointer;
    position: relative;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #1e3a8a;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    flex: 1;
}

.faq-toggle {
    font-size: 20px;
    color: #6b7280;
}

.faq-answer {
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 16px;
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}


.contact-section {
    padding: 64px 0;
    background-color: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form-container {
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
}

.contact-form-container h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #111827;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-info {
    padding: 32px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #111827;
}

.contact-info p {
    color: #4b5563;
    margin-bottom: 24px;
}

.contact-details {
    margin-top: 48px;
}

.contact-item {
    margin-bottom: 12px;
    color: #4b5563;
}

.contact-item strong {
    color: #111827;
    margin-right: 8px;
}


.partners-section {
    padding: 32px 0;
    background-color: #f3f4f6;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logo {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 120px;
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}


.footer-section {
    padding: 64px 0 32px;
    background: linear-gradient(to right, #438fbf, #438fbf, #8da0c4);;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-contact i {
    margin-right: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}



@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}



@media (max-width: 992px) {
    .features-grid,
    .why-us-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-section {
	padding: 0px;
}
    
    .stats-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .about-grid,
    .advantage-grid,
    .mining-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .advantage-video,
    .mining-image {
        order: 2;
    }
    
    .about-content,
    .advantage-content,
    .mining-content {
        order: 1;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .containers{
        flex-direction: column;
         padding: 0 20px;
    }
    .hero-img{
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid,
    .why-us-grid,
    .services-grid,
    .testimonials-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 28px;
    }

    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}