/*=========================================
        DDPAY PREMIUM CSS PART - 1
==========================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:linear-gradient(180deg,#f6f9ff,#eef4ff,#ffffff);
color:#222;
overflow-x:hidden;
line-height:1.7;
}

/* Scrollbar */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#edf2ff;
}

::-webkit-scrollbar-thumb{
background:linear-gradient(#ff7b00,#7c3aed,#2563eb);
border-radius:50px;
}

/* Container */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* ===========================
          HEADER
=========================== */

header{
position:sticky;
top:0;
z-index:999;
background:linear-gradient(90deg,#ff7b00,#ff3d00,#7c3aed,#2563eb,#00c2ff);
background-size:300%;
animation:headerGradient 10s linear infinite;
box-shadow:0 8px 25px rgba(0,0,0,.18);
padding:15px 0;
}

@keyframes headerGradient{

0%{
background-position:left;
}

100%{
background-position:right;
}

}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
}

/* Logo */

.logo-area{
display:flex;
align-items:center;
gap:12px;
}

.logo-area img{
width:58px;
height:58px;
border-radius:50%;
background:#fff;
padding:4px;
box-shadow:0 8px 20px rgba(0,0,0,.18);
transition:.4s;
}

.logo-area img:hover{
transform:rotate(360deg) scale(1.08);
}

.logo-area h1{
font-size:24px;
font-weight:700;
color:#fff;
text-shadow:0 2px 8px rgba(0,0,0,.25);
}

/* ===========================
        MENU BUTTON
=========================== */

.menu-btn{
font-size:32px;
color:#fff;
cursor:pointer;
transition:.3s;
}

.menu-btn:hover{
transform:scale(1.15);
}

/* ===========================
      MOBILE MENU
=========================== */

#mobileMenu{

position:fixed;

top:0;

right:-330px;

width:310px;

height:100%;

background:rgba(17,24,39,.98);

backdrop-filter:blur(20px);

padding:25px;

display:flex;

flex-direction:column;

transition:.4s;

box-shadow:-5px 0 30px rgba(0,0,0,.25);

z-index:1000;

}

#mobileMenu.active{

right:0;

}

.close-btn{

font-size:30px;

color:white;

text-align:right;

cursor:pointer;

margin-bottom:20px;

transition:.3s;

}

.close-btn:hover{

transform:rotate(180deg);

}

#mobileMenu a{

text-decoration:none;

color:#fff;

padding:14px 0;

font-size:17px;

font-weight:500;

border-bottom:1px solid rgba(255,255,255,.08);

transition:.3s;

}

#mobileMenu a:hover{

padding-left:12px;

color:#38bdf8;

}

/* ===========================
          HERO
=========================== */

.hero{

padding:45px 15px;

text-align:center;

}

.hero img{

width:100%;

max-width:900px;

border-radius:25px;

background:#fff;

padding:15px;

box-shadow:0 15px 45px rgba(0,0,0,.15);

transition:.4s;

}

.hero img:hover{

transform:translateY(-8px);

}

.hero-buttons{

margin-top:35px;

display:flex;

justify-content:center;

align-items:center;

gap:18px;

flex-wrap:wrap;

}

/* ===========================
      PREMIUM BUTTON
=========================== */

.btn{

padding:16px 35px;

border-radius:50px;

text-decoration:none;

font-size:17px;

font-weight:700;

color:#fff;

background:linear-gradient(90deg,#ff7b00,#ff3d00,#ff0099,#7c3aed,#2563eb);

background-size:300%;

transition:.4s;

box-shadow:0 10px 25px rgba(0,0,0,.18);

}

.btn:hover{

background-position:right;

transform:translateY(-5px);

box-shadow:0 15px 30px rgba(0,0,0,.25);

}
/*=========================================
        DDPAY PREMIUM CSS PART - 2
==========================================*/

/* ===========================
        REFER BOX
=========================== */

.refer-box{
margin:45px auto;
max-width:550px;
background:rgba(255,255,255,.95);
backdrop-filter:blur(20px);
padding:35px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
border:2px solid rgba(255,255,255,.4);
transition:.4s;
}

.refer-box:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.refer-box h2{
font-size:30px;
font-weight:700;
text-align:center;
margin-bottom:25px;
background:linear-gradient(90deg,#ff7b00,#ff0099,#2563eb);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.copy-box{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
flex-wrap:wrap;
}

#referCode{
font-size:30px;
font-weight:800;
letter-spacing:2px;
color:#2563eb;
padding:12px 22px;
background:#f3f7ff;
border-radius:12px;
border:2px dashed #2563eb;
}

.copy-box button{
padding:14px 30px;
border:none;
border-radius:50px;
cursor:pointer;
font-size:17px;
font-weight:700;
color:#fff;
background:linear-gradient(90deg,#00c853,#00e676);
transition:.35s;
box-shadow:0 8px 20px rgba(0,200,83,.25);
}

.copy-box button:hover{
transform:scale(1.06);
box-shadow:0 12px 30px rgba(0,200,83,.35);
}

/* ===========================
          CONTENT
=========================== */

.content{
width:90%;
max-width:1150px;
margin:60px auto;
background:#fff;
padding:45px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.content h2{
font-size:30px;
font-weight:700;
margin-top:35px;
margin-bottom:15px;
padding-left:18px;
position:relative;
color:#0f172a;
}

.content h2::before{
content:"";
position:absolute;
left:0;
top:5px;
width:6px;
height:34px;
border-radius:30px;
background:linear-gradient(#ff7b00,#7c3aed,#2563eb);
}

.content p{
font-size:17px;
color:#555;
margin-bottom:20px;
line-height:1.9;
}

.content ul{
margin:20px 0;
padding-left:25px;
}

.content li{
margin-bottom:12px;
font-size:17px;
color:#444;
transition:.3s;
}

.content li:hover{
color:#2563eb;
padding-left:8px;
}

/* ===========================
        FEATURE LIST
=========================== */

.content ul li{
list-style:none;
position:relative;
padding-left:30px;
}

.content ul li::before{
content:"✔";
position:absolute;
left:0;
color:#00c853;
font-weight:bold;
}

/* ===========================
        SECTION CARD
=========================== */

.section-card{
background:#fff;
padding:30px;
margin:30px 0;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;
}

.section-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* ===========================
      PREMIUM TITLE
=========================== */

.gradient-title{
background:linear-gradient(90deg,#ff7b00,#ff0099,#2563eb);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
font-size:38px;
font-weight:800;
text-align:center;
margin-bottom:25px;
}

/* ===========================
         INFO BOX
=========================== */

.info-box{
background:linear-gradient(135deg,#2563eb,#7c3aed);
color:#fff;
padding:25px;
border-radius:18px;
margin:30px 0;
box-shadow:0 10px 25px rgba(37,99,235,.25);
}

.info-box h3{
margin-bottom:10px;
font-size:24px;
}

.info-box p{
color:#fff;
margin:0;
}

/* ===========================
         DIVIDER
=========================== */

.divider{
width:100px;
height:5px;
margin:35px auto;
border-radius:20px;
background:linear-gradient(90deg,#ff7b00,#ff0099,#2563eb);
}
/*=========================================
        DDPAY PREMIUM CSS PART - 3
==========================================*/

/* ===========================
        FOOTER
=========================== */

footer{
margin-top:80px;
background:linear-gradient(135deg,#0f172a,#1e3a8a,#2563eb);
color:#fff;
position:relative;
overflow:hidden;
}

footer::before{
content:"";
position:absolute;
top:-120px;
left:-120px;
width:300px;
height:300px;
background:rgba(255,255,255,.05);
border-radius:50%;
}

footer::after{
content:"";
position:absolute;
right:-120px;
bottom:-120px;
width:320px;
height:320px;
background:rgba(255,255,255,.05);
border-radius:50%;
}

.footer-container{
width:90%;
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:35px;
padding:60px 0;
position:relative;
z-index:2;
}

.footer-box h3{
font-size:24px;
margin-bottom:20px;
color:#38bdf8;
font-weight:700;
}

.footer-box a{
display:block;
color:#fff;
text-decoration:none;
margin-bottom:12px;
transition:.3s;
font-size:16px;
}

.footer-box a:hover{
padding-left:10px;
color:#ffb300;
}

.footer-box p{
color:#dbeafe;
line-height:1.8;
}

.copyright{
text-align:center;
padding:20px;
border-top:1px solid rgba(255,255,255,.15);
font-size:15px;
background:rgba(0,0,0,.15);
}

/* ===========================
      SOCIAL ICONS
=========================== */

.social-icons{
display:flex;
gap:15px;
margin-top:15px;
}

.social-icons a{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(255,255,255,.12);
color:#fff;
font-size:20px;
transition:.35s;
}

.social-icons a:hover{
transform:translateY(-6px) scale(1.1);
background:#38bdf8;
}

/* ===========================
      TABLE STYLE
=========================== */

table{
width:100%;
border-collapse:collapse;
margin:25px 0;
overflow:hidden;
border-radius:15px;
}

table th{
background:#2563eb;
color:#fff;
padding:15px;
text-align:left;
}

table td{
padding:15px;
border-bottom:1px solid #e5e7eb;
}

table tr:nth-child(even){
background:#f8fafc;
}

table tr:hover{
background:#eef4ff;
}

/* ===========================
      IMAGE EFFECT
=========================== */

.content img{
width:100%;
border-radius:18px;
margin:25px 0;
transition:.4s;
box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.content img:hover{
transform:scale(1.02);
}

/* ===========================
      BLOCKQUOTE
=========================== */

blockquote{
padding:20px;
background:#f1f5ff;
border-left:5px solid #2563eb;
border-radius:10px;
margin:20px 0;
font-style:italic;
}

/* ===========================
      HIGHLIGHT BOX
=========================== */

.highlight-box{
padding:25px;
border-radius:18px;
background:linear-gradient(135deg,#ff7b00,#ff0099);
color:#fff;
margin:30px 0;
box-shadow:0 12px 25px rgba(255,0,153,.25);
}

.highlight-box h3{
margin-bottom:12px;
font-size:24px;
}

.highlight-box p{
color:#fff;
margin:0;
}

/* ===========================
      BUTTON SHADOW
=========================== */

.btn:active{
transform:scale(.97);
}

.copy-box button:active{
transform:scale(.95);
}
/*=========================================
        DDPAY PREMIUM CSS PART - 4
        Responsive + Premium Effects
==========================================*/

/* Fade Animation */

@keyframes fadeUp{
0%{
opacity:0;
transform:translateY(40px);
}
100%{
opacity:1;
transform:translateY(0);
}
}

.hero,
.content,
.refer-box,
footer{
animation:fadeUp .8s ease;
}

/* Floating Animation */

@keyframes floating{
0%{
transform:translateY(0px);
}
50%{
transform:translateY(-10px);
}
100%{
transform:translateY(0px);
}
}

.hero img{
animation:floating 4s ease-in-out infinite;
}

/* Glow Effect */

.btn,
.copy-box button{
position:relative;
overflow:hidden;
}

.btn::before,
.copy-box button::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:rgba(255,255,255,.25);
transform:skewX(-25deg);
transition:.6s;
}

.btn:hover::before,
.copy-box button:hover::before{
left:120%;
}

/* Card Hover */

.content,
.refer-box{
transition:.4s;
}

.content:hover,
.refer-box:hover{
transform:translateY(-5px);
box-shadow:0 25px 50px rgba(0,0,0,.15);
}

/* Selection */

::selection{
background:#2563eb;
color:#fff;
}

/* Focus */

input:focus,
textarea:focus{
outline:none;
border-color:#2563eb;
box-shadow:0 0 10px rgba(37,99,235,.25);
}

/* Forms */

input,
textarea{
width:100%;
padding:14px;
margin-bottom:18px;
border-radius:12px;
border:1px solid #ddd;
font-size:16px;
transition:.3s;
}

textarea{
resize:vertical;
min-height:140px;
}

/* Premium Table */

table{
overflow:hidden;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Image Hover */

img{
transition:.4s;
}

img:hover{
filter:brightness(1.05);
}

/* Links */

a{
transition:.3s;
}

/* Mobile */

@media(max-width:992px){

.container{
width:94%;
}

.content{
padding:30px;
}

.hero img{
padding:10px;
}

}

@media(max-width:768px){

.logo-area h1{
font-size:18px;
}

.logo-area img{
width:48px;
height:48px;
}

.menu-btn{
font-size:28px;
}

#mobileMenu{
width:270px;
}

.hero{
padding:30px 15px;
}

.hero-buttons{
flex-direction:column;
}

.btn{
width:100%;
max-width:320px;
text-align:center;
}

.refer-box{
padding:25px;
}

#referCode{
font-size:24px;
}

.content{
padding:22px;
}

.content h2{
font-size:24px;
}

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.social-icons{
justify-content:center;
}

}

@media(max-width:480px){

.logo-area h1{
font-size:16px;
}

.logo-area img{
width:42px;
height:42px;
}

.hero img{
border-radius:15px;
}

.btn{
font-size:15px;
padding:14px 20px;
}

.copy-box{
flex-direction:column;
}

.copy-box button{
width:100%;
}

#referCode{
width:100%;
text-align:center;
}

.content h2{
font-size:22px;
}

.content p,
.content li{
font-size:15px;
}

.footer-box h3{
font-size:20px;
}

}

/* Smooth Transition */

*{
transition:background .3s,color .3s,border-color .3s;
}

/* Glass Card */

.glass{
background:rgba(255,255,255,.15);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,.2);
border-radius:20px;
}

/* Premium Shadow */

.shadow-premium{
box-shadow:
0 10px 25px rgba(37,99,235,.15),
0 20px 40px rgba(124,58,237,.12);
}

/* Gradient Text */

.gradient-text{
background:linear-gradient(90deg,#ff7b00,#ff0099,#2563eb);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* End */