.elementor-454 .elementor-element.elementor-element-45bdb83{margin:0100px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}/* Start custom CSS for html, class: .elementor-element-45bdb83 */*{
    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 SECTION */

.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-1600585154340-be6161a56a0c?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;
}

.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:#e45700;
    transform:translateY(-5px);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#07162f;
}

/* SECTION TITLE */

.section-title{
    font-size:55px;
    text-align:center;
    margin-bottom:25px;
}

.section-subtitle{
    max-width:900px;
    margin:auto;
    text-align:center;
    color:#d8d8d8;
    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;
    margin-top:80px;
    align-items:center;
}

.about img{
    width:100%;
    border-radius:25px;
}

.about-content h3{
    font-size:38px;
    margin-bottom:25px;
}

.about-content p{
    color:#d8d8d8;
    line-height:1.9;
    font-size:18px;
    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;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.service-card:hover{
    transform:translateY(-10px);
    background:#13305d;
}

.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-1600047509807-ba8f99d2cdde?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:48px;
}

.hero p{
    font-size:20px;
}

.section-title{
    font-size:40px;
}

.about-grid{
    grid-template-columns:1fr;
}

.cta h2{
    font-size:42px;
}
}

@media(max-width:600px){

.hero{
    padding:100px 20px;
}

.hero h1{
    font-size:36px;
}

.hero p{
    font-size:18px;
}

.section-title{
    font-size:32px;
}

.service-card{
    padding:40px 25px;
}

.cta h2{
    font-size:34px;
}
}/* End custom CSS */