/* static/css/style.css */
:root {
    --primary-color: #003049;
    --secondary-color: #F77F00;
    --accent-color: #FCBF49;
    --dark-bg: #003049;
    --light-bg: #f8f9fa;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #003049 0%, #F77F00 100%);
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 48, 73, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo img {
    height: 50px;
    width: auto;
}

.logo-content h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.logo-content .tagline {
    font-size: 0.7rem;
    color: var(--secondary-color);
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.btn-contact {
    background: var(--secondary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.3s !important;
}

.btn-contact:hover {
    transform: translateY(-2px);
    background: #e67300;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section - Minimized Width */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, rgba(0, 48, 73, 0.85), rgba(247, 127, 0, 0.75)), url('/static/images/tech-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    animation: fadeInUp 0.8s ease;
}

.logo-hero {
    margin-bottom: 2rem;
}

.logo-hero img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-slogan {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.95;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-label {
    color: var(--white);
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--secondary-color);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1.5rem;
    color: var(--white);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
}

.card-body {
    padding: 1.5rem;
}

.card-body p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    margin: 1rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.features-list li i {
    color: var(--secondary-color);
    font-weight: bold;
}

.card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.btn-learn-more {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    transition: transform 0.3s;
    width: 100%;
    border: none;
    cursor: pointer;
}

.btn-learn-more:hover {
    transform: translateY(-2px);
}

/* Web Apps Section */
.web-apps-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.app-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transition: left 0.3s;
}

.app-card:hover::before {
    left: 0;
}

.app-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.app-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.app-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.app-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Mobile Apps Section */
.mobile-apps-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.mobile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mobile-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.mobile-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.mobile-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.btn-demo {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-demo:hover {
    transform: translateY(-2px);
}

/* Technology Stack Section */
.tech-stack {
    padding: 3rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.tech-icons img {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.tech-icons img:hover {
    opacity: 1;
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #334155;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-slogan {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid,
    .apps-grid,
    .mobile-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-content h1 {
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

















/* Add or replace these styles in your CSS file */

/* Hero Section - Minimized and Compact */
.hero {
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(0, 48, 73, 0.9), rgba(247, 127, 0, 0.85)), url('/static/images/tech-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
    padding: 3rem 1rem;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    animation: fadeInUp 0.8s ease;
}

/* Round Logo */
.logo-hero {
    margin-bottom: 1rem;
}

.logo-hero img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F77F00;
    box-shadow: 0 0 20px rgba(247, 127, 0, 0.3);
    background: white;
    padding: 5px;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin: 0.3rem 0;
    letter-spacing: 2px;
}

.hero-slogan {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0.5rem 0;
}

.hero-content p {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 1rem;
}

/* Compact Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-label {
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 2rem 1rem;
    }
    
    .hero-content {
        max-width: 90%;
        padding: 1rem;
    }
    
    .logo-hero img {
        width: 60px;
        height: 60px;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    .hero-slogan {
        font-size: 0.9rem;
    }
    
    .hero-content p {
        font-size: 0.8rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}




/* Add to static/css/style.css */

/* Text-based logo for hero */
.text-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003049, #F77F00);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid #F77F00;
    box-shadow: 0 0 20px rgba(247, 127, 0, 0.3);
}

.text-logo span {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
}





































/* Logo Styles - Multiple Options */

/* Base logo container */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Logo image wrapper - for consistent sizing */
.logo-image-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.logo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OPTION 1: Perfect Circle (Round) */
.logo-image-wrapper {
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 10px rgba(247, 127, 0, 0.3);
}

/* OPTION 2: Rounded Corners (15px radius) */
.rounded-corners {
    border-radius: 15px !important;
    border: 2px solid var(--secondary-color);
}

/* OPTION 3: Pill Shape (Fully rounded ends) */
.pill-shape {
    border-radius: 25px !important;
    border: 2px solid var(--secondary-color);
}

/* Hover effect for all logo shapes */
.logo-image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(247, 127, 0, 0.5);
    transition: all 0.3s ease;
}

/* Alternative: Different border styles */
.logo-image-wrapper {
    border: 2px solid var(--secondary-color);
    /* Optional: add gradient border */
    /* background: linear-gradient(135deg, #003049, #F77F00); */
    /* padding: 2px; */
}

/* For larger logo in hero section */
.logo-hero .logo-image-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-image-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .logo-content h1 {
        font-size: 1rem;
    }
    
    .logo-content .tagline {
        font-size: 0.6rem;
    }
}










