/* ==========================
   GLOBAL SETTINGS
========================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: 'Montserrat', sans-serif;

    color: #122B61;

    background: white;

    overflow-x: hidden;

}



img {

    max-width: 100%;

    display: block;

}



a {

    text-decoration: none;

    color: inherit;

}





/* ==========================
   COLORS
========================== */

:root {

    --blue: #122B61;

    --dark-blue: #081936;

    --gold: #F4C416;

    --light: #f7f8fb;

}





/* ==========================
   NAVIGATION
========================== */


.navbar {

    height: 90px;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 7%;

    position: fixed;

    top: 0;

    background: white;

    z-index: 1000;

    box-shadow: 0 5px 25px rgba(0,0,0,.12);

}



.logo img {

    height: 110px;

}



nav {

    display: flex;

    gap: 40px;

}



nav a {

    font-weight: 600;

    transition: .3s;

}



nav a:hover {

    color: var(--gold);

}



.nav-button {


background: var(--gold);

padding: 15px 30px;

border-radius: 50px;

font-weight: 700;

color: var(--dark-blue);

transition:.3s;

}



.nav-button:hover {

transform: translateY(-3px);

}





/* ==========================
 HERO
========================== */


.hero {


padding-top: 150px;

min-height: 850px;

display:flex;

align-items:center;

justify-content:space-between;

padding-left:7%;

padding-right:7%;

background:

linear-gradient(
90deg,
rgba(8,25,54,.95),
rgba(18,43,97,.85)
),

url("images/Sales guys pic for website.png");

background-size:cover;

background-position:center;

color:white;


}



.hero-content {

max-width:650px;

}



.hero h1 {

font-size: clamp(40px,5vw,70px);

line-height:1.1;

font-weight:800;

margin-bottom:25px;

}



.hero p {

font-size:22px;

line-height:1.6;

margin-bottom:40px;

}





.hero-buttons {

display:flex;

gap:20px;

flex-wrap:wrap;

}



.primary-button {


background:var(--gold);

color:var(--dark-blue);

padding:18px 35px;

border-radius:50px;

font-weight:700;

}



.secondary-button {


border:2px solid white;

padding:16px 35px;

border-radius:50px;

font-weight:700;

}



.primary-button:hover,
.secondary-button:hover {

transform:translateY(-4px);

}





.rating {

margin-top:45px;

font-size:25px;

color:var(--gold);

}



.rating p {

font-size:15px;

color:white;

margin-top:10px;

}





.hero-image {

display:none;

}





/* ==========================
 TRUST
========================== */


.trust {

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

padding:60px 7%;

background:white;

text-align:center;

}



.trust h3 {

font-size:22px;

margin-bottom:15px;

}



.trust p {

color:#555;

}







/* ==========================
 SECTIONS
========================== */


.section {

padding:100px 7%;

background:var(--light);

}



.section h2,
.video-section h2,
.areas h2,
.contact h2 {

font-size:45px;

text-align:center;

margin-bottom:60px;

}







/* ==========================
 CARDS
========================== */


.cards {

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.card {

background:white;

padding:40px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.1);

transition:.3s;

}



.card:hover {

transform:translateY(-10px);

}



.card h3 {

font-size:25px;

margin-bottom:20px;

}



.card p {

color:#555;

line-height:1.6;

}







/* ==========================
 ABOUT
========================== */

.about {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 70px;

    padding: 120px 7%;

    max-width: 1400px;

    margin: 0 auto;

}


.about-image {

    flex: 1;

    display: flex;

    justify-content: center;

}


.about-image img {

    width: 100%;

    max-width: 550px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.2);

}


.about-text {

    flex: 1;

    max-width: 550px;

}


.about-text h2 {

    font-size:45px;

    margin-bottom:30px;

}


.about-text p {

    font-size:18px;

    line-height:1.8;

    margin-bottom:20px;

    color:#555;

}


.about-image img {


border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.2);

}



.about-text h2 {

font-size:45px;

margin-bottom:30px;

}



.about-text p {


font-size:18px;

line-height:1.8;

margin-bottom:20px;

color:#555;

}







/* ==========================
 VIDEO
========================== */


.video-section {


padding:100px 7%;

text-align:center;

}



.video-section video {


width:min(300px,100%);

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.2);

}








/* ==========================
 AREAS
========================== */


.areas {

padding:90px 7%;

background:var(--blue);

color:white;

text-align:center;

}



.areas p {

font-size:22px;

line-height:2;

}







/* ==========================
 CONTACT
========================== */


.contact {


padding:100px 7%;

text-align:center;

background:var(--dark-blue);

color:white;

}



.contact p {

font-size:20px;

margin-bottom:25px;

}



.contact a {


display:block;

font-size:28px;

color:var(--gold);

margin:20px;

font-weight:700;

}







/* ==========================
 FOOTER
========================== */


footer {


padding:30px;

background:#050d20;

color:white;

text-align:center;

}





/* ==========================
 MOBILE CALL BUTTON
========================== */


.mobile-call {

display:none;

}







/* ==========================
 MOBILE
========================== */


@media(max-width:900px){


.navbar {

padding:0 20px;

}


nav {

display:none;

}


.logo img {

height:65px;

}


.hero {

min-height:750px;

padding:120px 25px 60px;

}


.hero h1 {

font-size:42px;

}


.hero p {

font-size:18px;

}



.trust {

grid-template-columns:1fr;

}


.cards {

grid-template-columns:1fr;

}


.about {

grid-template-columns:1fr;

padding:70px 25px;

}


.section {

padding:70px 25px;

}


.video-section,
.contact {

padding:70px 25px;

}


.mobile-call {


display:block;

position:fixed;

bottom:20px;

left:20px;

right:20px;

background:var(--gold);

color:var(--dark-blue);

text-align:center;

padding:18px;

border-radius:50px;

font-weight:800;

font-size:20px;

z-index:2000;

box-shadow:0 10px 30px rgba(0,0,0,.3);

}


.nav-button {

padding:12px 20px;

}


}

/* ==========================
   BEFORE AFTER GALLERY
========================== */


.gallery {

padding:100px 7%;

background:#f7f8fb;

}



.gallery h2 {

text-align:center;

font-size:45px;

margin-bottom:60px;

}



.gallery-grid {

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}



.gallery-item img {

width:100%;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.15);

transition:.3s;

}



.gallery-item img:hover {

transform:scale(1.03);

}






/* SMALLER VIDEO */


.work-video {

width:600px;

max-width:90%;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.2);

}





@media(max-width:900px){


.gallery-grid {

grid-template-columns:1fr;

}


.work-video {

width:100%;

}


}