/*==================================================
                RESET & GLOBAL STYLES
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

li{
    list-style:none;
}

section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:12px;
}

.section-title p{
    color:#666;
    font-size:18px;
}


/*==================================================
                    NAVBAR
==================================================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
}

.navbar{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 8%;

    background:#ffffff;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

    transition:.35s;
    position:relative;

}

.logo{

    font-size:30px;

    font-weight:800;

    color:#E10600;

    letter-spacing:1px;

}

.nav-links{

    display:flex;
    align-items: center;

    gap:35px;

}
.nav-links li{
    list-style:none;
}

.nav-links a{

    color:#222;

    font-size:17px;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#E10600;

}

.quote-btn{

    background:#E10600;

    color:#fff;

    padding:14px 30px;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

}

.quote-btn:hover{

    background:#c00000;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(225,6,0,.25);

}
.desktop-quote{
    display:inline-block;
}

.mobile-quote{
    display:none;
}

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#222;
    border-radius:3px;
}

.navbar.scrolled{

    padding:16px 8%;

    box-shadow:0 8px 25px rgba(0,0,0,.12);

}


/*==================================================
                    HERO
==================================================*/

.hero{

    height:100vh;

    background:url("../images/hero.jpg") center/cover no-repeat;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    color:#fff;

}

.hero h1{

    font-size:68px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:20px;

}

.hero p{

    font-size:22px;

    color:#f0f0f0;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#E10600;

    color:#fff;

    padding:16px 40px;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    background:#c00000;

    transform:translateY(-4px);

}

.btn-secondary{

    border:2px solid #fff;

    color:#fff;

    padding:16px 40px;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

}

.btn-secondary:hover{

    background:#fff;

    color:#111;

    transform:translateY(-4px);

}
/*==================================================
                    PRODUCTS
==================================================*/

.products{
    background:#f8f9fa;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.product-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.product-card h3{
    padding:20px 20px 10px;
    color:#222;
    font-size:24px;
}

.product-card p{
    padding:0 20px 25px;
    color:#666;
    line-height:1.7;
    font-size:15px;
}


/*==================================================
                WHY CHOOSE AD GLOW
==================================================*/

.why-us{
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.why-card{
    background:#f8f9fa;
    border-radius:16px;
    padding:35px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.why-card:hover{
    background:#E10600;
    transform:translateY(-10px);
}

.why-card span{
    font-size:50px;
}

.why-card h3{
    margin:20px 0 15px;
    color:#222;
}

.why-card p{
    color:#666;
    line-height:1.7;
}

.why-card:hover h3,
.why-card:hover p{
    color:#fff;
}


/*==================================================
                    APPLICATIONS
==================================================*/

.applications{
    background:#f8f9fa;
}

.app-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.app-card{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    cursor:pointer;
}

.app-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.app-card:hover img{
    transform:scale(1.08);
}

.app-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.15));
}

.app-card h3{
    position:absolute;
    bottom:25px;
    left:25px;
    color:#fff;
    font-size:24px;
    z-index:2;
}
/*==================================================
                FEATURED PROJECTS
==================================================*/

.projects{
    background:#ffffff;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.project-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.project-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.project-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.project-info{
    padding:22px;
}

.project-info h3{
    color:#222;
    margin-bottom:8px;
    font-size:24px;
}

.project-info p{
    color:#666;
}


/*==================================================
                    CLIENTS
==================================================*/

.clients{
    background:#f8f9fa;
}

.client-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
    gap:40px;
    align-items:center;
}

.client-grid img{
    width:100%;
    max-height:90px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.75;
    transition:.35s;
}

.client-grid img:hover{
    filter:none;
    opacity:1;
    transform:scale(1.08);
}


/*==================================================
                    STATISTICS
==================================================*/

.stats{
    background:#111;
    color:#fff;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:35px;
    text-align:center;
}

.stat-box{
    padding:20px;
}

.stat-box h2{
    color:#E10600;
    font-size:58px;
    margin-bottom:10px;
}

.stat-box p{
    font-size:20px;
    color:#ddd;
}
/*==================================================
                    CTA
==================================================*/

.cta{
    background:linear-gradient(135deg,#E10600,#C00000);
    text-align:center;
    color:#fff;
}

.cta h2{
    font-size:44px;
    margin-bottom:20px;
}

.cta p{
    max-width:750px;
    margin:auto;
    margin-bottom:35px;
    font-size:18px;
    line-height:1.8;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:#E10600;
    padding:16px 42px;
    border-radius:8px;
    font-weight:600;
    transition:.35s;
}

.cta-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-4px);
}


/*==================================================
                    FOOTER
==================================================*/

.footer{
    background:#111;
    color:#ddd;
    padding:70px 8% 25px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer h2,
.footer h3{
    color:#fff;
    margin-bottom:18px;
}

.footer p{
    line-height:1.8;
}

.footer ul{
    padding:0;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#ddd;
    transition:.3s;
}

.footer ul li a:hover{
    color:#E10600;
}

.footer-bottom{
    margin-top:45px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
    text-align:center;
    color:#999;
}


/*==================================================
                WHATSAPP BUTTON
==================================================*/

.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:95px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
    z-index:1000;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
}


/*==================================================
                BACK TO TOP
==================================================*/

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#E10600;
    color:#fff;
    cursor:pointer;
    font-size:22px;
    display:none;
    transition:.3s;
    z-index:1000;
}

#topBtn:hover{
    background:#C00000;
}


/*==================================================
                SCROLL ANIMATION
==================================================*/

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}



/*==================================================
                PRODUCT SHOWCASE
==================================================*/

.product-showcase{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    padding:100px 8%;
    background:#fff;
}

.product-image img{
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.product-details h2{
    font-size:42px;
    margin-bottom:20px;
    color:#222;
}

.product-details p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.product-details h3{
    margin-bottom:15px;
}

.feature-list{
    margin-bottom:35px;
}

.feature-list li{
    margin-bottom:12px;
    color:#444;
    font-size:17px;
}
.product-showcase.reverse{

    direction:rtl;

}

.product-showcase.reverse .product-details{

    direction:ltr;

}
/*==================================================
            PRODUCT COMPARISON
==================================================*/

.comparison-section{

    padding:100px 8%;

    background:#f8f9fb;

}

.comparison-table{

    overflow-x:auto;

    margin-top:40px;

}

.comparison-table table{

    width:100%;

    border-collapse:collapse;

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.comparison-table th{

    background:#111;

    color:#fff;

    padding:18px;

    font-size:18px;

}

.comparison-table td{

    padding:18px;

    text-align:center;

    border-bottom:1px solid #eee;

}

.comparison-table tbody tr:hover{

    background:#f4f4f4;

}
/*==================================================
                PRODUCT CTA
==================================================*/

.product-cta{

    background:linear-gradient(135deg,#111,#333);

    color:#fff;

    text-align:center;

    padding:100px 8%;

}

.product-cta h2{

    font-size:42px;

    margin-bottom:20px;

}

.product-cta p{

    max-width:700px;

    margin:0 auto 35px;

    line-height:1.8;

    color:#ddd;

}
/*==================================================
                ABOUT SECTION
==================================================*/

.about-section{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

padding:100px 8%;

}

.about-image img{

width:100%;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.about-content h2{

font-size:44px;

margin-bottom:20px;

}

.about-content p{

line-height:1.8;

margin-bottom:20px;

color:#666;

}
/*==================================================
                MISSION & VISION
==================================================*/

.mission-section{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    padding:100px 8%;

    background:#f8f9fb;

}

.mission-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.mission-card:hover{

    transform:translateY(-10px);

}

.mission-card i{

    font-size:55px;

    color:#f5b400;

    margin-bottom:20px;

}

.mission-card h2{

    margin-bottom:20px;

    color:#222;

}

.mission-card p{

    color:#666;

    line-height:1.8;

}
/*==================================================
            WHY CHOOSE AD GLOW
==================================================*/

.why-about{

    padding:100px 8%;

    background:#fff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:50px;

}

.why-card{

    background:#fff;

    padding:35px;

    text-align:center;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.why-card i{

    font-size:50px;

    color:#f5b400;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

    color:#222;

}

.why-card p{

    color:#666;

    line-height:1.7;

}
/*==================================================
                OUR PROCESS
==================================================*/

.process-section{

    padding:100px 8%;

    background:#f8f9fb;

}

.process-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:35px;

    margin-top:50px;

}

.process-step{

    background:#fff;

    padding:35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.process-step:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.process-icon{

    width:80px;

    height:80px;

    background:#f5b400;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 25px;

}

.process-icon i{

    color:#fff;

    font-size:32px;

}

.process-step h3{

    margin-bottom:15px;

    color:#222;

}

.process-step p{

    color:#666;

    line-height:1.7;

}
/*==================================================
            INDUSTRIES WE SERVE
==================================================*/

.industries-section{

    padding:100px 8%;

    background:#fff;

}

.industries-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    margin-top:50px;

}

.industry-card{

    background:#fff;

    padding:35px 20px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.industry-card i{

    font-size:48px;

    color:#f5b400;

    margin-bottom:20px;

}

.industry-card h3{

    font-size:20px;

    color:#222;

}
/*==================================================
                CONTACT INFO
==================================================*/

.contact-info{

padding:100px 8%;

background:#fff;

}

.contact-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

margin-top:50px;

}

.contact-card{

background:#fff;

padding:40px;

border-radius:18px;

text-align:center;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.3s;

}

.contact-card:hover{

transform:translateY(-10px);

}

.contact-card i{

font-size:50px;

color:#f5b400;

margin-bottom:20px;

}

.contact-card h3{

margin-bottom:15px;

}

.contact-card p{

color:#666;

}
/*==================================================
                CONTACT FORM
==================================================*/

.contact-section{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    padding:100px 8%;

    background:#f8f9fb;

}

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.contact-form h2{

    margin-bottom:30px;

    font-size:36px;

}

.input-group{

    margin-bottom:20px;

}

.input-group input,
.input-group textarea{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    outline:none;

    transition:.3s;

    font-family:'Poppins',sans-serif;

}

.input-group input:focus,
.input-group textarea:focus{

    border-color:#f5b400;

}

.contact-map iframe{

    width:100%;

    height:100%;

    min-height:550px;

    border:none;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}
/*==================================================
                    FAQ
==================================================*/

.faq-section{

    padding:100px 8%;

    background:#fff;

}

.faq-container{

    max-width:900px;

    margin:50px auto 0;

}

.faq-container details{

    background:#fff;

    margin-bottom:18px;

    padding:20px 25px;

    border-radius:12px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.faq-container summary{

    cursor:pointer;

    font-weight:600;

    font-size:18px;

}

.faq-container p{

    margin-top:15px;

    color:#666;

    line-height:1.7;

}
/*================ HAMBURGER MENU ================*/

.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:5px;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#222;
    border-radius:3px;
}

.mobile-quote{
    display:none;
}

.desktop-quote{
    display:inline-block;
}

/*================ MOBILE NAVBAR ================*/

@media(max-width:768px){

    .navbar{
        padding:16px 20px;
    }

    .menu-toggle{
        display:flex;
    }

    .desktop-quote{
        display:none;
    }

    .mobile-quote{
        display:block;
        margin-top:20px;
    }

    .nav-links{

        display:none;

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#fff;

        flex-direction:column;

        align-items:center;

        gap:25px;

        padding:30px 0;

        box-shadow:0 10px 20px rgba(0,0,0,.08);

    }

    .nav-links.active{
        display:flex;
    }

}
/*==================================================
                RESPONSIVE DESIGN
==================================================*/

@media(max-width:992px){

    .hero h1{
        font-size:52px;
    }

    .hero p{
        font-size:18px;
    }

    .navbar{
        padding:18px 6%;
    }

    .nav-links{
        gap:20px;
    }

}

@media(max-width:768px){

    section{
        padding:80px 6%;
    }

    .hero h1{
        font-size:42px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .section-title h2{
        font-size:34px;
    }

    .stat-box h2{
        font-size:42px;
    }

    /* About Page */

    .about-section{

        grid-template-columns:1fr;

        gap:40px;

        text-align:center;

    }

    .about-content h2{

        font-size:36px;

    }

    .about-image img{

        width:100%;

    }
    /* Product Page */

    .product-showcase{

        grid-template-columns:1fr;

        gap:40px;

        text-align:center;

    }

    .product-image img{

        width:100%;

    }

    .product-details h2{

        font-size:34px;

    }

/* Fix reverse layout on mobile */

    .product-showcase.reverse{

        direction:ltr;

    }

    /* Contact Page */

    .contact-section{

        grid-template-columns:1fr;

        gap:40px;

    }

    .contact-form{

        padding:30px;

    }

    .contact-form h2{

        font-size:32px;

    }

    .contact-map iframe{

        width:100%;

    min-height:350px;

    }

}

@media(max-width:576px){

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:16px;
    }

    .logo{
        font-size:24px;
    }
    .contact-section{
        grid-template-columns:1fr;
    }

    .contact-map iframe{
        width:100%;
        min-height:350px;
    }

    .contact-form{
        padding:30px;
    }
}
#result{
    margin-top:20px;
    font-weight:600;
    text-align:center;
}