* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
    color: #222;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Logo */
nav img {
    height: 55px;
    cursor: pointer;
}

/* Menu */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
    color: white;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease;
}

/* Hover Effect */
nav ul li:hover {
    color: #00e0ff;
}

/* Underline Animation */
nav ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background-color: #00e0ff;
    transition: 0.4s ease;
}

nav ul li:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 20px;
    }

    nav ul {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }
}

nav ul li a {
    text-decoration: none;
    color: white;
}

nav ul li a:hover {
    color: #00e0ff;
}

/* ===== About Section ===== */

.about-section {
    padding: 80px 10%;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.about-image {
    text-align: center;   /* 🔥 Text center karega */
}

.about-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    display: block;       /* Important */
    margin: 0 auto 20px;  /* Image center karega */
}

.about-image h2 {
    margin-bottom: 5px;
}

.about-image h3 {
    font-weight: 400;
    color: #01575a;
}

.about-content h1 {
    font-size: 40px;
    color: #ff7a00;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 5px;
}

.about-content h3 {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.about-content p {
    line-height: 1.7;
    margin-bottom: 25px;
}

.stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.stats span {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #ff7a00;
}

.btn {
    padding: 12px 30px;
    border: 2px solid #ff7a00;
    background: transparent;
    color: #ff7a00;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #ff7a00;
    color: white;
}

/* ===== Skills Section ===== */

.skills-section {
    padding: 60px 10%;
    text-align: center;
}

.skills-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.skill-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.skill-card:hover {
    transform: translateY(-5px);
}

.skill-card h4 {
    margin-bottom: 15px;
}

.bar {
    background: #eee;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
}

.bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ff7a00, #ff9d4d);
    border-radius: 10px;
}


/* ================= FOOTER ================= */
.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
}
footer {
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
    padding: 80px 0 30px;
    margin-top: 100px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

footer h3,
footer h4 {
    color: goldenrod;
    margin-bottom: 15px;
    text-align: center;
}

footer p,
footer li {
    color: white;
    font-size: 14px;
    line-height: 20px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.3s;
}

footer ul li:hover {
    color: var(--gold);
}

.copyright {
    border-top: 1px solid #fffefe;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #fffdfd;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {
    .features,
    .media-grid,
    .team-grid {
        flex-direction: column;
    }
}