/* ==========================================================
   ABHITECHINFINITYX
   STYLE.CSS - PART 1
========================================================== */

:root{

--primary:#00cfff;
--secondary:#0066ff;
--dark:#050816;
--dark2:#0c1224;
--card:#121b32;
--white:#ffffff;
--text:#c7d0e0;
--border:rgba(255,255,255,.08);
--shadow:0 20px 50px rgba(0,0,0,.30);

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;
background:var(--dark);
color:var(--white);
overflow-x:hidden;

}

a{

text-decoration:none;

}

img{

max-width:100%;

}

.container{

width:90%;
max-width:1300px;
margin:auto;

}

/* ===========================
HEADER
=========================== */

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
background:rgba(5,8,22,.90);
backdrop-filter:blur(20px);
border-bottom:1px solid var(--border);

}

.navbar{

height:90px;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

display:flex;

align-items:center;

gap:15px;

color:white;

}

.logo-icon{

width:55px;
height:55px;
border-radius:14px;
background:linear-gradient(135deg,var(--primary),var(--secondary));

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

color:white;

}

.logo-text h2{

font-size:24px;

font-weight:700;

}

.logo-text span{

font-size:13px;

color:var(--text);

}

.menu{

display:flex;

list-style:none;

gap:28px;

}

.menu a{

color:white;

font-weight:500;

transition:.3s;

}

.menu a:hover{

color:var(--primary);

}

.menu-buttons{

display:flex;

gap:15px;

}

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:14px 28px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:white;

border-radius:10px;

font-weight:600;

transition:.35s;

}

.btn-primary:hover{

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(0,207,255,.35);

}

.btn-outline{

display:inline-flex;

align-items:center;

justify-content:center;

padding:14px 28px;

border:1px solid var(--primary);

color:white;

border-radius:10px;

transition:.35s;

}

.btn-outline:hover{

background:var(--primary);

color:#000;

}

.mobile-menu{

display:none;

font-size:28px;

cursor:pointer;

}

/* ===========================
HERO
=========================== */

.hero{

padding-top:170px;

padding-bottom:120px;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 520px;

gap:70px;

align-items:center;

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 20px;

border-radius:50px;

background:rgba(0,207,255,.08);

border:1px solid rgba(0,207,255,.30);

margin-bottom:25px;

color:var(--primary);

}

.hero h1{

font-size:58px;

line-height:1.15;

margin-bottom:25px;

}

.hero h1 span{

background:linear-gradient(90deg,#00cfff,#66f0ff);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero p{

font-size:18px;

color:var(--text);

line-height:1.9;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:18px;

margin-bottom:45px;

}

.hero-stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:18px;

}

.stat{

background:var(--card);

border:1px solid var(--border);

padding:25px;

border-radius:18px;

text-align:center;

transition:.35s;

}

.stat:hover{

transform:translateY(-8px);

}

.stat h2{

font-size:28px;

color:var(--primary);

margin-bottom:8px;

}

.hero-card{

background:linear-gradient(180deg,#121b32,#0d1427);

padding:35px;

border-radius:25px;

border:1px solid var(--border);

box-shadow:var(--shadow);

}

.card-header{

margin-bottom:30px;

}

.card-header h3{

font-size:28px;

}

.feature-item{

display:flex;

align-items:center;

gap:18px;

padding:18px;

border-radius:12px;

background:rgba(255,255,255,.03);

margin-bottom:15px;

transition:.35s;

}

.feature-item:hover{

background:rgba(0,207,255,.08);

transform:translateX(8px);

}

.feature-item i{

font-size:20px;

color:var(--primary);

width:35px;

text-align:center;

}
```0
/* ==========================================================
   STYLE.CSS - PART 2
   ABOUT | HOSTING | PLANS
========================================================== */

section{

padding:100px 0;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title span{

display:inline-block;

padding:10px 18px;

background:rgba(0,207,255,.08);

border:1px solid rgba(0,207,255,.30);

border-radius:50px;

color:var(--primary);

font-size:14px;

font-weight:600;

letter-spacing:1px;

margin-bottom:18px;

}

.section-title h2{

font-size:42px;

margin-bottom:20px;

}

.section-title p{

max-width:760px;

margin:auto;

color:var(--text);

line-height:1.8;

}

/* ===========================
ABOUT
=========================== */

.about{

background:var(--dark2);

}

.about-grid{

display:grid;

grid-template-columns:420px 1fr;

gap:70px;

align-items:center;

}

.about-card{

background:linear-gradient(145deg,#162343,#0d162d);

padding:60px 35px;

border-radius:25px;

text-align:center;

border:1px solid var(--border);

box-shadow:var(--shadow);

}

.about-card i{

font-size:70px;

color:var(--primary);

margin-bottom:25px;

}

.about-card h3{

font-size:30px;

margin-bottom:18px;

}

.about-card p{

color:var(--text);

line-height:1.8;

}

.about-content{

display:grid;

gap:20px;

}

.about-box{

display:flex;

align-items:flex-start;

gap:18px;

padding:24px;

background:var(--card);

border-radius:18px;

border:1px solid var(--border);

transition:.35s;

}

.about-box:hover{

transform:translateY(-8px);

border-color:rgba(0,207,255,.30);

}

.about-box i{

font-size:22px;

color:var(--primary);

margin-top:3px;

}

.about-box h3{

margin-bottom:8px;

}

.about-box p{

color:var(--text);

line-height:1.7;

}

/* ===========================
HOSTING PLANS
=========================== */

.hosting{

background:#08111f;

}

.plans{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.plan{

position:relative;

background:linear-gradient(180deg,#182646,#101a30);

border-radius:22px;

padding:40px;

border:1px solid var(--border);

transition:.35s;

overflow:hidden;

}

.plan:hover{

transform:translateY(-12px);

box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.featured{

border:2px solid var(--primary);

transform:scale(1.04);

}

.featured:hover{

transform:scale(1.04) translateY(-12px);

}

.popular-tag{

position:absolute;

top:18px;

right:-42px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

padding:10px 55px;

font-size:13px;

font-weight:700;

transform:rotate(45deg);

color:white;

}

.plan-header{

margin-bottom:30px;

}

.plan-header h3{

font-size:34px;

margin-bottom:8px;

}

.plan-header p{

color:var(--text);

}

.plan ul{

list-style:none;

margin-bottom:35px;

}

.plan li{

display:flex;

align-items:center;

gap:12px;

padding:14px 0;

border-bottom:1px solid rgba(255,255,255,.05);

color:var(--text);

}

.plan li i{

color:#00d97e;

}

.plan-button{

display:block;

text-align:center;

padding:16px;

border-radius:12px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:white;

font-weight:600;

transition:.35s;

}

.plan-button:hover{

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(0,207,255,.30);

}
```0
/* ==========================================================
   STYLE.CSS - PART 3
   FEATURES | TRUST | CTA | FAQ
========================================================== */

/* ===========================
FEATURES
=========================== */

.features{

background:var(--dark2);

}

.features-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.feature-card{

background:var(--card);

padding:35px 30px;

border-radius:20px;

border:1px solid var(--border);

transition:.35s;

}

.feature-card:hover{

transform:translateY(-10px);

border-color:rgba(0,207,255,.35);

box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.feature-card i{

font-size:42px;

color:var(--primary);

margin-bottom:20px;

}

.feature-card h3{

font-size:22px;

margin-bottom:15px;

}

.feature-card p{

color:var(--text);

line-height:1.8;

}

/* ===========================
TRUST SECTION
=========================== */

.trust{

background:#08111f;

}

.trust-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.trust-box{

background:linear-gradient(180deg,#13203b,#0d162c);

padding:35px;

border-radius:20px;

text-align:center;

border:1px solid var(--border);

transition:.35s;

}

.trust-box:hover{

transform:translateY(-8px);

}

.trust-box h3{

margin-bottom:18px;

font-size:24px;

}

.trust-box p{

color:var(--text);

line-height:1.8;

}

/* ===========================
CTA
=========================== */

.cta{

background:linear-gradient(135deg,#00cfff,#0057ff);

padding:90px 0;

}

.cta-box{

text-align:center;

max-width:850px;

margin:auto;

}

.cta-box h2{

font-size:48px;

margin-bottom:20px;

color:white;

}

.cta-box p{

font-size:18px;

line-height:1.8;

margin-bottom:35px;

color:white;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

}

.cta .btn-primary{

background:white;

color:#004cff;

}

.cta .btn-outline{

border:2px solid white;

color:white;

}

.cta .btn-outline:hover{

background:white;

color:#0057ff;

}

/* ===========================
FAQ
=========================== */

.faq{

background:var(--dark2);

}

.faq-container{

max-width:900px;

margin:auto;

}

.faq-item{

margin-bottom:18px;

background:var(--card);

border-radius:18px;

border:1px solid var(--border);

overflow:hidden;

}

.faq-question{

width:100%;

padding:24px 28px;

display:flex;

justify-content:space-between;

align-items:center;

background:none;

border:none;

outline:none;

cursor:pointer;

font-size:18px;

font-family:inherit;

font-weight:600;

color:white;

}

.faq-question i{

color:var(--primary);

transition:.35s;

}

.faq-answer{

display:none;

padding:0 28px 25px;

}

.faq-answer p{

color:var(--text);

line-height:1.9;

}
```0
/* ==========================================================
   STYLE.CSS - PART 4
   POLICIES | CONTACT | FOOTER | RESPONSIVE
========================================================== */

/* ===========================
POLICIES
=========================== */

.policies{

background:#08111f;

}

.policy-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.policy-card{

background:var(--card);

padding:30px;

border-radius:20px;

border:1px solid var(--border);

transition:.35s;

}

.policy-card:hover{

transform:translateY(-8px);

border-color:rgba(0,207,255,.35);

}

.policy-card h3{

margin-bottom:15px;

font-size:22px;

color:var(--primary);

}

.policy-card p{

line-height:1.8;

color:var(--text);

}

/* ===========================
CONTACT
=========================== */

.contact{

background:var(--dark2);

}

.contact-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.contact-card{

background:linear-gradient(180deg,#182646,#10192f);

padding:40px 30px;

border-radius:20px;

text-align:center;

border:1px solid var(--border);

transition:.35s;

}

.contact-card:hover{

transform:translateY(-10px);

}

.contact-card i{

font-size:50px;

margin-bottom:20px;

color:var(--primary);

}

.contact-card h3{

margin-bottom:15px;

}

.contact-card p{

color:var(--text);

word-break:break-word;

}

/* ===========================
FOOTER
=========================== */

footer{

background:#03050c;

border-top:1px solid var(--border);

padding:60px 0;

}

.footer-content{

text-align:center;

}

.footer-content h2{

font-size:34px;

margin-bottom:15px;

}

.footer-content p{

color:var(--text);

margin:10px 0;

line-height:1.8;

}

/* ===========================
SCROLLBAR
=========================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#050816;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(var(--primary),var(--secondary));

border-radius:20px;

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:1200px){

.hero-grid,
.about-grid{

grid-template-columns:1fr;

}

.features-grid,
.policy-grid,
.trust-grid{

grid-template-columns:repeat(2,1fr);

}

.plans{

grid-template-columns:1fr;

}

.contact-grid{

grid-template-columns:1fr;

}

}

@media(max-width:992px){

.menu{

display:none;

}

.menu-buttons{

display:none;

}

.mobile-menu{

display:block;

color:white;

}

.hero{

padding-top:140px;

}

.hero h1{

font-size:42px;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.features-grid,
.policy-grid,
.trust-grid,
.hero-stats{

grid-template-columns:1fr;

}

.section-title h2{

font-size:32px;

}

.hero h1{

font-size:34px;

}

.hero-buttons{

flex-direction:column;

}

.cta-buttons{

flex-direction:column;

}

.container{

width:92%;

}

}

@media(max-width:480px){

.logo-text h2{

font-size:20px;

}

.hero h1{

font-size:30px;

}

.hero p{

font-size:16px;

}

.section-title h2{

font-size:28px;

}

.plan{

padding:30px 22px;

}

.contact-card{

padding:30px 20px;

}

}

/* ===========================
END OF STYLE.CSS
=========================== */
```0