:root {
    
}

/*  */
.mean {
    width: 100%;
    background-color: #1a1717;
    padding:  50px 0px;
}
.mcont {
    width: 100%;
    display: flex;
    gap: 50px;
}
.mf {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-content: start;
}
.mf > h2,p{
    color: ;
    text-align: left;
}
.btns .btn {
    border: 2px solid white;
    color: white;
}


/*  */

.text-center {
    text-align: center;
}

/* Stats Section */
.container h2{
    margin: 0;
    padding: 0;
    margin-bottom: var(--space-sm);
    text-align: center;
}
.container p{
    text-align: ;
    margin-bottom: var(--space-lg);
}


.stats-section {
    padding: var(--space-xl) 0;
    background-color: var(--card-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.stat-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: var(--space-md);
    text-align: center;
    transition: var(--transition);
}

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

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--space-xs);
}

.stat-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Callouts Section */
.callouts-section {
    padding: var(--space-xl) 0;
}

.callout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.callout-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.callout-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.callout-card:hover img {
    transform: scale(1.05);
}

.callout-card h2, .callout-card p {
    padding: 0 var(--space-md);
}

.callout-card h2 {
    margin-top: var(--space-md);
    font-size: 1.5rem;
    text-align: left;
    
}

.callout-card p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    /* text-align: left; */
}

.callout-card .btn-secondary {
    margin: 0 var(--space-md) var(--space-md);
    background-color: var(--primary-color);
    color: #fff;
}

/* Featured Section */
.featured-section {
    padding: var(--space-xl) 0;
    background-color: var(--card-bg);
}

.featured-section h2 {
    text-align: center;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.featured-card {
    display: flex;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.featured-image {
    flex: 0 0 40%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    flex: 0 0 60%;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
}

.featured-content h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.25rem;
}

.featured-content p {
    text-align: left;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
    flex-grow: 1;
}

.read-more {
    align-self: flex-start;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding-right: 20px;
}

.read-more::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: var(--transition);
}

.read-more:hover::after {
    right: -5px;
}

/* Newsletter Section */
.newsletter-section {
    padding: var(--space-xl) 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/1072824/pexels-photo-1072824.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: white;
}

.newsletter-content h2::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
}

.newsletter-content p {
    margin-bottom: var(--space-md);
}

.newsletter-form .form-group {
    display: flex;
    margin-bottom: 0;
}

#newsletter-form .form-group {
    display: flex;
    margin-bottom: 0;
}

#newsletter-form input {
    flex-grow: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

#newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .featured-card {
        flex-direction: column;
    }
    
    .featured-image, .featured-content {
        flex: 0 0 0%;
    }
    
    .featured-image img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }

    .mcont{
        flex-direction: column;
    }
    .mf{
        width: 100%;
    }
    
    .stats-grid, .callout-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    #newsletter-form .form-group {
        flex-direction: column;
    }
    
    #newsletter-form input {
        border-radius: var(--border-radius);
        border-right: 1px solid var(--neutral-300);
        margin-bottom: var(--space-sm);
    }
    
    #newsletter-form button {
        border-radius: var(--border-radius);
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}



/* Data Section */
.data {
  background-color: var(--bg-color);
}

.data .container{
    padding: 50px 0px;
}

.tabs {
  max-width: 1200px;
  margin: 0 auto;
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 1rem;
  background-color: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  font-weight: 500;
    box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn:hover {
  background-color: green;
  color: #fff;
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.chart-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.chart-header {
  background-color: var(--card-bg);
  padding: 1.5rem 1.5rem 0.5rem;
}

.chart-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.chart-header p {
  color: var(--text-light);
  font-size: 0.875rem;
}

.chart-container {
  padding: 1rem 1.5rem 1.5rem;
  height: 300px;
  background-color: var(--card-bg);
    box-shadow: var(--box-shadow);
}