/* ===========================
GOOGLE FONT & RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#222;
    line-height:1.6;
}

/* ===========================
CONTAINER
=========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
LINKS
=========================== */

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

/* ===========================
HEADER
=========================== */

header{
    width:100%;
    background:#ffffff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo img{
    height:80px;
    width:auto;
    display:block;
}

.logo{
    display:flex;
    align-items:center;
}

nav ul{
    display:flex;
    gap:30px;
}

nav ul li a{
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#0066ff;
}

.nav-btn{
    background:#0066ff;
    color:#fff;
    padding:12px 26px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.nav-btn:hover{
    background:#0052cc;
}

/* ===========================
HERO SECTION
=========================== */

.hero{
    padding:80px 0;
    background:#f5f9ff;
}

.hero-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-left{
    flex:1;
}

.hero-left h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:25px;
    color:#111;
}

.hero-left p{
    font-size:18px;
    color:#555;
    margin-bottom:35px;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.feature-card{
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-6px);
}

.feature-card h3{
    font-size:18px;
    color:#0066ff;
    margin-bottom:10px;
}

.feature-card p{
    font-size:14px;
    color:#666;
    margin:0;
}

/* ===========================
RIGHT SIDE
=========================== */

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.support-card{
    width:100%;
    max-width:470px;
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.support-card h2{
    font-size:30px;
    margin-bottom:10px;
}

.support-card p{
    color:#666;
    margin-bottom:25px;
}

/* ===========================
SUPPORT FORM
=========================== */

.support-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.support-form input,
.support-form textarea{

    width:100%;
    padding:16px 18px;

    border:1px solid #d8d8d8;

    border-radius:10px;

    outline:none;

    font-size:15px;

    font-family:'Poppins',sans-serif;

    transition:.3s;

    background:#fff;

}

.support-form input:focus,
.support-form textarea:focus{

    border-color:#0066ff;

    box-shadow:0 0 0 4px rgba(0,102,255,.10);

}

.support-form textarea{

    resize:vertical;

    min-height:140px;

}

.support-form button{

    width:100%;

    padding:17px;

    border:none;

    border-radius:10px;

    background:#0066ff;

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.support-form button:hover{

    background:#0052cc;

    transform:translateY(-2px);

}

.support-form button:active{

    transform:scale(.98);

}

/* ===========================
SUCCESS MESSAGE
=========================== */

#success-message{

    background:#eef8f0;

    border:2px solid #4CAF50;

    border-radius:12px;

    padding:30px;

    text-align:center;

    margin-top:20px;

}

#success-message h3{

    color:#28a745;

    font-size:28px;

    margin-bottom:12px;

}

#success-message p{

    color:#444;

    margin-bottom:10px;

    font-size:16px;

}

/* ===========================
TECHNICIAN SECTION
=========================== */

.technician{

    padding:100px 0;

    background:#ffffff;

}

.technician-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

}

.technician-image{

    flex:1;

    text-align:center;

}

.technician-image img{

    width:100%;

    max-width:500px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.technician-content{

    flex:1;

}

.section-tag{

    display:inline-block;

    background:#0066ff;

    color:#fff;

    padding:8px 20px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:20px;

}

.technician-content h2{

    font-size:40px;

    margin-bottom:20px;

    color:#111;

}

.technician-content p{

    color:#666;

    margin-bottom:30px;

    line-height:1.8;

}

.support-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.support-item{

    background:#f7f9fc;

    border-radius:12px;

    padding:20px;

    transition:.3s;

}

.support-item:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.support-item h4{

    color:#0066ff;

    margin-bottom:8px;

    font-size:18px;

}

.support-item p{

    margin:0;

    color:#666;

    font-size:14px;

}

/* ===========================
WHY CHOOSE US
=========================== */

.why-us{

    padding:100px 0;

    background:#f7f9fc;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    color:#111;

    margin-bottom:15px;

}

.section-title p{

    color:#666;

    max-width:700px;

    margin:auto;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.why-card{

    background:#fff;

    padding:35px 25px;

    border-radius:16px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.why-card:hover{

    transform:translateY(-10px);

}

.icon{

    font-size:45px;

    margin-bottom:20px;

}

.why-card h3{

    font-size:22px;

    margin-bottom:12px;

    color:#0066ff;

}

.why-card p{

    color:#666;

    font-size:15px;

}

/* ===========================
SERVICES
=========================== */

.services{

    padding:100px 0;

    background:#ffffff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.service-icon{

    width:80px;

    height:80px;

    background:#0066ff;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin:auto;

    margin-bottom:25px;

}

.service-card h3{

    font-size:22px;

    margin-bottom:15px;

    color:#111;

}

.service-card p{

    color:#666;

    line-height:1.8;

}

/* ===========================
STATISTICS
=========================== */

.stats{

    padding:90px 0;

    background:#0066ff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    text-align:center;

    color:#fff;

}

.stat-box h2{

    font-size:52px;

    font-weight:700;

    margin-bottom:10px;

}

.stat-box p{

    font-size:18px;

    opacity:.95;

}

/* ===========================
SUPPORTED PRINTERS
=========================== */

.models{

    padding:100px 0;

    background:#ffffff;

}

.models-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.model-card{

    background:#f7f9fc;

    border-radius:12px;

    padding:25px;

    text-align:center;

    font-weight:600;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.model-card:hover{

    background:#0066ff;

    color:#fff;

    transform:translateY(-6px);

}

/* ===========================
CUSTOMER REVIEWS
=========================== */

.reviews{

    padding:100px 0;

    background:#f7f9fc;

}

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.review-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.review-card:hover{

    transform:translateY(-8px);

}

.stars{

    color:#ffb400;

    font-size:24px;

    margin-bottom:18px;

}

.review-card p{

    color:#555;

    line-height:1.8;

    margin-bottom:20px;

}

.review-card h4{

    color:#0066ff;

    font-size:17px;

}

/* ===========================
FAQ
=========================== */

.faq{

    padding:100px 0;

    background:#ffffff;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#f7f9fc;

    padding:25px;

    margin-bottom:20px;

    border-radius:14px;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.faq-item h3{

    color:#0066ff;

    margin-bottom:12px;

    font-size:22px;

}

.faq-item p{

    color:#666;

    line-height:1.8;

}

/* ===========================
CONTACT
=========================== */

.contact{

    padding:100px 0;

    background:#f7f9fc;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

}

.contact-info{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.contact-card{

    background:#fff;

    padding:30px;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-card h3{

    color:#0066ff;

    margin-bottom:12px;

}

.contact-side{

    background:#ffffff;

    padding:45px;

    border-radius:18px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.contact-side h2{

    margin-bottom:20px;

}

.contact-side p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.contact-buttons{

    display:flex;

    gap:20px;

}

.primary-btn,
.secondary-btn,
.cta-btn,
.footer-btn{

    display:inline-block;

    padding:14px 28px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.primary-btn,
.cta-btn,
.footer-btn{

    background:#0066ff;

    color:#fff;

}

.primary-btn:hover,
.cta-btn:hover,
.footer-btn:hover{

    background:#0052cc;

}

.secondary-btn{

    border:2px solid #0066ff;

    color:#0066ff;

}

.secondary-btn:hover{

    background:#0066ff;

    color:#fff;

}

/* ===========================
CALL TO ACTION
=========================== */

.cta{

    padding:90px 0;

    background:#0066ff;

}

.cta-box{

    text-align:center;

    color:#fff;

}

.cta-box h2{

    font-size:42px;

    margin-bottom:20px;

}

.cta-box p{

    max-width:700px;

    margin:auto auto 30px;

    line-height:1.8;

}

/* ===========================
FOOTER
=========================== */

.footer{

    background:#111827;

    color:#ffffff;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

    margin-bottom:40px;

}

.footer-column h2,
.footer-column h3{

    margin-bottom:20px;

}

.footer-column p{

    color:#c7c7c7;

    line-height:1.8;

}

.footer-column ul{

    list-style:none;

    padding:0;

}

.footer-column ul li{

    margin-bottom:12px;

}

.footer-column ul li a{

    color:#c7c7c7;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#ffffff;

}

.footer hr{

    border:none;

    height:1px;

    background:#2d3748;

    margin:30px 0;

}

.copyright{

    text-align:center;

    color:#c7c7c7;

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:992px){

.hero-container,
.technician-wrapper,
.contact-wrapper{

display:block;

}

.hero-left,
.hero-right,
.technician-image,
.technician-content{

width:100%;

margin-bottom:40px;

}

.hero-features,
.support-list,
.services-grid,
.why-grid,
.stats-grid,
.models-grid,
.reviews-grid,
.footer-grid,
.contact-info{

grid-template-columns:repeat(2,1fr);

}

nav{

flex-direction:column;

height:auto;

padding:20px 0;

}

nav ul{

margin:20px 0;

flex-wrap:wrap;

justify-content:center;

}

}

@media(max-width:768px){

.hero-left h1{

font-size:36px;

}

.section-title h2,
.technician-content h2,
.cta-box h2{

font-size:30px;

}

.hero-features,
.support-list,
.services-grid,
.why-grid,
.stats-grid,
.models-grid,
.reviews-grid,
.footer-grid,
.contact-info{

grid-template-columns:1fr;

}

.contact-buttons{

flex-direction:column;

}

.primary-btn,
.secondary-btn,
.cta-btn{

width:100%;

text-align:center;

}

.hero{

padding:60px 0;

}

.technician,
.services,
.why-us,
.models,
.reviews,
.contact,
.faq{

padding:70px 0;

}

}

img{

max-width:100%;

display:block;

}