* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f7ff;
    color: #2d2d2d;
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(14px);
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 70px;
}

.logo span {
    font-weight: 600;
    color: #1a2cff;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #1a2cff;
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #1a2cff;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a2cff, #4a6cf7);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 10px;
    position: relative;
}

.hero p {
    opacity: 0.9;
    position: relative;
}

/* CONTENT */
.container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.card {
    background: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 16px;
    border-left: 6px solid #4a6cf7;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(74,108,247,0.08));
    top: 0;
    left: 0;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card h2 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #1a2cff;
    position: relative;
}

.card p {
    line-height: 1.7;
    color: #555;
    position: relative;
}

/* FOOTER */
footer {
    background: #0b0f2f;
    padding: 35px 20px;
    text-align: center;
    color: #aaa;
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.footer-menu a {
    text-decoration: none;
    color: #aaa;
    transition: 0.3s;
    font-weight: 500;
}

.footer-menu a:hover {
    color: #fff;
}

.copy {
    font-size: 14px;
    opacity: 0.7;
}

/* CONTACT SECTION */
.contact-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #1a2cff;
}

.input-group {
    display: flex;
    /* align-items: center; */
    background: #f1f4ff;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
}
.input-group .material-icons {
    color: #4a6cf7;
    margin-right: 10px;
}

.input-group input,
.input-group textarea {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #4a6cf7;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    background: linear-gradient(135deg, #1a2cff, #4a6cf7);
    color: #fff;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
     display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

button:hover {
    opacity: 0.9;
}

/* INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
       display: flex;
    align-items: center;
    gap: 15px;
}
.info-card .icon {
    font-size: 28px;
    color: #4a6cf7;
    background: #eef1ff;
    padding: 10px;
    border-radius: 12px;
}

.info-card h3 {
    color: #1a2cff;
    margin-bottom: 8px;
}
/* RADIO GROUP */
.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f1f4ff;
    border-radius: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #444;
}

/* CUSTOM RADIO */
.radio-group input[type="radio"] {
    accent-color: #4a6cf7;
    cursor: pointer;
}
#otherBox {
    display: none;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

#otherBox.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.swal-footer {
    text-align: center !important;
}
/* RESPONSIVE */
@media(max-width: 768px) {
     .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 15px 5px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h1 {
        font-size: 28px;
    }
    .logo img {
    width: 50px;
}
.nav-menu a {
    font-size: 15px;
}
   .contact-container {
        grid-template-columns: 1fr;
    }
}