nav {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(156, 222, 244, 0.2);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
}

.logo1 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo1 .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #9cdef4, #85daf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.logo1 .text {
    font-size: 28px;
    font-weight: bold;
    color: #9cdef4;
}

.logo1 .tagline {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

nav a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

nav a:hover {
    color: #9cdef4;
    background: rgba(156, 222, 244, 0.1);
    transform: translateY(-2px);
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9cdef4, #6bb6ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::before {
    width: 80%;
}


.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 350px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    backdrop-filter: blur(20px);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    padding: 0;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
}

.sidebar.active {
    right: 0;
}

.sidebar li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar li:first-child {
    border-bottom: 2px solid rgba(156, 222, 244, 0.3);
    padding: 20px;
}

.sidebar a {
    color: #e2e8f0;
    padding: 20px 30px;
    display: block;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.sidebar a:hover {
    background: rgba(156, 222, 244, 0.2);
    color: #9cdef4;
    padding-left: 40px;
}

.sidebar svg {
    fill: #e2e8f0;
    transition: all 0.3s ease;
}

.sidebar a:hover svg {
    fill: #9cdef4;
}

.menu-button {
    display: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-button:hover {
    background: rgba(156, 222, 244, 0.1);
}

.menu-button svg {
    fill: #2d3748;
    transition: all 0.3s ease;
}

.hideOnMobile {
    display: flex;
}

/* FOOTER STYLES */

footer {
    background: #666;
    color: #e2e8f0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #9cdef4, transparent);
}


.subscribe {
    grid-column: 1 / -1;
    text-align: center;
    margin: 30px 40px 0 40px;
    padding: 30px;
    background: rgba(156, 222, 244, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(156, 222, 244, 0.2);
}

.subscribe h4 {
    color: #9cdef4;
    margin-bottom: 10px;
    font-size: 2rem;
}

.subscribe p {
    color: white;
    margin-bottom: 20px;
}

.subscribe-link {
    margin-top: 10px;
}

.subscribe-link a {
    color: white;
}

.input-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;

}

.input-box {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #9cdef4;
    border-radius: 25px 0 0 25px;
    font-size: 14px;
    background: transparent;
    color: white;
    min-width: 0;
}

.input-box::placeholder {
    color: #a0aec0;
    opacity: 0.8;
}

.input-box:focus {
    outline: none;
    border-color: #85daf6;
    box-shadow: 0 0 0 3px rgba(156, 222, 244, 0.2);
}

.btn {
    padding: 12px 20px;
    background: #9cdef4;
    border: none;
    border-radius: 0 25px 25px 0;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn:hover {
    background: #9cdef4;
    color: white;
}

.footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer1 {
    grid-column: span 1;
}

.footer-logo1 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo1 .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #9cdef4, #85daf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.footer-logo1 .text {
    font-size: 28px;
    font-weight: bold;
    color: #9cdef4;
    white-space: nowrap;
}

.footer-logo1 .tagline {
    font-size: 12px;
    color: white;
    margin-top: 2px;
    white-space: nowrap;
}

.footer-logo-card,
.footer-logo-display {
    background: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.footer-logo-link {
    text-decoration: none !important;
    color: inherit !important;
}

.footer-logo1 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo1 .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #9cdef4, #85daf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
}

.footer-logo1 .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo1 .text {
    font-size: 28px;
    font-weight: bold;
    color: #9cdef4;
    line-height: 1.2;
}

.footer-logo1 .tagline {
    font-size: 12px;
    color: #ffffff;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #9cdef4;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links i {
    color: white;
    font-size: 25px;
}

.social-links a:hover {
    color: #85daf6;
}

.footer1 p {
    color: #9cdef4;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer1 a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9cdef4, #9cdef4);
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer1 a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(156, 222, 244, 0.4);
}

.footer2,
.footer3 {
    padding-left: 20px;
}

.footer2 h4,
.footer3 h4 {
    color: #9cdef4;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
}

.footer2 h4::after,
.footer3 h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #9cdef4, #6bb6ff);
}

.footer2 p {
    margin-bottom: 10px;
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer2 p:hover {
    color: #9cdef4;
}

.footer3 .list {
    list-style: none;
    padding-left: 0;
}

.footer3 .list li {
    margin-bottom: 12px;
}

.footer3 .list a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer3 .list a:hover {
    color: #9cdef4;
    padding-left: 10px;
}

.footer3 .list a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer3 .list a:hover::before {
    opacity: 1;
    left: -15px;
}

.bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(156, 222, 244, 0.2);
}

.bottom li {
    list-style: none;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .footer {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer1 {
        grid-column: span 1;
    }

    .subscribe {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .subscribe {
        margin: 30px 20px 0 20px;
        padding: 20px;
    }

    .subscribe h4 {
        color: #9cdef4;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }

    .input-group {
        max-width: 400px;
    }

    .input-box {
        font-size: 16px;
        padding: 10px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 0.8rem;
    }

    .hideOnMobile {
        display: none;
    }

    .menu-button {
        display: block;
    }

    nav ul {
        padding: 0 15px;
    }

    .sidebar {
        width: 100%;
    }

    /* footer */
    .footer {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px 15px 20px;
    }

    .footer1 {
        grid-column: span 1;
    }

    .footer2,
    .footer3 {
        padding-left: 0;
        margin-left: 0;
    }
}


@media (max-width: 480px) {
    .footer {
        padding: 30px 10px 15px;
    }

    .input-group {
        flex-direction: column;
    }

    .form-control {
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .btn {
        border-radius: 8px;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .logo1 {
        gap: 5px;
    }

    .logo1 .icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .logo1 .text {
        font-size: 18px;
    }

    .logo1 .tagline {
        font-size: 8px;
    }

    .subscribe {
        margin: 20px 15px 0 15px;
        padding: 15px;
    }

    .subscribe h4 {
        font-size: 1.5em;
        margin-bottom: 8px;
    }

    .subscribe p {
        font-size: 0.9em;
        margin-bottom: 15px;
    }

        .input-group {
        border-radius: 0;
    }

    .input-box {
        border-radius: 0;

    }

    .btn {
        margin-top:10px;
        border-radius:0;
    }


    .subscribe-link p {
        font-size: 0.85em;
    }

     .footer {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 15px 20px;
    }

}



@media (max-width: 400px) {

    .logo1 {
        gap: 5px;
    }

    .logo1 .icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .logo1 .text {
        font-size: 18px;
    }

    .logo1 .tagline {
        font-size: 8px;
    }

       .input-group {
        border-radius: 0;
    }

    .input-box {
        border-radius: 0;

    }

    .btn {
        border-radius:0;
    }


    .footer {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 15px 20px;
    }

    .menu-button {
        margin-bottom: 10px;
    }

}

@media (max-width: 320px) {
    .logo-link {
        padding: 0;
    }

    .logo1 {
        gap: 10px;
    }

    .logo1 .icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .logo1 .text {
        font-size: 15px;
    }

    .logo1 .tagline {
        font-size: 8px;
    }

    nav a {
    padding: 12px 10px;

}

    .menu-button {
        margin-bottom: 20px;
    }

    .subscribe h4 {
        font-size: 1.2rem;
    }

    .input-group {
        border-radius: 0;
    }

    .input-box {
        border-radius: 0;
    }

    .btn {
        border-radius:0;
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 15px 20px;
    }

    .footer-logo1 .icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .footer-logo1 .text {
        font-size: 20px;
    }

    .footer-logo1 .tagline {
        font-size: 10px;
    }

       


}
