body {
    margin: 0;
    padding: 0;
    background: #EAF6FF;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}



.site-header {

    background: linear-gradient(135deg, #4B0082, #6A0DAD);

    color: white;

    padding: 20px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);

}

.logo-area {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.site-logo {

    width: 80px;

    height: 80px;

    border-radius: 50%;

    object-fit: cover;

    border: 3px solid white;

}

.site-header h1 {

    margin: 0;

    font-size: 2.3rem;

}

.tagline {

    margin-top: 6px;

    opacity: .9;

}

.navbar {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    background: #fff;

    padding: 15px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);

}

.navbar a {

    text-decoration: none;

    color: #333;

    padding: 10px 18px;

    border-radius: 8px;

    transition: .3s;

    font-weight: bold;

}

.navbar a:hover {

    background: #6A0DAD;

    color: white;

}

.navbar .active {

    background: #4B0082;

    color: white;

}

.navbar {

    position: sticky;

    top: 0;

    z-index: 1000;

}



.page-container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.page-banner {
    text-align: center;
    margin-bottom: 50px;
}

.about-section {
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    text-align: center;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-6px);
}




/* SIDEBAR */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background: #111;
    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 60px;
    z-index: 999;
}

.sidebar a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
}

.sidebar a:hover {
    background: #333;
}

.closebtn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 35px;
}


/* MENU BUTTON */
.menu-btn {
    position: fixed;
    top: 15px;
    left: 15px;
    font-size: 25px;
    padding: 10px 15px;
    background: #00CED1;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    z-index: 1000;
}


/* Loading Screen */


#loader {


    position: fixed;


    width: 100%;


    height: 100%;


    background: #4B0082;


    top: 0;


    left: 0;


    display: flex;


    justify-content: center;


    align-items: center;


    z-index: 9999;


    color: white;


    transition: 1s;


}



.loader-content {


    text-align: center;


}



.robot {


    font-size: 70px;


    animation: robotMove 1s infinite alternate;


}



.loader-content h2 {


    font-size: 35px;


    color: white;


}



.loader-content p {


    font-size: 18px;


}



/* Robot Animation */


@keyframes robotMove {


    from {

        transform: translateY(0);

    }


    to {

        transform: translateY(-15px);

    }


}



/* Hide Loader */


.loader-hide {


    opacity: 0;

    visibility: hidden;


}




.theme-btn {

    position: absolute;

    top: 20px;

    right: 20px;

    width: 50px;

    height: 50px;

    border: none;

    border-radius: 50%;

    background: white;

    cursor: pointer;

    font-size: 24px;

    transition: 0.3s;

    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);

}

.theme-btn:hover {

    transform: scale(1.1);

}


.dark-mode {

    background: #121212;
    color: white;

}

.dark-mode nav {

    background: #222;

}

.dark-mode .card {

    background: #1e1e1e;
    color: white;

}

.dark-mode table {

    background: #2a0052;

}

.dark-mode a {

    color: white;

}

.dark-mode .footer {

    background: #080808;

}

.dark-mode table {
    background: #121212;
    color: #ffffff;
    border-collapse: collapse;
}

.dark-mode th {
    background: #4B0082;
    color: white;
}

.dark-mode tr:nth-child(even) td {
    background: #1e1e1e;
}

.dark-mode tr:nth-child(odd) td {
    background: #151515;
}

/* Futuristic Hero */


.hero {


    padding: 50px 20px;

    text-align: center;


    background:

        linear-gradient(135deg,
            #4B0082,
            #00cfd5);


    color: white;


    border-radius: 0 0 40px 40px;


    animation: heroMove 8s infinite alternate;


}



.hero img {


    width: 70%;


    max-width: 900px;


    border-radius: 25px;


    margin: 25px;


    box-shadow:

        0 20px 40px rgba(0, 0, 0, .4);


}



.hero h2 {


    font-size: 40px;


}



.hero p {


    font-size: 20px;


    max-width: 700px;


    margin: auto;


}



/* Button */


.hero-btn {


    display: inline-block;


    margin-top: 25px;


    padding: 15px 35px;


    background: white;


    color: #4B0082;


    text-decoration: none;


    border-radius: 30px;


    font-weight: bold;


    transition: .3s;


}



.hero-btn:hover {


    transform: scale(1.1);


    background: #111;


    color: white;


}

video {

    max-width: 100%;

    height: auto;

}

/* Moving Gradient */


@keyframes heroMove {


    from {

        background-position: left;

    }


    to {

        background-position: right;

    }


}



/* Premium AI Cards */


.card-container {


    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 30px;


}



.card {


    width: 300px;

    background: white;


    border-radius: 20px;


    overflow: hidden;


    box-shadow:

        0 10px 25px rgba(0, 0, 0, 0.15);


    transition: 0.4s;


}



.card:hover {


    transform: translateY(-15px);


    box-shadow:

        0 20px 40px rgba(75, 0, 130, 0.4);


}



.card-img {


    overflow: hidden;


}



.card img {


    width: 100%;

    height: 200px;

    object-fit: cover;


    transition: 0.5s;


}



.card:hover img {


    transform: scale(1.1);


}



.card-content {


    padding: 20px;


    text-align: center;


}



.card-content h3 {


    color: #4B0082;


}



.card-content button {


    background: #4B0082;


    color: white;


    border: none;


    padding: 10px 25px;


    border-radius: 20px;


    cursor: pointer;


    transition: 0.3s;


}



.card-content button:hover {


    background: #00cfd5;


    transform: scale(1.05);


}



.dark-mode .card {


    background: #1e1e1e;

    color: white;


}


.dark-mode .card-content h3 {


    color: #00ffff;


}




/* AI Gallery */


.gallery-section {


    padding: 50px 20px;

    text-align: center;


}



.gallery-section h2 {


    color: #4B0082;

    font-size: 35px;


}



.gallery-container {


    display: grid;


    grid-template-columns:

        repeat(auto-fit, minmax(250px, 1fr));


    gap: 25px;


    margin-top: 30px;


}



.gallery-item {


    background: white;


    border-radius: 20px;


    overflow: hidden;


    box-shadow:

        0 10px 25px rgba(0, 0, 0, .15);


    transition: .4s;


}



.gallery-item:hover {


    transform: translateY(-10px);


}



.gallery-item img {


    width: 100%;


    height: 220px;


    object-fit: cover;


    transition: .5s;


}



.gallery-item:hover img {


    transform: scale(1.1);


}



.gallery-item h3 {


    padding: 15px;


    color: #4B0082;


}



/* Dark Mode */


.dark-mode .gallery-item {


    background: #1e1e1e;


}



.dark-mode .gallery-item h3 {


    color: #00ffff;


}



.dark-mode .gallery-section h2 {


    color: #00ffff;


}



/* AI News Section */


.news-section {

    padding: 50px 20px;

    text-align: center;

}



.news-section h2 {

    color: #4B0082;

    font-size: 35px;

}



.news-container {


    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 30px;

    margin-top: 30px;

}



.news-card {


    width: 300px;


    background: white;


    padding: 25px;


    border-radius: 20px;


    text-align: left;


    box-shadow:

        0 10px 25px rgba(0, 0, 0, .15);


    transition: .4s;


}



.news-card:hover {


    transform: translateY(-12px);


}



.news-card span {


    background: #4B0082;


    color: white;


    padding: 5px 15px;


    border-radius: 20px;


}



.news-card h3 {


    margin-top: 20px;

    color: #4B0082;


}



.news-card a {


    color: #00a9b5;


    text-decoration: none;


    font-weight: bold;


}



/* Dark Mode */


.dark-mode .news-card {


    background: #1e1e1e;

    color: white;


}



.dark-mode .news-card h3 {


    color: #00ffff;


}



.dark-mode .news-section h2 {


    color: #00ffff;


}




/* Statistics Section */


.stats {


    text-align: center;

    padding: 50px 20px;

}



.stats h2 {


    color: #4B0082;

    margin-bottom: 40px;


}



.stats-container {


    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 40px;


}



.stat-box {


    width: 200px;

    padding: 25px;


    background: white;


    border-radius: 20px;


    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);


    transition: .4s;


}



.stat-box:hover {


    transform: translateY(-10px);


}



.stat-box h1 {


    font-size: 45px;

    color: #4B0082;


}



.stat-box p {


    font-size: 20px;


}



/* Dark Mode */


.dark-mode .stat-box {


    background: #1e1e1e;

    color: white;


}


.dark-mode .stats h2 {


    color: #00ffff;


}



/* Back To Top Button */

#topBtn {


    position: fixed;

    bottom: 30px;

    right: 30px;


    width: 50px;

    height: 50px;


    border: none;

    border-radius: 50%;


    background: #4B0082;

    color: white;


    font-size: 25px;


    cursor: pointer;


    display: none;


    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);


    transition: 0.3s;


}



#topBtn:hover {


    background: #00cfd5;

    transform: translateY(-5px);


}


/* Tutorial Section */


.tutorial-section {

    padding: 50px 20px;

    text-align: center;

}



.tutorial-section h2 {

    font-size: 35px;

    color: #4B0082;

}



.tutorial-container {


    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 30px;

    margin-top: 30px;


}



.tutorial-card {


    width: 280px;


    padding: 30px;


    background: white;


    border-radius: 20px;


    box-shadow:

        0 10px 25px rgba(0, 0, 0, .15);


    transition: .4s;


}



.tutorial-card:hover {


    transform: translateY(-12px);


}



.tutorial-card h3 {


    color: #4B0082;


}



.tutorial-card button {


    margin-top: 20px;


    padding: 10px 25px;


    border: none;


    border-radius: 25px;


    background: #4B0082;


    color: white;


    cursor: pointer;


    transition: .3s;


}



.tutorial-card button:hover {


    background: #00cfd5;


    transform: scale(1.05);


}



/* Dark Mode */


.dark-mode .tutorial-card {


    background: #1e1e1e;

    color: white;


}



.dark-mode .tutorial-card h3 {


    color: #00ffff;


}



.dark-mode .tutorial-section h2 {


    color: #00ffff;


}


.footer {


    background: #4B0082;

    color: white;

    padding: 40px 20px;

    margin-top: 50px;


}



.footer-container {


    display: flex;

    justify-content: space-around;

    flex-wrap: wrap;

    gap: 30px;


}



.footer-box {


    max-width: 250px;


}



.footer-box h2,
.footer-box h3 {


    color: #00ffff;


}



.footer-box a {


    display: block;

    color: white;

    text-decoration: none;

    margin: 10px 0;


}



.footer-box a:hover {


    color: #00ffff;

    transform: translateX(5px);

    transition: .3s;


}



.copyright {


    text-align: center;

    margin-top: 20px;


}


/* Mobile Responsive Design */


@media(max-width:768px) {



    body {

        overflow-x: hidden;

    }



    /* Header */


    h1 {

        font-size: 28px;

    }


    h2 {

        font-size: 24px;

    }



    /* Navigation */


    nav {

        display: none;

    }



    /* Sidebar */


    .sidebar {

        width: 80%;

    }



    /* Hero */


    .hero img {

        width: 95%;

    }


    .hero h2 {

        font-size: 28px;

    }


    .hero p {

        font-size: 16px;

    }



    /* Cards */


    .card-container {

        flex-direction: column;

        align-items: center;

    }


    .card {

        width: 90%;

    }



    /* Gallery */


    .gallery-container {

        grid-template-columns: 1fr;

    }



    /* News */


    .news-container {

        flex-direction: column;

        align-items: center;

    }



    .news-card {

        width: 90%;

    }



    /* Tutorials */


    .tutorial-container {

        flex-direction: column;

        align-items: center;

    }



    .tutorial-card {

        width: 90%;

    }



    /* Statistics */


    .stats-container {

        flex-direction: column;

        align-items: center;

    }



    /* Footer */


    .footer-container {

        flex-direction: column;

        text-align: center;

    }



    .theme-toggle {

        right: 15px;

        top: 15px;

    }


}


/* AI Tools Page */



.search-container {

    text-align: center;

    margin: 40px auto;

}

.search-container input {

    width: 80%;

    max-width: 500px;

    padding: 15px;

    border: none;

    border-radius: 30px;

    font-size: 17px;

    outline: none;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);

    transition: .3s;

}

.search-container input:focus {

    transform: scale(1.02);

    box-shadow: 0 8px 25px rgba(75, 0, 130, .35);

}





.tools-page {


    text-align: center;

    padding: 50px 20px;


}



.tool-container {


    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 30px;


}



.tool-card {


    width: 300px;


    background: white;


    padding: 30px;


    border-radius: 25px;


    box-shadow:

        0 10px 25px rgba(0, 0, 0, .15);


    transition: .4s;


    position: relative;


}



.tool-card:hover {


    transform: translateY(-15px);


    box-shadow:

        0 20px 40px rgba(75, 0, 130, .4);


}



.badge {


    position: absolute;


    top: 20px;


    right: 20px;


    background: #00cfd5;


    color: white;


    padding: 5px 15px;


    border-radius: 20px;


    font-size: 14px;


}



.ud {
    background: #0ad415;
}


.fd {
    background: #3267f7;
}

.paid {


    background: #ff4d4d;


}



.rating {


    font-size: 20px;


    margin: 15px;


}



.tool-btn {


    display: inline-block;


    background: #4B0082;


    color: white;


    padding: 12px 25px;


    border-radius: 25px;


    text-decoration: none;


    transition: .3s;


}



.tool-btn:hover {


    background: #00cfd5;


}



.dark-mode .tool-card {


    background: #1e1e1e;

    color: white;


}


/* Favorite Button */


.favorite-btn {


    margin-top: 15px;


    padding: 10px 20px;


    border: none;


    border-radius: 25px;


    background: #ff4d6d;


    color: white;


    cursor: pointer;


    transition: .3s;


}



.favorite-btn:hover {


    transform: scale(1.1);


}


.favorites-section {


    text-align: center;

    padding: 50px 20px;


}



#favoriteList {


    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 30px;


}

img {

    max-width: 100%;

    height: auto;

}

body {

    animation: pageLoad .5s ease;

}







/* =========================
   ULTRA AI FUTURE FOOTER
========================= */

.footer-ultra {
    position: relative;
    background: #050510;
    color: white;
    padding: 80px 20px 30px;
    overflow: hidden;
}

/* animated gradient background */
.footer-bg-animation {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            #7b2cbf,
            #3a0ca3,
            #4361ee,
            #7209b7);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    opacity: 0.15;
    z-index: 0;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* wave top */
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("https://svgshare.com/i/uR2.svg");
    background-size: cover;
}

/* container */
.footer-container-ultra {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* boxes */
.footer-box-ultra {
    flex: 1;
    min-width: 220px;
}

.footer-box-ultra h2 {
    font-size: 26px;
    color: #c77dff;
}

.footer-box-ultra h3 {
    color: #9d4edd;
    margin-bottom: 10px;
}

.footer-box-ultra p {
    color: #ccc;
    line-height: 1.6;
}

/* links */
.footer-box-ultra a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin: 6px 0;
    transition: 0.3s;
}

.footer-box-ultra a:hover {
    color: #c77dff;
    transform: translateX(6px);
}

/* AI badge */
.ai-tag {
    margin-top: 15px;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(123, 44, 191, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

/* social icons */
.social-ultra {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-ultra a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 18px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.social-ultra a:hover {
    transform: translateY(-6px) scale(1.15);
    background: #7b2cbf;
}

/* bottom */
.footer-bottom-ultra {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}





/* For live News................................................................. */


.news-card a {
    display: inline-block;
    margin-top: 10px;
    color: #7b2cbf;
    font-weight: bold;
    text-decoration: none;
}

.news-card a:hover {
    color: #9d4edd;
}





@keyframes pageLoad {


    from {

        opacity: 0;

    }


    to {

        opacity: 1;

    }


}




@media(max-width:768px) {

    .logo-area {

        flex-direction: column;

        text-align: center;

    }

    .navbar {

        gap: 8px;

    }

    .navbar a {

        padding: 8px 12px;

        font-size: .9rem;

    }

}












.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.particles span {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    background: rgba(199, 125, 255, 0.6);
    border-radius: 50%;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}





html {
    scroll-behavior: smooth;
}



body.dark .news-card,
body.dark .featured-card {
    background: rgba(255, 255, 255, 0.07) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(12px);
}


body.dark .news-card h3,
body.dark .news-card p,
body.dark .news-card span,
body.dark .featured-card h3,
body.dark .featured-card p {
    color: #ffffff !important;
}
body.dark .news-card span {
    background: #7b2cbf;
    color: white !important;
}


.cursor-glow {
    position: fixed;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123,44,191,0.3), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: -1;
}












