/* =====================================================
   SP ENTERPRISES
   PREMIUM CORPORATE THEME
   Author: ChatGPT
===================================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

/* ================= RESET ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#071A2E;

    color:#fff;

    overflow-x:hidden;

    width:100%;

}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:min(90%,1280px);

    margin:auto;

    padding:0 20px;

}

/* ================= NAVBAR ================= */

.header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:9999;

}

.navbar{
    height:100px;

    display:flex;
    align-items:center;

    background:rgba(8,20,35,.75);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.4s ease;
}

.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:95%;
    max-width:1600px;
    margin:auto;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.logo img{
    height:65px;
    width:auto;
    display:block;
}

.logo-text{
    display:flex;
    align-items:center;
    gap:10px;
    white-space:nowrap;
}

.logo-sp{
    color:#ffffff;
    font-size:22px;
    font-weight:800;
    letter-spacing:4px;
}

.logo-enterprises{
    color:#D4AF37;
    font-size:22px;
    font-weight:800;
}

.nav-menu{

    display:flex;

    align-items:center;

    gap:40px;

    list-style:none;

}

.nav-menu a{

    color:#fff;

    font-size:16px;

    font-weight:600;

    letter-spacing:.5px;

    text-decoration:none;

    transition:.3s;

}

.nav-menu a:hover{

    color:#D6B25E;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#D6B25E;

    transition:.35s;

}

.nav-menu a:hover::after{

    width:100%;

}

.btn-nav{
    display:inline-block;
    padding:14px 32px;
    background:#D4AF37;
    color:#071A2E;
    font-weight:700;
    border-radius:999px;
    text-decoration:none;
    transition:.3s;
}

.btn-nav:hover{
    background:#E6C45A;
    color:#071A2E;
}

/* ================= HERO ================= */

.hero{
    position:relative;
    height:100vh;

    display:flex;
    align-items:center;
    justify-content:flex-start;

    padding-top:140px;

    overflow:hidden;
}

.hero video{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    transform:scale(1.08);

    filter:
        brightness(.55)
        contrast(1.12)
        saturate(1.08);

}

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to right,
        rgba(4,15,28,.88) 0%,
        rgba(4,15,28,.72) 40%,
        rgba(7,26,46,.55) 100%
    );

}

.hero-content{
    position: relative;
    z-index: 5;

    width: 100%;
    max-width:850px;

    margin-left: 90px;
    margin-top: 150px;
}

.hero-subtitle{

    font-size:12px;

    letter-spacing:2px;

    line-height:1.8;

    margin-bottom:16px;

}

.hero h1{
    font-size:72px;
    line-height:1.02;
    font-weight:900;

    max-width:820px;

    letter-spacing:-2px;

    margin:24px 0 32px;
}

.hero-text{
    font-size:24px;
    line-height:1.8;
    max-width:620px;
    color:rgba(255,255,255,.92);
    margin-top:35px;
    margin-bottom:45px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:20px;
    flex-wrap:wrap;
}

.hero-buttons a{
    padding:18px 38px;
    font-size:18px;
    font-weight:700;
}

.btn-primary{

    background:#D6B25E;

    color:#071A2E;

    padding:18px 42px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(214,178,94,.35);

}

.btn-secondary{

    border:2px solid #D6B25E;

    color:#fff;

    padding:18px 42px;

    border-radius:50px;

    transition:.35s;

}

.btn-secondary:hover{

    background:#D6B25E;

    color:#071A2E;

}

/* Hero Animation */

@keyframes heroFade{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ================= ABOUT ================= */

.about{

    background:#ffffff;

    padding:120px 0;

}

.about-grid{

    display:grid;

    grid-template-columns:1.3fr 1fr;

    gap:70px;

    align-items:center;

}

.section-tag{

    color:#D6B25E;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:18px;

    text-transform:uppercase;

}

.about h2{

    color:#071A2E;

    font-size:56px;

    max-width:650px;

    line-height:1.2;

    margin-bottom:25px;

}

.about p{

    color:#555;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:40px;

}

.about-features div{

    color:#071A2E;

    font-weight:600;

}

.about-features i{

    color:#D6B25E;

    margin-right:10px;

}

.about-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.stat-card{

    background:#fff;

    border-radius:18px;

    padding:40px 25px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    transition:.35s;

}

.stat-card:hover{

     transform:translateY(-12px);

     box-shadow:
         0 30px 70px rgba(0,0,0,.12);

}

.stat-card h3{

    font-size:64px;

    font-weight:800;

    color:#D6B25E;

    margin-bottom:12px;

}

.stat-card span{

    color:#071A2E;

    font-weight:600;

}

/*========================================
        SERVICES SECTION
========================================*/

.services{

    background:#071b2d;
    padding:100px 0;

}

.services .section-tag{

    text-align:left;
    color:#D6B25E;
    margin-bottom:15px;

}

.section-title{

    text-align:center;

    color:#fff;

    font-size:52px;

    font-weight:800;

    max-width:850px;

    margin:0 auto 20px;

    line-height:1.2;

}

.section-description{

    text-align:center;

    color:#b9c2ce;

    max-width:760px;

    margin:0 auto 70px;

    font-size:18px;

    line-height:1.8;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#10253D;

    padding:45px 35px;

    border-radius:20px;

    border-top:4px solid #D6B25E;

    transition:.35s;

    cursor:pointer;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.30);

}

.service-card i{

    font-size:48px;

    color:#D6B25E;

    margin-bottom:25px;

}

.service-card h3{

    color:#fff;

    margin-bottom:18px;

    font-size:26px;

}

.service-card p{

    color:#c5ced8;

    line-height:1.8;

}

/*==========================================
        WHY CHOOSE US
==========================================*/

.why-us{

    background:#ffffff;

    padding:120px 0;

}

.why-us .section-title{

    color:#071A2E;

}

.why-us .section-description{

    color:#555;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.why-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:22px;

    padding:45px 35px;

    text-align:left;

    transition:.35s ease;

    box-shadow:0 15px 45px rgba(0,0,0,.06);

    position:relative;

    overflow:hidden;

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:#D6B25E;

    transform:scaleX(0);

    transition:.35s;

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 70px rgba(0,0,0,.12);

}

.why-card i{

    font-size:52px;

    color:#D6B25E;

    margin-bottom:25px;

    transition:.35s;

}

.why-card:hover i{

    transform:scale(1.12);

}

.why-card h3{

    color:#071A2E;

    font-size:28px;

    margin-bottom:18px;

}

.why-card p{

    color:#666;

    line-height:1.8;

    font-size:17px;

}

/*==========================================
        INDUSTRIES SECTION
==========================================*/

.industries{

    background:#071A2E;

    padding:120px 0;

}

.industries .section-title{

    color:#ffffff;

}

.industries .section-description{

    color:#c5ced8;

}

.industries-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.industry-card{

    background:#10253D;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:50px 30px;

    text-align:center;

    transition:.35s ease;

    cursor:pointer;

}

.industry-card:hover{

    transform:translateY(-10px);

    border-color:#D6B25E;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}

.industry-card i{

    font-size:55px;

    color:#D6B25E;

    margin-bottom:25px;

    transition:.35s;

}

.industry-card:hover i{

    transform:scale(1.15);

}

.industry-card h3{

    color:#ffffff;

    font-size:28px;

    font-weight:700;

}

/*==========================================
        PROCESS SECTION
==========================================*/

.process{
    padding:120px 0;
    background:#F8F9FC;
}

.process .section-title{
    color:#071A2E;
}

.process .section-description{
    color:#071A2E;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:90px;
}

.process-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;

    position:relative;
    overflow:hidden;
}

.process-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#D6B25E;
}

.process-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.process-card span{
    width:70px;
    height:70px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#D6B25E;
    color:#071A2E;
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
}

.process-card h3{
    color:#071A2E;
    margin-bottom:15px;
    font-size:24px;
}

.process-card p{
    color:#666;
    line-height:1.8;
}

/*==========================================
        CONTACT SECTION
==========================================*/

.contact{

    background:#071A2E;

    padding:80px 0;

}

.contact .section-title{
    color:#ffffff;
}

.contact .section-description{
    color:#C9D3DD;
}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.info-box{
    background:#10253D;
    padding:35px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
}

.info-box:hover{

    transform:translateY(-8px);

    border-color:#D6B25E;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.info-box h3{

    color:#D6B25E;

    margin-bottom:12px;

    font-size:24px;

}

.info-box p{

    color:#ffffff;

    font-size:18px;

    line-height:1.8;

}

/* CONTACT WRAPPER */

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    margin-top:70px;
    align-items:start;
}

/* FORM */

.contact-form{
    background:#10253D;
    padding:40px;
    border-radius:20px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:18px 20px;

    border:none;

    border-radius:12px;

    background:#ffffff;

    font-size:16px;

    outline:none;

    font-family:inherit;

}

.contact-form textarea{

    resize:none;

}

.contact-form .btn{

    width:fit-content;

    background:#D6B25E;

    color:#071A2E;

    padding:16px 35px;

    border:none;

    border-radius:10px;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s ease;

}

.contact-form .btn:hover{

    background:#ffffff;

    transform:translateY(-3px);

}

/*==========================
        FOOTER
===========================*/

.footer{

    background:#081522;

    padding:70px 0 25px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer h2{

    color:#fff;

}

.footer h2 span{

    color:#D6B25E;

}

.footer p{

    color:#c8d0da;

    line-height:1.8;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-links h3,
.footer-contact h3{

    color:#D6B25E;

    margin-bottom:15px;

}

.footer-links a{

    color:#ffffff;

    text-decoration:none;

}

.footer-links a:hover{

    color:#D6B25E;

    padding-left:8px;

    transition:.3s;

}

.copyright{

    text-align:center;

    color:#c8d0da;

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

}

.contact-form input:focus,
.contact-form textarea:focus{

    border:2px solid #D6B25E;

    box-shadow:0 0 15px rgba(214,178,94,.25);

}

/*==========================================
      MOBILE MENU
==========================================*/

.menu-toggle{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

}

.menu-toggle span{

    width:30px;

    height:3px;

    background:#ffffff;

    border-radius:10px;

    transition:.35s;

}

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/* ================= MOBILE MENU ================= */

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:300px;
    max-width:85%;
    height:100vh;

    background:#071A2E;

    padding:100px 30px;

    display:flex;
    flex-direction:column;
    gap:20px;

    transition:right .35s ease;

    z-index:9998;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu ul{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.mobile-menu a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}

.mobile-menu .mobile-btn{
    display:inline-block;
    margin-top:20px;
    background:#D6B25E;
    color:#071A2E;
    padding:14px 24px;
    border-radius:50px;
    text-align:center;
}

/* ================= FOUNDER MESSAGE ================= */

.founder-message{
    background:#0f1115;
    padding:110px 0;
}

.founder-card{
    max-width:900px;
    margin:60px auto 0;
    background:#171b21;
    border:1px solid rgba(214,178,94,.25);
    border-radius:18px;
    padding:60px;
    position:relative;
}

.founder-card::before{
    content:"";
    position:absolute;
    top:0;
    left:60px;
    width:90px;
    height:4px;
    background:#D6B25E;
}

.founder-card::after{
    content:"❝";
    position:absolute;
    top:20px;
    right:35px;
    font-size:110px;
    color:rgba(214,178,94,.10);
    font-family:Georgia, serif;
    line-height:1;
    pointer-events:none;
}

.founder-text{
    max-width:850px;
    margin:0 auto;
    font-size:21px;
    line-height:2;
    color:#d7d7d7;
    text-align:center;
}

.signature-line{
    width:90px;
    height:2px;
    background:#D6B25E;
    margin:50px auto 35px;
    opacity:.8;
}

.founder-card h4{
    margin-top:45px;
    text-align:right;
    color:#D6B25E;
    font-size:24px;
    font-weight:700;
    line-height:1.6;
}

/* ================================
   TRUSTED CLIENTS
================================ */

.clients{
    background:#0f1115;
    padding:110px 0;
    overflow:hidden;
}

.clients .section-description{
    max-width:750px;
    margin:20px auto 70px;
    text-align:center;
    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;
}

.logo-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.logo-track{
    display:flex;
    align-items:center;
    gap:30px;
    width:max-content;
    animation:scrollLogos 30s linear infinite;
}

.logo-slider:hover .logo-track{
    animation-play-state:paused;
}

.logo-item{
    width:220px;
    height:120px;
    background:#ffffff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    transition:.35s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.logo-item:hover{
    transform:translateY(-8px);
    border:1px solid #D6B25E;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.logo-item img{
    max-width:140px;
    max-height:60px;
    object-fit:contain;
    filter:none;
    transition:.35s;
}

@keyframes scrollLogos{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* ==========================================
        CERTIFICATIONS SECTION
========================================== */

.certifications{

    background:#ffffff;

    padding:120px 0;

}

.certifications .section-title{

    color:#071A2E;

}

.certifications .section-description{

    color:#666;

}

.certificate-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.certificate-card{

    background:#ffffff;

    border-radius:20px;

    padding:25px;

    border:1px solid #ececec;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s ease;

}

.certificate-card:hover{

    transform:translateY(-10px);

    border-color:#D6B25E;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.certificate-card img{

    width:100%;

    border-radius:12px;

    display:block;

}

.certificate-card h3{

    margin-top:20px;

    color:#071A2E;

    font-size:22px;

    text-align:center;

}

.certificate-card p{

    margin-top:10px;

    color:#666;

    text-align:center;

    line-height:1.7;

}

/* ==========================================
        FLOATING WHATSAPP
========================================== */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 15px 40px rgba(37,211,102,.35);
    z-index:99999;
    transition:.35s ease;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:translateY(-6px) scale(1.08);
    background:#1EBE5D;
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.55);
    }

    70%{
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

