 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #ffffff;
            overflow-x: hidden;
            color: #333;
            line-height: 1.6;
        }

        /* Floating particles animation */
        .particle {
            position: fixed;
            pointer-events: none;
            animation: float 8s infinite ease-in-out;
            opacity: 0.2;
            z-index: -1;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-40px) rotate(180deg); }
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            color: #fff;
        }

        /* Ảnh nền với hiệu ứng chuyển động */
        .hero::before {
               content: '';
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				    background: url(https://certiva.org/storage/uploads/pages/c8gs66xoCCz1wkRC1drVt98IbhjPalWMYCflsSpT.jpg);
				background-size: 110%;
				background-position: center;
				animation: backgroundZoom 20s 
			ease-in-out infinite alternate;
    z-index: 1;
        }

        @keyframes backgroundZoom {
            0% {
                transform: scale(1) translateX(0);
            }
            50% {
                transform: scale(1.1) translateX(-20px);
            }
            100% {
                transform: scale(1.05) translateX(20px);
            }
        }

        /* Lớp phủ gradient động */
        .hero::after {
               content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000a6 0%, #00000070 100%);
    animation: gradientShift 15s 
ease infinite;
    z-index: 2;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Particles floating effect */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        .particle:nth-child(1) {
            width: 80px;
            height: 80px;
            left: 10%;
            top: 20%;
            animation-delay: 0s;
            animation-duration: 25s;
        }

        .particle:nth-child(2) {
            width: 60px;
            height: 60px;
            left: 70%;
            top: 60%;
            animation-delay: 2s;
            animation-duration: 20s;
        }

        .particle:nth-child(3) {
            width: 100px;
            height: 100px;
            left: 80%;
            top: 30%;
            animation-delay: 4s;
            animation-duration: 30s;
        }

        .particle:nth-child(4) {
            width: 50px;
            height: 50px;
            left: 30%;
            top: 70%;
            animation-delay: 1s;
            animation-duration: 22s;
        }

        .particle:nth-child(5) {
            width: 70px;
            height: 70px;
            left: 50%;
            top: 15%;
            animation-delay: 3s;
            animation-duration: 27s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-30px) translateX(20px) rotate(90deg);
                opacity: 0.5;
            }
            50% {
                transform: translateY(-50px) translateX(-20px) rotate(180deg);
                opacity: 0.3;
            }
            75% {
                transform: translateY(-30px) translateX(30px) rotate(270deg);
                opacity: 0.6;
            }
        }

        .container {
            position: relative;
            z-index: 10;
        }

        .hero-content {
            text-align: center;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-tagline {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .hero-description {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-description strong {
            color: #fbbf24;
            font-weight: 700;
        }

        .hero-support-text {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-weight: 600;
            text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .blockchain-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 12px 24px;
            border-radius: 50px;
            margin: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .blockchain-badge:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .blockchain-badge i {
            margin-right: 8px;
            color: #fbbf24;
        }

        .btn-primary-cta {
    padding: 18px 50px;
    font-size: 1.2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #a70606 0%, #d3420a 100%);
    border: none;
    color: white;
    transition: all 0.3s 
ease;
    animation: fadeInUp 1s 
ease 0.9s both;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

        .btn-primary-cta i {
            margin-right: 10px;
        }

        @media (max-width: 768px) {
            .hero-tagline {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .hero-support-text {
                font-size: 1rem;
            }

            .blockchain-badge {
                display: block;
                margin: 10px auto;
                max-width: 280px;
            }

            .btn-primary-cta {
                font-size: 1.1rem;
                padding: 15px 30px;
            }
        }

        /* Section Styling */
        section {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #1e293b;
			    text-align: center;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 3rem;
			    text-align: center;
        }

        .section-intro {
            background: #f8fafc;
            border-left: 4px solid #a70606;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 3rem;
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            border: 1px solid #e2e8f0;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #a70606, #d3420a);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
        }

        .feature-icon {
               width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a70606, #d3420a);
    color: white;
    margin: 0px auto 1.5rem;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
			text-align: center;
        }

        .feature-description {
            color: #64748b;
            line-height: 1.8;
        }

        /* Benefits List */
        .benefits-list {
            list-style: none;
            padding: 0;
        }

        .benefits-list li {
            padding: 15px 0;
            border-bottom: 1px solid #e2e8f0;
            font-size: 1.05rem;
            color: #475569;
            position: relative;
            padding-left: 35px;
        }

        .benefits-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #a70606;
            font-weight: bold;
            font-size: 1.3rem;
        }

        .benefits-list li:last-child {
            border-bottom: none;
        }

        /* Tech Stack Section */
        .tech-feature {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 25px;
            border-left: 4px solid #a70606;
            transition: all 0.3s ease;
			 box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
        }

        .tech-feature:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
        }

        .tech-feature h4 {
            color: #a70606;
            font-weight: 700;
            margin-bottom: 10px;
        }

        /* Support Packages */
        .support-package {
			background: white;
			border: 2px solid #e2e8f0;
			border-radius: 15px;
			padding: 25px;
			margin-bottom: 25px;
			transition: all 0.3s ease;
			min-height: 410px;
        }

        .support-package:hover {
            border-color: #a70606;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
        }

        .support-package h4 {
            color: #1e293b;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .keyword-tag {
            display: inline-block;
            background: #eff6ff;
            color: #a70606;
            padding: 5px 15px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
			width:100%;
        }

        /* Why Choose Section */
        .why-choose-card {
            display: flex;
            align-items: start;
            padding: 20px;
            background: #f8fafc;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .why-choose-card:hover {
            background: #eff6ff;
            transform: translateX(5px);
        }

        .why-choose-icon {
            font-size: 2rem;
            color: #a70606;
            margin-right: 20px;
            min-width: 50px;
        }

        /* CTA Section */
        .cta-section {
            background: #a70606;
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            top: -200px;
            right: -100px;
        }

        .cta-benefits {
            list-style: none;
            padding: 0;
        }

        .cta-benefits li {
            padding: 15px 0;
            font-size: 1.1rem;
            position: relative;
            padding-left: 35px;
        }

        

        /* Footer Tagline */
        .footer-tagline {
            background: #1e293b;
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .footer-tagline h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-tagline p {
            font-size: 1.3rem;
            font-style: italic;
            opacity: 0.9;
        }

        /* Scroll Animation */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .scroll-animate.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Blockchain Badge */
        .blockchain-badge {
            display: inline-flex;
            align-items: center;
            background: #a70606;
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            margin: 10px 5px;
            animation: fadeInUp 1s ease 1.2s both;
        }

        .blockchain-badge i {
            margin-right: 10px;
        }

        @media (max-width: 768px) {
            .hero-tagline {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
		.certiva-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    margin: 15px 0px;
    min-height: 400px;
}

.certiva-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.certiva-icon {
    font-size: 3rem;
    color: #a70606;
    margin-bottom: 15px;
    text-align: center;
}

.certiva-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e293b;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.certiva-card p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 15px;
	    text-align: justify;
}

.certiva-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.certiva-highlights li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 8px;
}

.certiva-highlights li i {
    color: #10b981;
    margin-right: 10px;
}
.cta-section {
            background: linear-gradient(135deg, #a70606 0%, #8a0505 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
			 border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 15s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .cta-section h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.2);
            position: relative;
            z-index: 1;
        }

        .cta-section p.lead {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            color: white;
            position: relative;
            z-index: 1;
        }

        .stats-row {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .stat-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px 40px;
            text-align: center;
            border: 2px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.25);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 1rem;
            color: rgba(255,255,255,0.9);
            margin-top: 10px;
        }

        .cta-benefits {
            list-style: none;
            padding: 0;
            margin: 30px 0;
            position: relative;
            z-index: 1;
        }

        .cta-benefits li {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 20px 30px;
            margin-bottom: 15px;
            border-radius: 15px;
            border-left: 5px solid white;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cta-benefits li:hover {
            transform: translateX(10px);
            background: rgba(255,255,255,0.25);
        }

        .cta-benefits li i {
            font-size: 1.5rem;
            color: white;
            min-width: 30px;
        }

       
        .btn-primary-cta {
            background: white;
            color: #a70606;
            font-size: 1.4rem;
            padding: 25px 70px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            cursor: pointer;
        }

        .btn-primary-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            background: #fff;
			color:#d3420a;
        }

        .btn-primary-cta i {
            margin-right: 10px;
            animation: rocket 1s ease-in-out infinite;
        }

        @keyframes rocket {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-size: 1rem;
        }

        .trust-item i {
            font-size: 1.5rem;
            color: #ffd700;
        }
.dk-footer {
	padding: 75px 0 0;
    background-color: #151414;
    position: relative;
    z-index: 2;
    margin: 0px 0px 0;
    }
	.contact-us {
    position: relative;
    z-index: 2;
    margin-top: 65px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
  .dk-footer .contact-us {
    margin-top: 0;
    margin-bottom: 30px;
    padding-left: 30px; }
    .dk-footer .contact-us .contact-info {
          margin-left: 15px;
    padding: 0px;}
    .dk-footer .contact-us.contact-us-last {
      margin-left: -30px; }
  .dk-footer .contact-icon i {
    font-size: 24px;
    top: 0px;
    position: relative;
    color:#fff; 
	
	}

.dk-footer-box-info {
    position: absolute;
    top: -120px;
    background: #202020;
    padding: 35px;
    z-index: 2;
    text-align: center;  }
    .logo_footer{
    max-width: 70%;
    margin:15px 0px;
}
  .dk-footer-box-info .footer-social-link h3 {
    color: #878787;
    font-size: 24px;
    margin-bottom: 25px; }
  .dk-footer-box-info .footer-social-link ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
  .dk-footer-box-info .footer-social-link li {
    display: inline-block; }
    .dk-footer-box-info .footer-social-link a{
    margin:0px 3px;
    }
  .dk-footer-box-info .footer-social-link a i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    background: #000;
    color: #fff; }
    .dk-footer-box-info .footer-social-link a i.fa-facebook {
      background-color: #3B5998; }
    .dk-footer-box-info .footer-social-link a i.fa-twitter {
      background-color: #55ACEE; }
    .dk-footer-box-info .footer-social-link a i.fa-youtube {
      background-color: #DD4B39; }
    .dk-footer-box-info .footer-social-link a i.fa-zalo {
      background-color: #0976B4; }
    .dk-footer-box-info .footer-social-link a i.fa-instagram {
      background-color: #B7242A; }
.a_zalo{
	
}
.a_zalo img{
	width: 38px;
    border-radius: 50%;
}
.dk-footer-box-info .footer-social-link a:hover{
	margin:0px 3px !important;
}
.footer-awarad {
  margin-top: 285px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .footer-awarad p {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-left: 20px;
    padding-top: 15px; }

.footer-info-text {
  margin: 45px 0 30px; text-align: justify;}

.footer-left-widget {
  padding-left: 30px; }

.footer-widget .section-heading {
  margin-bottom: 35px; }

.footer-widget h3 {
  font-size: 24px;
  color: #fff;
  position: relative;
  margin-bottom: 15px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content; }

.footer-widget ul {
    width: 50%;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0 30px 0px 0px;
}

.footer-widget li {
  margin-bottom: 10px; }

.footer-widget p {
  margin-bottom: 15px; }

.footer-widget a , .footer-widget, .footer-info-text{
  color: #878787;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .footer-widget a:hover {
    color: #a70606; }

.footer-widget:after {
  content: "";
  display: block;
  clear: both; }

.dk-footer-form {
  position: relative; }
  .dk-footer-form input[type=email] {
padding: 2px 28px;
    border-radius: 50px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    min-height: 45px;
        color: #fff;
     }
  .dk-footer-form input::-webkit-input-placeholder, .dk-footer-form input::-moz-placeholder, .dk-footer-form input:-ms-input-placeholder, .dk-footer-form input::-ms-input-placeholder, .dk-footer-form input::-webkit-input-placeholder {
    color: #878787;
    font-size: 14px; }
  .dk-footer-form input::-webkit-input-placeholder, .dk-footer-form input::-moz-placeholder, .dk-footer-form input:-ms-input-placeholder, .dk-footer-form input::-ms-input-placeholder, .dk-footer-form input::placeholder {
    color: #878787;
    font-size: 14px; }
  .dk-footer-form button[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    padding: 11px 24px 11px 17px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border: 1px solid #a70606;
    background: #a70606;
    color: #fff; 
        min-height: 45px;}
  .dk-footer-form button:hover {
    cursor: pointer; }

        @media (max-width: 768px) {
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .cta-section p.lead {
                font-size: 1.1rem;
            }

            .stat-card {
                padding: 20px 30px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .btn-primary-cta {
                font-size: 1.1rem;
                padding: 20px 40px;
            }
			.footer-tagline h2 {
				font-size: 2rem;
			}
			.footer-tagline h2 {
				font-size: 2rem;
				font-weight: 700;
				margin-bottom: 1rem;
			}
			.hero {
				padding: 30px 0px;
				text-align: justify
			}
			.blockchain-badge {
				padding: 5px 10px;
				margin: 10px 0px;
					font-size: 15px;
		width: 100%;
			}
			.feature-card {
			background: white;
			padding: 20px;
			}
			.tech-feature {
				padding:30px 20px;
			}
        }
		.contact-info h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 0;
}
/****************** FOODTER ********************/
   .animate-border {
  position: relative;
  display: block;
  width: 115px;
  height: 3px;
  background: #a70606; }

.animate-border:after {
  position: absolute;
  content: "";
  width: 35px;
  height: 3px;
  left: 0;
  bottom: 0;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
  -webkit-animation: animborder 2s linear infinite;
  animation: animborder 2s linear infinite; }

@-webkit-keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px); } }

@keyframes animborder {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px); }
  100% {
    -webkit-transform: translateX(113px);
    transform: translateX(113px); } }

.animate-border.border-white:after {
  border-color: #fff; }

.animate-border.border-yellow:after {
  border-color: #F5B02E; }

.animate-border.border-orange:after {
  border-right-color: #a70606;
  border-left-color: #a70606; }

.animate-border.border-ash:after {
  border-right-color: #EEF0EF;
  border-left-color: #EEF0EF; }

.animate-border.border-offwhite:after {
  border-right-color: #F7F9F8;
  border-left-color: #F7F9F8; }

/* Animated heading border */
@keyframes primary-short {
  0% {
    width: 15%; }
  50% {
    width: 90%; }
  100% {
    width: 10%; } }

@keyframes primary-long {
  0% {
    width: 80%; }
  50% {
    width: 0%; }
  100% {
    width: 80%; } } 
	footer ul li a{
	transition: all 0.5s ease-in-out;
	color:#bbbbbb;
}
footer ul li a, footer a{
text-decoration: none;
}
footer ul li a:hover{
	margin-left:15px;
	color:#fff;
	text-decoration: none;
}
.box_payment_footer{
	
}
.box_payment_footer ul {
    width: 100% !important;
    padding: 0px !important;
    float: inherit !important;
}
.box_payment_footer ul li{
    display: inline-block;
    margin: 0px;
    width: 22%;
    margin: 0px 2% 0 0;
    padding: 0px;
}
.box_payment_footer ul li img{
    width: 100%;
    background: #ffffffc4;
    padding: 10px;
    border-radius: 7px;
}
.box_payment_footer ul li:last-child {
    margin-right: 0;
    border: none;
}
.box_payment_footer ul li:hover img{
	background: #fff;
}
.box_payment_footer p{
	margin: 30px 0px 5px !important;
}
 .footer-content {
    margin: 0 auto;
    margin-top: 60px;
}

.center-title {
    font-weight: bold;
    color: #ffffffd9;
    margin-bottom: 10px;
    font-size: 18px;
}
.center-details {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
}

.center-details .highlight {
    color: #fff;
    font-weight: bold;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    margin: 20px 0;
}

.website-info {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #95a5a6;
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.info-label {
    color: #ffffff;
    font-weight: bold;
    min-width: 90px;
    flex-shrink: 0;
}
.info-value {
    color: #bfbfbf;
}

.center-info{
    background: rgb(255 255 255 / 6%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
    /* border: 1px solid rgba(167, 6, 6, 0.3); */
    animation: fadeInUp 1s ease-out 0.8s both;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 16px;
    line-height: 2;
    color: #bfbfbf;
}
.center-info strong{
	font-weight: bold;
    min-width: 110px;
    display: inline-block;
	color: #fff;
}
.center-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff04;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.info-card-author {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card-author:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-card-author h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card-author .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: background-color 0.2s ease;
}

.info-card-author .info-item:hover {
    background: #e0e7ff;
}

.info-card-author .info-item i {
    width: 24px;
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.info-card-author .info-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 120px;
}

.info-card-author .info-value {
    color: var(--text-light);
    flex: 1;
}
.copyright {
    padding: 20px 0;
    margin-top: 55px;
    background-color: #202020;
}
.copyright span, .copyright a {
    color: #878787;
    -webkit-transition: all 0.3s 
linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s 
linear;
}