/* =========================
   Global
========================= */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

p {
    color: #555;
    line-height: 1.7;
}

/* =========================
   Navbar
========================= */
.navbar {
    background: linear-gradient(135deg, #7b2ff7 0%, #f107a3 100%);
    padding: 18px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 22px;
    letter-spacing: 1px;
    color: #ffffff !important;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin-left: 20px;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #ffffff;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* =========================
   Banner
========================= */
.banner {
    position: relative;
    background: linear-gradient(135deg, #7b2ff7 0%, #f107a3 100%);
    padding: 200px 0 0 0;
    overflow: hidden;
}

.banner-overlay {
    padding-bottom: 120px;
}

.white {
    color: #ffffff;
}

.banner h2 {
    font-size: 42px;
    font-weight: 700;
}

.banner p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-top: 20px;
}

/* Button */
.banner-btn {
    background: #ffffff;
    color: #7b2ff7;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* =========================
   Improved Hero Wave
========================= */
.hero-wave {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-top: -1px; /* prevents gap */
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

.hero-wave path {
    fill: #ffffff;
}

/* =========================
   Sections
========================= */
.section-padding {
    padding: 120px 0;
}

.sectioner-header h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.line {
    width: 70px;
    height: 4px;
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
    display: block;
    margin: 20px auto;
    border-radius: 2px;
}

/* =========================
   Feature Boxes
========================= */
.icon-box {
    padding: 35px 30px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(123,47,247,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(123,47,247,0.15);
}

.icon-box h5 {
    margin-bottom: 15px;
}

/* =========================
   Footer
========================= */
footer {
    padding: 30px 0;
    background: #111;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* About Section */
.about-content h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content p {
    color: #555;
    line-height: 1.7;
}

.about-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.about-box:hover {
    transform: translateY(-6px);
}

.about-box h6 {
    font-weight: 600;
    margin-bottom: 10px;
}


/* Contact Section */
.contact-info {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-control {
    border-radius: 30px;
    padding: 12px 20px;
    border: 1px solid #ddd;
}

textarea.form-control {
    border-radius: 20px;
}

.contact-btn {
    background: linear-gradient(to right, #7b2ff7, #f107a3);
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    opacity: 0.9;
}