
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.7;
}

header {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: white;
    text-align: center;
    padding: 30px 20px 40px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

header h1 {
    color: #ffffff;
}

header p {
    color: #ffffff;
}
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 16px;
    background: rgba(15, 23, 42, 0.96);
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

nav ul li {
    display: inline-block;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 999px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background: linear-gradient(135deg, #facc15, #fbbf24);
    color: #090909;
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.35);
}

main {
    padding: 30px 15px;
}
section {
    background: white;
    width: 86%;
    margin: 26px auto;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

section:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

h1, h2, h3 {
    color: #0f172a;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin-top: 8px;
    border-radius: 10px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
}

p {
    font-size: 1rem;
}
ul {
    padding-left: 22px;
}

li {
    margin-bottom: 8px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.float-image {
    float: left;
    width: 260px;
    margin-right: 20px;
    margin-bottom: 12px;
}

.clearfix {
    clear: both;
}

.button-link {
    display: inline-block;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #111827;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    margin-top: 15px;
    transition: all 0.25s ease;
}
html {
    scroll-behavior: smooth;
}
.button-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(250, 204, 21, 0.4);
}

.premium-box {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.25);
}

.premium-box h2,
.premium-box h3,
.premium-box p,
.premium-box li {
    color: white;
}

.premium-box h2::after {
    background: linear-gradient(135deg, #facc15, #f59e0b);
}

.price-tag {
    display: inline-block;
    background-color: #facc15;
    color: #111827;
    font-weight: 800;
    padding: 10px 16px;
    border-radius: 999px;
    margin: 10px 0;
}


form {
    margin-top: 20px;
}

label {
    font-weight: 600;
    color: #0f172a;
}

input, textarea {
    width: 100%;
    max-width: 550px;
    padding: 12px 14px;
    margin-top: 6px;
    margin-bottom: 16px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 1rem;
    background-color: #f8fafc;
}
input:focus, textarea:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.2);
    outline: none;  
}

input[type="submit"] {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #111827;
    border: none;
    cursor: pointer;
    font-weight: 800;
    width: auto;
    padding: 12px 24px;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

footer {
    text-align: center;
    padding: 24px;
    background: #0f172a;
    color: white;
    margin-top: 40px;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    section {
        width: 92%;
        padding: 20px;
    }

    .float-image {
        float: none;
        display: block;
        width: 100%;
        margin-right: 0;
    }
}
.about-flex {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.about-flex img {
    width: 100%;
    max-width: 350px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    border: 1px solid #d1d5db;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f8fafc;
    color: #0f172a;
}
section img {
    display: block;
    margin: 15px auto;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.hero {
    position: relative;
    width: 88%;
    margin: 20px auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}


.hero-text {
    position: bellow;
    bottom: 20px;
    left: 20px;
    color: #111827;
    max-width: 500px;
}

.hero-text h2 {
    color: #111827;
}

.hero-text p {
    margin: 10px 0;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.048);
}
#topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #facc15;
    color: #111827;
    border: none;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
}

#topBtn:hover {
    background-color: #f59e0b;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #eef1f7;
  color: #111827;
}

.site-header {
  width: 100%;
}

.top-banner {
  background: linear-gradient(to right, #2446b8, #2f64ff);
  color: #f4c542;
  text-align: center;
  padding: 40px 20px;
}

.top-banner h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.top-banner p {
  margin-top: 18px;
  font-size: 1.15rem;
}

.nav-menu {
    display: block;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #0f172a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 16px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: linear-gradient(135deg, #facc15, #fbbf24);
    color: #facc15;
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.35);
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 16px;
    right: 20px;
    font-size: 38px;
    color: #facc15;
    cursor: pointer;
    transition: 0.3s;
    z-index: 3000;
}
.menu-toggle:hover {
  color: #eab308;
}
.scrolled .nav-menu {
    display: none;
}

.scrolled .menu-toggle {
    display: block;
}

.scrolled .nav-menu.show {
    display: block;
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    background: rgba(15, 23, 42, 0.97);
    border-radius: 14px;
    z-index: 2500;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.scrolled .nav-menu.show ul {
    margin: 0;
    padding: 12px 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.scrolled .nav-menu.show a {
    font-size: 0.95rem;
    padding: 8px 10px;
}


@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.show {
        display: block;
        position: fixed;
        top: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: rgba(15, 23, 42, 0.97);
        border-radius: 14px;
        z-index: 2500;
        box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    }

    .nav-menu.show ul {
        margin: 0;
        padding: 10px 12px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .nav-menu.show a {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}