.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    font-family: "Lexend", sans-serif;
    padding: 5px 80px;
    margin: 0 auto;
    background: white;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    }
    a{
    text-decoration: none;
    }
    .logo-container {
    display: flex;
    align-items: center;
    }
    
    .logo-container img {
    width: 160px;
    }
    
    .menu-container {
    display: flex;
    align-items: center;
    gap: 20px;
    }
    
    .menu-item {
    position: relative;
    display: flex;
    align-items: center;
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s;
    }
    
    .menu-item:hover {
    color: #22919A;
    }
    
    .menu-item svg {
    margin-left: 5px;
    fill: #002855;
    transition: fill 0.3s;
    }
    
    .menu-item:hover svg {
    fill: #22919A;
    }
    
    .login-btn {
    background-color: #22919A;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Lexend", sans-serif;  
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
    }
    
    .login-btn:hover {
    background-color: #1b767e;
    }
    
    .login-btn svg {
    fill: white;
    }
    
    .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    z-index: 1001;
    }
    
    .hamburger:hover {
    background: rgba(34, 145, 154, 0.1);
    }
    
    .hamburger span {
    width: 24px;
    height: 2px;
    background-color: #002855;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
    }
    
    /* Hamburger Animation States */
    .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
    }
    
    .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    }
    
    .mobile-menu {
    display: none;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    }
    
    /* Mobile Menu Active State */
    .mobile-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background-color: white;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    transform: translateX(0);
    opacity: 1;
    }
    
    .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 40, 85, 0.1);
    }
    
    .close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    }
    
    .close-btn:hover {
    background: rgba(34, 145, 154, 0.1);
    }
    
    .close-btn svg {
    width: 20px;
    height: 20px;
    fill: #002855;
    }
    
    .mobile-menu .menu-item {
    font-size: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    }
    
    .mobile-menu .menu-item:hover {
    background-color: rgba(34, 145, 154, 0.1);
    }
    
    .mobile-menu .login-btn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 15px;
    border-radius: 8px;
    }
    
    /* Responsive Design */
    @media screen and (max-width: 768px) {
    .menu-container {
    display: none;
    }
    
    .hamburger {
    display: flex;
    }
    
    .logo-container img {
    width: 120px;
    }
    
    .navbar {
    padding: 15px 20px;
    position: relative;
    }
    }
    
    @media screen and (max-width: 480px) {
    .logo-container img {
    width: 100px;
    }
    
    .navbar {
    padding: 12px 15px;
    }
    
    .mobile-menu {
    width: 250px;
    }
    
    .mobile-menu .menu-item {
    font-size: 14px;
    padding: 10px 12px;
    }
    
    .mobile-menu .login-btn {
    padding: 10px;
    font-size: 14px;
    }
    }
    body {
        display: block;
        margin: 0px;
        }
        .blackback{
        background-color: #111215;
        }
        .custom-footer {
        background: #111215;
        color: #fff;
        font-family: "Lexend", sans-serif;
        padding: 0px 0px;
        margin: 0;
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        }
        
        .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px 40px 10px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        gap: 0px;
        }
        
        .footer-col {
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex: 1;
        }
        
        .footer-col h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 16px;
        color: #fff;
        }
        
        .footer-col a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 15px;
        line-height: 1.6;
        transition: color 0.2s ease;
        }
        
        .footer-col a:hover {
        color: #fff;
        text-decoration: underline;
        }
        
        /* Newsletter Section Styling */
        .footer-col.newsletter {
        flex: 1.7;
        width: 320px;
        }
        
        .footer-col.newsletter p {
        font-size: 15px;
        line-height: 1.5;
        margin: 0px;
        color: rgba(255, 255, 255, 0.8);
        }
        
        .newsletter-form {
        display: flex;
        align-items: stretch;
        margin-bottom: 24px;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        height: 48px;
        }
        
        .newsletter-form input[type="email"] {
        border: none;
        outline: none;
        padding: 0 16px;
        font-size: 14px;
        flex: 1;
        color: #333;
        background: #fff;
        }
        
        .newsletter-form input[type="email"]::placeholder {
        color: #999;
        }
        
        .newsletter-form button {
        background: #20B2AA;
        border: none;
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s ease;
        font-size: 20px;
        min-width: 48px;
        }
        
        .newsletter-form button:hover {
        background: #1a9691;
        }
        
        .newsletter-form button svg {
        width: 20px;
        height: 20px;
        fill: #fff;
        }
        
        .footer-social {
        display: flex;
        align-items: center;
        gap: 16px;
        }
        
        .footer-social span {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        margin-right: 4px;
        }
        
        .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: background 0.2s ease;
        }
        
        .footer-social a:hover {
        background: #20B2AA;
        }
        
        .footer-social a img {
        width: 18px;
        height: 18px;
        filter: invert(1);
        }
        
        /* Middle Section */
        .footer-mid {
        padding: 20px 40px 0px 40px;
        }
        
        .footer-mid > div {
        margin-bottom: 40px;
        }
        
        .footer-mid h4 {
        font-size: 18px;
        font-weight: 600;
        margin: 0px 0px 20px 0px;    color: #fff;
        }
        
        .footer-links-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 20px 24px;
        }
        
        .footer-links-grid > div {
        display: flex;
        flex-direction: column;
        gap: 8px;
        }
        
        .footer-links-grid a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 13px;
        line-height: 1.4;
        transition: color 0.2s ease;
        }
        
        .footer-links-grid a:hover {
        color: #fff;
        text-decoration: underline;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
        .footer-top {
        padding: 40px 30px 30px 30px;
        gap: 30px;
        }
        .footer-mid {
        padding: 30px 30px 20px 30px;
        }
        .footer-links-grid {
        gap: 16px 20px;
        }
        }
        
        @media (max-width: 992px) {
        .footer-top {
        flex-wrap: wrap;
        gap: 30px;
        }
        .footer-col {
        flex: 1 1 130px;
        }
        .footer-col.newsletter {
        flex: 1 1 60%;
        max-width: 500px;
        }
        .footer-links-grid {
        grid-template-columns: repeat(4, 1fr);
        }
        }
        
        @media (max-width: 768px) {
        .footer-top {
        padding: 30px 20px 20px 20px;
        /* flex-direction: column; */
        gap: 25px;
        }
        .footer-mid {
        padding: 25px 20px 15px 20px;
        }
        .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px 16px;
        }
        .footer-col.newsletter {
        order: 0;
        }
        }
        
        @media (max-width: 576px) {
        .footer-top {
        padding: 25px 15px 15px 25px;
        }
        .footer-mid {
        padding: 20px 15px 10px 25px;
        }
        .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 12px;
        }
        .newsletter-form {
        height: 44px;
        }
        .newsletter-form input[type="email"] {
        font-size: 13px;
        padding: 0 12px;
        }
        .newsletter-form button {
        padding: 0 12px;
        min-width: 44px;
        }
        }
        
        @media (max-width: 400px) {
        .footer-top {
        padding: 20px 10px 10px 25px;
        }
        .footer-mid {
        padding: 15px 10px 5px 25px;
        }
        .footer-links-grid {
        grid-template-columns: 1fr;
        }
        .footer-social {
        flex-wrap: wrap;
        gap: 12px;
        }
        }
        /* Footer Bottom Section */
        .footer-bottom {
        background-color: #000; /* Black background as in the image */
        color: rgba(255, 255, 255, 0.8); /* White text with some transparency */
        padding: 20px 80px; /* Padding for desktop, matching other sections */
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap; /* Allow content to wrap on smaller screens */
        font-size: 14px;
        }
        
        .footer-copyright {
        margin: 0; /* Remove default paragraph margin */
        flex-shrink: 0; /* Prevent shrinking */
        }
        
        .footer-policy-links {
        display: flex;
        align-items: center;
        gap: 15px; /* Space between links */
        flex-wrap: wrap; /* Allow links to wrap */
        }
        
        .footer-policy-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.2s ease;
        }
        
        .footer-policy-links a:hover {
        color: #fff;
        text-decoration: underline;
        }
        
        .footer-policy-links .separator {
        color: rgba(255, 255, 255, 0.8);
        }
        
        
        /* Responsive Design */
        
        /* Large tablets and smaller desktops */
        @media (max-width: 1024px) {
        .footer-bottom {
        padding: 20px 40px; /* Adjust padding */
        }
        }
        
        /* Tablets and larger phones */
        @media (max-width: 768px) {
        .footer-bottom {
        flex-direction: column; /* Stack content vertically */
        text-align: center; /* Center text */
        padding: 20px; /* Adjust padding */
        gap: 10px; /* Space between stacked items */
        }
        .footer-copyright {
        margin-bottom: 5px; /* Space below copyright when stacked */
        }
        .footer-policy-links {
        justify-content: center; /* Center links when stacked */
        }
        }
        
        /* Smaller phones */
        @media (max-width: 480px) {
        .footer-bottom {
        padding: 15px; /* Adjust padding */
        font-size: 12px; /* Smaller font size */
        }
        .footer-policy-links {
        gap: 10px; /* Reduce gap between links */
        }
        .footer-policy-links .separator {
        font-size: 12px; /* Smaller separator */
        }
        }
        
        /* Very small phones */
        @media (max-width: 360px) {
        .footer-bottom {
        padding: 10px; /* Adjust padding */
        font-size: 11px; /* Smaller font size */
        }
        .footer-policy-links {
        flex-direction: column; /* Stack policy links */
        gap: 5px; /* Reduce gap */
        }
        .footer-policy-links .separator {
        display: none; /* Hide separator when links are stacked */
        }
        }
        /* footer */
        
        /* Enhanced Responsive Design */
        @media (max-width: 1200px) {
        .med-showcase {
        max-width: 95%;
        }
        
        .med-item.active {
        width: 700px;
        height: 340px;
        }
        }
        
        @media (max-width: 992px) {
        .med-showcase {
        height: 400px;
        }
        
        .med-item.active {
        width: 600px;
        height: 300px;
        }
        
        .med-item.left-1 {
        transform: translateX(-280px) scale(0.8);
        }
        
        .med-item.right-1 {
        transform: translateX(280px) scale(0.8);
        }
        }
        
        @media (max-width: 768px) {
        .med-showcase {
        height: 350px;
        }
        
        .med-item {
        width: 280px;
        height: 160px;
        }
        
        .med-item.active {
        width: 450px;
        height: 250px;
        }
        
        .med-item.left-1 {
        transform: translateX(-200px) scale(0.7);
        }
        
        .med-item.right-1 {
        transform: translateX(200px) scale(0.7);
        }
        
        .med-item.left-2 {
        transform: translateX(-320px) scale(0.5);
        }
        
        .med-item.right-2 {
        transform: translateX(320px) scale(0.5);
        }
        
        .med-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
        }
        
        .med-navigation-group {
        gap: 10px;
        }
        
        .med-dot {
        width: 10px;
        height: 10px;
        }
        }
        
        @media (max-width: 576px) {
        .med-showcase {
        height: 300px;
        }
        
        .med-item {
        width: 220px;
        height: 140px;
        }
        
        .med-item.active {
        width: 320px;
        height: 200px;
        }
        
        .med-item.left-1 {
        transform: translateX(-160px) scale(0.7);
        }
        
        .med-item.right-1 {
        transform: translateX(160px) scale(0.7);
        }
        
        .med-item.left-2 {
        transform: translateX(-240px) scale(0.5);
        }
        
        .med-item.right-2 {
        transform: translateX(240px) scale(0.5);
        }
        
        .med-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
        }
        
        .med-navigation-group {
        gap: 8px;
        }
        
        .med-dot {
        width: 8px;
        height: 8px;
        }
        
        .med-title {
        font-size: 18px;
        }
        }
        
        @media (max-width: 400px) {
        .med-showcase {
        height: 250px;
        }
        
        .med-item {
        width: 180px;
        height: 120px;
        }
        
        .med-item.active {
        width: 280px;
        height: 180px;
        }
        
        .med-item.left-1 {
        transform: translateX(-140px) scale(0.7);
        }
        
        .med-item.right-1 {
        transform: translateX(140px) scale(0.7);
        }
        
        .med-item.left-2 {
        transform: translateX(-200px) scale(0.5);
        }
        
        .med-item.right-2 {
        transform: translateX(200px) scale(0.5);
        }
        
        .med-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
        }
        
        .med-navigation-group {
        gap: 6px;
        }
        
        .med-dot {
        width: 6px;
        height: 6px;
        }
        
        .med-title {
        font-size: 16px;
        }
        }
        /* footer */
        
        @media (max-width: 1000px) {
        .grid {
        grid-template-columns: 1fr;
        gap: 25px;
        }
        
        .box {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        height: auto;
        }
        
        .pic {
        width: 200px;
        height: 180px;
        }
        
        .info {
        padding: 15px;
        }
        
        .head {
        font-size: 17px;
        margin-bottom: 10px;
        }
        
        .txt {
        font-size: 14px;
        }
        }
        
        @media (max-width: 800px) {
        .box {
        max-width: 100%;
        }
        
        .pic {
        width: 180px;
        height: 160px;
        }
        
        .info {
        padding: 12px;
        }
        
        .head {
        font-size: 16px;
        }
        }
        
        @media (max-width: 700px) {
        .box {
        flex-direction: column;
        }
        
        .pic {
        width: 100%;
        height: 200px;
        }
        
        .info {
        padding: 15px;
        }
        
        .head {
        font-size: 16px;
        margin-bottom: 8px;
        }
        
        .txt {
        font-size: 14px;
        }
        }
        
        /* Footer Styles */
        .footer {
            background-color: #111215;
            color: #fff;
            font-family: "Lexend", sans-serif;
            padding: 60px 0 20px;
            margin-top: auto;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1.5fr 2fr;
            gap: 40px;
        }
        
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .footer-logo {
            width: 150px;
            height: auto;
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: #20B2AA;
            transform: translateY(-2px);
        }
        
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .footer-links-column h3 {
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-links-column a {
            display: block;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            line-height: 2;
            transition: all 0.3s ease;
        }
        
        .footer-links-column a:hover {
            color: #20B2AA;
            transform: translateX(5px);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 20px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        
            .footer-brand {
                text-align: center;
                align-items: center;
            }
        
            .footer-links {
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 20px;
            }
        
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .footer-content {
                padding: 0 15px;
            }
        
            .footer-links {
                grid-template-columns: 1fr;
                text-align: center;
            }
        
            .footer-links-column a:hover {
                transform: none;
            }
        
            .footer-bottom {
                padding: 15px;
            }
        }
        