/* ======================================
   Adhya Software - Premium SaaS CSS
   Part 2
====================================== */

:root{
    --primary:#1565C0;
    --secondary:#1E88E5;
    --accent:#00C2FF;
    --dark:#0F172A;
    --light:#F4F8FD;
    --white:#ffffff;
    --text:#4B5563;
    --shadow:0 15px 40px rgba(0,0,0,.08);
    --radius:16px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--text);
    line-height:1.7;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    width:65px;
    margin-right:12px;
}

.logo h2{
    color:var(--primary);
    font-size:24px;
}

.logo span{
    font-size:13px;
    color:#666;
}

.menu{
    display:flex;
    list-style:none;
}

.menu li{
    margin-left:28px;
}

.menu a{
    text-decoration:none;
    color:var(--dark);
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:var(--primary);
}

.btn{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    text-decoration:none;
    padding:13px 28px;
    border-radius:50px;
    display:inline-block;
    transition:.3s;
    box-shadow:0 10px 25px rgba(30,136,229,.3);
}

.btn:hover{
    transform:translateY(-3px);
}

.secondary{
    background:#fff;
    color:var(--primary);
    border:2px solid var(--primary);
}

/* HERO */

.hero{
    padding:170px 0 100px;
    background:
    linear-gradient(135deg,#1565C0,#1E88E5);
    color:#fff;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.hero h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:25px;
}

.hero h1 span{
    color:#FFD54F;
}

.hero p{
    font-size:18px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:30px;
}

.hero-list div{
    margin:12px 0;
}

.hero-list i{
    color:#FFD54F;
    margin-right:10px;
}

.hero-image{
    text-align:center;
}

.hero-image img{
    width:420px;
    max-width:100%;
    border-radius:50%;
    background:#fff;
    padding:18px;
    animation:float 4s infinite ease-in-out;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-20px);
}

100%{
transform:translateY(0);
}

}

/* SECTIONS */

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    color:var(--dark);
}

.section-title p{
    color:#666;
    margin-top:10px;
}

/* SERVICES */

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service{
    background:#fff;
    padding:40px 30px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:.35s;
    text-align:center;
}

.service:hover{
    transform:translateY(-12px);
}

.service i{
    font-size:50px;
    color:var(--primary);
    margin-bottom:20px;
}

.service h3{
    margin-bottom:15px;
    color:var(--dark);
}

.service p{
    color:#666;
}

/* COUNTER */

.counter{
    background:linear-gradient(135deg,#1565C0,#1E88E5);
    color:#fff;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    gap:30px;
}

.counter h2{
    font-size:55px;
}

/* FEATURES */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.features div{
    background:#fff;
    padding:25px;
    border-radius:14px;
    box-shadow:var(--shadow);
}

.features i{
    color:#1E88E5;
    margin-right:10px;
}

/* ======================================
   PRICING
====================================== */

.pricing{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.plan{
    background:#fff;
    padding:45px 35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.plan:hover{
    transform:translateY(-10px);
}

.plan.active{
    border:3px solid var(--primary);
    transform:scale(1.05);
}

.plan.active::before{
    content:"Most Popular";
    position:absolute;
    top:18px;
    right:-38px;
    background:var(--primary);
    color:#fff;
    padding:8px 45px;
    transform:rotate(45deg);
    font-size:12px;
    font-weight:600;
}

.plan h3{
    color:var(--dark);
    margin-bottom:20px;
}

.plan h1{
    font-size:48px;
    color:var(--primary);
    margin-bottom:25px;
}

.plan ul{
    list-style:none;
    margin-bottom:30px;
}

.plan ul li{
    padding:10px 0;
    border-bottom:1px solid #eee;
}

/* ======================================
   FAQ
====================================== */

.faq{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    padding:25px;
    border-radius:15px;
    box-shadow:var(--shadow);
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-5px);
}

.faq-item h3{
    color:var(--primary);
    margin-bottom:12px;
}

/* ======================================
   CONTACT
====================================== */

.contact{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info{
    background:#1565C0;
    color:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.contact-info h3{
    margin-bottom:25px;
    font-size:32px;
}

.contact-info p{
    margin-bottom:18px;
}

.contact-info i{
    margin-right:10px;
    color:#FFD54F;
}

form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

form input,
form textarea{
    width:100%;
    padding:16px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
    transition:.3s;
}

form input:focus,
form textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 8px rgba(21,101,192,.15);
}

form textarea{
    min-height:140px;
    resize:vertical;
}

form button{
    border:none;
    cursor:pointer;
    width:100%;
}

/* ======================================
   FOOTER
====================================== */

footer{
    background:#0F172A;
    color:#fff;
    text-align:center;
    padding:35px 20px;
    margin-top:80px;
}

footer p{
    opacity:.85;
}

/* ======================================
   WHATSAPP FLOAT
====================================== */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 12px 25px rgba(0,0,0,.25);
    z-index:9999;
    animation:pulse 2s infinite;
}

@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.5);
}

70%{
box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

/* ======================================
   FADE ANIMATION
====================================== */

.service,
.plan,
.features div,
.faq-item{
    animation:fadeUp .8s ease both;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(35px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* ======================================
   SCROLLBAR
====================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#EEF3FA;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(#1565C0,#1E88E5);
    border-radius:20px;
}

/* ======================================
   RESPONSIVE
====================================== */

@media(max-width:1100px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-image{
margin-top:40px;
}

.contact{
grid-template-columns:1fr;
}

.counter-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.menu{
display:none;
}

.hero{
padding-top:140px;
}

.hero h1{
font-size:38px;
}

.hero-image img{
width:280px;
}

.counter-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:30px;
}

.pricing{
grid-template-columns:1fr;
}

.services{
grid-template-columns:1fr;
}

.features{
grid-template-columns:1fr;
}

.logo h2{
font-size:20px;
}

.logo img{
width:50px;
}

}

@media(max-width:480px){

.container{
width:94%;
}

.btn{
display:block;
text-align:center;
margin-bottom:15px;
}

.hero-buttons{
display:block;
}

.hero h1{
font-size:32px;
}

.contact-info,
form{
padding:25px;
}

.plan h1{
font-size:40px;
}

.whatsapp{
width:58px;
height:58px;
font-size:28px;
}

}