/* Google Font Default */
:root {
    --primary-color: #3b82f6; /* Blue */
    --primary-dark: #2563eb;
    --secondary-color: #f8fafc; /* Very light cool gray */
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #ffffff;
    --bg-alt: #f1f5f9;
    --border-color: #e2e8f0;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-alt);
}

/* Typography */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
    max-height: 600px;
    object-fit: contain;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.card {
    background-color: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.interactive-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.interactive-card:hover .card-icon {
    background-color: var(--primary-color);
    color: white;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: var(--bg-alt);
    border-radius: 12px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.link-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.link-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.link-item:hover i {
    color: white;
}

/* Panels section */
.panels-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.panel-box {
    background-color: var(--bg-light);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.panel-header {
    background: linear-gradient(to right, #1e293b, #0f172a);
    padding: 32px;
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
}

.panel-header i {
    font-size: 2.5rem;
    color: #60a5fa;
}

.panel-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.panel-body {
    padding: 32px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--text-muted);
    min-width: 120px;
}

.info-value {
    font-weight: 600;
    color: var(--text-dark);
    word-break: break-all;
}

a.info-value {
    color: var(--primary-color);
}

a.info-value:hover {
    text-decoration: underline;
}

.highlight-box {
    background-color: var(--bg-alt);
    border-radius: 8px;
    padding: 16px;
    border: none;
    margin-top: 16px;
}

.mt-4 {
    margin-top: 16px;
}

/* Horizontal Swiper - Premium Styled */
.horizontal-swiper {
    width: 100%;
    padding: 40px 0 70px;
    overflow: hidden;
}
.horizontal-swiper .swiper-wrapper {
    align-items: center;
}
.horizontal-swiper .swiper-slide {
    width: 500px;
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 10px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.4;
    transform: scale(0.82);
    border: 2px solid rgba(59, 130, 246, 0.05);
}
.horizontal-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.18);
    border-color: rgba(59, 130, 246, 0.15);
}
.horizontal-swiper .swiper-slide-prev,
.horizontal-swiper .swiper-slide-next {
    opacity: 0.6;
    transform: scale(0.9);
}
.horizontal-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}
.horizontal-swiper .swiper-button-next,
.horizontal-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.horizontal-swiper .swiper-button-next:hover,
.horizontal-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}
.horizontal-swiper .swiper-button-next::after,
.horizontal-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}
.horizontal-swiper .swiper-pagination {
    bottom: 10px;
}
.horizontal-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}
.horizontal-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Vertical Scroll Container for tall images */
.vertical-scroll-container {
    width: 100%;
    max-width: 600px;
    height: 450px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}
.vertical-scroll-container img {
    width: 100%;
    display: block;
    animation: scrollUp 15s linear infinite alternate;
}
@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(-100% + 450px)); }
}

/* Feature Sections Two-Column Layout */
.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.feature-row.reverse {
    flex-direction: row-reverse;
}
.feature-content {
    flex: 1;
    text-align: left;
}
.feature-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.feature-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.feature-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}
.feature-image img:hover {
    transform: translateY(-5px) scale(1.02);
}

@media (max-width: 992px) {
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .feature-content {
        text-align: center;
        order: 1;
    }
    .feature-image {
        order: 2;
    }
}

.banners-list-wrapper img:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.single-img-fluid {
    width: 100%;
    max-width: 1000px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.single-img-fluid:hover {
    transform: scale(1.01);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    color: white;
    margin-bottom: 24px;
    display: inline-flex;
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .panels-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-light);
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        display: flex;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}
