/*==========================================
    GOOGLE FONT
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================================
    RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

html{
    overflow-x:hidden;
}

body{

    font-family:'Poppins',sans-serif;

    background:#07111F;

    color:#ffffff;

    overflow-x:hidden;

    line-height:1.6;

}

/*==========================================
    VARIABLES
==========================================*/

:root{

    --primary:#A6FF4D;

    --secondary:#0F2743;

    --dark:#07111F;

    --card:#0E1B2F;

    --light:#F5F5F5;

    --grey:#A0A9B8;

    --shadow:0 15px 40px rgba(0,0,0,.35);

    --radius:18px;

}

/*==========================================
    GENERAL
==========================================*/

section{

    padding:100px 10%;

}

a{

    text-decoration:none;

    color:white;

}

img{

    max-width:100%;

    display:block;

}

h1{

    font-size:60px;

    font-weight:800;

}

h2{

    font-size:40px;

    font-weight:700;

}

h3{

    font-size:24px;

    margin-bottom:15px;

}

p{

    color:#d5d5d5;

    font-size:16px;

}

/*==========================================
    BUTTONS
==========================================*/

.btn-primary{

    display:inline-block;

    background:var(--primary);

    color:#000;

    padding:15px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.4s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 30px rgba(166,255,77,.4);

}

.btn-secondary{

    display:inline-block;

    padding:15px 35px;

    border:2px solid var(--primary);

    border-radius:40px;

    margin-left:15px;

    transition:.4s;

}

.btn-secondary:hover{

    background:var(--primary);

    color:#000;

}

/*==========================================
    NAVBAR
==========================================*/

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    backdrop-filter:blur(12px);

    background:rgba(7,17,31,.92);

}

.navbar{

    width:90%;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:55px;

}

.logo span{

    font-weight:700;

    color:white;

    font-size:18px;

}

.nav-links{

    display:flex;

    gap:35px;

    list-style:none;

}

.nav-links a{

    transition:.3s;

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0%;

    height:2px;

    background:var(--primary);

    transition:.4s;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-btn{

    background:var(--primary);

    color:#000;

    padding:12px 25px;

    border-radius:35px;

    font-weight:600;

    transition:.4s;

}

.nav-btn:hover{

    transform:translateY(-3px);

}

/*==========================================
    HERO
==========================================*/

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:

    linear-gradient(rgba(5,10,20,.82),

    rgba(5,10,20,.90)),

    url("images/hero.jpg");

    background-size:cover;

    background-position:center;

    position:relative;

}

.hero-content{

    max-width:900px;

    z-index:10;

}

.hero-logo{

    width:140px;

    margin:auto;

    margin-bottom:25px;

}

.tagline{

    color:var(--primary);

    letter-spacing:4px;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:20px;

}

.hero h1{

    margin-bottom:15px;

}

.hero h1 span{

    color:var(--primary);

}

.hero h3{

    color:#cbd6e5;

    font-weight:400;

    margin-bottom:25px;

}

.hero-text{

    max-width:720px;

    margin:auto;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*==========================================
    SECTION TITLE
==========================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}

.line{

    width:80px;

    height:4px;

    background:var(--primary);

    margin:20px auto;

    border-radius:5px;

}

/*==========================================
    ABOUT
==========================================*/

.about{

    background:#0A1527;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:40px;

}

.about-card{

    background:var(--card);

    padding:45px;

    border-radius:var(--radius);

    transition:.4s;

    box-shadow:var(--shadow);

}

.about-card:hover{

    transform:translateY(-12px);

}

.about-card h3{

    color:var(--primary);

    margin-bottom:20px;

}

.about-card p{

    margin-bottom:15px;

}
/*==========================================
    MISSION • VISION • VALUES
==========================================*/

.mission-section{
    background:var(--dark);
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.mission-card{
    background:var(--card);
    padding:40px 35px;
    border-radius:var(--radius);
    text-align:center;
    transition:.4s;
    box-shadow:var(--shadow);
    border-top:4px solid transparent;
}

.mission-card:hover{
    transform:translateY(-12px);
    border-top:4px solid var(--primary);
}

.mission-card .icon{
    width:75px;
    height:75px;
    margin:0 auto 25px;
    background:rgba(166,255,77,.12);
    color:var(--primary);
    font-size:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}

.mission-card h3{
    color:var(--primary);
    margin-bottom:20px;
}

.mission-card p{
    color:#d0d7e4;
}

.mission-card ul{
    list-style:none;
    margin-top:20px;
}

.mission-card ul li{
    margin:12px 0;
    color:#d5d5d5;
    position:relative;
}

.mission-card ul li::before{
    content:"✔";
    color:var(--primary);
    margin-right:10px;
}



/*==========================================
    SERVICES
==========================================*/

.services{
    background:#0A1527;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.service-card{

    background:var(--card);

    padding:40px 30px;

    border-radius:20px;

    transition:.4s;

    box-shadow:var(--shadow);

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:var(--primary);

    transform:scaleX(0);

    transition:.4s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-15px);

}

.service-icon{

    width:70px;

    height:70px;

    background:rgba(166,255,77,.12);

    color:var(--primary);

    font-size:30px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    margin-bottom:25px;

}

.service-card h3{

    color:white;

    margin-bottom:18px;

}

.service-card p{

    margin-bottom:25px;

}

.service-card a{

    color:var(--primary);

    font-weight:600;

    transition:.3s;

}

.service-card a:hover{

    letter-spacing:1px;

}



/*==========================================
    WHY CHOOSE BAC
==========================================*/

.why-us{
    background:var(--dark);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.why-card{

    background:var(--card);

    padding:40px;

    border-radius:20px;

    transition:.4s;

    box-shadow:var(--shadow);

    border-left:5px solid transparent;

}

.why-card:hover{

    transform:translateY(-10px);

    border-left:5px solid var(--primary);

}

.why-card h3{

    color:var(--primary);

    margin-bottom:20px;

}

.why-card p{

    color:#d6d6d6;

}



/*==========================================
    STATISTICS
==========================================*/

.stats{

    background:linear-gradient(135deg,#09111d,#102540);

}

.stats-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat-box{

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(12px);

    border-radius:20px;

    padding:45px 25px;

    text-align:center;

    transition:.4s;

    border:1px solid rgba(255,255,255,.08);

}

.stat-box:hover{

    transform:translateY(-10px);

    background:rgba(166,255,77,.08);

}

.stat-box h2{

    color:var(--primary);

    font-size:50px;

    margin-bottom:15px;

}

.stat-box p{

    color:#d0d7e4;

    font-size:15px;

    line-height:1.7;

}



/*==========================================
    SIMPLE FADE ANIMATION
==========================================*/

.mission-card,
.service-card,
.why-card,
.stat-box{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*==========================================
    CONTACT SECTION
==========================================*/

.contact{
    background:#0A1527;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    align-items:start;
}

.contact-info{
    background:var(--card);
    padding:45px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.contact-info h3{
    color:var(--primary);
    margin-bottom:10px;
}

.contact-info h2{
    margin-bottom:25px;
}

.contact-info p{
    margin-bottom:18px;
    color:#d6d6d6;
    line-height:1.8;
}

.contact-form{
    background:var(--card);
    padding:45px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{

    width:100%;
    padding:16px 20px;
    background:#14233B;
    border:1px solid transparent;
    border-radius:10px;
    color:#fff;
    font-family:Poppins,sans-serif;
    font-size:15px;
    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{

    outline:none;
    border-color:var(--primary);

}

.contact-form textarea{
    resize:vertical;
    min-height:150px;
}

.contact-form button{
    border:none;
    cursor:pointer;
    width:fit-content;
}

/*==========================================
    MAP
==========================================*/

.map{
    padding:0;
}

.map iframe{
    width:100%;
    height:450px;
    border:none;
}

/*==========================================
    CTA
==========================================*/

.cta{
    background:linear-gradient(135deg,#132743,#07111F);
    text-align:center;
}

.cta h2{
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 35px;
    color:#d5d5d5;
}

/*==========================================
    INDUSTRIES
==========================================*/

.industries{
    background:var(--dark);
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.industry-card{

    background:var(--card);

    padding:35px;

    border-radius:20px;

    transition:.4s;

    box-shadow:var(--shadow);

    border-bottom:4px solid transparent;

}

.industry-card:hover{

    transform:translateY(-10px);

    border-bottom:4px solid var(--primary);

}

.industry-card h3{

    color:var(--primary);

    margin-bottom:18px;

}

/*==========================================
    FOOTER
==========================================*/

footer{

    background:#050B14;

    padding:70px 10% 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:45px;

    margin-bottom:40px;

}

.footer-container h3{

    color:var(--primary);

    margin-bottom:18px;

}

.footer-container p{

    color:#B7C0CF;

    line-height:1.8;

}

.footer-container a{

    display:block;

    margin-bottom:12px;

    color:#B7C0CF;

    transition:.3s;

}

.footer-container a:hover{

    color:var(--primary);

    padding-left:8px;

}

footer hr{

    border:none;

    height:1px;

    background:#2B3E5A;

    margin:30px 0;

}

footer .copyright{

    text-align:center;

    color:#8FA0BA;

    font-size:14px;

}

/*==========================================
    FLOATING WHATSAPP
==========================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    color:#fff;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.3);

    transition:.3s;

    z-index:999;

}

.whatsapp:hover{

    transform:scale(1.12);

}

/*==========================================
    BACK TO TOP
==========================================*/

#topBtn{

    position:fixed;

    left:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#000;

    font-size:22px;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.3);

}

#topBtn:hover{

    transform:translateY(-5px);

}

/*==========================================
    SCROLLBAR
==========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#07111F;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:10px;

}

/*==========================================
    RESPONSIVE
==========================================*/

@media(max-width:1024px){

.navbar{

flex-direction:column;

gap:20px;

}

.contact-container{

grid-template-columns:1fr;

}

.hero h1{

font-size:48px;

}

}

@media(max-width:768px){

section{

padding:70px 7%;

}

.nav-links{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.logo span{

font-size:15px;

text-align:center;

}

.hero{

padding-top:120px;

}

.hero h1{

font-size:38px;

}

.hero h3{

font-size:20px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.btn-secondary{

margin-left:0;

}

.about-grid,
.service-grid,
.mission-grid,
.why-grid,
.industry-grid,
.stats-container{

grid-template-columns:1fr;

}

.contact-form,
.contact-info{

padding:30px;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.whatsapp{

width:55px;

height:55px;

font-size:24px;

}

#topBtn{

width:45px;

height:45px;

}

}

@media(max-width:480px){

.hero-logo{

width:100px;

}

.hero h1{

font-size:32px;

}

.hero h3{

font-size:18px;

}

h2{

font-size:30px;

}

.btn-primary,
.btn-secondary{

width:100%;

text-align:center;

}

.contact-form input,
.contact-form textarea,
.contact-form select{

font-size:14px;

}

}
/* Legal Credentials Change */
/*==========================================
        LEGAL CREDENTIALS
==========================================*/

.credentials{

    background:#07111F;

}

.credential-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.credential-card{

    background:var(--card);

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    box-shadow:var(--shadow);

    border-top:4px solid transparent;

}

.credential-card:hover{

    transform:translateY(-10px);

    border-top:4px solid var(--primary);

}

.credential-icon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:rgba(166,255,77,.12);

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

}

.credential-card h3{

    color:var(--primary);

    margin-bottom:15px;

}

.credential-number{

    font-size:18px;

    font-weight:700;

    color:#fff;

    margin-bottom:15px;

    word-break:break-word;

}

.credential-card p{

    color:#d5d5d5;

}

/*==========================================
        QUALITY PLEDGE
==========================================*/

.pledge{

    background:#0A1527;

    padding:120px 10%;

    text-align:center;

}

.pledge-container{

    max-width:900px;

    margin:auto;

}

.quote-mark{

    font-size:120px;

    color:var(--primary);

    line-height:0;

}

.pledge h2{

    margin-bottom:35px;

}

.pledge-text{

    font-size:28px;

    line-height:1.8;

    color:white;

    font-style:italic;

    font-weight:300;

}

.pledge h4{

    margin-top:40px;

    color:var(--primary);

    letter-spacing:2px;

}

/*==========================================
        QUALITY PLEDGE
==========================================*/

.pledge{

    background:#0A1527;

    padding:120px 10%;

    text-align:center;

}

.pledge-container{

    max-width:900px;

    margin:auto;

}

.quote-mark{

    font-size:120px;

    color:var(--primary);

    line-height:0;

}

.pledge h2{

    margin-bottom:35px;

}

.pledge-text{

    font-size:28px;

    line-height:1.8;

    color:white;

    font-style:italic;

    font-weight:300;

}

.pledge h4{

    margin-top:40px;

    color:var(--primary);

    letter-spacing:2px;

}

/*==========================================
    END OF FILE
==========================================*/