body {
    font-family: 'Arial', sans-serif;
    background-color: #0f172a;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}
header {
    background: #1e293b;
    padding: 20px;
    text-align: center;
}
nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    color: #00eaff;
}
.hero {
    background: url('/static/images/ai_background.svg') no-repeat center center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero .cta-button {
    background: #00eaff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    color: #0f172a;
    text-decoration: none;
    transition: 0.3s;
}
.hero .cta-button:hover {
    background: #007f99;
}
.features {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
}
.feature {
    width: 30%;
    text-align: center;
}
.cta-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(45deg, #1e293b, #00eaff);
}
.services-intro {
    text-align: center;
    padding: 50px 20px;
    color: white;
}
.services-grid {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
}
.service-card {
    width: 30%;
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}
.service-card:hover {
    background: #00eaff;
    color: black;
}
.news-intro {
    text-align: center;
    padding: 50px 20px;
    color: white;
}
.news-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.news-card {
    width: 40%;
    background: #1e293b;
    margin: 10px;
    padding: 15px;
    border-radius: 8px;
}
.news-card a {
    color: #00eaff;
}
.contact-intro {
    text-align: center;
    padding: 50px 20px;
    color: white;
}
.contact-details {
    text-align: center;
    font-size: 18px;
    padding: 20px;
}
.contact-details a {
    color: #00eaff;
    text-decoration: none;
}
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #1e293b;
    border-radius: 10px;
}
.contact-form h2 {
    text-align: center;
}
.contact-form label {
    display: block;
    margin-top: 10px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
}
.contact-form button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #00eaff;
    border: none;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}
.contact-form button:hover {
    background: #007f99;
    cursor: pointer;
}
/* Navbar Logo */
.logo {
    height: 100px;  /* Adjust height */
    width: auto;    /* Keep aspect ratio */
    display: block; /* Ensures it doesn't break layout */
}

/* Hero Section Logo */
.hero-logo {
    max-width: 300px; /* Increase the size */
    display: block;
    margin: 0 auto 20px;
}

/* Enhancing the slogan */
.slogan {
    font-size: 24px;  /* Make it larger */
    font-weight: bold; /* Make it stand out */
    font-family: "Poppins", sans-serif; /* Futuristic, clean font */
    color: #00eaff; /* Neon blue color */
    text-transform: uppercase; /* Make it all uppercase */
    text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
    background: linear-gradient(45deg, #00eaff, #007f99);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    letter-spacing: 1.5px; /* Slight spacing between letters */
    margin-top: 10px;
    margin-bottom: 30px; /* Extra space before CTA button */
}

/* CTA Button Spacing */
.cta-button {
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px;
    background: #00eaff;
    color: #0f172a;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button:hover {
    background: #007f99;
}<style>
/* Override any inherited text-align properties */
.info-content {
    text-align: left !important;
}

/* Ensure consistent alignment for all info items on desktop */
@media (min-width: 768px) {
    .info-item {
        display: flex;
        align-items: flex-start;
        text-align: left;
    }
    
    .info-content {
        text-align: left;
    }
}

/* Mobile responsive behavior */
@media (max-width: 767px) {
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .info-content {
        text-align: center;
    }
}

/* About Page Specific Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    margin-bottom: 50px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 234, 255, 0.1) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

.about-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #00eaff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.5);
    position: relative;
    z-index: 1;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.about-section {
    background: #1e293b;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 234, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-section:hover::before {
    left: 100%;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 234, 255, 0.1);
}

.section-header {
    margin-bottom: 25px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #00eaff;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 234, 255, 0.3);
}

.section-content {
    text-align: left;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.section-content p {
    margin-bottom: 20px;
}

.serve-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.serve-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(0, 234, 255, 0.1);
}

.serve-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00eaff;
    font-size: 0.8rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-card {
    background: #0f172a;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #00eaff;
    box-shadow: 0 15px 30px rgba(0, 234, 255, 0.2);
}

.value-card h3 {
    color: #00eaff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.value-card p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.founder-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.founder-content {
    text-align: left;
}

.founder-intro {
    margin-bottom: 40px;
}

.founder-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.founder-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.founder-card {
    background: #0f172a;
    padding: 35px;
    border-radius: 15px;
    border-left: 4px solid #00eaff;
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 234, 255, 0.1);
}

.founder-card h3 {
    color: #00eaff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.founder-card p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.closing-section {
    background: linear-gradient(135deg, #00eaff 0%, #007f99 100%);
    color: #0f172a;
    text-align: center;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
}

.closing-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-button {
    background: #0f172a;
    color: #00eaff;
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #0f172a;
}

.cta-button:hover {
    background: transparent;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #0f172a;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-details {
        grid-template-columns: 1fr;
    }
    
    .section-content {
        text-align: center;
    }
    
    .founder-intro,
    .founder-card {
        text-align: center;
    }
}

/* Global Animation Styles */
@keyframes float-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 234, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 234, 255, 0.8), 0 0 30px rgba(0, 234, 255, 0.6);
    }
}

/* Animation Classes */
.float-in {
    animation: float-in 1s ease-out forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature:nth-child(odd) {
    animation-name: slide-in-left;
}

.feature:nth-child(even) {
    animation-name: slide-in-right;
}

/* Sparkle Effect */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00eaff;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 1s ease-out forwards;
}

/* Enhanced Button Animations */
.cta-button, button[type="submit"] {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:hover, button[type="submit"]:hover {
    animation: pulse-glow 2s ease-in-out infinite;
    transform: translateY(-2px);
}

/* Enhanced Service Cards */
.service-card {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 234, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 234, 255, 0.2);
}

/* Enhanced Features */
.feature {
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 10px;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(0, 234, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 234, 255, 0.1);
}

/* Navbar Animation */
nav a {
    position: relative;
    transition: all 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00eaff;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

style
/* Override any inherited text-align properties */
    .info-content {
        text-align: left !important;
    }

/* Ensure consistent alignment for all info items on desktop */
@media (min-width: 768px) {
    .info-item {
        display: flex;
        align-items: flex-start;
        text-align: left;
    }
    
    .info-content {
        text-align: left;
    }
}

/* Mobile responsive behavior */
@media (max-width: 767px) {
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon 
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .info-content {
        text-align: center;
    }
