/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(1, 53, 142, 1);
    text-decoration: unset;
}

.logo img {
    width: 32px;
    height: 32px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(1, 53, 142, 1);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #1d4ed8;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: rgba(1, 53, 142, 1);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #f8fafc;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(1, 53, 142, 1);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 1rem;
}

.cta-btn {
    background: #ec4899;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1.5rem;
}

.cta-btn:hover {
    background: #db2777;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Insights Section */
.insights {
    padding: 80px 0;
    background: white;
}

.insights h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(1, 53, 142, 1);
    margin-bottom: 3rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.insight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.insight-card p {
    padding: 0 1.5rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.more-link {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: rgba(1, 53, 142, 1);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.more-link:hover {
    color: #1d4ed8;
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background: #f8fafc;
}

.impact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(1, 53, 142, 1);
    margin-bottom: 3rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.impact-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.impact-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(1, 53, 142, 1);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background: #f8fafc;
}

.industries h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(1, 53, 142, 1);
    margin-bottom: 1.5rem;
}

.industries-intro {
    color: #64748b;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.industries-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.industry-item {
    margin-bottom: 2.5rem;
}

.industry-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.industry-item p {
    color: #64748b;
    line-height: 1.6;
}

.industries-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.contact-form-wrapper h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.submit-btn {
    background: white;
    color: #ec4899;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: white;
    padding: 40px 0 20px;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: rgba(1, 53, 142, 1);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #1d4ed8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(1, 53, 142, 1);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-copyright p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about-content,
    .industries-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .insights-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content,
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-nav,
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .insights h2,
    .impact h2,
    .about-text h2,
    .industries h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .insights,
    .impact,
    .about,
    .industries,
    .contact {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .insights h2,
    .impact h2,
    .about-text h2,
    .industries h2 {
        font-size: 1.75rem;
    }
    
    .insight-card,
    .impact-card {
        margin: 0 10px;
    }
    
    .insights-grid,
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.insight-card,
.impact-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Mobile menu animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.nav.active {
  display: flex;
  transform: translateY(0);
            opacity: 1;
            visibility: visible;
            gap: 0;
}

 @media (max-width: 768px) {
        .nav {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: white;
            flex-direction: column;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
    
        
        .nav-link {
            padding: 1rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .nav-link:last-child {
            border-bottom: none;
        }
    }

    .policy-section {
      margin-top: 80px;
      padding-top: 60px;
      padding-bottom: 60px;
      color: rgba(1, 53, 142, 1);
    }

    .policy-section h1 {
      margin-bottom: 24px;
    }

    @media (min-width:768px){
        .policy-section h1 {
      font-size: 56px;
    }
    }

    .policy-section a {
      color: inherit;
      text-decoration: unset;
    }