* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* body {
    background: #0a0a0a;
    color: white;
    font-family: Arial, sans-serif;
} */

.hero-content h1 {
    font-family: 'Playfair Display', serif;
}

section {
    padding: 100px 10%;
}

#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

/* .hero-video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-3;
} */

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .75));
    z-index: -2;
}

.hero-content {
    text-align: center;
    max-width: 750px;
    margin: auto;
}

.hero-tagline {
    color: #D4AF37;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-content h1 {
    font-size: 85px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;

    color: white;
    background: none !important;
    padding: 0;

    display: block;

    text-shadow:
        0 4px 20px rgba(0, 0, 0, .6);
}

.hero-content span {
    color: #D4AF37;
}

.hero-content,
.hero-content h1,
.hero-description,
.hero-tagline {
    background: transparent !important;
}

.hero-description {
    max-width: 650px;
    margin: auto;
    color: #d0d0d0;
    font-size: 22px;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {

    background: #D4AF37;
    color: #111;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow:
        0 10px 25px rgba(212, 175, 55, .35);
    transition: .3s ease;

}

.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(212, 175, 55, .45);

}

.btn-secondary {

    border: 2px solid #D4AF37;

    color: #D4AF37;

    text-decoration: none;

    padding: 15px 35px;

    border-radius: 40px;

    font-weight: 600;

    display: inline-block;

    transition: .3s ease;

}

.btn-secondary:hover {

    background: #D4AF37;

    color: #111;

}

@media(max-width:768px) {

    .hero-content h1 {
        font-size: 48px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .logo-name {
        font-size: 14px;
    }

    .navbar {
        width: 95%;
        padding: 10px 15px;
    }

}

.navbar {

    position: fixed;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);

    width: 90%;

    padding: 15px 35px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    backdrop-filter: blur(15px);

    background: rgba(8, 8, 8, .55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .15);

    border-radius: 60px;

}

.logo img {

    height: 55px;

}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-name {
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
}

.logo img {
    height: 55px;
    width: auto;
}

.navbar ul {

    display: flex;

    gap: 35px;

    list-style: none;

}

.navbar a {

    text-decoration: none;

    color: white;

    font-size: 15px;

    letter-spacing: 1px;

    transition: .3s;

}

.navbar a:hover {

    color: #D4AF37;

}

@media(max-width:768px) {

    .navbar {

        width: 95%;

        padding: 12px 20px;

    }

    .navbar ul {

        gap: 15px;

    }

    .navbar a {

        font-size: 12px;

    }

    .logo img {

        height: 40px;

    }

}

.section-title {

    text-align: center;

    font-size: 48px;

    margin-bottom: 60px;

    color: #D4AF37;

}

.features-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;

}

.feature-card {

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    padding: 35px;

    border-radius: 25px;

    transition: .3s;

}

.feature-card:hover {

    transform: translateY(-10px);

    border-color: #D4AF37;

}

.feature-card h3 {

    margin-bottom: 15px;

    color: #D4AF37;

}

.feature-card p {

    color: #cfcfcf;

    line-height: 1.8;

}

/* .hero-content h1,
.hero-description,
.hero-tagline{
    background:none !important;
} */

.experience-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

}

.experience-card {

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    height: 450px;
    cursor: pointer;

}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* .experience-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s;

} */

.experience-card:hover img {

    transform: scale(1.08);

}

.experience-content {

    position: absolute;

    bottom: 0;

    width: 100%;

    padding: 30px;

    background:
        linear-gradient(transparent,
            rgba(0, 0, 0, .95));

}

.experience-content h3 {

    color: white;

    margin-bottom: 10px;

}

.experience-content p {

    color: #D4AF37;

}

.fleet-container {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(400px, 1fr));

    gap: 40px;

}

.fleet-card {

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 25px;

    overflow: hidden;

    transition: .4s;

}

.fleet-card:hover {

    transform: translateY(-10px);

    border-color: #D4AF37;

}

.fleet-card img {

    width: 100%;

    height: 300px;

    object-fit: cover;

}

.fleet-info {

    padding: 30px;

}

.fleet-info h3 {

    color: #D4AF37;

    margin-bottom: 15px;

    font-size: 28px;

}

.fleet-info p {

    color: #cfcfcf;

    line-height: 1.8;

}

.contact-wrapper {

    display: grid;

    grid-template-columns:
        1fr 1.2fr;

    gap: 50px;

    align-items: start;

}

.contact-info h3 {

    color: #D4AF37;

    margin-bottom: 20px;

}

.contact-info p {

    margin-bottom: 15px;

    color: #cfcfcf;

}

.contact-form {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.contact-form input,
.contact-form textarea {

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .1);

    padding: 15px;

    color: white;

    border-radius: 15px;

}

.contact-form textarea {

    height: 150px;

    resize: none;

}

.contact-form button {

    background: #D4AF37;

    border: none;

    padding: 15px;

    border-radius: 40px;

    font-weight: 700;

    cursor: pointer;

}

.trust-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;

}

.trust-box {

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(255, 255, 255, .08);

    padding: 30px;

    border-radius: 20px;

    text-align: center;

    font-size: 18px;

    transition: .3s;

}

.trust-box:hover {

    border-color: #D4AF37;

    transform: translateY(-5px);

}

.footer {

    text-align: center;

    padding: 60px 20px;

    border-top: 1px solid rgba(255, 255, 255, .08);

}

.footer-logo {

    color: #D4AF37;

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 20px;

}

.footer p {

    color: #aaa;

    margin-bottom: 10px;

}

.whatsapp-float {

    position: fixed;

    bottom: 25px;
    right: 25px;

    background: #25D366;

    color: white;

    text-decoration: none;

    padding: 15px 22px;

    border-radius: 50px;

    font-weight: 600;

    z-index: 9999;

    box-shadow:
        0 8px 25px rgba(37, 211, 102, .4);

}

.trust-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #bdbdbd;
    line-height: 1.8;
}

.footer-links {
    margin: 25px 0;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    color: #D4AF37;
}

@media(max-width:768px) {

    .contact-wrapper {

        grid-template-columns: 1fr;

        gap: 30px;

    }

}

@media(max-width:768px) {

    .fleet-container {

        grid-template-columns: 1fr;

    }

}

@media(max-width:768px) {

    .experience-grid {

        grid-template-columns: 1fr;

    }

}

/* : Mobile Menu 
@media(max-width:768px){

    .navbar ul{
        display:none;
    }

} */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: #D4AF37;
    cursor: pointer;
}

.menu-toggle:hover{
    transform:scale(1.1);
    transition:.3s;
}

@media(max-width:768px) {

    .menu-toggle {
        display: block;
    }

    .navbar nav {

        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        background: #111;

        border-radius: 20px;

        padding: 20px;

        display: none;

    }

    .navbar nav.active {
        display: block;
    }

    .navbar ul {

        flex-direction: column;

        gap: 20px;

        text-align: center;

    }

}

@media(max-width:768px) {

    .menu-toggle {
        display: block;
    }

    .navbar nav {
        display: none;
    }

}

@media(max-width:768px) {

    .logo-name {
        font-size: 12px;
        letter-spacing: 2px;
    }

}

@media(max-width:768px) {

    .section-title {
        font-size: 34px;
        line-height: 1.2;
    }

}

.feature-card,
.experience-card,
.fleet-card,
.trust-box {

    opacity: 0;
    transform: translateY(40px);
    transition: .8s;

}

.show {

    opacity: 1;
    transform: translateY(0);

}
.footer-social{

    margin-top:25px;

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

.footer-social a{

    color:#D4AF37;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.footer-social a:hover{

    color:white;

    transform:translateY(-2px);

}
@media(max-width:768px){

    .footer-social{

        flex-direction:column;

        gap:15px;

    }

}
.founder-container{

    display:grid;

    grid-template-columns:350px 1fr;

    gap:50px;

    align-items:center;

}

.founder-image img{

    width:100%;

    border-radius:25px;

    object-fit:cover;

}

.founder-content h3{

    color:#D4AF37;

    font-size:32px;

    margin-bottom:10px;

}

.founder-content span{

    color:#bbb;

    display:block;

    margin-bottom:25px;

}

.founder-content p{

    color:#cfcfcf;

    line-height:1.9;

    margin-bottom:20px;

}
@media(max-width:768px){

    .founder-container{

        grid-template-columns:1fr;

    }

}
.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:20px;

    margin-top:40px;

}

.gallery-grid img{

    width:100%;

    height:250px;

    object-fit:cover;

    border-radius:20px;

    transition:.4s;

}

.gallery-grid img:hover{

    transform:scale(1.03);

}

.gallery-btn{

    text-align:center;

    margin-top:40px;

}