* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;   /* CENTER ALIGN */
    padding: 0 15px;  /* equal left-right spacing */
}
/* HEADER */
.header {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* LOGO */
.logo img {
    height: 50px;
}

/* MENU */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #333;
}

nav ul li:hover {
    color: #008B8B;
}

/* ACTIVE MENU */
nav ul li.active {
    background: #008B8B;
    color: #fff;
    padding: 6px 12px;
    border-radius: 3px;
}

/* BUTTON */
.resume-btn {
    border: 2px solid #008B8B;
    color: #008B8B;
    padding: 8px 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.resume-btn:hover {
    background: #008B8B;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
}


/*footer*/
/* CONTAINER FIX (MAIN ISSUE YAHI THA) */


/* FOOTER */
.footer {
    background: linear-gradient(135deg, #008B8B, #006666);
    color: #fff;
    padding: 30px 0;
    width: 100%;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.6fr 1.3fr 1fr; /* Delhi bigger */
    gap: 30px;
    align-items: flex-start;
}

/* LOGO */
.footer-logo img {
    width: 120px;
    margin-bottom: 10px;
}
.footer-logo h2 {
    font-size: 20px;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 14px;
}

/* LICENSE */
.license {
    font-size: 12px;
    opacity: 0.8;
}

/* HEADINGS */
.footer h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* TEXT */
.footer p {
    font-size: 14px;   /* 18px hata — bahut bada tha */
    margin-bottom: 6px;
    line-height: 1.6;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 12px;
    text-align: center;
    font-size: 14px;
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo img {
        margin: auto;
    }
}
.footer {
    background: linear-gradient(135deg, #008B8B, #006666);
}
/*maintence*/
.maintenance {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.maintenance-box {
    max-width: 600px;
}

.maintenance h1 {
    font-size: 32px;
    color: #8b0000;
    margin-bottom: 15px;
}

.maintenance p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.maintenance span {
    font-size: 14px;
    color: #999;
}