/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #491344, #1a0b2e);
    color: white;
}
h2 {
    font-size: 26px;
    font-weight: 700;
    color: pink;
    letter-spacing: 1px;
}
/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    background: rgba(96, 68, 167, 0.15);
    backdrop-filter: blur(10px);
}

header nav a {
    margin-left: 20px;
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

header nav a:hover {
    color: #4C9492;
}

/* ================= HERO ================= */

.hero {
    padding: 60px;
    display: flex;
    justify-content: center;
}

.hero-container {
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT */
.hero-left {
    flex: 1;
}

.hero-title {
    font-size: 45px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero-desc {
    font-size: 15px;
    color: #cbd5f5;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #6044A7;
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #487A6F;
    transform: scale(1.05);
}

.btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;

    background: linear-gradient(135deg, #22c55e, #16a34a); /* or your color */
    color: white;

    text-decoration: none;  
    font-size: 14px;

    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #4C9492;
    color: white;
}

/* RIGHT IMAGE */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img-box {
    position: relative;
}

.hero-right img {
    width: 260px;
    border-radius: 50%;
    border: 4px solid #6044A7;
    box-shadow: 0 0 25px rgba(96, 68, 167, 0.5);
}

/* TAG */
.tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #487A6F;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

/* ================= ABOUT ================= */

#about {
    padding: 60px;
    display: flex;
    justify-content: center;
    background: rgba(76, 148, 146, 0.05);
}

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

.about-text h5 {
    color: #4C9492;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-text h1 {
    font-size: 34px;
    margin-bottom: 15px;
}

.about-text p {
    color: #d1d5db;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ================= FOOTER ================= */

footer {
    text-align: center;
    padding: 20px;
    background: rgba(96, 68, 167, 0.15);
    color: #ddd;
}