@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#07131f;
    color:#ffffff;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===================================================== */
/* RESPONSIVE DESIGN */
/* ===================================================== */

/* LOGO */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:auto;
    height:58px;
    object-fit:contain;
    display:block;
}

@media(max-width:1200px){

    .hero-heading{
        font-size:60px;
    }

    .tour-panel iframe{
        height:500px;
    }

}


@media(max-width:991px){

    /* HEADER */

    .navbar{
        flex-direction:column;
        gap:18px;
        padding:18px 0;
    }

    .nav-menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:22px;
    }

    .nav-menu a{
        font-size:15px;
    }

    /* HERO */

    .hero{
        padding:150px 0 80px;
    }

    .hero-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .hero-left{
        max-width:100%;
        text-align:center;
    }

    .hero-heading{
        font-size:54px;
    }

    .hero-subhead{
        margin:auto;
        margin-bottom:35px;
    }

    .tour-panel iframe{
        height:460px;
    }

    /* SECTION */

    .section{
        padding:80px 0;
    }

    .section-header h2{
        font-size:38px;
    }

    /* SERVICES */

    .services-grid{
        grid-template-columns:1fr 1fr;
    }

    /* PROJECTS */

    .project-grid{
        grid-template-columns:1fr;
    }

    /* WHY */

    .why-grid{
        grid-template-columns:1fr 1fr;
    }

    /* JOURNEY */

    .journey-wrapper{
        grid-template-columns:1fr 1fr;
    }

    /* CONTACT */

    .contact-wrapper{
        grid-template-columns:1fr;
    }

}


@media(max-width:768px){

    .container{
        width:92%;
    }

    /* HERO */

    .hero{
        padding:140px 0 70px;
    }

    .hero-heading{
        font-size:46px;
        line-height:1.15;
    }

    .hero-subhead{
        font-size:17px;
        line-height:1.8;
    }

    .primary-btn{
        width:100%;
        text-align:center;
    }

    .tour-panel{
        border-radius:18px;
    }

    .tour-panel iframe{
        height:400px;
    }

    /* SERVICES */

    .services-grid{
        grid-template-columns:1fr;
    }

    /* WHY */

    .why-grid{
        grid-template-columns:1fr;
    }

    /* JOURNEY */

    .journey-wrapper{
        grid-template-columns:1fr;
    }

    /* FOOTER */

    .footer-wrapper{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

}


@media(max-width:480px){

    .logo{
        font-size:30px;
    }

    .nav-menu{
        gap:15px;
    }

    .nav-menu a{
        font-size:14px;
    }

    .hero-heading{
        font-size:38px;
    }

    .hero-tag{
        font-size:13px;
        padding:10px 18px;
    }

    .hero-subhead{
        font-size:16px;
    }

    .tour-panel iframe{
        height:320px;
    }

    .section-header h2{
        font-size:30px;
    }

    .section-header p{
        font-size:15px;
    }

    .service-card,
    .why-card,
    .journey-step,
    .contact-right{
        padding:24px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

}
/* HERO */



.hero{
    padding:120px 0 80px;
}

.hero-heading{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    color:#052d2d;
    margin-bottom:25px;
}

.hero-heading span{
    color:#0bb7a7;
}

.hero-subhead{
    font-size:18px;
    line-height:1.8;
    color:#557171;
    max-width:520px;
    margin-bottom:35px;
}
.primary-btn{
    display:inline-block;
    background:#0bb7a7;
    color:#ffffff;
    text-decoration:none;
    padding:18px 38px;
    border-radius:12px;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
}

.primary-btn:hover{
    background:#089688;
    transform:translateY(-3px);
}

/* RIGHT PANEL */

.hero-right{
    width:100%;
}

.tour-panel{
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    border:1px solid rgba(0,0,0,0.05);
}

.tour-top{
    padding:18px 24px;
    border-bottom:1px solid #edf2f7;
    background:#fbffff;
}

.live-status{
    display:flex;
    align-items:center;
    gap:12px;
}

.live-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#0bb7a7;
    animation:pulse 1.5s infinite;
}

.live-status p{
    margin:0;
    color:#062b2b;
    font-size:15px;
    font-weight:600;
}

.tour-panel iframe{
    width:100%;
    height:560px;
    border:none;
}

/* ANIMATION */

@keyframes pulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.4);
        opacity:0.6;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }

}

/* MOBILE */

@media(max-width:991px){

    .hero{
        padding:140px 0 80px;
    }

    .hero-wrapper{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:46px;
    }

    .tour-panel iframe{
        height:420px;
    }

}

@media(max-width:600px){

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:17px;
    }

    .primary-btn{
        width:100%;
        text-align:center;
    }

}
/* SECTION */

.section{
    padding:100px 0;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-tag{
    color:#00c2ff;
    font-size:14px;
    letter-spacing:2px;
}

.section-header h2{
    font-size:48px;
    margin:15px 0;
}

.section-header p{
    max-width:700px;
    margin:auto;
    color:#c8c8c8;
    line-height:1.8;
}

/* SERVICES */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service-card{
    background:#0d1c2c;
    padding:35px;
    border-radius:18px;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.05);
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-number{
    font-size:42px;
    color:#00c2ff;
    font-weight:700;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#c8c8c8;
    line-height:1.8;
}

/* PROJECTS */

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.project-card{
    background:#0d1c2c;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    transition:0.3s;
}

.project-card:hover{
    transform:translateY(-8px);
}

.project-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.project-content{
    padding:25px;
}

.tour-badge{
    display:inline-block;
    background:#00c2ff;
    color:#ffffff;
    padding:8px 16px;
    border-radius:50px;
    margin-bottom:15px;
    font-size:14px;
    font-weight:600;
}

.project-content h3{
    color:#ffffff;
    margin-bottom:12px;
}

.project-content p{
    color:#c8c8c8;
    line-height:1.7;
}

/* WHY */

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.why-card{
    background:#0d1c2c;
    padding:30px;
    border-radius:18px;
}

.why-card h4{
    margin-bottom:10px;
}

.why-card p{
    color:#c8c8c8;
    line-height:1.7;
}

/* JOURNEY */

.journey-title{
    margin-top:100px;
}

.journey-wrapper{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
}

.journey-step{
    background:#0d1c2c;
    padding:30px;
    border-radius:18px;
    text-align:center;
}

.journey-step span{
    display:inline-block;
    width:60px;
    height:60px;
    line-height:60px;
    border-radius:50%;
    background:#00c2ff;
    margin-bottom:20px;
    font-weight:700;
}

/* CONTACT */

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact-left h2{
    font-size:48px;
    margin:20px 0;
}

.contact-left p{
    color:#c8c8c8;
    line-height:1.8;
}

.contact-info{
    margin-top:35px;
}

.info-box{
    margin-bottom:25px;
}

.contact-right{
    background:#0d1c2c;
    padding:40px;
    border-radius:20px;
}

.form-group{
    margin-bottom:20px;
}

.contact-right input,
.contact-right select,
.contact-right textarea{
    width:100%;
    padding:16px;
    border:none;
    border-radius:10px;
    background:#12263a;
    color:#ffffff;
}

.contact-right textarea{
    height:140px;
    resize:none;
}

.submit-btn{
    width:100%;
    border:none;
    background:#00c2ff;
    color:#ffffff;
    padding:18px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}

/* FOOTER */

.footer{
    background:#050d15;
    padding:35px 0;
    margin-top:60px;
}

.footer-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer p{
    color:#c8c8c8;
}

/* WHATSAPP */

.whatsapp-button{
    position:fixed;
    right:25px;
    bottom:25px;
    background:#25d366;
    color:#ffffff;
    text-decoration:none;
    padding:16px 24px;
    border-radius:50px;
    font-weight:600;
    z-index:999;
}

/* MOBILE */

@media(max-width:991px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-menu{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        height:auto;
        padding:180px 0 120px;
    }

    .hero h1{
        font-size:44px;
    }

    .section-header h2{
        font-size:36px;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .footer-wrapper{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

}

@media(max-width:600px){

    .hero h1{
        font-size:34px;
    }

    .hero-buttons{
        flex-direction:column;
    }

}