body{
    margin:0;
    padding:0;
}
/* ==========================================
JINDAL CONTENT STUDIO
Premium Agency UI - Part 1
========================================== */

:root{
    --primary:#D4AF37;
    --primary-light:#F2D675;
    --dark:#090909;
    --dark2:#111111;
    --dark3:#181818;
    --white:#ffffff;
    --text:#cfcfcf;
    --border:rgba(212,175,55,.18);
    --transition:.35s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:140px;
}

section{
    scroll-margin-top:140px;
}

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

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(92%,1280px);
    margin:auto;
}

/* ==========================================
Announcement Bar
========================================== */

.announcement-bar{
    background:linear-gradient(90deg,#D4AF37,#f2d675);
    color:#000;
    text-align:center;
    padding:10px 15px;
    font-size:14px;
    font-weight:600;
}

/* ==========================================

/* ==========================================
Hero
========================================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:170px;
    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.15),
    transparent 30%),

    radial-gradient(circle at bottom left,
    rgba(212,175,55,.08),
    transparent 35%),

    var(--dark);
}

.hero-container{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
    align-items:center;
}

.hero-tag{
    display:inline-block;
    padding:10px 22px;
    border:1px solid var(--border);
    border-radius:50px;
    color:var(--primary);
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.08;
    margin-bottom:25px;
}

.hero-content h1 span{
    display:block;
    color:var(--primary);
}

.hero-content p{
    color:var(--text);
    line-height:1.9;
    font-size:18px;
    margin-bottom:35px;
}

.hero-buttons{

    display:flex;
    gap:18px;
    margin-bottom:35px;

}

.primary-btn{
    padding:18px 36px;
    border-radius:50px;
    background:linear-gradient(135deg,var(--primary),var(--primary-light));
    color:#000;
    font-weight:700;
}

.secondary-btn{
    padding:18px 36px;
    border:2px solid var(--primary);
    border-radius:50px;
    color:var(--primary);
}

.secondary-btn:hover{
    background:var(--primary);
    color:#000;
}

/* ==========================================
Trust Strip
========================================== */

.trust-strip{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:35px;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    background:#151515;
    border:1px solid var(--border);
    border-radius:50px;
    transition:.3s;
}

.trust-item span{
    color:var(--primary);
    font-weight:bold;
}

.trust-item:hover{
    transform:translateY(-5px);
    border-color:var(--primary);
}

/* ==========================================
Hero Stats
========================================== */

.hero-info{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.hero-info div{
    background:#171717;
    border:1px solid var(--border);
    padding:18px 25px;
    border-radius:18px;
}

.hero-info strong{
    display:block;
    color:var(--primary);
    font-size:24px;
}

.hero-image img{
    width:100%;
    max-width:650px;
    margin:auto;
    object-fit:contain;
}

/* ==========================================
Trusted Section
========================================== */

.trusted-section{
    padding:70px 0;
    background:#101010;
}

.trusted-title{
    text-align:center;
    color:#bbb;
    margin-bottom:35px;
    font-size:18px;
}

.trusted-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.trusted-grid div{
    background:#171717;
    border:1px solid var(--border);
    padding:20px;
    text-align:center;
    border-radius:15px;
    transition:.3s;
}

.trusted-grid div:hover{
    border-color:var(--primary);
    transform:translateY(-5px);
}

/* ==========================================
Responsive
========================================== */

@media(max-width:992px){

.hero-container{
grid-template-columns:1fr;
text-align:center;
}

.hero-buttons,
.hero-info,
.trust-strip{
justify-content:center;
}

.hero-content h1{
font-size:48px;
}

.nav-links{
display:none;
}

.trusted-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.hero{
padding-top:150px;
}

.hero-content h1{
font-size:38px;
}

.primary-btn,
.secondary-btn{
width:100%;
text-align:center;
}

.hero-buttons{
flex-direction:column;
}

}/* ==========================================
ABOUT SECTION
========================================== */

.about{
    padding:140px 0;
    background:#0d0d0d;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:22px;
    border:2px solid rgba(212,175,55,.20);
    transition:.4s;
}

.about-image img:hover{
    transform:scale(1.03);
}

.section-tag{
    color:#d4af37;
    font-size:24px;
    font-weight:800;
    letter-spacing:4px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
}

.about-content p{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:22px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.feature-box{
    background:#171717;
    border:1px solid rgba(212,175,55,.18);
    padding:18px 20px;
    border-radius:15px;
    font-weight:500;
    transition:.35s;
}

.feature-box:hover{
    transform:translateY(-5px);
    border-color:#D4AF37;
}

/* ==========================================
WHY CHOOSE US
========================================== */

.why-us{
    padding:100px 0;
    background:#090909;
}

.section-heading{
    text-align:center;
    max-width:760px;
    margin:auto;
    margin-bottom:70px;
}

.section-heading h2{
    font-size:68px;
    margin:18px 0;
}

.section-heading p{
    color:#bdbdbd;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.why-card{
    background:#141414;
    border:1px solid rgba(212,175,55,.18);
    padding:40px 30px;
    border-radius:22px;
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
    box-shadow:0 20px 40px rgba(212,175,55,.12);
}

.why-card h3{
    font-size:24px;
    margin-bottom:18px;
    color:#fff;
}

.why-card p{
    color:#bdbdbd;
    line-height:1.8;
}

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

@media(max-width:992px){

.about-container{
    grid-template-columns:1fr;
    gap:45px;
}

.about-content{
    text-align:center;
}

.about-features{
    grid-template-columns:1fr;
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.about{
    padding:80px 0;
}

.why-us{
    padding:80px 0;
}

.about-content h2{
    font-size:34px;
}

.section-heading h2{
    font-size:36px;
}

.why-grid{
    grid-template-columns:1fr;
}

}/* ==========================================
SERVICES SECTION
========================================== */

.services{
    padding:100px 0 60px;
    background:#101010;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.service-card{
    background:#171717;
    border:1px solid rgba(212,175,55,.18);
    border-left:3px solid #D4AF37;
    border-radius:20px;
    padding:35px;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#D4AF37;
    transform:scaleX(0);
    transition:.35s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
    box-shadow:0 20px 40px rgba(212,175,55,.12);
}
.service-card:hover h3{
    color:#D4AF37;
}

.service-card h3{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:24px;
    margin-bottom:18px;
    color:#fff;
}

.service-card h3{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:24px;
    margin-bottom:18px;
    color:#fff;
}

.service-card h3 i{
    color:#D4AF37;
    font-size:24px;
}
.service-card p{
    color:#c2c2c2;
    line-height:1.8;
}

.service-card a{
    color:#D4AF37;
    font-weight:600;
}

.service-card a:hover{
    letter-spacing:.5px;
}.services-bottom{
    text-align:center;
    margin-top:60px;
}

/* ==========================================
INDUSTRIES
========================================== */

.industries{
    padding:120px 0;
    background:#0b0b0b;
}

.industry-grid{
    /* ===== Premium Industries ===== */

.premium-industries{
display:grid;


grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.industries-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
}#industries .container{
    max-width: 1600px;
    width: 95%;
}

.industry-card:hover{
transform:translateY(-10px);
border-color:#D4AF37;
box-shadow:0 20px 45px rgba(212,175,55,.18);
}

.industry-image{
height:220px;
background:linear-gradient(135deg,#242424,#111);
position:relative;
overflow:hidden;
}

.industry-image::after{
content:"Industry Preview";
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
color:#666;
font-size:15px;
letter-spacing:2px;
text-transform:uppercase;
}

.industry-content{
padding:28px;
display:flex;
flex-direction:column;
flex:1;
}

.industry-tag{
display:inline-block;
padding:7px 15px;
background:rgba(212,175,55,.12);
color:#D4AF37;
border-radius:40px;
font-size:11px;
font-weight:700;
letter-spacing:1px;
margin-bottom:18px;
width:max-content;
}

.industry-content h3{
font-size:24px;
margin-bottom:15px;
color:#fff;
}

.industry-content p{
line-height:1.8;
color:#bfbfbf;
margin-bottom:20px;
}

.industry-content ul{
list-style:none;
padding:0;
margin:0 0 25px;
}

.industry-content li{
margin-bottom:12px;
color:#d7d7d7;
}

.industry-content a{
margin-top:auto;
color:#D4AF37;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.industry-content a:hover{
letter-spacing:1px;
}

@media(max-width:992px){

.premium-industries{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.premium-industries{
grid-template-columns:1fr;
}

}
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.industry-card{
    background:#171717;
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.18);
    transition:.35s;
}

.industry-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.4s;
}.industry-card:hover{
transform:translateY(-12px);
box-shadow:0 20px 50px rgba(212,175,55,.18);
border-color:#D4AF37;
}

.industry-card img:hover{
transform:scale(1.08);
}

.industry-content{
padding:28px;
}

.industry-content h3{
font-size:24px;
margin-bottom:15px;
color:#fff;
}

.industry-content p{
color:#bfbfbf;
line-height:1.8;
margin-bottom:20px;
}

.industry-content ul{
padding:0;
margin:0 0 25px;
list-style:none;
}

.industry-content ul li{
margin-bottom:12px;
color:#d7d7d7;
font-size:15px;
}

.industry-content a{
display:inline-block;
color:#D4AF37;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.industry-content a:hover{
letter-spacing:1px;
}

@media(max-width:992px){

.industry-grid{

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

}

}

@media(max-width:768px){

.industry-grid{

grid-template-columns:1fr;

}

}

.industry-card:hover img{
    transform:scale(1.08);
}

.industry-content{
    padding:28px;
}

.industry-content h3{
    font-size:24px;
    margin-bottom:15px;
}

.industry-content ul{
    list-style:none;
    margin-bottom:20px;
}

.industry-content li{
    color:#cfcfcf;
    margin-bottom:10px;
}

.industry-content span{
    color:#D4AF37;
    font-weight:600;
}

.industry-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
    box-shadow:0 20px 40px rgba(212,175,55,.12);
}

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

@media(max-width:992px){

.services-grid,
.industry-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.services,
.industries{
padding:80px 0;
}

.services-grid,
.industry-grid{
grid-template-columns:1fr;
}

.service-card,
.industry-card{
padding:25px;
}

.industry-card img{
height:200px;
}

}/* ==========================================
PORTFOLIO
========================================== */

.writing-samples{
padding:120px 0;
background:#111;
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.portfolio-card{
background:#171717;
border-radius:22px;
overflow:hidden;
border:1px solid rgba(212,175,55,.18);
transition:.35s;
}

.portfolio-card{

overflow:hidden;

border-radius:22px;

transition:.4s;

}

.portfolio-card img{

width:100%;

height:260px;

object-fit:cover;

display:block;

transition:transform .6s ease;

}

.portfolio-card:hover img{

transform:scale(1.08);

}
.portfolio-content{

padding:30px;

display:flex;

flex-direction:column;

height:100%;

}

.portfolio-content h3{

font-size:26px;

margin:15px 0;

color:#fff;

}

.portfolio-content p{

color:#cfcfcf;

line-height:1.8;

margin-bottom:25px;

flex-grow:1;

}

.portfolio-content a{

display:inline-block;

width:fit-content;

padding:12px 24px;

background:#D4AF37;

color:#111;

font-weight:600;

border-radius:30px;

transition:.35s;

}

.portfolio-content a:hover{

transform:translateY(-3px);

box-shadow:0 12px 25px rgba(212,175,55,.35);

}

.portfolio-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(212,175,55,.12);
}

/* ==========================================
TESTIMONIALS
========================================== */

.testimonials{
padding:120px 0;
background:#0b0b0b;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.testimonial-card{
background:#171717;
padding:35px;
border-radius:20px;
border:1px solid rgba(212,175,55,.18);
transition:.35s;
}

.testimonial-card:hover{
transform:translateY(-8px);
border-color:#D4AF37;
}

.testimonial-card p{
line-height:1.9;
color:#cfcfcf;
margin-bottom:20px;
}

.testimonial-card h4{
color:#D4AF37;
}

@media(max-width:992px){

.portfolio-grid,
.testimonial-grid{
grid-template-columns:1fr;
}

}/* ==========================
/* =====================================
PORTFOLIO
===================================== */

.portfolio{
padding:100px 0;
background:#0b0b0b;
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
margin-top:50px;
}

.portfolio-card{

background:#111;

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

overflow:hidden;

padding:0;

transition:.4s ease;

box-shadow:0 10px 30px rgba(0,0,0,.25);

display:flex;

flex-direction:column;

height:100%;

}

.portfolio-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(212,175,55,.18);

border-color:rgba(212,175,55,.35);

}
.portfolio-card h3{
font-size:24px;
margin-bottom:15px;
color:#fff;
}

.portfolio-card p{
color:#bfbfbf;
line-height:1.8;
margin-bottom:25px;
}

.portfolio-card .secondary-btn{
display:inline-block;
padding:12px 24px;
border:1px solid #d4af37;
border-radius:10px;
color:#d4af37;
text-decoration:none;
transition:.3s;
}

.portfolio-card .secondary-btn:hover{
background:#d4af37;
color:#111;
}
Pricing

.pricing{
    padding:120px 0 120px;
}

.pricing .section-heading h2{
    font-size:72px;
    font-weight:800;
    line-height:1.15;
}

.faq{
    padding:80px 0 60px;
}

.contact{
    padding:60px 0 60px;
}
.pricing-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.pricing-card{
background:#171717;
padding:40px;
border-radius:22px;
border:1px solid rgba(212,175,55,.18);
position:relative;
transition:.35s;
}.pricing-card h3{
    color:#D4AF37;
    font-size:22px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.pricing-card h2{
    font-size:42px;
    margin-bottom:20px;
    color:#fff;
}

.pricing-card:hover{
transform:translateY(-8px);
border-color:#D4AF37;
}

.popular-tag{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(135deg,#FFD54F,#D4AF37);
    color:#111;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.5px;
    box-shadow:0 10px 20px rgba(212,175,55,.25);
    z-index:10;
}

.pricing-card ul{
    margin:25px 0;
    padding-left:0;
    line-height:2;
    list-style:none;
}
.pricing-note{
    margin-top:50px;
    text-align:center;
    max-width:850px;
    margin-inline:auto;
    color:#d6d6d6;
    font-size:16px;
    line-height:1.9;
}

.pricing-note p{
    padding:22px 28px;
    border:1px solid rgba(212,175,55,.18);
    border-radius:18px;
    background:#141414;
}
/* FAQ */

.faq-box{
    background:#171717;
    padding:28px 30px;
    border-radius:18px;
    margin-bottom:20px;
    border:1px solid rgba(212,175,55,.18);
    transition:.35s;
}

.faq-box:hover{
    border-color:#D4AF37;
    transform:translateY(-4px);
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faq-question h3{
    margin:0;
    font-size:20px;
}

.faq-icon{
    font-size:28px;
    color:#D4AF37;
    font-weight:700;
}

.faq-answer{
    display:none;
    margin-top:18px;
    color:#cfcfcf;
    line-height:1.8;
}
/* Contact */

.contact-form{
display:grid;
gap:20px;
max-width:700px;
margin:auto;
}

.contact-form input,
.contact-form textarea{
padding:18px;
background:#171717;
border:1px solid rgba(212,175,55,.18);
border-radius:14px;
color:#fff;
font-size:16px;
}

.contact-form textarea{
height:180px;
resize:none;
}

/* Footer */

footer{
background:#080808;
padding:70px 0 30px;
border-top:1px solid rgba(212,175,55,.18);
}

.footer-container{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:50px;
margin-bottom:40px;
}

footer h2,
footer h3{
margin-bottom:20px;
}

footer p,
footer a{
color:#bdbdbd;
line-height:2;
}

footer a:hover{
color:#D4AF37;
}

.copyright{
text-align:center;
border-top:1px solid rgba(212,175,55,.15);
padding-top:25px;
color:#888;
margin-top:20px;
}

@media(max-width:992px){

.pricing-grid,
.footer-container{
grid-template-columns:1fr;
}

}/* ==========================
Sticky Header
========================== */



/* Back To Top */

.top-btn{

position:fixed;

right:30px;

bottom:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#D4AF37;

color:#000;

font-size:24px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.3s;

z-index:999;

}

.top-btn.show{

opacity:1;

visibility:visible;

}

.top-btn:hover{

transform:translateY(-5px);

}

/* Mobile Menu */

.menu-btn{

display:none;

font-size:28px;

cursor:pointer;

color:white;

}

@media(max-width:992px){

.menu-btn{

display:block;

}

.nav-links{

display:none;

position:absolute;

top:95px;

left:0;

width:100%;

background:#111;

flex-direction:column;

padding:30px;

}

.nav-links.active{
display:flex !important;


}

}/* ==========================================
   RESPONSIVE DESIGN - PART 1
========================================== */

@media (max-width:1200px){

.container{
    width:92%;
}

.hero-container{
    gap:50px;
}

.hero-content h1{
    font-size:58px;
}

.section-title{
    font-size:46px;
}

.about-container,
.hero-container{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-content{
    order:1;
}

.hero-image{
    order:2;
}

.hero-image img{
    max-width:700px;
    width:100%;
    margin:auto;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.trust-strip{
    justify-content:center;
    flex-wrap:wrap;
}

.hero-info{
    justify-content:center;
}

.about-content{
    text-align:center;
}

.about-features{
    justify-content:center;
}

}/* ==========================================
   RESPONSIVE DESIGN - PART 2
========================================== */

@media (max-width:992px){

section{
    padding:80px 0;
}

.section-title{
    font-size:40px;
}

.section-subtitle{
    font-size:16px;
}

.hero-content h1{
    font-size:48px;
    line-height:1.2;
}

.hero-content p{
    font-size:18px;
}

.services-grid,
.industries-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}
.portfolio-grid,
.pricing-grid,
.testimonial-grid,
.choose-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.stats-grid,
.hero-info{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.contact-container{
    grid-template-columns:1fr;
    gap:40px;
}

.footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.nav-links{
    gap:20px;
}

}/* ==========================================
   RESPONSIVE DESIGN - PART 3 (MOBILE)
========================================== */

@media (max-width:768px){

/* Container */
.container{
    width:90%;
}

/* Header */
.header{
    padding:15px 0;
}

.logo img{
    width:60px;
}

.logo h2{
    font-size:24px;
}

.logo span{
    font-size:12px;
}

/* Hero */
.hero{
    padding-top:20px;
    padding-bottom:70px;
}

.hero-content h1{
    font-size:36px;
    line-height:1.3;
}

.hero-content p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
    width:100%;
}

.primary-btn,
.secondary-btn{
    width:100%;
    text-align:center;
}

/* Cards */
.services-grid,
.industry-grid,
.portfolio-grid,
.testimonial-grid,
.pricing-grid,
.why-grid,
.about-features{
    grid-template-columns:1fr;
}

/* Stats */
.hero-info{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.hero-info div{
    text-align:center;
}

/* Trusted */
.trusted-grid{
    grid-template-columns:repeat(2,1fr);
}

/* Contact */
.contact-form{
    width:100%;
}

.contact-form input,
.contact-form textarea{
    width:100%;
}

/* Footer */
.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

footer{
    text-align:center;
}

}/* ==========================================
   RESPONSIVE DESIGN - PART 4 (FINAL)
========================================== */

@media (max-width:576px){

/* Sections */

section{
    padding:70px 0;
}

/* Announcement */

.announcement-bar{
    font-size:12px;
    padding:8px 12px;
    line-height:1.6;
}

/* Hero */

.hero{
    padding-top:120px;
}

.hero-tag{
    font-size:11px;
    letter-spacing:1px;
    padding:8px 18px;
}

.hero-content h1{
    font-size:30px;
    line-height:1.35;
}

.hero-content p{
    font-size:15px;
    line-height:1.8;
}

/* Buttons */

.primary-btn,
.secondary-btn,
.nav-btn{

    width:100%;
    padding:16px;
    font-size:15px;

}

/* Trust */

.trust-strip{
    flex-direction:column;
    gap:12px;
}

.trust-item{
    justify-content:center;
}

/* Stats */

.hero-info{
    grid-template-columns:1fr;
}

.hero-info div{
    width:100%;
}

/* Headings */

.section-heading{
    margin-bottom:50px;
}

.section-heading h2{
    font-size:80px;
    line-height:1.2;
}

.section-heading p{
    font-size:15px;
}

/* Cards */

.service-card,
.why-card,
.portfolio-card,
.industry-card,
.testimonial-card,
.pricing-card,
.faq-box{

    padding:25px;

}

/* Images */

.about-image img,
.hero-image img{

    width:100%;
    border-radius:18px;

}

/* Form */

.contact-form input,
.contact-form textarea{

    font-size:15px;

}

/* Footer */

.footer-container{

    gap:25px;

}

footer h2{

    font-size:28px;

}

}

/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width:1440px){

.container{

max-width:1320px;

}

.hero-content h1{
    font-size:78px;
    line-height:1.08;
}

.section-heading h2{
    font-size:64px;
    line-height:1.15;
    font-weight:800;
}
}/* ==========================
SCROLL PROGRESS BAR
========================== */

.progress-bar{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:linear-gradient(90deg,#D4AF37,#FFD700);
    z-index:99999;
    transition:width .15s linear;
}/* ==========================
PREMIUM HOVER EFFECT
========================== */

.service-card,
.industry-card,
.portfolio-card,
.pricing-card,
.testimonial-card{

    transition:all .4s ease;
    border:1px solid rgba(212,175,55,.18);

}

.service-card:hover,
.industry-card:hover,
.portfolio-card:hover,
.pricing-card:hover,
.testimonial-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 20px 50px rgba(212,175,55,.18);

    border-color:#D4AF37;

}/* ===========================
PREMIUM SERVICE CARDS
=========================== */

.service-card{

    background: rgba(255,255,255,.03);
    backdrop-filter: blur(12px);
    border:1px solid rgba(212,175,55,.15);
    border-radius:20px;
    padding:35px;
    transition:.4s ease;
    cursor:pointer;
    position:relative;
    overflow:hidden;

}

.service-card::before{

    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,.18),
        transparent
    );
    transition:.6s;

}

.service-card:hover::before{

    left:100%;

}

.service-card:hover

    .service-card:hover{
    transform:translateY(-8px);
    border-color:#D4AF37;
    box-shadow:0 10px 25px rgba(212,175,55,.15);
}

.service-card h3{

    margin-bottom:15px;
    transition:.3s;

}

.service-card:hover h3{

    color:#D4AF37;

}/* ===========================
3D HOVER EFFECT
=========================== */

.services-grid{

    perspective:1000px;

}

.service-card{

    transform-style:preserve-3d;

}

.service-card:hover{

    transform:
        rotateX(6deg)
        rotateY(-6deg)
        translateY(-12px)
        scale(1.03);

}/*==============================
HERO FLOATING GLOW
==============================*/

.hero{
    position:relative;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    inset:0;
    pointer-events:none;
}

.blob{
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(212,175,55,.15);
    filter:blur(90px);
    animation:floatBlob 8s ease-in-out infinite;
}

.blob1{
    top:-80px;
    left:-120px;
}

.blob2{
    right:-100px;
    top:120px;
    animation-delay:2s;
}

.blob3{
    bottom:-120px;
    left:40%;
    animation-delay:4s;
}

@keyframes floatBlob{

    0%{
        transform:translateY(0) translateX(0);
    }

    50%{
        transform:translateY(-40px) translateX(30px);
    }

    100%{
        transform:translateY(0) translateX(0);
    }

}.cursor-glow{
    position:fixed;
    width:250px;
    height:250px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(212,175,55,.25),
        transparent 70%);
    pointer-events:none;
    transform:translate(-50%,-50%);
    z-index:0;
    filter:blur(20px);
}/* ==============================
CONTACT SECTION
============================== */

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:50px;
margin-top:50px;
align-items:start;
}

.contact-info{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-card{
background:#111;
border:1px solid rgba(255,255,255,.08);
padding:22px;
border-radius:16px;
transition:.3s;
}

.contact-card:hover{
transform:translateY(-6px);
border-color:#d4af37;
}

.contact-card h3{
margin-bottom:10px;
font-size:20px;
color:#d4af37;
}

.contact-card p{
color:#bfbfbf;
line-height:1.7;
}

.contact-form{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:16px;
background:#111;
border:1px solid rgba(255,255,255,.08);
border-radius:12px;
color:#fff;
font-size:16px;
}

.contact-form textarea{
min-height:180px;
resize:vertical;
}

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

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

.footer{
    background:#080808;
    padding:60px 0 35px;
}
.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-column h2,
.footer-column h3{
    color:#D4AF37;
    margin-bottom:22px;
    font-size:22px;
    font-weight:600;
}

.footer-column p,
.footer-column li{
    color:#bfbfbf;
    line-height:1.9;
    margin-bottom:14px;
    list-style:none;
}

.footer-column ul{
    padding:0;
    margin:0;
}

.footer-column a{
    color:#bfbfbf;
    text-decoration:none;
    transition:all .3s ease;
}

.footer-column a:hover{
    color:#D4AF37;
    padding-left:6px;
}

.footer-column a:hover{
color:#d4af37;
padding-left:5px;
}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.05);
    margin-top:50px;
    padding-top:25px;
}

.footer-bottom .container{
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-bottom p{
    margin:0;
    text-align:center;
}
/* =====================================
WHATSAPP FLOATING BUTTON
===================================== */

.whatsapp-float{

position:fixed;

bottom:20px;

right:20px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

box-shadow:0 10px 25px rgba(0,0,0,.35);

z-index:9999;

transition:.35s;

animation:whatsappPulse 2s infinite;

}

.whatsapp-float:hover{

transform:scale(1.12);

}

.whatsapp-float img{

width:36px;

height:36px;

}

@keyframes whatsappPulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.7);

}

70%{

box-shadow:0 0 0 20px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}.industry-image{
height:220px;
background:linear-gradient(135deg,#2b2b2b,#121212);
border-bottom:1px solid rgba(212,175,55,.15);
}

.industry-tag{
display:inline-block;
padding:6px 14px;
border-radius:30px;
background:rgba(212,175,55,.12);
color:#D4AF37;
font-size:12px;
font-weight:700;
letter-spacing:1px;
margin-bottom:18px;
text-transform:uppercase;
}

.industry-card{
display:flex;
flex-direction:column;
height:100%;
}

.industry-content{
padding:30px;
flex:1;
display:flex;
flex-direction:column;
}

.industry-content ul{
margin:20px 0;
padding-left:0;
list-style:none;
}

.industry-content li{
margin-bottom:12px;
}

.industry-content a{
margin-top:auto;
font-weight:600;
color:#D4AF37;
text-decoration:none;
}/*==============================
SCROLL HEADER
==============================*/

.header-scrolled{

background:#071421;

box-shadow:0 10px 30px rgba(0,0,0,.25);

transition:.35s;

}.legal-page{
    padding:180px 0 100px;
    background:#0b0b0b;
}

.legal-page h1{
    font-size:56px;
    margin-bottom:20px;
}

.legal-page h2{
    font-size:28px;
    margin:40px 0 20px;
    color:#D4AF37;
}

.legal-page p,
.legal-page li{
    color:#cfcfcf;
    line-height:1.9;
    margin-bottom:15px;
}

.legal-page ul{
    padding-left:20px;
}.back-to-top{
    position:fixed;
    bottom:95px;
    right:20px;
    width:50px;
    height:50px;
    background:#D4AF37;
    color:#111;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:24px;
    font-weight:700;
    box-shadow:0 5px 20px rgba(212,175,55,.3);
    transition:.3s;
    z-index:999;
}

.back-to-top:hover{
    transform:translateY(-5px);
}.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-social a{
    width:45px;
    height:45px;
    background:#171717;
    border:1px solid rgba(212,175,55,.2);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#D4AF37;
    font-size:18px;
    transition:.3s;
}

.footer-social a:hover{
    background:#D4AF37;
    color:#111;
    transform:translateY(-5px);
}@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#0d0d0d;
    color:white;
    line-height:1.8;
}

section{
    padding:100px 8%;
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 8%;
    background:#111;
    position:sticky;
    top:0;
}



nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
}

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:100vh;
}

.hero-content{
    max-width:650px;
}

.badge{
    background:#D4AF37;
    color:black;
    padding:8px 20px;
    border-radius:50px;
    font-weight:600;
}

.hero h1{
    font-size:70px;
    color:#D4AF37;
    margin:30px 0;
}

.hero p{
    color:#ccc;
    font-size:20px;
}

.hero-buttons{
    margin-top:40px;
}

.btn-primary{
    background:#D4AF37;
    color:black;
    text-decoration:none;
    padding:15px 35px;
    border-radius:10px;
    font-weight:700;
}

.btn-secondary{
    border:1px solid #D4AF37;
    color:#D4AF37;
    text-decoration:none;
    padding:15px 35px;
    border-radius:10px;
    margin-left:15px;
}

.hero-icon{
    font-size:220px;
    color:#D4AF37;
}

h2{
    color:#D4AF37;
    margin-bottom:30px;
}

.feature-grid,
.program-grid,
.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card,
.stat-box,
.testimonial-card{
    background:#151515;
    padding:35px;
    border-radius:20px;
}

.card i{
    color:#D4AF37;
    font-size:40px;
    margin-bottom:20px;
}

.stat-box h3{
    font-size:50px;
    color:#D4AF37;
}

.cta{
    text-align:center;
}.industry-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:20px 20px 0 0;
}.industry-preview{
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:20px 20px 0 0;
}

.industry-preview img
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

.logo img{
    width:85px;
}

.logo-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.logo-text h2{
    font-size:30px;
    margin:0;
    line-height:1;
    color:#D4AF37;
}

.logo-text span{
    margin-top:4px;
    color:#D4AF37;
    font-size:14px;
    letter-spacing:2px;
}.logo{
    display:flex;
    align-items:center;
    gap:15px;
   }

.logo-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}/* ===== Header Logo Fix ===== */

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
}

.logo img{
    width: 70px;
    height: auto;
}

.logo-text{
    display: flex;
    flex-direction: row;   /* column ki jagah row */
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.logo-text h2{
    margin: 0;
    font-size: 38px;
    color: #D4AF37;
    line-height: 1;
}

.logo-text span{
    margin: 0;
    font-size: 24px;
    color: #D4AF37;
    letter-spacing: 0;
}/* FINAL OVERRIDE */

.hero{
    padding-top:90px !important;
}

.hero-content h1{
    color:#fff !important;
}

.hero-content h1 span{
    color:#D4AF37 !important;
}/* ===== REDUCE GOLD EFFECT ===== */

:root{
    --primary: #B8922F !important;
    --primary-light: #C9A94A !important;
    --border: rgba(184,146,47,.08) !important;
}

/* Cards */
.service-card,
.industry-card,
.portfolio-card,
.pricing-card,
.testimonial-card,
.why-card,
.feature-box,
.faq-box{
    border-color: rgba(184,146,47,.08) !important;
}

/* Hover glow kam karo */
.service-card:hover,
.industry-card:hover,
.portfolio-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.why-card:hover{
    box-shadow: 0 10px 25px rgba(184,146,47,.08) !important;
}

/* Hero background glow kam karo */
.hero{
    background:
    radial-gradient(circle at top right,
    rgba(184,146,47,.05),
    transparent 30%),

    radial-gradient(circle at bottom left,
    rgba(184,146,47,.03),
    transparent 35%),

    #090909 !important;
}/* ==========================
PREMIUM COLOR REFINEMENT
========================== */

:root{
    --primary:#B8860B;
    --primary-light:#C9A227;
    --border:rgba(184,134,11,.10);
    --text:#d6d6d6;
}

body{
    background:#090909;
    color:#fff;
}/* ==========================
REDUCE GOLD INTENSITY
========================== */

.hero-tag,
.industry-tag,
.popular-tag{
    background:rgba(184,134,11,.12) !important;
}

.hero-content h1{
    color:#fff !important;
}

.hero-content h1 span{
    color:var(--primary) !important;
}

.section-tag,
.pricing-card h3,
.testimonial-card h4,
.faq-icon{
    color:var(--primary) !important;
}/* ==========================
REMOVE EXCESS GLOW
========================== */

.blob{
    background:rgba(184,134,11,.05) !important;
}

.cursor-glow{
    display:none;
}

.hero{
    background:
    radial-gradient(circle at top right,
    rgba(184,134,11,.05),
    transparent 30%),

    radial-gradient(circle at bottom left,
    rgba(184,134,11,.03),
    transparent 35%),

    #090909 !important;
}/* ==========================
PREMIUM CARDS
========================== */

.service-card,
.industry-card,
.portfolio-card,
.pricing-card,
.testimonial-card,
.why-card,
.feature-box,
.faq-box{
    border:1px solid rgba(255,255,255,.07) !important;
    box-shadow:none !important;
}

.service-card:hover,
.industry-card:hover,
.portfolio-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.why-card:hover{
    border-color:rgba(184,134,11,.25) !important;
    box-shadow:0 10px 25px rgba(184,134,11,.10) !important;
}/* ==========================
BUTTON REFINEMENT
========================== */

.primary-btn,
.nav-btn{
    background:linear-gradient(
        135deg,
        #B8860B,
        #C9A227
    ) !important;
}

.secondary-btn{
    border:1px solid var(--primary) !important;
    color:var(--primary) !important;
}/* ==========================
FOOTER + CONTACT
========================== */

.footer-column h2,
.footer-column h3,
.contact-card h3{
    color:var(--primary);
}

.footer-social a{
    color:var(--primary);
}

.footer-social a:hover{
    background:var(--primary);
    color:#111;
}/* ==========================
TYPOGRAPHY
========================== */

.section-heading h2{
    color:#fff;
}

.about-content h2,
.portfolio-card h3,
.industry-content h3,
.why-card h3{
    color:#fff;
}

p{
    color:#cfcfcf;
}/* ==========================
REDUCE HERO TO ABOUT GAP
========================== */

.hero{
    min-height:85vh !important;
    padding-bottom:40px !important;
}

.trusted-section{
    padding-top:40px !important;
}

.about{
    padding-top:0 !important;
}/* ===== REMOVE EXTRA HERO SPACE ===== */

.hero{
    min-height:auto !important;
    padding-top:120px !important;
    padding-bottom:50px !important;
}

.hero-container{
    padding-bottom:0 !important;
    margin-bottom:0 !important;
}

.trusted-section{
    margin-top:0 !important;
    padding-top:40px !important;
}/* ==========================
FINAL NAVBAR REFINEMENT
========================== */

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}

.logo img{
    width:75px;
}

.logo-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
    min-width:180px;
}

.logo-text h2{
    font-size:34px;
    margin:0;
    line-height:1;
    color:#ffffff;
    font-weight:700;
}

.logo-text span{
    color:#B8860B;
    font-size:16px;
    margin-top:4px;
    letter-spacing:1px;
}

.nav-links{
    display:flex;
    gap:28px;
    margin-left:50px;
}

.nav-links a{
    color:#e0e0e0;
    font-size:15px;
    font-weight:500;
}

.nav-links a:hover,
.nav-links a.active{
    color:#B8860B;
}

.nav-btn{
    padding:14px 28px;
    background:linear-gradient(135deg,#B8860B,#C9A227);
    color:#111;
    border-radius:40px;
    font-weight:700;
}/* ABOUT -> WHY GAP FIX */

.about{
    padding-bottom:40px !important;
}

.why-us{
    padding-top:40px !important;
}

.section-heading{
    margin-bottom:40px !important;
}/* ==========================
FINAL WEBSITE FIXES
========================== */

/* About aur Why ke beech gap kam */
.about{
    padding-bottom:40px !important;
}

.why-us{
    padding-top:40px !important;
}

.section-heading{
    margin-bottom:40px !important;
}

/* Floating buttons fix */
.whatsapp-float{
    right:20px !important;
    bottom:20px !important;
}

.back-to-top,
.top-btn{
    right:20px !important;
    bottom:95px !important;
}

/* Hero image thodi badi */
.hero-image img{
    max-width:620px !important;
}

/* Header compact */
.navbar{
    min-height:85px !important;
}

/* Get Free Quote button refine */
.nav-btn{
    padding:12px 24px !important;
    font-size:14px !important;
}

/* About image premium look */
.about-image img{
    border-radius:24px !important;
    border:1px solid rgba(255,255,255,.08) !important;
    box-shadow:0 20px 50px rgba(0,0,0,.45) !important;
}/* HERO -> ABOUT GAP FIX */

.hero{
    min-height:auto !important;
    padding-bottom:40px !important;
}

.hero-container{
    align-items:flex-start !important;
}

.hero-image{
    margin-bottom:0 !important;
}

.about{
    margin-top:-100PX !important;
    padding-top:140px !important;
}/* FORCE FULL WIDTH PRICING SECTION */

#pricing .container{
    max-width:1500px !important;
    width:100% !important;
    padding-left:40px !important;
    padding-right:40px !important;
}

#pricing .pricing-grid{
    width:100% !important;
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:40px !important;
}

#pricing .pricing-card{
    width:100% !important;
}/* PRICING FULL WIDTH FIX */

#pricing .container{
    width:min(96%,1600px) !important;
}

.pricing-grid{
    width:100% !important;
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    gap:40px !important;
}

.pricing-card{
    width:100% !important;
}/* ==========================
PRICING SECTION FIX
========================== */

.pricing .container{
    width:min(98%,1500px);
}

.pricing-grid{
    display:grid !important;
    grid-template-columns:repeat(3,minmax(380px,1fr)) !important;
    gap:35px !important;
    width:100% !important;
    align-items:stretch;
}

.pricing-card{
    width:100% !important;
    max-width:none !important;
    min-height:620px;
}

.pricing-card.featured{
    transform:scale(1.03);
}

.pricing-note{
    margin-top:50px;
}.pricing .container{
    width:100% !important;
    max-width:1700px !important;
}

.pricing-grid{
    grid-template-columns:repeat(3,1fr) !important;
}.pricing .container{
    width:100%;
    max-width:1400px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    width:100%;
}

.pricing-card{
    width:100%;
    min-width:0;
}.pricing .container{
    width:95%;
    max-width:1500px;
    margin:auto;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.pricing-card{
    width:100%;
    min-width:0;
}.pricing{
    padding:120px 0;
}

.pricing .container{
    width:96%;
    max-width:1600px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    width:100%;
}.popular-tag{
    position:absolute;
    top:-18px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(135deg,#FFD54F,#D4AF37);
    color:#111;
    padding:10px 24px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    box-shadow:0 8px 25px rgba(212,175,55,.35);
    border:2px solid rgba(255,255,255,.08);
    z-index:10;
}.popular-tag{
    position:absolute;
    top:15px;
    right:20px;
    left:auto;
    transform:none;

    background:linear-gradient(135deg,#FFD54F,#D4AF37);
    color:#111;
    padding:8px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    z-index:100;
}.popular-tag{
    position:absolute;
    top:15px;
    right:20px;

    background:#D4AF37;
    color:#111;

    padding:10px 18px;
    border-radius:30px;

    font-size:13px;
    font-weight:700;
    letter-spacing:0.5px;

    box-shadow:none;
    border:none;

    opacity:1;
    filter:none;
    backdrop-filter:none;

    z-index:999;
}.pricing-card{
     position: relative;
    overflow:visible;
}.popular-tag{
    position: absolute;
    top: 20px;
    right: 20px;

    background: #FFD54F;
    color: #000;

    padding: 8px 16px;
    border-radius: 30px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;

    z-index: 9999;

    box-shadow: none;
}.pricing-card.featured{
    transform: scale(1.03);
    z-index: 100;
}

.popular-tag{
    position: absolute;
    top: -15px;
    right: 20px;

    background: #FFD54F !important;
    color: #000 !important;

    padding: 10px 20px;
    border-radius: 30px;

    font-size: 13px;
    font-weight: 800;

    opacity: 1 !important;
    filter: none !important;
    backdrop-filter: none !important;

    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    z-index: 99999;
}.industries-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}.industries-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 450px));
    justify-content: center;
    gap: 30px;
}.industries-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(400px,1fr));
    gap:40px;
    justify-content:center;
}.industries-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}.industries-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(600px,1fr));
    gap: 50px;
    width: 100%;
}#industries .container{
    width:min(96%,1600px);
}

.industries-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}.industry-card{
    width:100%;
    min-width:0;
}

.industry-preview img,
.industry-image img{
    width:100%;
    display:block;
}

.industry-content{
    padding:30px;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    width:100%;
    align-items:stretch;
}.industry-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
}

#industries .container{
    max-width: 1600px;
    width: 95%;
}@media(max-width:768px){

    .menu-btn{
        display:block !important;
        font-size:30px;
        color:#fff;
        cursor:pointer;
    }

    .nav-btn{
        display:none !important;
    }

    .nav-links{
        display:none;
    }

    .nav-links.active{
        
    }

    .hero-image img{
        display:block !important;
        max-width:100% !important;
    }
}@media(max-width:768px){

    .menu-btn{
        display:block !important;
        font-size:28px;
        color:#fff;
        cursor:pointer;
    }

    .nav-btn{
        display:none;
    }

    .nav-links{
        display:none;
    }

    .nav-links.active{
        
    }
}/* Desktop */
.menu-btn{
    display:none;
}

/* Mobile */
@media (max-width:768px){

    .menu-btn{
        display:block;
        font-size:30px;
        color:#fff;
        cursor:pointer;
    }

    .nav-links{
        display:none;
    }

    .nav-links.active{
        
    }

    .nav-btn{
        display:none;
    }
}.menu-btn{
    display:none;
}@media(max-width:992px){

    .nav-links.active{
        display:flex !important;
    }

}/* ===== FINAL MOBILE NAV FIX ===== */

@media (max-width: 992px){

    .menu-btn{
        display:block !important;
        font-size:30px !important;
        color:#fff !important;
        cursor:pointer !important;
        z-index:99999 !important;
    }

    .nav-btn{
        display:none !important;
    }

    .nav-links{
        display:none !important;
    }

    .nav-links.active{
        display:flex !important;
        flex-direction:column !important;
        position:absolute !important;
        top:90px !important;
        left:0 !important;
        width:100% !important;
        background:#111 !important;
        padding:30px !important;
        gap:20px !important;
        z-index:9999 !important;
    }
}.hero-image{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    visibility:visible !important;
    opacity:1 !important;
}

.hero-image img{
    display:block !important;
    width:450px !important;
    max-width:100% !important;
    height:auto !important;
    opacity:1 !important;
    visibility:visible !important;
    border:none !important;
}@media(max-width:768px){

    .hero-container{
        flex-direction:column;
    }

    .hero-image{
        display:flex !important;
        justify-content:center !important;
        margin-top:30px;
    }

    .hero-image img{
        display:block !important;
        width:90% !important;
        max-width:320px !important;
        height:auto !important;
    }
}@media (max-width: 768px) {

    .hero-image{
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: 30px !important;
    }

    .hero-image img{
        display: block !important;
        width: 90% !important;
        max-width: 320px !important;
        height: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

}