@import url('https://fonts.googleapis.com/css2?family=Protest+Revolution&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');



:root {
    --primary: rgba(255, 255, 255, 0.9);
    --background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}

* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu", serif;

}

body {
    font-family: "Ubuntu", serif;
    width: 100%;
    height: 100vh;
}


.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.2) contrast(1.1);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 70px;
}

.nav-brand a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.nav-brand a span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(to right, #7e76ff, #e145d3, #0575E6);
    font-size: 2rem;
    position: relative;
    padding-right: 30px;
}

/* Text Animation */
.nav-brand a span::before {
    content: 'AI';
    position: absolute;
    left: 0;
    background: linear-gradient(to right, #7e76ff, #e145d3, #0575E6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* animation: textAnimate 1.6s ease infinite; */
}

/* Hide the actual text */
.nav-brand a span>span {
    opacity: 0;
}

/* Update SVG animation */
.nav-brand a span svg {
    width: 0;
    height: 24px;
    position: absolute;
    right: 0;
    transform: rotate(-180deg);
    opacity: 0;
    z-index: 2;
    animation: svgAnimate 2.5s ease infinite;
    animation-delay: 0.8s;

}

.nav-brand a span svg path {
    fill: url(#gradient);
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    stroke: url(#gradient);
    animation: pathDraw 2.5s ease infinite;
    animation-delay: 1.4s;
}

@keyframes textAnimate {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    30%,
    90% {
        transform: scale(1);
        transform: translateY(-20px);
        opacity: 0;
    }
}

@keyframes svgAnimate {

    0%,
    100% {
        width: 0;
        transform: rotate(-180deg);
        opacity: 0;
    }

    30%,
    90% {
        width: 24px;
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes pathDraw {

    0%,
    100% {
        stroke-dashoffset: 1000;
        fill-opacity: 0;
    }

    30%,
    40% {
        transform: scale(1);
        fill-opacity: 0;
        stroke-dashoffset: 0;
    }

    50%,
    90% {
        stroke-dashoffset: 0;
        fill-opacity: 1;
    }
}

/* Add shine effect */
.nav-brand a span svg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: translateX(-100%);
    animation: shine 2.5s ease infinite;
    animation-delay: 2s;
}

@keyframes shine {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50%,
    90% {
        transform: translateX(100%);
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links li a:hover {
    color: #e145d3;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a.active {
    color: #e145d3;
}

.nav-links li a.active::after {
    width: 100%;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
}

/* Updated Hamburger Styles */
.hamburger {
    display: none;
    /* Hidden by default */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 999;
    position: relative;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Show hamburger on mobile */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
        background: #e145d3;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px) rotate(90deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: #7e76ff;
    }

    /* Hide default nav links */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 997;
        padding: 20px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg,
                rgba(126, 118, 255, 0.1),
                rgba(225, 69, 211, 0.1));
        transform: translateX(-100%);
        transition: 0.5s ease;
    }

    .nav-links.active {
        right: 0;
        animation: slideInRight 0.5s ease forwards;
    }

    .nav-links.active::before {
        animation: gradientSlide 1s ease forwards;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
        width: 100%;
        text-align: center;
        position: relative;
    }

    .nav-links.active li {
        animation: menuItemIn 0.5s ease forwards;
    }

    .nav-links li a {
        font-size: 1.2rem;
        padding: 12px 25px;
        display: block;
        width: 100%;
        color: #ffffff;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .nav-links li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg,
                rgba(126, 118, 255, 0.1),
                rgba(225, 69, 211, 0.1));
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
        z-index: -1;
    }

    .nav-links li a:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(45deg, #7e76ff, #e145d3);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    .nav-links li a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    /* Staggered animations for menu items */
    .nav-links.active li:nth-child(1) {
        animation-delay: 0.2s;
    }

    .nav-links.active li:nth-child(2) {
        animation-delay: 0.3s;
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: 0.4s;
    }

    .nav-links.active li:nth-child(4) {
        animation-delay: 0.5s;
    }
}

/* Updated Mobile Nav Styles */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        z-index: 997;
        padding: 20px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg,
                rgba(126, 118, 255, 0.1),
                rgba(225, 69, 211, 0.1));
        transform: translateX(-100%);
        transition: 0.5s ease;
    }

    .nav-links.active {
        right: 0;
        animation: slideInRight 0.5s ease forwards;
    }

    .nav-links.active::before {
        animation: gradientSlide 1s ease forwards;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
        width: 100%;
        text-align: center;
        position: relative;
    }

    .nav-links.active li {
        animation: menuItemIn 0.5s ease forwards;
    }

    .nav-links li a {
        font-size: 1.2rem;
        padding: 12px 25px;
        display: block;
        width: 100%;
        color: #ffffff;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .nav-links li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg,
                rgba(126, 118, 255, 0.1),
                rgba(225, 69, 211, 0.1));
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
        z-index: -1;
    }

    .nav-links li a:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(45deg, #7e76ff, #e145d3);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    .nav-links li a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    /* Staggered animations for menu items */
    .nav-links.active li:nth-child(1) {
        animation-delay: 0.2s;
    }

    .nav-links.active li:nth-child(2) {
        animation-delay: 0.3s;
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: 0.4s;
    }

    .nav-links.active li:nth-child(4) {
        animation-delay: 0.5s;
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        z-index: 996;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .policy-container {
        margin: 0 20px;
        padding: 30px;
    }

    .privacy-policy h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 25px;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .policy-container {
        margin: 0 15px;
        padding: 20px;
    }

    .privacy-policy h1 {
        font-size: 1.8rem;
    }

    .policy-section {
        padding: 20px;
    }

    .policy-section h2 {
        font-size: 1.4rem;
    }

    .policy-intro,
    .policy-section p,
    .policy-section li {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .nav-links li a {
        font-size: 1.1rem;
        padding: 12px 20px;
    }
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-section {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.policy-section:nth-child(1) {
    animation-delay: 0.2s;
}

.policy-section:nth-child(2) {
    animation-delay: 0.4s;
}

.policy-section:nth-child(3) {
    animation-delay: 0.6s;
}

.policy-section:nth-child(4) {
    animation-delay: 0.8s;
}

.policy-section:nth-child(5) {
    animation-delay: 1s;
}

.policy-section:nth-child(6) {
    animation-delay: 1.2s;
}

/* Add Tablet specific styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-brand a span {
        font-size: 1.8rem;
    }
}

/* Shared styles for both mobile and tablet */
@media screen and (max-width: 1024px) {
    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a::before,
    .nav-links a::after {
        height: 2px;
        background-image: linear-gradient(to right, #7e76ff 0%, #e145d3 51%, #0575E6 100%);
    }

    .nav-links a:hover {
        text-shadow: 0 0 8px rgba(126, 118, 255, 0.5);
    }
}

/* Large screens */
@media screen and (min-width: 1025px) {
    .nav-links {
        gap: 2.5rem;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

/* Adjust main content to accommodate fixed navbar */
#main {
    min-height: 100vh;
    padding-top: 70px;
    /* Navbar height */
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

#main {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    z-index: 1;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0);
}

.container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.input-group {
    margin-bottom: 25px;
    position: relative;
}

/* .prompt-input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: all 0.3s ease;
}

.prompt-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
} */

.prompt-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #2a2a2a;
    border-radius: 12px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    -webkit-appearance: none;
}

/* these new styles */
.prompt-input:-webkit-autofill,
.prompt-input:-webkit-autofill:hover,
.prompt-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0px 1000px #1a1a1a inset;
    transition: background-color 5000s ease-in-out 0s;
}

.prompt-input::placeholder {
    color: #666666;
    transition: all 0.3s ease;
}

.prompt-input:hover {
    border-color: #3a3a3a;
    box-shadow: 0 8px 12px -1px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.prompt-input:focus {
    outline: none;
    border-color: #4a4af7;
    box-shadow: 0 0 0 4px rgba(74, 74, 247, 0.15),
        0 8px 16px -1px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 0 4px rgba(74, 74, 247, 0.15),
            0 8px 16px -1px rgba(0, 0, 0, 0.2);
    }

    to {
        box-shadow: 0 0 0 4px rgba(74, 74, 247, 0.3),
            0 8px 16px -1px rgba(0, 0, 0, 0.2);
    }
}

/* Optional: Add this for a typing effect */
.prompt-input:focus::placeholder {
    opacity: 0;
    transform: translateX(10px);
}



.loading-container {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.image-container {
    display: none;
    margin-top: 25px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.generated-image {
    width: 100%;
    max-width: 512px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.download-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-image: linear-gradient(to right, #7e76ff 0%, #e145d3 51%, #0575E6 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-size: 200% auto;
}

.download-btn:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.error-message {
    color: #fc8181;
    text-align: center;
    margin-top: 15px;
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 20px;
        border-radius: 15px;
    }

    h1 {
        font-size: 24px;
    }
}


.generate-btn {
    background-image: linear-gradient(to right, #7e76ff 0%, #e145d3 51%, #0575E6 100%)
}

.generate-btn {
    width: 100%;
    padding: 15px;
    border: 1px solid #dadada;
    border-radius: 15px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
    cursor: pointer;
}

.generate-btn:hover {
    background-position: right center;
    /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}


#tools-section {
    width: 100%;
    min-height: 100vh;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.tools-container {
    width: 90%;
    max-width: 1400px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 20px;
}

.boxes {

    text-align: center;
    width: 300px;
    height: auto;
    background: rgba(0, 0, 0, 0.533);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.619);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.boxes:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.boxes i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    color: #ffffff;
    opacity: 0.9;
}

.boxes h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.boxes p {
    color: #ffffff !important;
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.6;
    margin: 15px 0;
}

/* Add hover effect */
.boxes::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.03),
            transparent);
    transition: 0.5s;
}

.boxes:hover::before {
    left: 100%;
}

/* Style for "Use me" link */
.boxes a {
    display: inline-block;
    margin-top: 20px;
    padding: 6px 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    background: linear-gradient(90deg, #7e76ff, #e145d3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    letter-spacing: 0.5px;
    min-width: 80px;
    max-width: 120px;
    width: fit-content;
}

.boxes a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #e145d3, #0575E6);
    transition: width 0.3s ease;
    z-index: 1;
}

.boxes a:hover::before {
    width: 100%;
}

.boxes a:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 5px 15px rgba(126, 118, 255, 0.3); */
}

/* Add active state */
.boxes a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(126, 118, 255, 0.2);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .tools-container {
        width: 95%;
        gap: 20px;
    }

    .boxes {
        width: 100%;
        max-width: 350px;
    }

    .boxes h3 {
        font-size: 1.2rem;
    }

    .boxes p {
        font-size: 0.9rem;
    }

    .boxes a {
        padding: 5px 14px;
        font-size: 0.8rem;
        min-width: 70px;
        max-width: 100px;
    }
}

/* Add glass morphism effect for modern look */
.boxes::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 19px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.01));
    pointer-events: none;
}

::selection {
    background-color: #ffcc00;
    color: #000;
}

::-moz-selection {
    /* Firefox ke liye */
    background-color: #ffcc00;
    color: #000;
}

/* Modern Footer Styles */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(126, 118, 255, 0.3),
            rgba(225, 69, 211, 0.3),
            rgba(5, 117, 230, 0.3),
            transparent);
    animation: shimmer 3s infinite;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.5s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.7s;
}

.footer-brand span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(45deg, #7e76ff, #e145d3, #0575E6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.footer-brand svg {
    width: 24px;
    height: 24px;
    fill: url(#gradient);
}

.footer-brand p {
    color: #dddddd;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom .footer-line p {
    color: #ffffff;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7e76ff, #e145d3);
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 100%;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
    padding-left: 20px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    box-shadow: 0 5px 15px rgba(126, 118, 255, 0.3);
}

.newsletter {
    display: flex;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter button {
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(90deg, #7e76ff 0%, #e145d3 51%, #0575E6 100%);
    background-size: 200% auto;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.newsletter button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #e145d3, #0575E6);
    transition: width 0.3s ease;
    z-index: -1;
}

.newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(126, 118, 255, 0.3);
}

.newsletter button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(126, 118, 255, 0.2);
}

/* Add watermark styles */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 30px;
    /* Add padding for watermark */
}

.watermark {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.15);
    font-style: italic;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.watermark:hover {
    color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    text-shadow: 0 2px 10px rgba(126, 118, 255, 0.3);
}

/* Update responsive styles */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer .newsletter form {
        flex-direction: column;
    }

    .footer .newsletter input,
    .footer .newsletter button {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Privacy Policy Styles */
.privacy-policy {
    padding: 120px 40px;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.8);
}

.policy-intro {
    color: #ffffff;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.policy-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.policy-container h1 {
    font-size: 3rem;
    color: #e145d3;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.policy-container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    transition: width 0.3s ease;
}

.policy-container:hover h1::after {
    width: 200px;
}

.effective-date {
    text-align: center;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.policy-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(126, 118, 255, 0.1),
            rgba(225, 69, 211, 0.1));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.policy-section:hover::before {
    transform: translateX(0);
}

.policy-section h2 {
    color: #e145d3;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.policy-section:hover h2 {
    transform: translateX(10px);
    color: #7e76ff;
}

.policy-section p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.policy-section ul {
    list-style: none;
    padding: 0;
}

.policy-section li {
    color: #ffffff;
    margin: 15px 0;
    padding-left: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.policy-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #7e76ff;
    transition: all 0.3s ease;
}

.policy-section li:hover {
    transform: translateX(10px);
    color: #e145d3;
}

.policy-section li:hover::before {
    color: #e145d3;
}

.policy-section strong {
    color: #e145d3;
    font-weight: 600;
    padding: 2px 8px;
    background: rgba(225, 69, 211, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.policy-section strong:hover {
    background: rgba(225, 69, 211, 0.2);
    transform: translateY(-2px);
}

.policy-footer {
    margin-top: 60px;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.policy-footer p {
    color: #ffffff;
    opacity: 0.8;
    font-style: italic;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .privacy-policy {
        padding: 100px 20px;
    }

    .policy-container {
        padding: 30px;
    }

    .policy-container h1 {
        font-size: 2.5rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .policy-container h1 {
        font-size: 2rem;
    }

    .policy-section {
        padding: 20px;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }
}

/* Modern About AI Tool Section */
.about-ai-tool {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.9);
    min-height: 100vh;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
}

/* Header Section */
.blog-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeIn 1s ease-out;
}

.blog-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #7e76ff, #e145d3, #0575E6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: gradientFlow 8s linear infinite;
    position: relative;
}

.blog-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    border-radius: 2px;
}

.blog-meta {
    display: inline-flex;
    gap: 40px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.8s ease-out;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-meta span:hover {
    transform: translateY(-2px);
    color: #e145d3;
}

.blog-meta i {
    color: #e145d3;
    font-size: 1.2rem;
}

.founder-info {
    position: relative;
    padding: 8px 20px;
    background: rgba(126, 118, 255, 0.1);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.founder-info:hover {
    background: rgba(126, 118, 255, 0.2);
    transform: translateY(-2px);
}

.founder-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #7e76ff;
    transition: all 0.3s ease;
}

.founder-info:hover .founder-img {
    border-color: #e145d3;
    transform: scale(1.1);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .blog-header h2 {
        font-size: 2.5rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .blog-header h2 {
        font-size: 2rem;
    }
}

/* 2. Introduction Section */
.intro-section {
    margin-bottom: 80px;
    position: relative;
    animation: fadeIn 1s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.highlight-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #ffffff;
    padding: 40px;
    background: rgba(126, 118, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(126, 118, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.highlight-text:hover {
    background: rgba(126, 118, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-text::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(126, 118, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.highlight-text strong {
    color: #e145d3;
    font-weight: 600;
    padding: 2px 8px;
    background: rgba(225, 69, 211, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.highlight-text strong:hover {
    background: rgba(225, 69, 211, 0.2);
    transform: translateY(-2px);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .highlight-text {
        font-size: 1.2rem;
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .highlight-text {
        font-size: 1.1rem;
        padding: 25px;
    }
}

/* Technology Section */
.tech-explanation {
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.tech-explanation:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.tech-explanation h3 {
    font-size: 2.2rem;
    color: #e145d3;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.tech-explanation h3::before {
    content: '⚡';
    font-size: 2rem;
}

.tech-explanation p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.tech-explanation strong {
    color: #e145d3;
    font-weight: 600;
    padding: 2px 8px;
    background: rgba(225, 69, 211, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tech-explanation strong:hover {
    background: rgba(225, 69, 211, 0.2);
    transform: translateY(-2px);
}

.tech-explanation ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.tech-explanation li {
    color: #ffffff;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-explanation li::before {
    content: '→';
    color: #7e76ff;
    font-weight: bold;
    transition: all 0.3s ease;
}

.tech-explanation li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(126, 118, 255, 0.3);
}

.tech-explanation li:hover::before {
    color: #e145d3;
    transform: translateX(3px);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .tech-explanation {
        padding: 30px;
    }

    .tech-explanation h3 {
        font-size: 1.8rem;
    }

    .tech-explanation p {
        font-size: 1rem;
    }

    .tech-explanation li {
        font-size: 1rem;
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .tech-explanation {
        padding: 20px;
    }

    .tech-explanation h3 {
        font-size: 1.6rem;
    }

    .tech-explanation p {
        font-size: 0.95rem;
    }

    .tech-explanation li {
        font-size: 0.95rem;
        padding: 12px;
    }
}

/* Benefits Section */
.key-benefits {
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, transparent, rgba(126, 118, 255, 0.1));
    border-radius: 0 25px 0 50%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-card i {
    font-size: 3rem;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .about-container {
        padding: 20px;
    }

    .blog-header h2 {
        font-size: 2.5rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .highlight-text {
        font-size: 1.2rem;
        padding: 30px;
    }

    .tech-explanation,
    .benefit-card {
        padding: 20px;
    }
}

/* Tools Comparison Section */
.tools-comparison {
    margin: 80px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeIn 1s ease-out;
}

.tools-comparison h3 {
    font-size: 2.2rem;
    color: #e145d3;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.tools-comparison h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    border-radius: 2px;
}

.comparison-table {
    display: grid;
    gap: 30px;
}

.tool-row {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-row:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tool-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-name {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tool-rating {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.tool-row p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.tool-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.tool-features li {
    color: #ffffff;
    padding: 12px 20px;
    background: rgba(126, 118, 255, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.tool-features li::before {
    content: '✓';
    color: #7e76ff;
    font-weight: bold;
}

.tool-features li:hover {
    transform: translateX(5px);
    background: rgba(126, 118, 255, 0.2);
}

/* Add shine effect */
.tool-row::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transition: 0.5s;
}

.tool-row:hover::after {
    left: 100%;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .tools-comparison {
        padding: 20px;
        margin: 40px 0;
    }

    .tools-comparison h3 {
        font-size: 1.8rem;
    }

    .tool-row {
        padding: 20px;
    }

    .tool-name {
        font-size: 1.3rem;
    }

    .tool-rating {
        font-size: 1rem;
    }

    .tool-row p {
        font-size: 1rem;
    }

    .tool-features {
        grid-template-columns: 1fr;
    }

    .tool-features li {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

@media screen and (max-width: 480px) {
    .tools-comparison h3 {
        font-size: 1.5rem;
    }

    .tool-name {
        font-size: 1.2rem;
    }

    .tool-row p {
        font-size: 0.95rem;
    }
}

/* Conclusion Section */
.conclusion {
    margin-top: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.conclusion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7e76ff, #e145d3, #0575E6);
}

.conclusion h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #7e76ff, #e145d3, #0575E6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientFlow 8s linear infinite;
}

.conclusion h3::after {
    content: '🚀';
    position: absolute;
    right: -40px;
    top: -5px;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.conclusion p {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 0;
    padding: 20px;
    background: rgba(126, 118, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #7e76ff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.conclusion p:hover {
    transform: translateY(-5px);
    background: rgba(126, 118, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Glowing effect */
.conclusion::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
            rgba(126, 118, 255, 0.1) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.conclusion:hover::after {
    opacity: 1;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.conclusion:hover h3 {
    animation: pulse 2s ease-in-out infinite;
}

/* Add typing animation for text */
.conclusion p {
    position: relative;
    overflow: hidden;
}

.conclusion p::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #e145d3;
    opacity: 0;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .conclusion {
        padding: 30px;
        margin-top: 60px;
    }

    .conclusion h3 {
        font-size: 2rem;
    }

    .conclusion p {
        font-size: 1.1rem;
        padding: 15px;
    }

    .conclusion h3::after {
        right: -30px;
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .conclusion {
        padding: 20px;
        margin-top: 40px;
    }

    .conclusion h3 {
        font-size: 1.8rem;
    }

    .conclusion p {
        font-size: 1rem;
        padding: 12px;
    }

    .conclusion h3::after {
        right: -25px;
        font-size: 1.5rem;
    }
}

/* Use Cases Section */
.use-cases {
    margin: 80px 0;
    padding: 40px;
}

.use-cases h3 {
    font-size: 2.5rem;
    color: #e145d3;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.use-cases h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    border-radius: 2px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(126, 118, 255, 0.3);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: rgba(126, 118, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    background: rgba(126, 118, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.use-case-icon i {
    font-size: 2rem;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.use-case-content h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.use-case-card:hover h4 {
    color: #e145d3;
    transform: translateX(5px);
}

.use-case-content p {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.use-case-content ul {
    list-style: none;
    padding: 0;
}

.use-case-content li {
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.use-case-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #7e76ff;
    transition: all 0.3s ease;
}

.use-case-content li:hover {
    transform: translateX(8px);
    color: #e145d3;
}

.use-case-content li:hover::before {
    color: #e145d3;
}

/* Add border gradient on hover */
.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7e76ff, #e145d3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.use-case-card:hover::before {
    transform: scaleX(1);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .use-cases {
        padding: 20px;
    }

    .use-cases h3 {
        font-size: 2rem;
    }

    .use-case-card {
        padding: 25px;
    }

    .use-case-content h4 {
        font-size: 1.3rem;
    }

    .use-case-content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .use-cases h3 {
        font-size: 1.8rem;
    }

    .use-case-card {
        padding: 20px;
    }

    .use-case-icon {
        width: 50px;
        height: 50px;
    }

    .use-case-icon i {
        font-size: 1.5rem;
    }
}

/* Key Benefits Section Heading */
.key-benefits h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.key-benefits h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    border-radius: 2px;
}

.key-benefits h3::before {
    content: '✨';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
}

/* Hover effect for heading */
.key-benefits h3:hover::after {
    width: 200px;
    transition: width 0.3s ease;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .key-benefits h3 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .key-benefits h3 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
}

/* Animations */
@keyframes slideIn {
    0% {
        right: -100%;
        opacity: 0;
    }

    100% {
        right: 0;
        opacity: 1;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animation for sliding in from right */
@keyframes slideInRight {
    0% {
        right: -50%;
        opacity: 0;
        transform: skewX(15deg);
    }

    100% {
        right: 0;
        opacity: 1;
        transform: skewX(0);
    }
}

/* For smaller screens, make menu full width */
@media screen and (max-width: 480px) {
    .nav-links {
        width: 100%;
    }

    @keyframes slideInRight {
        0% {
            right: -100%;
            opacity: 0;
        }

        100% {
            right: 0;
            opacity: 1;
        }
    }
}

/* Contact Page Styles */
.contact-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 10px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e145d3 rgba(255, 255, 255, 0.1);
}

/* Compact Header */
.contact-header {
    margin-bottom: 10px;
    padding: 5px;
}

.contact-header h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.contact-header .subtitle {
    font-size: 1rem;
}

.contact-intro {
    margin-bottom: 10px;
    padding: 0 5px;
}

/* Optimized Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
    padding: 5px;
}

/* Compact Form Section */
.contact-form-section {
    padding: 15px;
    height: auto;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

.contact-form-section h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.contact-form-section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Compact Form Elements */
.contact-form-section input:not([type="radio"]),
.contact-form-section textarea {
    padding: 8px 12px;
    font-size: 0.95rem;
    min-height: 40px;
}

.contact-form-section textarea {
    min-height: 80px;
    max-height: 120px;
}

/* Compact Gender Selection */
.gander {
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    min-height: 40px;
    align-items: center;
}

.gander input[type="radio"] {
    width: 16px;
    height: 16px;
}

/* Compact Buttons */
.contact-form-section button,
.contact-form-section input[type="reset"] {
    padding: 10px 15px;
    min-height: 40px;
}

/* Responsive Breakpoints */
@media screen and (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 12px;
    }

    .contact-form-section {
        max-height: none;
    }
}

@media screen and (max-width: 768px) {
    .contact-container {
        height: 100vh;
        padding: 8px;
    }

    .contact-header h1 {
        font-size: 1.8rem;
    }

    .contact-form-section {
        padding: 12px;
    }

    .contact-form-section h2 {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-container {
        padding: 5px;
    }

    .contact-header h1 {
        font-size: 1.6rem;
    }

    .contact-form-section {
        padding: 10px;
    }

    .contact-form-section h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .contact-form-section form {
        gap: 8px;
    }

    .gander {
        padding: 6px;
        gap: 8px;
    }

    .gander label {
        font-size: 0.85rem;
    }

    .contact-form-section input:not([type="radio"]),
    .contact-form-section textarea,
    .contact-form-section button,
    .contact-form-section input[type="reset"] {
        padding: 8px 10px;
        font-size: 0.9rem;
        min-height: 36px;
    }
}

/* Landscape Mode */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .contact-container {
        height: 100vh;
    }

    .contact-header {
        margin-bottom: 5px;
    }

    .contact-intro {
        margin-bottom: 5px;
    }

    .contact-grid {
        gap: 10px;
    }

    .contact-form-section {
        padding: 10px;
    }

    .contact-form-section form {
        gap: 6px;
    }

    .contact-form-section textarea {
        min-height: 60px;
    }
}

/* Small Height Screens */
@media screen and (max-height: 700px) {
    .contact-header h1 {
        font-size: 1.5rem;
    }

    .contact-form-section {
        padding: 8px;
    }

    .contact-form-section h2 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .gander {
        min-height: 36px;
    }

    .contact-form-section textarea {
        min-height: 60px;
        max-height: 100px;
    }
}

/* Main Container */
#main {
    min-height: 100vh;
    padding-top: 70px;
    /* Navbar height */
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

/* Contact Container */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    height: calc(100vh - 70px);
    /* Subtract navbar height */
    overflow-y: auto;
    flex: 1;
}

/* Header Styles */
.contact-header {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.contact-header h1 {
    font-size: 3rem;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.contact-header .subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Intro Text */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    height: auto;
}

/* Form Section */
.contact-form-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: slideInLeft 0.8s ease;
}

.contact-form-section h2 {
    color: #e145d3;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

/* Form Elements */
.contact-form-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-section input:not([type="radio"]),
.contact-form-section textarea {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
    border-color: #e145d3;
    box-shadow: 0 0 20px rgba(225, 69, 211, 0.1);
    outline: none;
    transform: translateY(-2px);
}

/* Gender Selection */
.gander {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.gander label {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Buttons */
.contact-form-section button,
.contact-form-section input[type="reset"] {
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-section button {
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    border: none;
    color: #ffffff;
}

.contact-form-section input[type="reset"] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.contact-form-section button:hover,
.contact-form-section input[type="reset"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-form-section {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .gander {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-section button,
    .contact-form-section input[type="reset"] {
        width: 100%;
    }
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: slideInRight 0.8s ease;
}

/* Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(126, 118, 255, 0.1),
            rgba(225, 69, 211, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.info-card:hover::before {
    opacity: 1;
}

/* Icon Styles */
.info-card i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.4s ease;
}

.info-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Text Content */
.info-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.info-card:hover h3 {
    color: #e145d3;
    transform: translateX(5px);
}

.info-card p {
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.info-card span {
    color: #e145d3;
    font-size: 0.9rem;
    display: inline-block;
    padding: 5px 12px;
    background: rgba(225, 69, 211, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-card:hover span {
    background: rgba(225, 69, 211, 0.2);
    transform: scale(1.05);
}

/* Social Connect Section */
.social-connect {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.4s ease;
}

.social-connect:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.social-connect h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.social-connect h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    transition: width 0.3s ease;
}

.social-connect:hover h3::after {
    width: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link i {
    font-size: 1.2rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Platform Specific Colors */
.social-link[href*="facebook"]::before {
    background: linear-gradient(45deg, #1877f2, #3b5998);
}

.social-link[href*="linkedin"]::before {
    background: linear-gradient(45deg, #0077b5, #00a0dc);
}

.social-link[href*="instagram"]::before {
    background: linear-gradient(45deg, #833AB4, #C13584, #E1306C);
}

/* Hover Effects */
.social-link:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    transform: scale(1.2);
    color: #ffffff;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .contact-info-section {
        gap: 20px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card i {
        font-size: 2rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
    }

    .social-connect {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .contact-info-section {
        gap: 15px;
    }

    .info-card {
        padding: 15px;
    }

    .info-card i {
        font-size: 1.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link i {
        font-size: 1rem;
    }
}

/* Business Hours Section */
.business-hours {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 1s backwards;
}

/* Gradient Background Effect */
.business-hours::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(126, 118, 255, 0.05),
            rgba(225, 69, 211, 0.05));
    opacity: 0;
    transition: all 0.4s ease;
}

.business-hours:hover::before {
    opacity: 1;
}

/* Header Style */
.business-hours h2 {
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.business-hours h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    transition: width 0.3s ease;
}

.business-hours:hover h2::after {
    width: 120px;
}

/* Hours Grid */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Day Time Cards */
.day-time {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.day-time::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #7e76ff, #e145d3);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Day and Time Text */
.day-time .day {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.day-time .time {
    color: #e145d3;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(225, 69, 211, 0.1);
    transition: all 0.3s ease;
}

/* Hover Effects */
.day-time:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.day-time:hover::before {
    opacity: 1;
}

.day-time:hover .day {
    transform: translateX(10px);
    color: #e145d3;
}

.day-time:hover .time {
    background: rgba(225, 69, 211, 0.2);
    transform: scale(1.05);
}

/* Closed Status Style */
.day-time.closed {
    opacity: 0.8;
}

.day-time.closed::before {
    background: linear-gradient(to bottom, #ff4d4d, #ff8080);
}

.day-time.closed .time {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
}

.day-time.closed:hover .time {
    background: rgba(255, 77, 77, 0.2);
}

.day-time.closed:hover .day {
    color: #ff4d4d;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .business-hours {
        padding: 20px;
        margin-top: 20px;
    }

    .business-hours h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .day-time {
        padding: 15px;
    }

    .day-time .day,
    .day-time .time {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .business-hours {
        padding: 15px;
        margin-top: 15px;
    }

    .business-hours h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .hours-grid {
        gap: 15px;
    }

    .day-time {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .day-time:hover {
        transform: translateX(0) translateY(-5px);
    }
}

/* Tools Header Section */
.tools-header {
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
    animation: fadeInDown 0.8s ease;
}

.tools-header h1 {
    font-size: 3rem;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* margin-bottom: 15px; */
}

.tools-header p {
    color: #ffffff;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Tools Grid Container */
.tools-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
    margin-left: 20px;
}

/* Tool Boxes */
.boxes {
    background: rgba(0, 0, 0, 0.538);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease backwards;
}

.boxes::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(126, 118, 255, 0.05),
            rgba(225, 69, 211, 0.05));
    opacity: 0;
    transition: all 0.4s ease;
}

/* Icon Styles */
.boxes i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.4s ease;
}

/* Text Content */
.boxes h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.boxes p {
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Tool Link */
.boxes a {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #7e76ff, #e145d3, #0575E6);
    background-size: 200% auto;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    z-index: 1;
}

.boxes a::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

/* Hover Effects */
.boxes:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.boxes:hover::before {
    opacity: 1;
}

.boxes:hover i {
    transform: scale(1.1) rotate(10deg);
}

.boxes:hover h3 {
    color: #e145d3;
    transform: translateX(5px);
}

.boxes:hover a {
    box-shadow: 0 5px 15px rgba(16, 243, 107, 0.71), 0 5px 15px rgba(23, 216, 241, 0.3), 0 5px 15px #e51dffe0, 0 5px 15px rgba(203, 5, 196, 0.608);
}

.boxes:hover a::before {
    transform: translateX(100%) rotate(45deg);
}

/* Coming Soon Style */
.boxes a[href="#"] {
    background: transparent;
    border: 2px solid;
    border-image: linear-gradient(45deg, #7e76ff, #e145d3) 1;
    position: relative;
    color: #ffffff;
    opacity: 0.8;
}

.boxes a[href="#"]::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #7e76ff, #e145d3, #0575E6);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Shine Effect */
.boxes a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

/* Hover Effects */
.boxes a:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(126, 118, 255, 0.3);
    color: #ffffff;
}

.boxes a:hover::after {
    transform: translateX(100%) rotate(45deg);
}

/* Coming Soon Button Hover */
.boxes a[href="#"]:hover {
    border-color: transparent;
    color: #ffffff;
    opacity: 1;
}

.boxes a[href="#"]:hover::before {
    opacity: 1;
}

/* Active/Click Effect */
.boxes a:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(126, 118, 255, 0.2);
}

/* Animation for gradient background */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .boxes a {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .boxes a {
        width: 100%;
        text-align: center;
        padding: 12px 15px;
    }
}

/* Animation Delays */
.boxes:nth-child(1) {
    animation-delay: 0.1s;
}

.boxes:nth-child(2) {
    animation-delay: 0.2s;
}

.boxes:nth-child(3) {
    animation-delay: 0.3s;
}

.boxes:nth-child(4) {
    animation-delay: 0.4s;
}

.boxes:nth-child(5) {
    animation-delay: 0.5s;
}

.boxes:nth-child(6) {
    animation-delay: 0.6s;
}

.boxes:nth-child(7) {
    animation-delay: 0.7s;
}

.boxes:nth-child(8) {
    animation-delay: 0.8s;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .tools-header {
        padding: 30px 15px;
    }

    .tools-header h1 {
        font-size: 2.5rem;
    }

    .tools-grid-container {
        padding: 0 15px;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .tools-header h1 {
        font-size: 2rem;
    }

    .tools-header p {
        font-size: 1.1rem;
    }

    .boxes {
        padding: 25px;
    }

    .boxes i {
        font-size: 2rem;
    }

    .boxes h3 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 480px) {
    .tools-header {
        padding: 20px 10px;
    }

    .tools-header h1 {
        font-size: 1.8rem;
    }

    .tools-grid-container {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 15px;
    }

    .boxes {
        padding: 20px;
    }
}

/* Common Button Styles */
.boxes a,
.contact-form-section button,
.contact-form-section input[type="reset"],
.newsletter button {
    padding: 0.6em 2em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: linear-gradient(45deg, #7e76ff, #e145d3, #0575E6);
    background-size: 200% auto;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    font-size: 1rem;
    text-align: center;
    min-width: 140px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Gradient Glow Effect */
.boxes a::before,
.contact-form-section button::before,
.contact-form-section input[type="reset"]::before,
.newsletter button::before {
    content: "";
    background: linear-gradient(45deg,
            #7e76ff,
            #e145d3,
            #0575E6,
            #7e76ff);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

/* Dark Background Layer - Removed to show gradient */
.boxes a::after,
.contact-form-section button::after,
.contact-form-section input[type="reset"]::after,
.newsletter button::after {
    display: none;
    /* Hide dark background */
}

/* Hover Effects */
.boxes a:hover,
.contact-form-section button:hover,
.contact-form-section input[type="reset"]:hover,
.newsletter button:hover {
    transform: translateY(-2px);
    background-position: right center;
    box-shadow: 0 5px 15px rgba(126, 118, 255, 0.4);
}

/* Coming Soon Style */
.boxes a[href="#"] {
    background: transparent;
    border: 2px solid;
    border-image: linear-gradient(45deg, #7e76ff, #e145d3) 1;
    opacity: 0.8;
}

.boxes a[href="#"]:hover {
    background: linear-gradient(45deg, #7e76ff, #e145d3, #0575E6);
    background-size: 200% auto;
    border: 2px solid transparent;
    opacity: 0.7;
}

/* Active State */
.boxes a:active,
.contact-form-section button:active,
.contact-form-section input[type="reset"]:active,
.newsletter button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(126, 118, 255, 0.3);
}

/* Glow Animation */
@keyframes glowing-button {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* About Container */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease;
}

.about-header h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #7e76ff, #e145d3, #0575E6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.about-header .subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Welcome Section */
.welcome-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease;
}

.welcome-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.welcome-section h2 {
    color: #e145d3;
    font-size: 2rem;
    margin-bottom: 20px;
}

.welcome-section p {
    color: #ffffff;
    line-height: 1.8;
    opacity: 0.9;
}

/* Mission & Vision Sections */
.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.about-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(126, 118, 255, 0.05),
            rgba(225, 69, 211, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-section:hover::before {
    opacity: 1;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.section-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.4s ease;
}

.about-section:hover .section-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px rgba(225, 69, 211, 0.3);
}

.about-section h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.about-section:hover h2 {
    color: #e145d3;
    transform: translateX(5px);
}

.about-section p {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

/* Offerings Section */
.offerings-section {
    margin-bottom: 50px;
    text-align: center;
}

.offerings-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.offering-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.offering-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.offering-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.offering-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    transition: all 0.4s ease;
}

.offering-card:hover .offering-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px rgba(225, 69, 211, 0.3);
}

.offering-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.offering-card:hover h3 {
    color: #e145d3;
    transform: translateX(5px);
}

.offering-card p {
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .welcome-section,
    .about-section,
    .offering-card {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .about-header h1 {
        font-size: 2rem;
    }

    .section-icon,
    .offering-icon {
        width: 50px;
        height: 50px;
    }

    .section-icon i,
    .offering-icon i {
        font-size: 1.8rem;
    }
}

/* Founder Section */
.founder-section {
    margin: 50px 0;
    padding: 20px;
}

.founder-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #7e76ff, #e145d3, #0575E6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInDown 0.8s ease;
}

/* Founder Card */
.founder-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    padding: 40px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.founder-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(126, 118, 255, 0.05),
            rgba(225, 69, 211, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-card:hover::before {
    opacity: 1;
}

/* Founder Image */
.founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.founder-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(126, 118, 255, 0.2),
            rgba(225, 69, 211, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.founder-card:hover .founder-image {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.founder-card:hover .founder-image::after {
    opacity: 1;
}

/* Founder Info */
.founder-info {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-info h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.founder-title {
    font-size: 1.2rem;
    color: #e145d3;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(225, 69, 211, 0.2);
    transition: all 0.3s ease;
}

.founder-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Social Links */
.founder-social {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.founder-social .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.founder-social .social-link i {
    font-size: 1.3rem;
    color: #ffffff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.founder-social .social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #7e76ff, #e145d3);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Platform Specific Colors */
.founder-social .social-link[href*="linkedin"]::before {
    background: linear-gradient(45deg, #0077b5, #00a0dc);
}

.founder-social .social-link[href*="instagram"]::before {
    background: linear-gradient(45deg, #833AB4, #C13584, #E1306C);
}

.founder-social .social-link[href*="github"]::before {
    background: linear-gradient(45deg, #24292e, #40464e);
}

/* Hover Effects */
.founder-social .social-link:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.founder-social .social-link:hover::before {
    opacity: 1;
}

.founder-social .social-link:hover i {
    transform: scale(1.2);
    color: #ffffff;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .founder-card {
        grid-template-columns: 250px 1fr;
        padding: 30px;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .founder-social {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .founder-section h2 {
        font-size: 2rem;
    }

    .founder-card {
        padding: 20px;
    }

    .founder-info h3 {
        font-size: 1.8rem;
    }

    .founder-title {
        font-size: 1.1rem;
    }

    .founder-bio {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Founder Image Styles */
.founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 4px;
    background: linear-gradient(45deg, #7e76ff, #e145d3, #0575E6);
    animation: borderGradient 3s ease infinite;
    background-size: 200% 200%;
}

.founder-image::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: #000000;
    z-index: 0;
    /* Changed from 1 to 0 */
    border-radius: 16px;
    transition: all 0.4s ease;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85) contrast(1.1);
    position: relative;
    z-index: 1;
    /* Added z-index to make image visible */
    mix-blend-mode: normal;
    /* Changed from luminosity to normal */
}

/* Hover Effects */
.founder-card:hover .founder-image {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(126, 118, 255, 0.2);
    padding: 5px;
}

.founder-card:hover .founder-image::before {
    inset: 5px;
    background: #000000;
}

.founder-card:hover .founder-image img {
    filter: brightness(1) contrast(1.1);
    transform: scale(1.05);
}

/* Shine effect */
.founder-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: translateX(-100%) rotate(45deg);
    animation: shine 3s infinite;
    z-index: 2;
}

@keyframes shine {
    to {
        transform: translateX(100%) rotate(45deg);
    }
}