/* General Styles */
body {
    padding-top: 76px;
    font-family: 'Poppins', sans-serif;
    color: #808080;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-color: #f8f9fa;
}

.hero-swiper {
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #5a5a5a;
    width: 80%;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #5a5a5a;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.feature-card h3 {
    color: #5a5a5a;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-card ul {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.feature-card ul li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #808080;
}

.feature-card ul li strong {
    color: #5a5a5a;
    font-weight: 500;
}

.feature-card img {
    max-width: 100%;
    height: auto;
}

/* Integration Section */
.integration-card {
    padding: 3rem;
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
}

.integration-card:hover {
    transform: translateY(-5px);
}

.integration-icon {
    width: auto;
    height: 180px !important;
    margin-bottom: 2rem;
    object-fit: scale-down;
    display: block;
}

.integration-card img {
    height: 180px !important;
    width: auto;
    object-fit: scale-down;
}

/* Vision Section */
.vision-content {
    background: white;
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 100%;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #808080;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.vision-text:last-child {
    margin-bottom: 0;
}

.vision-goals ul {
    list-style: none;
    padding: 0;
}

.vision-goals li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #5a5a5a;
}

.vision-goals li:before {
    content: "✓";
    color: #28a745;
    margin-right: 0.5rem;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
    height: 48px;
    width: auto;
    margin: 0.5rem 0;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
    color: #5a5a5a;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #5a5a5a !important;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #01b5ff !important;
}

.nav-link.active {
    color: #01b5ff !important;
}

/* Footer */
footer {
    background: #011168 !important;
    color: white;
    padding: 2rem 0;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #01b5ff;
    text-decoration: none;
}

/* Silver Lining Section */
.silver-lining {
    background: #01b5ff;
    border-top: 1px solid #01b5ff;
    border-bottom: 1px solid #01b5ff;
}

.silver-lining-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .feature-card {
        text-align: center;
    }
    
    .feature-card img {
        margin-top: 1rem;
    }
    
    .silver-lining-text {
        font-size: 1rem;
        padding: 1rem 0;
    }
    
    .vision-content {
        padding: 2rem;
    }
    
    .vision-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: #808080;
    }
}

.feature-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #757575;
    font-size: 1rem;
    padding-left: 0.5rem;
}

.feature-list li strong {
    color: #292929;
    font-weight: 600;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .feature-list li {
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
    }
    
    .feature-list li strong {
        font-size: 1rem;
    }
}

.integration-note {
    font-size: 1.1rem;
    color: #808080;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

@media (max-width: 768px) {
    .integration-note {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.integration-subtitle {
    font-size: 1.1rem;
    color: #808080;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto 2.6rem;
    font-weight: 300;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .integration-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
} 