body{
    width: 100%;
    height: 100vh;
    font-family: "Host Grotesk", serif !important;
}
:root{
    --sj-cyan:rgb(74, 165, 165);
    --curve:6px;
    --curve-sm:4px;
    --pd: 16px;
    --pd-sm: 8px;
    --pd-xs:4px;
    --pd-md: 12px;
    --navbar-height: 80px;
}

/* Modern Navbar Styles */
.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 165, 165, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    font-family: "Playwrite DK Loopet", cursive;
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--sj-cyan), #2d3748);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-text:hover {
    transform: translateY(-1px);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-btn, .register-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.login-btn {
    color: var(--sj-cyan);
    background: transparent;
    border-color: var(--sj-cyan);
}

.login-btn:hover {
    background: var(--sj-cyan);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 165, 165, 0.3);
}

.register-btn {
    background: linear-gradient(135deg, var(--sj-cyan), #60a5fa);
    color: white;
    border-color: var(--sj-cyan);
}

.register-btn:hover {
    background: linear-gradient(135deg, #60a5fa, var(--sj-cyan));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 165, 165, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .navbar-actions {
        gap: 0.75rem;
    }
    
    .login-btn, .register-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .login-btn span, .register-btn span {
        display: none;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
    
    .navbar-logo {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 0.75rem;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .navbar-logo {
        height: 30px;
    }
    
    .login-btn, .register-btn {
        padding: 0.5rem 0.75rem;
    }
}

/* Adjust content for fixed navbar */
#content {
    margin-top: var(--navbar-height);
}
#content{
    width: 100%;
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    flex-direction: column;
}
#banner{
    width: 100%;
    min-height: 400px;
    background: url(https://penstack.com/assets/img/home-background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}
#banner img{
    width: 300px;
    max-width: 80%;
    height: auto;
    margin-bottom: 1rem;
}
#banner p{
    font-size: 2rem;
    font-weight: 500;
    color: black;
    margin: 0;
    text-align: center;
}
/* Categories Section */
.categories-section {
    width: 100%;
    padding: 4rem 2rem;
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    margin-top: 2rem;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(74, 165, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 165, 165, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(74, 165, 165, 0.05) 0%, transparent 50%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 50%, var(--sj-cyan) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    text-shadow: none;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sj-cyan), transparent);
    border-radius: 2px;
}

.categories-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    border: none;
    position: relative;
    z-index: 2;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    align-items: stretch;
}

.category-card {
    background: white;
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    width: 150px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(74, 165, 165, 0.1);
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sj-cyan), rgba(74, 165, 165, 0.6));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(74, 165, 165, 0.2);
    border-color: rgba(74, 165, 165, 0.3);
}

.category-image-wrapper {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
}

.category-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 165, 165, 0.2), transparent);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.4s ease;
    filter: brightness(1) saturate(1);
    background-color: #f8f9fa;
    opacity: 1;
}

.category-image:not([src]) {
    opacity: 0;
}

.category-card:hover .category-image {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.2);
}

.category-info {
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.category-link {
    color: #2d3748;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.4;
    position: relative;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--sj-cyan);
    transition: width 0.3s ease;
}

.category-card:hover .category-link {
    color: var(--sj-cyan);
}

.category-card:hover .category-link::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .categories-container {
        max-width: 900px;
    }
    
    .categories-grid {
        gap: 1.2rem;
    }
    
    .category-card {
        width: 135px;
        min-height: 180px;
    }
    
    .category-image-wrapper {
        height: 110px;
        padding: 0.8rem;
    }
    
    .category-info {
        padding: 0.8rem;
    }
    
    .category-link {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 3rem 1rem;
    }
    
    .categories-container {
        max-width: 600px;
    }
    
    .categories-grid {
        gap: 1rem;
    }
    
    .category-card {
        width: 90px;
        min-height: 150px;
    }
    
    .category-image-wrapper {
        height: 80px;
        padding: 0.5rem;
    }
    
    .category-info {
        padding: 0.5rem;
    }
    
    .category-link {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .categories-section {
        padding: 2rem 0.5rem;
    }
    
    .categories-container {
        max-width: 330px;
    }
    
    .categories-grid {
        gap: 0.8rem;
    }
    
    .category-card {
        width: 100px;
        min-height: 140px;
    }
    
    .category-image-wrapper {
        height: 75px;
        padding: 0.4rem;
    }
    
    .category-info {
        padding: 0.4rem;
    }
    
    .category-link {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
/* #about{
    width: 95%;
    height: 50%;
    margin: auto;
} */

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(145deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(74, 165, 165, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 165, 165, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
    padding: 2rem 0 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 0.75rem;
    filter: brightness(1.2);
}

.brand-name {
    font-family: "Playwrite DK Loopet", cursive;
    font-size: 1.6rem;
    margin: 0.3rem 0;
    background: linear-gradient(135deg, var(--sj-cyan), #60a5fa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tagline {
    color: #cbd5e0;
    font-size: 0.85rem;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--sj-cyan);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--sj-cyan);
    border-radius: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.3rem;
}

.footer-list a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-list a:hover {
    color: var(--sj-cyan);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: rgba(74, 165, 165, 0.1);
    border: 1px solid rgba(74, 165, 165, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sj-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--sj-cyan);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(74, 165, 165, 0.3);
}

.contact-info p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--sj-cyan);
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 2rem;
}

.company-details h5 {
    color: var(--sj-cyan);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.company-details p {
    color: #cbd5e0;
    margin: 0.3rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.legal-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.5rem;
}

.legal-info span {
    color: #a0aec0;
    font-size: 0.8rem;
    font-family: 'Courier New', monospace;
}

.footer-links-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.footer-links-bottom a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--sj-cyan);
}

.footer-copyright {
    padding: 1rem 0;
    text-align: center;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-content p {
    margin: 0;
    color: #a0aec0;
    font-size: 0.85rem;
}

.love-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.love-note i {
    color: #e53e3e;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sj-cyan), #60a5fa, var(--sj-cyan));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%234a9ca5'%3E%3C/path%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%234a9ca5'%3E%3C/path%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%234a9ca5'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 60px;
    opacity: 0.1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .copyright-content {
        justify-content: center;
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-top {
        padding: 2rem 0;
    }
    
    .social-links {
        justify-content: center;
    }
}