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

/* COLOR THEME */
:root {
    --bg-main: #0b0f14;
    --bg-card: #121826;
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --accent-blue: #38bdf8;
    --accent-purple: #a78bfa;
}

body {
    background: var(--bg-main);
    color: var(--text-main);
}
.container {
    max-width: 1180px;   /* you can use 1120px also */
    margin: 0 auto;
    padding: 0 20px;
}
/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #0b0f14;
    border-bottom: 1px solid #1f2933;
}

.logo img {
    height: 42px;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar li {
    margin-left: 30px;
}

.navbar a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
}

.navbar a.active,
.navbar a:hover {
    color: var(--accent-blue);
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 90px 60px;
}

.hero-text {
    max-width: 600px;
}

.hello {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 56px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h2 {
    margin: 20px 0;
    font-size: 26px;
    line-height: 1.4;
}

.subtext {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.btn {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    color: #020617;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    opacity: 0.9;
}

/* HERO IMAGE */
.hero-image img {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--accent-purple);
}

/* SKILLS */
/* SKILLS – CARD STYLE */
.skills {
    padding: 80px 60px;
}

.skills h2 {
    text-align: center;
    margin-bottom: 50px;
}

.skill-title {
    margin: 50px 0 25px;
    font-size: 24px;
    color: var(--accent-blue);
    border-left: 4px solid var(--accent-purple);
    padding-left: 15px;
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.skill-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid #1f2933;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-card span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 35px rgba(56, 189, 248, 0.2);
}


/* PROJECTS */
.projects {
    padding: 60px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.project-card {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 14px;
    border: 1px solid #1f2933;
    transition: transform 0.3s;
    text-align: center;
}

.project-card:hover {
    transform: translateY(-6px);
}

.project-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 15px auto;
    display: block;
}

.project-card h3 {
    margin: 15px 0 5px;
        margin-top: 10px;

}

.project-card p {
    color: var(--text-muted);
        margin: 8px 0;
}

.project-card a {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: bold;
}

/* FOOTER */
footer {
    padding: 30px;
    text-align: center;
    background: #020617;
    border-top: 1px solid #1f2933;
}

/* MOBILE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 40px;
    }

   .navbar {
        flex-direction: column;
        align-items: center;
        padding: 15px 15px;
    }

    .logo {
        margin-bottom: 10px;
    }

    .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar li {
        margin: 8px 10px;
    }
    .founder-badges {
        gap: 8px;
    }

    .founder-badges span {
        font-size: 12px;
        padding: 6px 12px;
    }
}
/* SERVICES */
.services {
    padding: 60px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #1f2933;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--accent-blue);
}

.service-card p {
    color: var(--text-muted);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 40px rgba(167, 139, 250, 0.2);
}
/* TESTIMONIALS */
.testimonials {
    padding: 80px 20px;
    text-align: center;
}

.testimonial-container {
    max-width: 900px;
    margin: 40px auto;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #1f2933;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.quote {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 30px;
}

.client h4 {
    margin: 0;
    color: var(--accent-blue);
}

.client span {
    font-size: 14px;
    color: var(--text-muted);
}

.stars {
    margin-top: 10px;
    color: gold;
    font-size: 18px;
}

/* DOTS */
.dots {
    margin-top: 25px;
}

.dot {
    height: 12px;
    width: 12px;
    background: #334155;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
}

.dot.active {
    background: var(--accent-blue);
}
/* TESTIMONIAL CONTROLS */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.arrow {
    background: var(--bg-card);
    border: 1px solid #1f2933;
    color: var(--accent-blue);
    font-size: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow:hover {
    background: var(--accent-blue);
    color: #020617;
}
/* CONTACT SECTION */
.contact {
    padding: 80px 20px;
    text-align: center;
}

.contact-text {
    max-width: 600px;
    margin: 20px auto 40px;
    color: var(--text-muted);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.whatsapp {
    background: #25D366;
    color: #020617 !important;
}

.whatsapp:hover {
    background: #1ebe5d;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    margin: 0 15px;
    color: var(--accent-blue);
    text-decoration: none;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn.secondary {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
}

.founder-badges {
   
    margin: 20px 0;
}

.founder-badges span {
    background: #1f2933;
    padding: 6px 12px;
    margin-right: 10px;
    font-size: 12px;
    border-radius: 20px;
    white-space: nowrap;  /* prevents breaking text */
}
