/* Base Styles */
* {
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
    --body-bg: #fff;
    --body-color: #343a40;
    --bs-body-font-family: "Inter", sans-serif;
    --transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    background-color: var(--info);
    opacity: 0.1;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Screenshot%202025-03-07%20at%2012.24.39%E2%80%AFAM.png-uy66pwpAfgCSTd4YxWxrQUUQgCojNZ.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 20px 0;
}

.main-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--dark);
}

.about-divider {
    height: 3px;
    background-color: var(--body-color);
    margin: 1.5rem 0;
    width: 60px;
}

.about-text {
    color: var(--dark);
    line-height: 1.8;
    font-weight: 400;
    font-size: 0.95rem;
}

/* Vision Statement Section */
.vision-statement {
    background-color: #f0eef1;
    width: 100%;
    padding: 20px;
    border-radius: 15px;
}

.vision-text {
    background-color: white;
    height: 100%;
    padding: 20px;
    transition: transform 0.3s ease;
    border-radius: 20px;
    margin-bottom: 20px;
}

.vision-text:hover {
    transform: translateY(-10px);
}

.vision-text p {
    color: #6d7384;
    font-size: 0.9rem;
    line-height: 1.6;
}

.vision-text h2 {
    color: #212529;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding: 8px;
    border-radius: 15px;
}

.vision-headline {
    font-size: 1.5rem !important;
}

.founder-card {
    background-color: #003853;
    padding: 20px;
    transition: transform 0.3s ease;
    text-align: center;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.founder-card:hover {
    transform: translateY(-10px);
}

.founder-card h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.founder-card p {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.founder-image {
    width: 150px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Services Section */
.services-wrapper {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
}

.mission {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    border-radius: 12px;
    text-align: center;
}

.mission-title {
    background-color: #6c5ce7;
    color: white;
    padding: 8px 15px;
    border-radius: 12px;
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.mission-main-title {
    font-size: 1.8rem;
    font-family: Inter, sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.mission-p {
    color: #6e777f;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
}

.service-card-wrapper {
    display: flex;
    justify-content: center;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-height: 250px;
    width: 100%;
    max-width: 400px;
    transition: transform 0.6s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background-color: #6c63ff;
    color: white;
}

.service-card:hover .service-title {
    color: white;
}

.service-card:hover .service-description {
    color: white;
}

.service-title {
    color: #6c63ff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Tech-KIT Section */
.tech-kit-section {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 30px 20px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #343a40;
}

.content-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #6c63ff;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.content-card:hover .card-icon {
    transform: rotate(360deg);
}

.content-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.content-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.lead {
    font-size: 1.1rem;
    font-weight: 300;
    color: #666;
}

/* Companies Section */
.companies-section {
    padding: 30px 0;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.company-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.company-logo {
    max-height: 40px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
}

.company-logo:hover {
    opacity: 1;
}

/* Metrics Section */
.metrics-section {
    padding: 30px 0;
}

.metrics-container {
    background: linear-gradient(90deg, #6b46c1, #ff0080cf, rgba(0, 0, 255, 0.669));
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.metric-item {
    color: white;
}

.metric-card h2 {
    font-size: 2.5rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.metric-card p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.metric-number {
    font-size: 2.5rem !important;
}

.metric-label {
    font-size: 0.9rem !important;
}

/* Responsive Design */
@media (min-width: 576px) {
    .hero-section {
        height: 250px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .metrics-container {
        grid-template-columns: repeat(3, 1fr);
        padding: 40px 30px;
    }
    
    .vision-text h2 {
        font-size: 1.8rem;
    }
    
    .mission-main-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (min-width: 768px) {
    .hero-section {
        height: 300px;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .vision-statement {
        padding: 30px;
    }
    
    .vision-text {
        padding: 30px;
        margin-bottom: 0;
    }
    
    .founder-image {
        width: 200px;
        height: 240px;
    }
    
    .services-wrapper {
        padding: 40px;
    }
    
    .mission {
        padding: 35px;
    }
    
    .tech-kit-section {
        padding: 50px 30px;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.8rem;
    }
    
    .company-logo {
        max-height: 60px;
    }
    
    .companies-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-section {
        height: 350px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .vision-text h2 {
        font-size: 2rem;
    }
    
    .mission-main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        min-height: 300px;
        padding: 2rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .content-card h3 {
        font-size: 1.5rem;
    }
    
    .metric-card h2 {
        font-size: 3rem;
    }
    
    .metric-card p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1200px) {
    .hero-section {
        height: 400px;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .mission-main-title {
        font-size: 3rem;
    }
    
    .vision-text h2 {
        font-size: 2.2rem;
    }
    
    .metric-card h2 {
        font-size: 4rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Additional Mobile Optimizations */
@media (max-width: 575px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .about-text {
        font-size: 0.9rem;
    }
    
    .vision-text {
        padding: 15px;
    }
    
    .founder-card {
        padding: 15px;
    }
    
    .founder-image {
        width: 120px;
        height: 150px;
    }
    
    .mission {
        padding: 15px;
    }
    
    .mission-title {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .mission-main-title {
        font-size: 1.5rem;
    }
    
    .mission-p {
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 1.2rem;
        min-height: 220px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .content-card {
        padding: 1.2rem;
    }
    
    .content-card h3 {
        font-size: 1.2rem;
    }
    
    .content-card p {
        font-size: 0.85rem;
    }
    
    .company-card {
        padding: 15px;
    }
    
    .metrics-container {
        padding: 20px 15px;
    }
    
    .metric-card h2 {
        font-size: 2rem;
    }
    
    .metric-card p {
        font-size: 0.8rem;
    }
}