body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    color: white;
    padding: 10px 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav a:hover {
    text-decoration: underline;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #333;
        width: 200px;
        padding: 10px;
    }

    .nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
.hero {
    height: 40vh;
    background: url('img/banner.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    background: #ff6600;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.btn:hover {
    background: #e65c00;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }
}
.content {
    padding: 50px 20px;
    background: #858282;
}

.container {
    max-width: 900px;
    margin: auto;
}

.content h2 {
    margin-top: 30px;
    color: #222;
    font-size: 26px;
}

.content p {
    margin-top: 10px;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

/* spacing between sections */
.content h2:first-child {
    margin-top: 0;
}

/* responsive */
@media (max-width: 768px) {
    .content {
        padding: 30px 15px;
    }

    .content h2 {
        font-size: 22px;
    }
}
/* Section background */
.seo-links {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
}

.container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.title {
    margin-bottom: 30px;
    font-size: 28px;
    letter-spacing: 1px;
}

/* Grid layout */
.link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Link boxes */
.link-box {
    text-decoration: none;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    backdrop-filter: blur(5px);
}

/* Shine animation */
.link-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.link-box:hover::before {
    left: 100%;
}

/* Hover effect */
.link-box:hover {
    transform: translateY(-8px) scale(1.05);
    background: #ffffff;
    color: #1e3c72;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Border glow */
.link-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #00c6ff, #0072ff) border-box;
    -webkit-mask: 
        linear-gradient(#000 0 0) padding-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: 0.4s;
}

.link-box:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .link-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.footer {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    padding: 60px 20px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
}

/* Top layout */
.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Columns */
.footer-col h3 {
    margin-bottom: 15px;
    position: relative;
}

/* underline animation */
.footer-col h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #00c6ff;
    position: absolute;
    left: 0;
    bottom: -5px;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 10px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

/* Hover effect */
.footer-col ul li a:hover {
    color: #00c6ff;
    padding-left: 5px;
}

/* Newsletter */
.footer-col input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-col button {
    padding: 10px;
    width: 100%;
    border: none;
    background: #00c6ff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-col button:hover {
    background: #0072ff;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}