* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #d8c2c2;
    color: rgb(248, 7, 7);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Navbar */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.447);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo img {
    width: 75px;
    /* font-size: 28px; */
    /* font-weight: bold; */
    color: rgb(165, 161, 161);
}

span {
    color: #ff0202;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

nav a:hover {
    color: #ff1313;
}

.btn {
    /* background: #808285; */
    color: rgb(255, 255, 255);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover {
    background: #f60b0b;
    color: white;
}

.btn-outline {
    border: 2px solid #808285;
    padding: 12px 24px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    margin-left: 10px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #80828580;
    color: #ff1313;
    text-decoration: none;
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 650px;
}

.nav-text-red {
    color: #f60b0b;
}

.hero-text h1 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.section-title p {
    color: #f7f7f7;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #b3b4b4;
    padding: 35px;
    border-radius: 16px;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card img {
    width: 100%;
    height: 250px;

    object-fit: cover;
}

.card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: #fdfdfd;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #ffffff;
}

.about-text ul {
    list-style: none;
}

.about-text li {
    margin-bottom: 12px;
}

/* CTA */
.cta-box {
    background: linear-gradient(135deg, #c3bcbc, #f32222);
    padding: 70px;
    border-radius: 24px;
    text-align: center;
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 30px;
    color: white;
}

/* Contact */

.container{
    width: 100%;
    /* padding: 70% 30% 20%; */
}

.contact-icons{
    display: flex;
    justify-content: center;
}

.contact-icons a{
    text-decoration: none;
    padding: 10px;
    margin: 10px;
    border-radius: 50%;
    background-color: #f60b0b;
}

.contact-icons a:hover{
    background-color: #e3e3e3;
    transition: 0.5s;
}

.contact-icons a i{
    font-size: 50px;
    color: #e3e3e3;
    opacity: 0.9;
}

.contact-icons a i:hover{
    color: #f60b0b;
    transition: 0.5s;
}


/* Footer */
footer {
    background: #050c1500;
    padding: 25px 0;
    text-align: center;
    color: #f90202;
}

/* Responsive */
@media(max-width: 768px) {

    .hero-text h1 {
        font-size: 40px;
    }

    nav {
        display: none;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 30px;
    }
}