/* =====================================================
SADIQ GROUP OF COMPANIES
PREMIUM LANDING PAGE CSS
===================================================== */

/* =====================================================
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;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:#1f1f1f;

color:#f5f5f5;

overflow-x:hidden;

line-height:1.8;

}

/* =====================================================
BACKGROUND GLOW
===================================================== */

.background-glow{

position:fixed;

top:-200px;
left:-200px;

width:600px;
height:600px;

background:rgba(244,180,0,.08);

border-radius:50%;

filter:blur(120px);

z-index:-1;

animation:floatGlow 12s infinite alternate;

}

@keyframes floatGlow{

0%{
transform:translate(0,0);
}

100%{
transform:translate(250px,180px);
}

}

/* =====================================================
HEADER
===================================================== */

header{

display:flex;

justify-content:space-between;

align-items:center;

padding:25px 8%;

background:rgba(20,20,20,.90);

backdrop-filter:blur(15px);

position:sticky;

top:0;

z-index:999;

border-bottom:1px solid rgba(255,255,255,.08);

}

.logo{

font-size:1.2rem;

font-weight:700;

letter-spacing:1px;

color:#f4b400;

}

nav{

display:flex;
gap:30px;

}

nav a{

text-decoration:none;

color:#ffffff;

font-size:.95rem;

transition:.3s;

}

nav a:hover{

color:#f4b400;

}

/* =====================================================
HERO SECTION
===================================================== */

.hero{

min-height:90vh;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:60px 20px;

}

.hero-content{

max-width:950px;

}

.hero h1{

font-size:4rem;

font-weight:800;

line-height:1.2;

margin-bottom:25px;

color:#ffffff;

}

.typing-container{

height:50px;

margin-bottom:25px;

}

#typing{

font-size:1.6rem;

font-weight:600;

color:#f4b400;

}

.hero p{

font-size:1.1rem;

max-width:800px;

margin:auto;

color:#d5d5d5;

margin-bottom:40px;

}

/* =====================================================
BUTTONS
===================================================== */

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn-primary{

background:#f4b400;

color:#111;

padding:15px 35px;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:0 10px 30px rgba(244,180,0,.35);

}

.btn-secondary{

border:2px solid #f4b400;

color:#f4b400;

padding:15px 35px;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.btn-secondary:hover{

background:#f4b400;

color:#111;

}

/* =====================================================
COMMON SECTION
===================================================== */

section{

padding:100px 8%;

}

section h2{

font-size:2.6rem;

text-align:center;

margin-bottom:30px;

color:#f4b400;

}

section p{

max-width:900px;

margin:auto;

text-align:center;

color:#d6d6d6;

}

/* =====================================================
CARDS
===================================================== */

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:25px;

margin-top:60px;

}

.card{

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

padding:30px;

border-radius:18px;

backdrop-filter:blur(10px);

transition:.4s;

}

.card:hover{

transform:translateY(-10px);

border-color:#f4b400;

}

.card h3{

color:#f4b400;

margin-bottom:12px;

}

.card p{

text-align:left;

}

/* =====================================================
UNDER CONSTRUCTION
===================================================== */

.construction{

background:#262626;

border-top:1px solid rgba(255,255,255,.08);

border-bottom:1px solid rgba(255,255,255,.08);

}

/* =====================================================
CONTACT FORM
===================================================== */

form{

max-width:800px;

margin:auto;

display:flex;

flex-direction:column;

gap:18px;

margin-top:40px;

}

input,
textarea{

width:100%;

padding:18px;

border:none;

border-radius:12px;

background:#2e2e2e;

color:#fff;

font-size:1rem;

outline:none;

}

textarea{

height:180px;

resize:vertical;

}

button{

background:#f4b400;

color:#111;

font-weight:700;

padding:18px;

border:none;

border-radius:50px;

cursor:pointer;

transition:.3s;

font-size:1rem;

}

button:hover{

transform:translateY(-3px);

box-shadow:0 10px 25px rgba(244,180,0,.35);

}

/* =====================================================
FOOTER
===================================================== */

footer{

padding:70px 20px;

text-align:center;

background:#141414;

border-top:1px solid rgba(255,255,255,.08);

}

footer h3{

color:#f4b400;

margin-bottom:15px;

}

footer p{

color:#cfcfcf;

margin-bottom:10px;

}

/* =====================================================
FLOATING WHATSAPP
===================================================== */

.floating-whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;
height:65px;

display:flex;

justify-content:center;
align-items:center;

background:#25D366;

font-size:30px;

text-decoration:none;

border-radius:50%;

box-shadow:0 10px 30px rgba(0,0,0,.3);

z-index:9999;

transition:.3s;

}

.floating-whatsapp:hover{

transform:scale(1.1);

}

/* =====================================================
RESPONSIVE TABLET
===================================================== */

@media(max-width:991px){

.hero h1{

font-size:3rem;

}

section{

padding:80px 6%;

}

}

/* =====================================================
RESPONSIVE MOBILE
===================================================== */

@media(max-width:768px){

header{

flex-direction:column;

gap:20px;

}

nav{

flex-wrap:wrap;

justify-content:center;

}

.hero h1{

font-size:2.3rem;

}

#typing{

font-size:1.2rem;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.btn-primary,
.btn-secondary{

width:280px;

text-align:center;

}

section h2{

font-size:2rem;

}

}
/* =====================================================
SCROLL ANIMATION
===================================================== */

.hidden{

opacity:0;

transform:translateY(40px);

transition:all .8s ease;

}

.show{

opacity:1;

transform:translateY(0);

}

/* =====================================================
RIPPLE EFFECT
===================================================== */

button{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

border-radius:50%;

transform:scale(0);

animation:rippleAnimation .6s linear;

background:rgba(255,255,255,.4);

pointer-events:none;

}

@keyframes rippleAnimation{

to{

transform:scale(4);

opacity:0;

}

}
