
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:
    radial-gradient(circle at top left,
    #1e3a8a 0%,
    #020617 45%,
    #000814 100%);

    color:white;
    overflow-x:hidden;
}

/* =========================
NAVBAR
========================= */

.navbar{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 6%;

    background:rgba(255,255,255,0.05);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,0.08);

    position:sticky;

    top:0;

    z-index:1000;
}

.logo{

    display:flex;

    align-items:center;

    gap:15px;
}

.logo img{

    width:95px;

    height:60px;

    object-fit:contain;

    background:white;

    border-radius:12px;

    padding:6px 10px;
}

.logo h2{
    font-size:24px;
}

.nav-links{

    display:flex;

    gap:30px;

    list-style:none;

    align-items:center;
}

.nav-links li{
    position:relative;
}

.nav-links a{

    text-decoration:none;

    color:white;

    font-weight:600;

    transition:0.3s;
}

.nav-links a:hover{
    color:#60a5fa;
}

/* Dropdown */

.dropdown-menu{

    position:absolute;

    top:40px;

    left:0;

    background:#0f172a;

    min-width:240px;

    border-radius:18px;

    padding:15px 0;

    opacity:0;

    visibility:hidden;

    transform:translateY(10px);

    transition:0.3s;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.dropdown-menu a{

    display:block;

    padding:12px 22px;

    color:#cbd5e1;

    font-size:15px;
}

.dropdown-menu a:hover{

    background:rgba(37,99,235,0.15);

    color:white;
}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

.demo-btn{

    background:linear-gradient(to right,#2563eb,#1d4ed8);

    padding:14px 24px;

    border-radius:14px;

    color:white;

    text-decoration:none;

    font-weight:600;

    box-shadow:0 10px 30px rgba(37,99,235,0.35);
}

/* =========================
HERO SECTION
========================= */

.contact-hero{

    padding:100px 6% 60px;

    text-align:center;
}

.contact-hero h1{

    font-size:72px;

    margin-bottom:20px;
}

.contact-hero h1 span{
    color:#60a5fa;
}

.contact-hero p{

    color:#cbd5e1;

    max-width:900px;

    margin:auto;

    font-size:20px;

    line-height:1.9;
}

/* =========================
CONTACT SECTION
========================= */

.contact-section{

    padding:60px 6% 100px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;
}

.contact-info,
.contact-form{

    background:rgba(255,255,255,0.05);

    border-radius:30px;

    padding:45px;

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:0 20px 60px rgba(0,0,0,0.35);
}

.contact-info h2,
.contact-form h2{

    font-size:38px;

    margin-bottom:25px;
}

.contact-info p{

    color:#cbd5e1;

    line-height:1.9;

    margin-bottom:35px;
}

.info-box{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-bottom:28px;

    background:rgba(255,255,255,0.05);

    padding:22px;

    border-radius:20px;
}

.info-icon{

    width:65px;

    height:65px;

    border-radius:18px;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;
}

.info-content h3{

    margin-bottom:8px;

    font-size:22px;
}

.info-content p,
.info-content a{

    color:#cbd5e1;

    text-decoration:none;

    line-height:1.8;
}

/* =========================
FORM
========================= */

.form-group{
    margin-bottom:25px;
}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-weight:600;
}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;

    padding:16px 18px;

    border:none;

    outline:none;

    border-radius:16px;

    background:rgba(255,255,255,0.08);

    color:white;

    border:1px solid rgba(255,255,255,0.08);

    font-size:15px;
}

.form-group textarea{

    min-height:160px;

    resize:none;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#cbd5e1;
}

.submit-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:16px;

    background:linear-gradient(to right,#2563eb,#1d4ed8);

    color:white;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:0.3s;

    box-shadow:0 10px 30px rgba(37,99,235,0.35);
}

.submit-btn:hover{
    transform:translateY(-4px);
}

/* =========================
MAP SECTION
========================= */

.map-section{

    padding:0 6% 100px;
}

.map-box{

    width:100%;

    height:450px;

    border-radius:32px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:0 20px 60px rgba(0,0,0,0.35);
}

.map-box iframe{

    width:100%;

    height:100%;

    border:none;
}

/* =========================
FOOTER
========================= */

.footer{

    background:#00184a;

    padding:35px;

    text-align:center;

    color:#cbd5e1;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

.contact-section{
    grid-template-columns:1fr;
}

.contact-hero h1{
    font-size:54px;
}

}

@media(max-width:768px){

.nav-links{
    display:none;
}

.contact-hero h1{
    font-size:42px;
}

.contact-info,
.contact-form{
    padding:30px;
}

.info-box{
    flex-direction:column;
}

}

