.elementor-541 .elementor-element.elementor-element-937a29d{margin:100px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}/* Start custom CSS for html, class: .elementor-element-937a29d */*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Outfit',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#07162f;
    color:#fff;
    overflow-x:hidden;
}

/* HERO */

.hero{
    position:relative;
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.60)),
    url("https://images.unsplash.com/photo-1620626011761-996317b8d101?q=80&w=2070");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 5%;
}

.hero-content{
    max-width:1100px;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:30px;
    text-shadow:0 10px 30px rgba(0,0,0,.4);
}

.hero p{
    font-size:24px;
    color:#f1f1f1;
    line-height:1.8;
    margin-bottom:45px;
}

.hero-btns{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* BUTTONS */

.btn{
    display:inline-block;
    text-decoration:none;
    padding:18px 40px;
    border-radius:10px;
    font-size:18px;
    font-weight:700;
    transition:.4s;
}

.btn-primary{
    background:#ff6200;
    color:#fff;
}

.btn-primary:hover{
    background:#e45800;
    transform:translateY(-5px);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#07162f;
}

/* SECTION TITLES */

.section-title{
    text-align:center;
    font-size:55px;
    margin-bottom:25px;
}

.section-subtitle{
    text-align:center;
    max-width:900px;
    margin:auto;
    color:#d6d6d6;
    font-size:20px;
    line-height:1.8;
}

/* ABOUT */

.about{
    padding:120px 8%;
    background:#091b38;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    margin-top:80px;
}

.about img{
    width:100%;
    border-radius:25px;
}

.about-content h3{
    font-size:38px;
    margin-bottom:25px;
}

.about-content p{
    color:#d6d6d6;
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
}

/* SERVICES */

.services{
    padding:120px 8%;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
    margin-top:80px;
}

.service-card{
    background:#10264a;
    padding:50px 40px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    background:#14315f;
}

.service-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.service-card p{
    color:#d6d6d6;
    line-height:1.8;
}

/* GALLERY */

.gallery{
    padding:120px 8%;
    background:#091b38;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
    margin-top:70px;
}

.gallery img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
}

.gallery img:hover{
    transform:scale(1.05);
}

/* CTA */

.cta{
    padding:130px 8%;
    text-align:center;
    background:
    linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.70)),
    url("https://images.unsplash.com/photo-1584622650111-993a426fbf0a?q=80&w=2070");
    background-size:cover;
    background-position:center;
}

.cta h2{
    font-size:60px;
    margin-bottom:25px;
}

.cta p{
    font-size:22px;
    color:#ddd;
    margin-bottom:45px;
}

/* RESPONSIVE */

@media(max-width:991px){

.hero h1{
    font-size:50px;
}

.hero p{
    font-size:20px;
}

.section-title{
    font-size:42px;
}

.about-grid{
    grid-template-columns:1fr;
}

.cta h2{
    font-size:42px;
}
}

@media(max-width:768px){

.hero{
    min-height:80vh;
}

.hero h1{
    font-size:40px;
}

.hero p{
    font-size:18px;
}

.section-title{
    font-size:34px;
}

.about,
.services,
.gallery,
.cta{
    padding:90px 25px;
}

.service-card{
    padding:35px 25px;
}

.gallery-grid{
    grid-template-columns:1fr;
}
}

@media(max-width:480px){

.hero h1{
    font-size:32px;
}

.hero p{
    font-size:17px;
}

.btn{
    width:100%;
    text-align:center;
}

.hero-btns{
    flex-direction:column;
}

.cta h2{
    font-size:32px;
}
}/* End custom CSS */