/* ===========================
   PIXORAR WEBSITE
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Poppins,sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.6;
    padding-top:0;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

section{
    padding:80px 0;
}
/* ===========================
   PREMIUM HEADER
=========================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(0,0,0,.08);
    transition:all .35s ease;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 0;
}

.logo{
    font-size:30px;
    font-weight:800;
    color:#2563EB;   /* Single Blue Color */
    letter-spacing:.5px;
}

.nav-menu{
    display:flex;
    align-items:center;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:32px;
}

.nav-links a{
    color:#0B1F3A;
    font-weight:600;
    position:relative;
    transition:.3s;
}

.nav-links a:hover{
    color:#2563EB;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#2563EB;
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

/* Hamburger Menu */

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:28px;
    height:3px;
    background:#2563EB;
    border-radius:5px;
    transition:0.3s;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:190px;
    padding:14px 28px;
    background:#2563EB;
    color:#fff;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-2px);
    background:#174fcf;
    box-shadow:0 12px 30px rgba(37,99,235,.25);
}

.hamburger{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    flex-direction:column;
    gap:5px;
}

.hamburger span{
    width:26px;
    height:3px;
    background:#0B1F3A;
    border-radius:4px;
}
/* ===========================
   HERO
=========================== */

.hero{
    min-height:calc(100vh - 80px);
    display:flex;
    align-items:center;
    padding:90px 0 80px;
    background:linear-gradient(135deg,#f8fbff 0%,#eef5ff 50%,#ffffff 100%);
    overflow:hidden;
    position:relative;
}

.hero .container{
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

.hero h1{
    font-size:60px;
    line-height:1.15;
    font-weight:800;
    color:#111;
    margin-bottom:24px;
}

.hero h1 span{
    color:#0A66C2;
}

.hero p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:35px;
    max-width:560px;
}

.hero-btn{
    background:#0A66C2;
    color:#fff;
    padding:18px 40px;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    display:inline-block;
    white-space: nowrap;
    transition:.3s;
}

.hero-btn:hover{
    background:#084d94;
}

.hero-tag{
    display:inline-block;
    background:#0A66C2;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:20px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:50px;
    align-items:center;
}

.hero-left{
    text-align:left;
}

.hero-right{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.hero-right img{
    width:100%;
    max-width:520px;
    border-radius:24px;
    box-shadow:0 35px 80px rgba(10,102,194,.18);
    transition:.4s ease;
}

.hero-right img:hover{
    transform:translateY(-8px);
}

.hero-buttons{
    justify-content:flex-start;
}

.hero-stats{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:25px;
    width:100%;
}

.stat{
    background:#fff;
    padding:18px 20px;
    border-radius:18px;
    width:150px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.stat:hover{
    transform:translateY(-8px);
}

.stat h3{
    font-size:34px;
    color:#0A66C2;
    margin-bottom:8px;
}

.stat p{
    font-size:15px;
    margin:0;
    color:#666;
}
/*=========================
TRUST BAR
==========================*/

.trust-bar{

background:#0A66C2;

padding:35px 0;

color:#fff;

}

.trust-container{

display:flex;

justify-content:space-between;

text-align:center;

gap:20px;

}

.trust-item h3{

font-size:32px;

font-weight:700;

margin-bottom:8px;

}

.trust-item p{

font-size:16px;

opacity:.9;

}
/*=========================
INDUSTRIES
==========================*/

.industries{
    padding:90px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:50px;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.industry-card{
    background:#fff;
    border-radius:15px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    font-size:50px;
}

.industry-card:hover{
    transform:translateY(-8px);
}

.industry-card h3{
    margin-top:20px;
    font-size:22px;
    color:#222;
}
/* ===========================
   SERVICES
=========================== */

.services{
    padding:120px 0 100px;
    background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}

.section-title{
    text-align:center;
    font-size:48px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.section-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:60px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.service-card{
    background:#fff;
    padding:45px 30px;
    min-height:300px;
    border-radius:22px;
    text-align:center;
    border:1px solid #e8eef8;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:all .35s ease;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(10,102,194,.15);
    border-color:#0A66C2;
}


.service-card h3{

    margin:20px 0 10px;

    font-size:24px;

}

.service-card p{

    color:#666;

    font-size:16px;

    line-height:1.7;

}

.service-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#0A66C2,#3b82f6);
    border-radius:20px;
    font-size:38px;
    color:#fff;
    transition:.35s ease;
}

.service-card:hover .service-icon{
    transform:translateY(-5px) rotate(8deg) scale(1.08);
}
/* ===========================
   PRICING
=========================== */

.pricing{
    background:#f7f9fc;
    padding:90px 0;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.price-card{
    background:#fff;
    padding:45px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.price-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.featured{
    border:3px solid #0d6efd;
    transform:scale(1.05);
}

.price-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.price{
    font-size:42px;
    color:#0d6efd;
    font-weight:700;
    margin-bottom:25px;
}

.price span{
    font-size:18px;
    color:#666;
}

.price-card ul{
    list-style:none;
    margin:30px 0;
}

.price-card ul li{
    margin:15px 0;
    color:#555;
}

.price-btn{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:14px 35px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.price-btn:hover{
    background:#0849a6;
}
.badge{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}
/* ===========================
   PORTFOLIO
=========================== */

.portfolio{
    padding:90px 0;
    background:#ffffff;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.portfolio-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:all .35s ease;
    cursor:pointer;
}

.portfolio-item:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(10,102,194,.18);
}

.portfolio-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

.portfolio-item h3{

    padding:25px;

    text-align:center;

    font-size:24px;

}

.portfolio-item:hover img{
    transform:scale(1.08);
}

.portfolio-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding:25px;
    background:linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
    opacity:0;
    transition:.35s ease;
}

.portfolio-item:hover .portfolio-overlay{
    opacity:1;
}

.portfolio-overlay h3{
    color:#fff;
    font-size:24px;
    margin:0;
}
/* ===========================
ABOUT
=========================== */

.about{
    padding:120px 0;
    background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    width:100%;
    max-width:560px;
    border-radius:24px;
    display:block;
    box-shadow:0 30px 70px rgba(10,102,194,.18);
    transition:.4s ease;
}

.about-image img:hover{
    transform:translateY(-8px) scale(1.02);
}

.about-content span{
    display:inline-block;
    color:#1565c0;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:10px;
}

.about-content h2{
    font-size:48px;
    line-height:1.2;
    font-weight:800;
    margin:18px 0 24px;
    color:#111;
}

.about-content p{
    color:#555;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.about-content ul{
    list-style:none;
}

.about-content li{
    margin-bottom:16px;
    line-height:1.6;
    font-size:18px;
    color:#333;
    font-weight:500;
}

.about-content .hero-btn{
    margin-top:20px;
}
/* ===========================
CONTACT
=========================== */

/* Contact Section */
.contact{
    padding:120px 0;
    background:linear-gradient(135deg,#0A66C2,#084d94);
    color:#fff;
}

.contact h2{
    text-align:center;
    font-size:42px;
    margin-bottom:10px;
    color:#fff;
}

.contact .section-title p{
    text-align:center;
    color:#dbe8ff;
    margin-bottom:50px;
    font-size:18px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.contact-info{
    background:rgba(255,255,255,.08);
    padding:35px;
    border-radius:20px;
}

.contact-info h3{
    margin-bottom:20px;
    font-size:28px;
}

.contact-info p{
    margin-bottom:18px;
    line-height:1.8;
}

.contact-info{
    transition:.35s ease;
}

.contact-info:hover{
    transform:translateY(-6px);
}

.contact-form{
    display:grid;
    gap:18px;
    background:#fff;
    padding:35px;
    border-radius:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #dfe6f2;
    border-radius:10px;
    font-size:16px;
    outline:none;
}

.contact-form textarea{
    min-height:140px;
    resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border:2px solid #0A66C2;
}

.contact-form button{
    background:#0A66C2;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#084d94;
    transform:translateY(-2px);
}
/* ==========================
   FOOTER
========================== */

.footer{
    background:#111827;
    color:#fff;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer h2{
    color:#fff;
    margin-bottom:15px;
}

.footer h3{
    margin-bottom:15px;
    color:#fff;
}

.footer p{
    color:#d1d5db;
    line-height:1.8;
    margin-bottom:10px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:10px;
}

.footer a{
    color:#d1d5db;
    transition:.3s;
}

.footer a:hover{
    color:#3b82f6;
    padding-left:5px;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.3s ease;
}

.footer-social a:hover{
    background:#0A66C2;
    transform:translateY(-3px);
}

.copyright{
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    color:#9ca3af;
    font-size:15px;
}
/* ==========================
   FLOATING WHATSAPP
========================== */

.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    z-index:999;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 12px 35px rgba(0,0,0,.3);
}

.whatsapp-float i{
    font-size:36px;
    color:#fff;
}

.hero-stats{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:30px;
    flex-wrap:nowrap;
}

.stat{
    text-align:center;
}

.stat h3{
    font-size:42px;
    color:#0A66C2;
    margin-bottom:8px;
}

.stat p{
    color:#666;
    font-size:16px;
}

/* ===============================
   Mobile Navigation
================================= */

@media (max-width:768px){

    .nav-links{
        display:flex;
        flex-direction:column;
        position:fixed;
        top:70px;
        right:-100%;
        width:250px;
        background:#fff;
        padding:30px;
        gap:20px;
        transition:0.3s;
        box-shadow:0 10px 30px rgba(0,0,0,.15);
    }

    .nav-links.active{
        right:0;
    }

    .hamburger{
        display:flex;
    }

    .nav-btn{
        display:none;
    }

}