* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
font-family: "Poppins", sans-serif;
font-style: normal;
background-color: #000;    
}


* {
    box-sizing: border-box; 
}

html, body {
    overflow-x: hidden; 
    max-width: 100%;
    margin: 0;
    padding: 0;
}


.container {
    max-width: 1200px;
    width: 100%; 
    margin: 0 auto; 
    padding: 0 20px; 
}


@media (max-width: 768px) {
    .container {
        max-width: 100%; 
        margin: 0; 
        padding: 0 15px; 
    }
    

    .services-grid,
    .section,
    .theme {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 10px; 
    }
    
 
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    

    h1, h2, h3, h4, h5, h6, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}


.header {
    width: 100%;
    max-width: 100%;
    padding: 1% 5%; 
}

@media (max-width: 768px) {
    .header {
        padding: 1% 3%; 
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1% 2%; 
    }
}
.header {
    padding: 1% 5%; 
    max-width: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 40px;  
    width: auto;    
}

.logo span {
    font-size: 18px;
    font-weight: normal;
    color: #62fcff; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    z-index: 2000;
}



.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: normal;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #62fcff;
}

.nav-links li a.active {
    color: #62fcff;     
    font-weight: bold; 
    border-bottom: 2px solid #62fcff;
    padding-bottom: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #ffffff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}


.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Tablet styles */
@media (max-width: 1024px) {
    .header {
        padding: 1% 3%;
    }
    
    .nav-links {
        gap: 15px;
    }
}


@media (max-width: 768px) {
    .header {
        padding: 1% 4%;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-links {
        position: fixed; 
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px; 
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding-top: 80px;
        backdrop-filter: blur(10px);
    }

    .nav-links li {
        margin: 20px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 12px 20px;
        font-size: 18px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-links li a:hover {
        background-color: rgba(98, 252, 255, 0.1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
        z-index: 2001;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .header {
        padding: 1% 3%;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo span {
        font-size: 14px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .nav-links {
        width: 200px;
        padding-top: 70px;
    }
    
    .nav-links li a {
        font-size: 16px;
        padding: 10px 15px;
    }
}

/* Large desktop styles */
@media (min-width: 1200px) {
    .header {
        padding: 1% 8%; 
    }
    
    .nav-links {
        gap: 30px;
    }
}

/* Demo content */
.demo-content {
    padding: 60px 5% 40px;
    color: white;
    text-align: center;
    min-height: 100vh;
}

.demo-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #62fcff;
}

.demo-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .demo-content {
        padding: 40px 4% 30px;
    }
    
    .demo-content h1 {
        font-size: 2rem;
    }
    
    .demo-content p {
        font-size: 1rem;
    }
}


.resources-section {
            padding: 80px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Navigation Tabs */
        .nav-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .nav-tab {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
        }

        .nav-tab:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .nav-tab.active {
            background: #00d4ff;
            border-color: #62fcff;
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .resource-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .resource-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .card-image {
            width: 100%;
            height: 220px;
            background-size:cover;
            position: relative;
            object-fit:fill;   

        }

        .card-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
        }

        .card-content {
            padding: 25px;
        }

        .card-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
            color: #fff;
        }

        .card-description {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #62fcff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            color: #8aa7f7;
            transform: translateX(5px);
        }

        .read-more-btn::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .read-more-btn:hover::after {
            transform: translateX(3px);
        }

        /* Special Cards */
        .card-large {
            grid-column: span 2;
        }

        .card-highlight {
            background: linear-gradient(135deg, #00d4ff 0%, #62fcff 100%);
            color: white;
        }

        .card-highlight .card-description {
            color: rgba(255, 255, 255, 0.9);
        }

        .card-highlight .read-more-btn {
            color: white;
        }

        /* Bottom Cards Row */
        .bottom-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .bottom-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .bottom-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }

        .bottom-card .card-image {
            height: 120px;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .bottom-card .card-title {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .bottom-card .card-description {
            font-size: 13px;
            margin-bottom: 15px;
        }

        /* Category Tags */
        .category-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
            z-index: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .resources-section {
                padding: 40px 15px;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .card-large {
                grid-column: span 1;
            }

            .nav-tabs {
                justify-content: center;
            }

            .nav-tab {
                font-size: 12px;
                padding: 10px 16px;
            }
        }

        @media (max-width: 480px) {
            .card-title {
                font-size: 18px;
            }
            
            .card-content {
                padding: 20px;
            }
        }

 /* Demo content to show footer positioning */
        .demo-content {
            padding: 50px 20px;
            text-align: center;
            background: rgb(0, 0, 0);
            margin-bottom: 50px;
        }

        /* Footer Section */
        .footer {
            background-color: rgb(0, 0, 0);
            color: #ccc;
            padding: 80px 20px 40px;
            font-family: 'Inter', sans-serif;
            width: 100%;
            box-sizing:border-box;
        }

        .footer-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            box-sizing: border-box;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 200px repeat(3, 1fr); /* Fixed width for logo */
            gap: 80px;
            margin-bottom: 40px;
            align-items: start;
        }

        /* Footer logo */
        .footer-logo {
            display: flex;
            align-items: center;
        }

        .footer-logo img {
            width: 150px;
            height: auto;
        }

        /* Placeholder for missing logo */
        .footer-logo-placeholder {
            width: 150px;
            height: 60px;
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 14px;
        }
        

        /* Columns */
        .footer-column h3 {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 24px;
            text-transform: uppercase;
        }

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

        .footer-links li {
            margin-bottom: 16px;
        }

        .footer-links a {
 color: #ffffff;            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #0099ff;
        }

        /* Footer bottom */
        .footer-bottom {
            border-top: 1px solid #fffdfd;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 14px;
            color: #666;
        }

        /* Social links */
        .footer-social a {
color: #0099ff;            text-decoration: none;
            margin-left: 10px;
        }
/* 
        .footer-social a:hover {
            color: #fff;
        } */

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            .footer-logo {
                grid-column: 1 / -1;
                margin-bottom: 20px;
            }
            /* Footer Logo Image */
.footer-logo img {
  width: 150px;     /* adjust width as needed */
  height: auto;     /* maintain aspect ratio */
  display: block;
}

        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-container {
                padding: 0 20px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }