/* =========================
GLOBAL RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#111827;
    overflow-x:hidden;
    font-size:12px;
    line-height:1.7;
}

/* =========================
CONTAINER
========================= */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* =========================
IMAGES
========================= */

img{
    width:100%;
    display:block;
}

/* =========================
LINKS
========================= */

a{
    text-decoration:none;
}

/* =========================
HEADINGS
========================= */

h1{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
}

h2{
    font-size:28px;
    line-height:1.3;
    font-weight:800;
}

h3{
    font-size:18px;
    font-weight:700;
}

p{
    font-size:12px;
    color:#64748b;
}

/* =========================
BUTTONS
========================= */

.btn-primary{
    background:linear-gradient(
        90deg,
        #2563eb,
        #06b6d4
    );
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:11px;
    font-weight:700;
    transition:0.35s ease;
    box-shadow:0 12px 30px rgba(37,99,235,0.25);
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(37,99,235,0.35);
}

.btn-secondary{
    background:#ffffff;
    color:#111827;
    padding:14px 28px;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:11px;
    font-weight:700;
    transition:0.35s ease;
    border:1px solid rgba(255,255,255,0.25);
}

.btn-secondary:hover{
    transform:translateY(-4px);
    background:#06b6d4;
    color:#fff;
}

/* =========================
SECTION TAG
========================= */

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(37,99,235,0.08);
    color:#2563eb;
    font-size:10px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

/* =========================
SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    margin-bottom:15px;
}

.section-title p{
    max-width:650px;
    margin:auto;
}

/* =========================
HERO SLIDER
========================= */

.hero-slider-section{
    position:relative;
}

.heroSwiper{
    width:100%;
    height:88vh;
}

.swiper-slide{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

/* BACKGROUNDS */

.slide-one{
    background:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2070&auto=format&fit=crop')
    center/cover no-repeat;
}

.slide-two{
    background:url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=2070&auto=format&fit=crop')
    center/cover no-repeat;
}

.slide-three{
    background:url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=2070&auto=format&fit=crop')
    center/cover no-repeat;
}

/* OVERLAY */

.slide-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        135deg,
        rgba(2,6,23,0.82),
        rgba(37,99,235,0.55)
    );
}

/* HERO CONTENT */

.slide-content{
    position:relative;
    z-index:5;
    width:100%;
    max-width:850px;
    margin:auto;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding-top:80px;
}

/* HERO LOGO */

.hero-logo{
    width:120px;
    margin:18px auto;
    filter:
    drop-shadow(0 15px 25px rgba(0,0,0,0.3));
}

/* HERO TAG */

.hero-tag{
    display:inline-block;
    color:#ffffff;
    letter-spacing:3px;
    font-size:10px;
    font-weight:700;
    margin-bottom:12px;
}

/* HERO TITLE */

.slide-content h1{
    color:#ffffff;
    margin-bottom:18px;
    text-align:center;
}

/* HERO TEXT */

.slide-content p{
    color:#e2e8f0;
    font-size:12px;
    max-width:700px;
    margin:auto;
    text-align:center;
}

/* HERO BUTTONS */

.hero-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:30px;
}

/* PAGINATION */

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#ffffff;
    opacity:0.6;
}

.swiper-pagination-bullet-active{
    background:#06b6d4;
    opacity:1;
}

/* =========================
ABOUT SECTION
========================= */

.company-intro{
    padding:110px 0;
}

.intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.intro-image img{
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.intro-content h2{
    margin-bottom:20px;
}

.intro-content p{
    margin-bottom:18px;
}

/* FEATURES */

.intro-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin:30px 0;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    background:#ffffff;
    padding:16px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.feature-item i{
    color:#2563eb;
    font-size:16px;
}

.feature-item span{
    font-size:11px;
    font-weight:600;
}

/* =========================
SERVICES
========================= */

.services-section{
    padding:110px 0;
    background:#ffffff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/* CARD */

.service-card{
    background:#ffffff;
    border-radius:28px;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    position:relative;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.service-card img{
    height:240px;
    object-fit:cover;
}

/* CONTENT */

.service-content{
    padding:28px;
}

.service-content i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:
    linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:18px;
}

.service-content h3{
    margin-bottom:12px;
}

.service-content p{
    margin-bottom:20px;
    font-size:11px;
}

.service-content a{
    color:#2563eb;
    font-size:11px;
    font-weight:700;
}

/* =========================
WHY US
========================= */

.why-us-section{
    padding:110px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.why-image{
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.why-list{
    margin-top:35px;
}

.why-item{
    display:flex;
    gap:20px;
    margin-bottom:25px;
    background:#ffffff;
    padding:22px;
    border-radius:24px;
    box-shadow:0 12px 30px rgba(0,0,0,0.05);
}

.why-item i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:
    linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.why-item h3{
    margin-bottom:8px;
}

.why-item p{
    font-size:11px;
}

/* =========================
STATS
========================= */

.stats-section{
    padding:90px 0;
    background:
    linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    padding:40px 20px;
    border-radius:28px;
    text-align:center;
}

.stat-box h2{
    color:#ffffff;
    margin-bottom:10px;
}

.stat-box p{
    color:#e2e8f0;
    font-size:11px;
}

/* =========================
CTA
========================= */

.cta-section{
    padding:100px 0;
    background:#ffffff;
}

.cta-flex{
    background:
    linear-gradient(
        135deg,
        #0f172a,
        #2563eb
    );
    border-radius:35px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.cta-flex h2{
    color:#ffffff;
    margin-bottom:15px;
}

.cta-flex p{
    color:#e2e8f0;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .intro-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cta-flex{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:768px){

    h1{
        font-size:28px;
    }

    h2{
        font-size:22px;
    }

    h3{
        font-size:16px;
    }

    p{
        font-size:11px;
    }

    .heroSwiper{
        height:80vh;
    }

    .slide-content{
        padding:120px 20px 0;
    }

    .slide-content h1{
        font-size:28px;
    }

    .slide-content p{
        font-size:11px;
    }

    .hero-logo{
        width:95px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .intro-features{
        grid-template-columns:1fr;
    }

    .cta-flex{
        padding:40px 25px;
    }

}

@media(max-width:480px){

    body{
        font-size:10px;
    }

    h1{
        font-size:24px;
    }

    h2{
        font-size:20px;
    }

    .slide-content h1{
        font-size:24px;
    }

    .slide-content p{
        font-size:10px;
    }

    .btn-primary,
    .btn-secondary{
        padding:12px 18px;
        font-size:10px;
    }

    .company-intro,
    .services-section,
    .why-us-section,
    .stats-section,
    .cta-section{
        padding:80px 0;
    }

}

/* =========================
ABOUT PAGE STYLES
========================= */

/* HERO */
.about-hero{
    padding:110px 0;
    background:linear-gradient(135deg,#0f172a,#111827);
    color:#fff;
    text-align:center;
}

.about-hero h1{
    font-size:42px;
    margin-bottom:15px;
    font-weight:800;
}

.about-hero p{
    max-width:750px;
    margin:auto;
    font-size:15px;
    opacity:0.85;
    line-height:1.8;
}

/* ABOUT SECTION */
.about-section{
    padding:80px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-text h2{
    font-size:30px;
    margin-bottom:20px;
}

.about-text p{
    font-size:14px;
    line-height:1.9;
    margin-bottom:12px;
    color:#444;
}

.about-image img{
    width:100%;
    border-radius:14px;
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* MV SECTION */
.mv-section{
    padding:80px 0;
    background:#f8fafc;
}

.mv-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.mv-card{
    background:#fff;
    padding:28px;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    transition:0.35s ease;
    border-top:4px solid transparent;
}

.mv-card:hover{
    transform:translateY(-8px);
}

/* COLOR ACCENTS */
.mv-card.mission{
    border-top-color:#2563eb;
}

.mv-card.vision{
    border-top-color:#06b6d4;
}

.mv-card.values{
    border-top-color:#f97316;
}

.mv-card h3{
    margin-bottom:10px;
    font-size:18px;
}

/* WHY SECTION */
.why-section{
    padding:80px 0;
}

.why-section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:30px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.why-card{
    padding:22px;
    border:1px solid #eee;
    border-radius:12px;
    transition:0.3s ease;
    background:#fff;
}

.why-card:hover{
    transform:translateY(-6px);
    border-color:#2563eb;
    box-shadow:0 10px 20px rgba(0,0,0,0.06);
}

.why-card h4{
    color:#06b6d4;
    margin-bottom:10px;
}

/* CTA */
.about-cta{
    padding:80px 0;
    text-align:center;
    background:linear-gradient(90deg,#2563eb,#06b6d4);
    color:#fff;
}

.about-cta h2{
    font-size:28px;
    margin-bottom:10px;
}

.about-cta p{
    margin-bottom:20px;
    opacity:0.9;
}

.cta-btn{
    display:inline-block;
    padding:12px 28px;
    background:#fff;
    color:#2563eb;
    font-weight:700;
    border-radius:50px;
    text-decoration:none;
    transition:0.3s ease;
}

.cta-btn:hover{
    transform:translateY(-4px);
}

/* RESPONSIVE */
@media(max-width:768px){

    .about-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .about-hero h1{
        font-size:30px;
    }
}

/* =========================
SERVICES PAGE
========================= */

.services-hero{
    padding:110px 0;
    background:linear-gradient(135deg,#0f172a,#111827);
    color:#fff;
    text-align:center;
}

.services-hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.services-hero p{
    max-width:750px;
    margin:auto;
    opacity:0.85;
    line-height:1.8;
}

/* SERVICE CARDS */
.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.service-card{
    background:#fff;
    padding:25px;
    border-radius:14px;
    text-align:center;
    border:1px solid #eee;
    transition:0.3s ease;
}

.service-card i{
    font-size:28px;
    color:#2563eb;
    margin-bottom:12px;
}

.service-card h3{
    margin-bottom:10px;
}

.service-card:hover{
    transform:translateY(-6px);
    border-color:#2563eb;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media(max-width:768px){

    .services-hero h1{
        font-size:30px;
    }
}

/* =========================
GALLERY PAGE
========================= */

.gallery-hero{
    padding:110px 0;
    background:linear-gradient(135deg,#0f172a,#111827);
    color:#fff;
    text-align:center;
}

.gallery-hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.gallery-hero p{
    max-width:750px;
    margin:auto;
    opacity:0.85;
    line-height:1.8;
}

/* GALLERY GRID */
.gallery-section{
    padding:80px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

/* ITEM */
.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:14px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:0.4s ease;
}

/* OVERLAY */
.gallery-item .overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    background:linear-gradient(transparent,rgba(0,0,0,0.8));
    color:#fff;
    opacity:0;
    transition:0.3s ease;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-item:hover .overlay{
    opacity:1;
}

/* RESPONSIVE */
@media(max-width:768px){

    .gallery-hero h1{
        font-size:30px;
    }

    .gallery-item img{
        height:200px;
    }
}

/* =========================
QUOTATION PAGE
========================= */

.quote-hero{
    padding:110px 0;
    background:linear-gradient(135deg,#0f172a,#111827);
    color:#fff;
    text-align:center;
}

.quote-hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.quote-hero p{
    max-width:750px;
    margin:auto;
    opacity:0.85;
    line-height:1.8;
}

/* LAYOUT */
.quote-section{
    padding:80px 0;
}

.quote-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:40px;
}

/* FORM */
.quote-form{
    background:#fff;
    padding:30px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.quote-form h2{
    margin-bottom:20px;
}

.form-group{
    margin-bottom:15px;
}

.form-group label{
    display:block;
    margin-bottom:6px;
    font-size:14px;
    color:#333;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#2563eb;
}

/* INFO BOX */
.quote-info h2{
    margin-bottom:20px;
}

.quote-box{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px;
    margin-bottom:12px;
    background:#f8fafc;
    border-radius:10px;
}

.quote-box i{
    color:#06b6d4;
}

/* RESPONSIVE */
@media(max-width:768px){

    .quote-grid{
        grid-template-columns:1fr;
    }

    .quote-hero h1{
        font-size:30px;
    }
}

/* =========================
CONTACT PAGE
========================= */

.contact-hero{
    padding:110px 0;
    background:linear-gradient(135deg,#0f172a,#111827);
    color:#fff;
    text-align:center;
}

.contact-hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.contact-hero p{
    max-width:750px;
    margin:auto;
    opacity:0.85;
    line-height:1.8;
}

/* LAYOUT */
.contact-section{
    padding:80px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:40px;
}

/* FORM */
.contact-form{
    background:#fff;
    padding:30px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.contact-form h2{
    margin-bottom:20px;
}

/* CONTACT INFO */
.contact-info h2{
    margin-bottom:20px;
}

.contact-box{
    display:flex;
    gap:12px;
    padding:15px;
    background:#f8fafc;
    border-radius:10px;
    margin-bottom:12px;
    align-items:center;
}

.contact-box i{
    font-size:18px;
    color:#06b6d4;
}

/* MAP */
.map-section{
    padding-bottom:80px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-hero h1{
        font-size:30px;
    }
}