/* ==================================================
IDEAS DRILL
Premium Creative Agency Theme
Author: ChatGPT
================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
--primary:#fabd2e;
--primary-hover:#ffd45e;

```
--bg:#000000;
--bg-secondary:#0f0f0f;
--card:#151515;

--text:#ffffff;
--muted:#b9b9b9;

--border:#252525;

--radius:14px;

--transition:all .3s ease;
```

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#000000 !important;
color:#ffffff;
line-height:1.7;
min-height:100%;
}
html,

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
color:inherit;
}

ul{
list-style:none;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}
.hero-badges{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-top:40px;
}

.hero-badges span{
padding:10px 18px;
background:#111;
border:1px solid #222;
border-radius:40px;
color:#fabd2e;
}

section{
padding:90px 0;
}

.section-title{
font-size:42px;
text-align:center;
margin-bottom:15px;
}

.section-title span{
color:var(--primary);
}

.section-subtitle{
text-align:center;
color:var(--muted);
max-width:750px;
margin:0 auto 50px;
}

.btn{
display:inline-block;
padding:14px 28px;
border-radius:50px;
transition:var(--transition);
font-weight:600;
}

.btn-primary{
background:var(--primary);
color:#000;
}

.btn-primary:hover{
background:var(--primary-hover);
transform:translateY(-2px);
}

.btn-outline{
border:1px solid var(--primary);
color:var(--primary);
}

.btn-outline:hover{
background:var(--primary);
color:#000;
}

header{
position:sticky;
top:0;
z-index:999;
background:rgba(0,0,0,.85);
backdrop-filter:blur(15px);
border-bottom:1px solid rgba(250,189,46,.15);
}
.service-icon{
font-size:42px;
color:#fabd2e;
margin-bottom:20px;
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.portfolio-item{
background:#151515;
border:1px solid #252525;
border-radius:14px;
overflow:hidden;
transition:.3s;
}

.portfolio-item:hover{
transform:translateY(-8px);
border-color:#fabd2e;
}

.portfolio-img{
height:220px;
background:
linear-gradient(
135deg,
#fabd2e 0%,
#111 100%
);
}

.portfolio-item h3{
padding:20px 20px 5px;
}

.portfolio-item p{
padding:0 20px 20px;
color:#b9b9b9;
}
/* ==============================
   PORTFOLIO PREMIUM SECTION
============================== */

.portfolio-section{
position:relative;
padding:140px 0;
overflow:hidden;
}

.portfolio-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:30px;

}

.project-card{

position:relative;

border-radius:24px;

overflow:hidden;

background:#111;

border:1px solid rgba(250,189,46,.12);

transition:.4s ease;

}

.project-card:hover{

transform:translateY(-12px);

border-color:#fabd2e;

box-shadow:
0 0 40px rgba(250,189,46,.15);

}

.project-image{

position:relative;

height:450px;

overflow:hidden;

}

.project-image img{

width:100%;
height:100%;

object-fit:cover;

transition:.8s ease;

}

.project-card:hover img{

transform:scale(1.12);

}

.project-overlay{

position:absolute;

left:0;
right:0;
bottom:0;

padding:35px;

background:
linear-gradient(
to top,
rgba(0,0,0,.98) 0%,
rgba(0,0,0,.85) 40%,
rgba(0,0,0,.35) 70%,
transparent 100%
);

}
.project-overlay h3{

font-size:32px;

font-weight:700;

color:#fff;

text-shadow:
0 2px 10px rgba(0,0,0,.9);

}

.project-overlay p{

color:#ddd;

text-shadow:
0 2px 10px rgba(0,0,0,.9);

}

.project-category{

display:inline-block;

padding:8px 16px;

border-radius:50px;

background:rgba(250,189,46,.15);

border:1px solid rgba(250,189,46,.25);

color:#fabd2e;

font-size:13px;

font-weight:600;

margin-bottom:15px;

}

.project-overlay h3{

font-size:30px;

margin-bottom:12px;

}

.project-overlay p{

color:#b9b9b9;

margin-bottom:25px;

line-height:1.7;

}

.project-btn{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 25px;

border-radius:50px;

background:#fabd2e;

color:#000;

font-weight:700;

transition:.3s;

}

.project-btn:hover{

background:#ffd45e;

transform:translateY(-3px);

}

/* Responsive */

@media(max-width:991px){

.portfolio-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.portfolio-grid{
grid-template-columns:1fr;
}

.project-image{
height:350px;
}

}

.hero-badges{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-top:40px;
}

.hero-badges span{
padding:10px 18px;
background:#111;
border:1px solid #222;
border-radius:40px;
color:#fabd2e;
font-size:14px;
}

.hero{
position:relative;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;
width:700px;
height:700px;
background:rgba(250,189,46,.08);
filter:blur(120px);
top:-250px;
left:50%;
transform:translateX(-50%);
border-radius:50%;
}

@media(max-width:991px){

.portfolio-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.portfolio-grid{
grid-template-columns:1fr;
}

}
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:28px;
font-weight:800;
}

.logo span{
color:var(--primary);
}


.nav-links{
display:flex;
gap:25px;
}

.nav-links a{
transition:var(--transition);
}

.nav-links a:hover{
color:var(--primary);
}

.hero{
min-height:90vh;
display:flex;
align-items:center;
position:relative;
overflow:hidden;
}
.hero::before{
content:"";
position:absolute;
width:700px;
height:700px;
background:rgba(250,189,46,.08);
filter:blur(120px);
top:-200px;
left:50%;
transform:translateX(-50%);
border-radius:50%;
}
.hero-content{
text-align:center;
max-width:900px;
margin:auto;
}

.hero h1{
font-size:64px;
line-height:1.2;
margin-bottom:25px;
}

.hero h1 span{
color:var(--primary);
}

.hero p{
color:var(--muted);
margin-bottom:35px;
font-size:18px;
}

.hero-buttons{
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
}

.grid-3{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.card{
background:var(--card);
border:1px solid var(--border);
border-radius:var(--radius);
padding:30px;
transition:var(--transition);
}

.card:hover{
transform:translateY(-8px);
border-color:var(--primary);
}

.card h3{
margin-bottom:15px;
}

.card p{
color:var(--muted);
}

.cta{
text-align:center;
background:var(--card);
border:1px solid var(--border);
border-radius:var(--radius);
padding:60px 30px;
}

.cta h2{
margin-bottom:15px;
}
/* WHY US PREMIUM */

.why-us{
padding:0px 0;
position:relative;
overflow:hidden;
}

.why-us::before{
content:"";
position:absolute;
transform:translateX(-50%);
border-radius:50%;
}

.section-header{
text-align:center;
max-width:800px;
margin:0 auto 70px;
}

.section-tag{
display:inline-block;
color:#fabd2e;
font-size:13px;
letter-spacing:3px;
margin-bottom:15px;
text-transform:uppercase;
}

.section-header h2{
font-size:64px;
font-weight:800;
line-height:1.1;
margin-bottom:20px;
}

.section-header h2 span{
color:#fabd2e;
}

.section-header p{
color:#b9b9b9;
font-size:18px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.why-card{
position:relative;
background:linear-gradient(
180deg,
rgba(255,255,255,.03),
rgba(255,255,255,.01)
);

border:1px solid rgba(250,189,46,.12);

padding:45px 35px;

border-radius:22px;

text-align:center;

transition:.4s ease;

backdrop-filter:blur(20px);
}

.why-card:hover{

transform:translateY(-15px);

border-color:#fabd2e;

box-shadow:
0 0 30px rgba(250,189,46,.15);

}

.icon-circle{

width:100px;
height:100px;

margin:0 auto 25px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:38px;

color:#fabd2e;

border:2px solid rgba(250,189,46,.25);

background:
radial-gradient(
circle,
rgba(250,189,46,.08),
transparent
);

animation:float 4s ease-in-out infinite;

}

.why-card h3{
font-size:28px;
margin-bottom:15px;
}

.why-card p{
color:#b9b9b9;
line-height:1.8;
}

.card-number{

display:block;

margin-top:30px;

font-size:34px;

font-weight:800;

color:#fabd2e;

opacity:.9;

}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0px);
}

}

@media(max-width:991px){

.why-grid{
grid-template-columns:1fr;
}

.section-header h2{
font-size:42px;
}

}
.premium-heading{
    text-align:center;
    max-width:900px;
    margin:0 auto 80px;
    position:relative;
    z-index:2;
}

.heading-tag{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;

    color:#fabd2e;

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

    margin-bottom:20px;

    text-transform:uppercase;
}

.heading-tag span{

    width:80px;
    height:2px;

    background:linear-gradient(
    to right,
    transparent,
    #fabd2e,
    transparent
    );

}

.premium-heading h2{

    font-size:72px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:20px;
}

.premium-heading h2 span{
    color:#fabd2e;
}

.premium-heading p{

    color:#b8b8b8;

    font-size:20px;

    line-height:1.8;

    max-width:750px;

    margin:auto;
}
/* ==========================
   PREMIUM CTA SECTION
========================== */

.premium-cta{

    padding:40px 0;

    position:relative;

    overflow:hidden;

    background:#000;

}

.cta-box{

    max-width:1200px;

    margin:auto;

    position:relative;

    text-align:center;

    padding:50px 60px;

    border-radius:30px;

    background:

    linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(255,255,255,.01)
    );

    border:1px solid rgba(250,189,46,.25);

    backdrop-filter:blur(20px);

    overflow:hidden;

}

/* Glow */

.cta-box::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    background:

    radial-gradient(
    circle,
    rgba(250,189,46,.08),
    transparent 70%
    );

    top:-300px;

    left:50%;

    transform:translateX(-50%);

    filter:blur(120px);

}

/* TAG */

.cta-tag{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    color:#fabd2e;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:35px;

}

.cta-tag .line{

    width:100px;

    height:2px;

    background:

    linear-gradient(
    to right,
    transparent,
    #fabd2e,
    transparent
    );

}

/* HEADING */

.premium-cta h2{

    font-size:78px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:30px;

}

.premium-cta h2 span{

    color:#fabd2e;

}

/* Divider */

.divider{

    width:220px;

    height:2px;

    margin:30px auto;

    background:

    linear-gradient(
    to right,
    transparent,
    #fabd2e,
    transparent
    );

}

/* Paragraph */

.premium-cta p{

    color:#b9b9b9;

    font-size:22px;

    margin-bottom:45px;

}

/* BUTTON */

.cta-button{

    display:inline-block;

    padding:22px 55px;

    background:#fabd2e;

    color:#000;

    border-radius:60px;

    font-size:22px;

    font-weight:700;

    transition:.4s ease;

    box-shadow:
    0 0 30px rgba(250,189,46,.35);

}

.cta-button:hover{

    transform:translateY(-6px);

    box-shadow:
    0 0 60px rgba(250,189,46,.55);

}

/* GOLD PARTICLES */

.cta-particles{

    position:absolute;

    inset:0;

    pointer-events:none;

    background-image:

    radial-gradient(
    rgba(250,189,46,.25) 1px,
    transparent 1px
    );

    background-size:40px 40px;

    opacity:.12;

    animation:moveParticles 40s linear infinite;

}

@keyframes moveParticles{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(100px);
    }

}

/* MOBILE */

@media(max-width:768px){

    .premium-cta h2{

        font-size:42px;

    }

    .premium-cta p{

        font-size:18px;

    }

    .cta-box{

        padding:70px 25px;

    }

    .cta-tag .line{

        width:40px;

    }

}

@media(max-width:768px){

.premium-heading h2{
font-size:42px;
}

.premium-heading p{
font-size:16px;
}

.heading-tag span{
width:40px;
}

}

footer{
border-top:1px solid var(--border);
padding:40px 0;
}

.footer-content{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:20px;
}

.footer-content p{
color:var(--muted);
}
.footer{
background:#070707;
border-top:1px solid rgba(250,189,46,.15);
padding:80px 0 25px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:50px;
}

.footer-col h3{
font-size:32px;
margin-bottom:15px;
}

.footer-col h3 span{
color:#fabd2e;
}

.footer-col h4{
margin-bottom:20px;
color:#fabd2e;
}

.footer-col p,
.footer-col li{
color:#a9a9a9;
margin-bottom:10px;
}

.footer-col a{
transition:.3s;
}

.footer-col a:hover{
color:#fabd2e;
}

.social-links{
display:flex;
gap:12px;
margin-top:25px;
}

.social-links a{
width:42px;
height:42px;
border:1px solid #222;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
transition:.3s;
}

.social-links a:hover{
background:#fabd2e;
color:#000;
}

.footer-bottom{
border-top:1px solid #161616;
margin-top:50px;
padding-top:20px;
text-align:center;
color:#888;
}

@media(max-width:991px){

.footer-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.footer-grid{
grid-template-columns:1fr;
}

}

.whatsapp-btn{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
border-radius:50%;
background:#25d366;
display:flex;
justify-content:center;
align-items:center;
color:#fff;
font-size:24px;
z-index:999;
}

@media(max-width:991px){

.grid-3{
grid-template-columns:1fr 1fr;
}

.hero h1{
font-size:48px;
}

.nav-links{
display:none;
}

}

@media(max-width:768px){

.grid-3{
grid-template-columns:1fr;
}

.hero h1{
font-size:36px;
}

.section-title{
font-size:32px;
}

.hero{
padding:60px 0;
}

}
.page-hero{
padding:140px 0 80px;
position:relative;
overflow:hidden;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:24px;
border:1px solid rgba(250,189,46,.15);
}

.about-content h3{
font-size:42px;
margin-bottom:20px;
}

.about-content p{
color:#b9b9b9;
margin-bottom:20px;
line-height:1.9;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.stat-box{
background:#111;
border:1px solid rgba(250,189,46,.12);
padding:40px;
border-radius:20px;
text-align:center;
}

.stat-box h3{
font-size:42px;
color:#fabd2e;
margin-bottom:10px;
}

.stat-box p{
color:#b9b9b9;
}

@media(max-width:991px){

.about-grid{
grid-template-columns:1fr;
}

.stats-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.stats-grid{
grid-template-columns:1fr;
}

}

