/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.navbar-brand img {
    margin-right: 10px;
}

.banner {
    position: relative;
    background: url('img/banner.jpg') no-repeat center center;
    background-size: cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 0 20px;
}

.banner h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-explore {
    background: #0066cc;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: #0052a3;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.banner-content p {
    font-size: 1.2rem;
}

.key-figures, .about-platform, .programs-overview {
    padding: 2rem 0;
}

/* Indicator Card Styles */
.indicator-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.indicator-card .card-header {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    border-bottom: none;
}

.indicator-card .card-header i {
    font-size: 24px;
    color: #0066cc;
    margin-bottom: 10px;
}

.indicator-card h3 {
    margin: 10px 0;
    color: #333;
    font-size: 1.5rem;
}

.indicator-card .card-body {
    padding: 20px;
}

.key-stats {
    margin-bottom: 20px;
}

/* Stats Container - Enhanced */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
}

.stat-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    flex: 1;
    min-width: 200px;
}

/* Responsive adjustments for stat items */
@media (max-width: 992px) {
    .stat-item {
        flex: 1 1 100%;
    }
    
    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .stats-container {
        gap: 10px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.stat-value {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* Programs Overview Styles */
.programs-overview .program-card {
    background: #f1f1f1;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.programs-overview .program-card:hover {
    background: #e2e2e2;
}

.footer {
    margin-top: 30px;
    font-size: 0.9rem;
}

.chart-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.chart-card h3 {
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066cc;
}

.chart-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.chart {
    flex: 0 1 calc(50% - 10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

/* Add these to your existing style.css */
.indicator-table {
    margin-top: 20px;
}

.indicator-name {
    font-weight: 500;
    cursor: help;
}

.growth-rate {
    font-weight: bold;
}

.growth-rate.positive {
    color: #28a745;
}

.growth-rate.negative {
    color: #dc3545;
}

.indicator-table td {
    vertical-align: middle;
}

.chart-container {
    min-height: 300px;
}

.modal-body .chart-container {
    height: 250px;
}

.nav-tabs {
    margin-bottom: 20px;
}

.btn-info, .btn-primary {
    margin: 0 2px;
}

.tooltip-inner {
    max-width: 300px;
    text-align: left;
}

/* Add these to your existing styles */
.chart-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-header .btn-group {
    display: flex;
    gap: 0.5rem;
}

.download-chart-btn,
.download-table-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.download-chart-btn i,
.download-table-btn i {
    font-size: 0.9em;
}

.table-responsive {
    position: relative;
}

.chart-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.indicator-row {
    cursor: pointer;
}

.indicator-row:hover {
    background-color: #f8f9fa;
}

.info-btn {
    padding: 5px 10px;
    font-size: 0.9rem;
}

.criterion-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 20px;
}

.criterion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.criterion-icon {
    background: #f8f9fa;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.criterion-icon i {
    font-size: 24px;
    color: #0066cc;
}

.criterion-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.indicator-count {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 10px;
}

.criterion-desc {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.criterion-section {
    padding-top: 60px;
    margin-top: -60px;
}

/* Add to your existing styles */
.container-fluid {
    max-width: 1800px;
}

.card {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
    border: none;
    color: #495057;
    font-weight: 500;
    padding: 12px 20px;
}

.nav-tabs .nav-link.active {
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
}

.criterion-charts h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.section-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Framework Level Cards */
.level-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.level-card.active {
    border-left: 4px solid #0066cc;
}

.level-card .card-header {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px 8px 0 0;
    position: relative;
    text-align: center;
}

.level-card .card-header i {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.level-card .level-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0066cc;
    margin-top: 0.5rem;
}

.level-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.level-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.level-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.level-card .btn {
    align-self: flex-start;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.level-card .btn-primary {
    background-color: #0066cc;
    border-color: #0066cc;
}

.level-card .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

/* Add these styles */
.indicator-name {
    color: #0066cc;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.indicator-name:hover {
    text-decoration: underline;
    color: #004999;
}

.search-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.input-group-text {
    background-color: #0066cc;
    color: white;
    border: none;
}

#indicatorSearch {
    border-right: none;
}

#indicatorSearch:focus {
    box-shadow: none;
    border-color: #0066cc;
}

.highlight-search {
    background-color: #fff3cd;
}
.loading {
    background-color: #e0e0e0; /* light gray for the loading effect */
    color: transparent;
    border-radius: 4px;
    display: inline-block;
    width: 100px; /* adjust as necessary */
    height: 20px; /* adjust as necessary */
    animation: pulse 1.5s infinite ease-in-out;
}

/* Ensure the chart container has a defined height */
.graph-container {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px; /* Space between charts */
    margin-bottom: 30px; /* Space below the graph container */
}

/* Style for each chart card */
.chart-card {
    background: white; /* White background for the card */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 20px; /* Padding inside the card */
    position: relative; /* Position relative for absolute children */
    height: 300px; /* Fixed height for the chart card */
}

/* Ensure the canvas takes full width and height of the card */
.chart-card canvas {
    position: absolute; /* Position absolute to fill the card */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    width: 100% !important; /* Full width */
    height: 100% !important; /* Full height */
}

/* Add this to your existing style.css */
.dashboard-chart-container {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 20px; /* Space between charts */
    margin-bottom: 30px; /* Space below the graph container */
}

/* Style for each chart */
.dashboard-chart {
    background: white; /* White background for the chart */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    position: relative; /* Position relative for absolute children */
    overflow: hidden; /* Hide overflow to maintain aspect ratio */
    width: 100%; /* Full width */
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (height/width = 9/16 = 0.5625) */
}

/* Ensure the canvas takes full width and height of the chart */
.dashboard-chart canvas {
    position: absolute; /* Position absolute to fill the chart */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    width: 100% !important; /* Full width */
    height: 100% !important; /* Full height */
}


/* Import Google Fonts for improved typography */

/* Sanitation Dashboard Specific Styles */
.sanitation-dashboard .container {
    padding: 20px;
    font-family: 'Roboto', sans-serif; /* Apply Roboto only within this container */
}

.sanitation-dashboard .sanitation-chart-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sanitation-dashboard .chart-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.sanitation-dashboard canvas {
    width: 100% !important;
    height: 400px !important; /* Fixed height to prevent continuous resizing */
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .sanitation-dashboard .container {
        padding: 10px;
    }

    .sanitation-dashboard .sanitation-chart-card {
        padding: 10px;
        margin-bottom: 20px;
    }

    .sanitation-dashboard .chart-title {
        font-size: 18px; /* Slightly smaller on smaller screens */
    }
}

/* for energy cards */

.summary-card {
    background: linear-gradient(135deg, #f0f4f8, #d9e2ec); /* Soft gradient background */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    padding: 20px; /* Padding inside the card */
    margin-bottom: 20px; /* Space below each card */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
    border: 1px solid #e0e0e0; /* Light border for definition */
}

.summary-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.summary-card h3 {
    margin: 0 0 10px; /* Margin for the title */
    font-size: 1.5rem; /* Font size for the title */
    color: #333; /* Darker color for better readability */
    font-weight: 600; /* Slightly bolder font for emphasis */
}

.summary-card p {
    font-size: 1.4rem; /* Font size for the summary value */
    font-weight: bold; /* Bold font for emphasis */
    color: #0a0a0a; /* Blue color for the summary value */
    margin: 0; /* Remove default margin */
}

.summary-card p.loading {
    color: #999; /* Lighter color for loading text */
}



.ag-charts-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.ag-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ag-card {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    flex: 1; /* Make each card flexible within the column */
}

.ag-card.ag-full {
    flex: 2; /* Make the full card double the height of other cards */
}

.ag-charts-container canvas {
    width: 100% !important;
    height: 100% !important; /* Adjust the height to fill the card */
}


.economics-chart-container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    flex-wrap: wrap;
}

.economics-chart-container canvas {
    width: 100%;
    max-width: 600px; /* Increased max-width for larger charts */
    height: 600px; /* Increased height for larger charts */
}




.financial-chart-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.financial-chart-container {
    flex: 1;
    padding: 10px;
    box-sizing: border-box;
}

#chart3-row .financial-chart-container {
    flex: 1 100%;
}

.full-height {
    height: 400px; /* Adjust based on your preference */
}


@media (max-width: 768px) {
    .financial-chart-row {
        flex-direction: column;
    }
}

/* Adjustments for Info Cards */
.info-cards .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

.info-cards .card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.info-cards .card h3 {
    font-size: 1.5rem; /* Increased font size for titles */
    color: #333; /* Darker color for better readability */
}

.info-cards .card p {
    font-size: 1.2rem; /* Increased font size for loading data */
    font-weight: bold; /* Bold font for emphasis */
    color: #0a0a0a; /* Darker color for numeric data */
}

.info-cards .card p.loading {
    color: #999; /* Lighter color for loading text */
}

/* Ensure consistent spacing */
.info-cards .card {
    padding: 20px; /* Standard padding inside cards */
    margin-bottom: 20px; /* Space below each card */
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .info-cards .card {
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .info-cards .card h3 {
        font-size: 1.3rem; /* Slightly smaller on smaller screens */
    }

    .info-cards .card p {
        font-size: 1rem; /* Slightly smaller on smaller screens */
    }
}

/* Additional styles for icons */
.info-cards .card i {
    color: #0066cc; /* Consistent color for icons */
}





/* Basic styling for the navbar */
.navbar {
    background-color: #343a40; /* Dark background for the navbar */
    color: #ffffff; /* Light text */
    padding: 0.8rem 1rem; /* Padding around the navbar */
    font-family: Arial, sans-serif; /* Font style */
}

/* Navbar links styling */
.nav-link {
    color: #ffffff; /* Light color text for readability */
    transition: color 0.3s; /* Smooth transition for hover effect */
    padding: 0.5rem 1rem; /* Padding for each link */
    text-decoration: none; /* Removes underline from links */
}

/* Hover effect for links */
.nav-link:hover,
.nav-link:focus {
    color: #f8f9fa; /* Lighter shade when hovered or focused */
    background-color: #0d0472; /* Slight background color change on hover */
}

/* Active link styling */
.nav-item.active .nav-link {
    color: #2306e1; /* Different color for active link */
    font-weight: bold; /* Makes the active link bold */
}

/* Responsiveness: Aligns links to the right */
.navbar-nav {
    margin-left: auto;
}

/* Styling specific to mobile views and smaller devices */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center; /* Centers the links on small screens */
    }
    .nav-link {
        padding: 0.8rem; /* Larger padding for easier touch */
    }
}

/* Login Page Styles */
.login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.login-container button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.login-container button:hover {
    background: #0056b3;
}

.error {
    color: #dc3545;
    background: #f8d7da;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
}

/* Invitation Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.invite-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.pending-invitations {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f8f9fa;
    font-weight: 600;
}

tr:hover {
    background-color: #f8f9fa;
}

.success {
    color: #28a745;
    background: #d4edda;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
}

select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
}

/* Registration Page Styles */
.invitation-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.invitation-details p {
    margin: 5px 0;
    color: #666;
}

.invitation-details strong {
    color: #333;
}

/* Location Selector Dropdown Styles */
.location-selectors .form-control {
    height: 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.location-selectors .form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.15);
    outline: none;
}

.location-selectors .form-control:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.location-selectors .form-control option {
    padding: 10px;
}

.col-md-2-4 {
    padding: 0 10px;
}

@media (max-width: 768px) {
    .col-md-2-4 {
        margin-bottom: 15px;
    }
}

.stat-icon {
    font-size: 26px;
    color: #ff9d2d;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    min-width: 60px; /* Add to prevent squishing */
    min-height: 60px; /* Add to prevent squishing */
    background: rgba(255, 157, 45, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #006bbb;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #006bbb, #004a94);
    border-radius: 2px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: #ff9d2d;
    margin: 0 auto;
    margin-top: 20px;
}

.about-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.about-content:hover {
    transform: translateY(-5px);
}

.about-content .lead {
    font-size: 1.25rem;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-content p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Video Section Styles */
.video-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.video-wrapper {
    position: relative;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.video-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #ff9d2d, #ff7b00);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 157, 45, 0.3);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* About Platform Section Styles */
.about-platform {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-platform .about-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-platform .lead {
    font-size: 1.3rem;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #006bbb, #004a94);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 107, 187, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 107, 187, 0.4);
    background: linear-gradient(135deg, #0077cc, #005aa8);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .video-wrapper,
    .about-platform .about-content {
        padding: 25px;
    }

    .about-content .lead,
    .about-platform .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .video-badge {
        right: 20px;
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Animation Styles */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Footer Styles */
footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    position: relative;
    border-top: 1px solid #dee2e6;
}

footer p {
    margin: 0;
    color: #6c757d;
    text-align: center;
    font-size: 0.9rem;
}
