/* Reset and Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #576ba3 0%, #4a5d8a 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    padding: 0;
}

.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.logo img {
    width: 180px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: brightness(1.2) contrast(1.2);
    display: block;
    margin-left: -10px;
    opacity: 1;
}

.brand-names {
    display: flex;
    flex-direction: column;
    margin-left: -1px;
}

.brand-name-en {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.brand-name-dari {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    margin-left: -10px;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.brand-name-pashto {
    font-size: 19px;
    font-weight: 400;
    color: #e0f2fe;
    margin: 0;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #10b981;
}

.cta-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 90px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */

.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,

.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);  
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* News Section - Fresh Implementation */

.news-section {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./images/ss-1.png') center/cover;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(16, 185, 129, 0.75) 100%);
    z-index: -1;
}

.news-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.news-content {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-95px);
}

.news-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.news-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.news-description {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 32px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
    text-align: center;
    max-width: 600px;
}

.news-button-container {
    margin-top: 20px;
}

.news-button {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 9999;
    cursor: pointer;
    pointer-events: auto;
}

.news-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Remove old news-hero styles */

.news-hero,
.news-hero::before,
.news-hero-overlay,
.news-hero-content,
.news-hero-title,
.news-hero-subtitle,
.news-hero-description,
.news-hero-cta,
.news-hero-cta:hover,
.news-hero-buttons {
    display: none !important;
}

/* News Page Styles - Organized Structure */

/* News Page Hero */
.news-page-hero {
    background: #f8fafc;
    padding: 120px 0 80px;
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 2px;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.goal-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.goal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #10b981;
}

.goal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.goal-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.goal-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Members Section */

.members {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.members-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 40px 0;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    gap: 40px;
    padding: 20px 0;
    animation: scroll-left 20s linear infinite;
    width: fit-content;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
}

  100% {
    transform: translateX(-50%);
  }
}

.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

.member-card {
    flex: 0 0 auto;
    width: 180px;
    min-width: 180px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    margin: 0 10px;
    cursor: pointer;
    position: relative;
    border: 4px solid transparent;
    background-clip: padding-box;
}

.member-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 4px solid transparent;
    border-radius: 20px;
    background: linear-gradient(45deg, #1e3a8a, #10b981, #1e40af, #059669);
    background-size: 300% 300%;
    z-index: -1;
    animation: borderAnimation 4s ease-in-out infinite;
    background-clip: border-box;
}

@keyframes borderAnimation {
    0% {
        background-position: 0% 50%;
        border-color: #1e3a8a;
    }
    25% {
        background-position: 50% 0%;
        border-color: #10b981;
    }
    50% {
        background-position: 100% 50%;
        border-color: #1e40af;
    }
    75% {
        background-position: 50% 100%;
        border-color: #059669;
    }
    100% {
        background-position: 0% 50%;
        border-color: #1e3a8a;
    }
}

.member-card.selected {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.25);
}

.member-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    border-color: #10b981;
}

.member-card:hover::before {
    animation-duration: 2s;
    background-size: 400% 400%;
}

.member-card:hover::before {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.member-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.member-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
    line-height: 1.3;
}

.carousel-btn { 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1e3a8a;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #10b981;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Education Section */

.education {
    padding: 20px 0;
    background: #ffffff;
}

.education-content {
    max-width: 1000px;
    margin: 0 auto;
}

.education-text {
    text-align: center;
    margin-bottom: 40px;
}

.education-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.education-text p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 10px;
}

.infographic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.info-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.info-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.info-step p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.info-arrow {
    font-size: 24px;
    color: #10b981;
    font-weight: bold;
    margin: 0 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
}

.value-item.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
    display: block;
}

.value-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Collaboration and Public Awareness Section */
.collaboration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.collaboration-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.collaboration-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.collaboration-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.collaboration-content p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.emi-pi-explanation {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.emi-pi-explanation h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 30px;
    text-align: center;
}

.emi-content {
    margin-bottom: 40px;
}

.emi-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

.emi-example {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #10b981;
}

.emi-example h4 {
    font-size: 18px;
    font-weight: 600;
    color: #059669;
    margin-bottom: 15px;
}

.emi-example p {
    font-size: 15px;
    color: #065f46;
    line-height: 1.6;
}

.security-info {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid #f59e0b;
}

.security-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 15px;
}

.security-info p {
    font-size: 15px;
    color: #92400e;
    line-height: 1.6;
    margin-bottom: 10px;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.collaboration-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.collaboration-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #10b981;
}

.collaboration-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #10b981 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collaboration-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collaboration-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 15px;
    text-align: center;
}

.collaboration-item p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
}

.association-objectives {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 16px;
    padding: 40px;
    margin: 60px 0;
    color: #ffffff;
}

.association-objectives h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.objectives-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.objective-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.objective-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.association-preamble {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
    margin: 60px 0 40px;
    border: 1px solid #e2e8f0;
}

.association-preamble h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.association-preamble p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.aempia-goals {
    margin-top: 30px;
}

.aempia-goals h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.goals-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.goal-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.goal-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #10b981;
}

.goal-item .goal-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goal-item .goal-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goal-content {
    flex: 1;
}

.goal-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.goal-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Collaboration Section */
@media (max-width: 768px) {
    .collaboration-section {
        padding: 60px 0;
    }
    
    .collaboration-intro {
        margin: 0 auto 40px;
    }
    
    .collaboration-content h3 {
        font-size: 20px;
    }
    
    .collaboration-content p {
        font-size: 16px;
    }
    
    .emi-pi-explanation {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .emi-pi-explanation h3 {
        font-size: 24px;
    }
    
    .collaboration-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }
    
    .collaboration-item {
        padding: 25px 20px;
    }
    
    .collaboration-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
    }
    
    .collaboration-item h3 {
        font-size: 18px;
    }
    
    .collaboration-item p {
        font-size: 14px;
    }
    
    .association-objectives {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .objectives-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .objective-item {
        padding: 20px 15px;
    }
    
    .association-preamble {
        padding: 30px 20px;
        margin: 40px 0 30px;
    }
    
    .goals-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .goal-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .goal-item .goal-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .collaboration-section {
        padding: 40px 0;
    }
    
    .collaboration-intro {
        margin: 0 auto 30px;
    }
    
    .collaboration-content h3 {
        font-size: 18px;
    }
    
    .collaboration-content p {
        font-size: 15px;
    }
    
    .emi-pi-explanation {
        padding: 25px 15px;
        margin: 30px 0;
    }
    
    .emi-pi-explanation h3 {
        font-size: 20px;
    }
    
    .collaboration-item {
        padding: 20px 15px;
    }
    
    .collaboration-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 10px;
    }
    
    .collaboration-item h3 {
        font-size: 16px;
    }
    
    .collaboration-item p {
        font-size: 13px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-intro p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-category {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a 0%, #10b981 100%);
    border-radius: 16px 16px 0 0;
}

.service-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #10b981;
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 2px;
}

.service-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-item:hover {
    background: #ffffff;
    border-color: #10b981;
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.service-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.service-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
    flex: 1;
}

.service-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services-intro {
        margin: 0 auto 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-category {
        padding: 25px 20px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 15px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .service-item h4 {
        font-size: 15px;
    }
    
    .service-item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 0;
    }
    
    .services-intro p {
        font-size: 16px;
    }
    
    .service-category {
        padding: 20px 15px;
    }
    
    .category-title {
        font-size: 18px;
    }
    
    .service-item {
        padding: 12px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0f2fe;
    margin-bottom: 8px;
}

.footer-section strong {
    color: #10b981;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 25px;
    margin-bottom: 8px;
    margin-left: -35px;
}

.social-link {
    color: #e0f2fe;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid #10b981;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #10b981;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0f2fe;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #10b981;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

/* About Page Styles */

.about-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.content-main h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 24px;
}

.content-main p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 32px;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.value-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.value-item h3 {
    color: #1e3a8a;
    margin-bottom: 12px;
}

.value-item p {
    color: #64748b;
    font-size: 0.95rem;
}

.sidebar-card {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    color: #1e3a8a;
    margin-bottom: 16px;
}

.facts-list, .achievements-list {
    list-style: none;
    padding: 0;
}

.facts-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.achievements-list li {
    padding: 8px 0;
    color: #10b981;
    font-weight: 500;
}

/* Leadership Section */

.leadership {
    padding: 80px 0;
    background: #f8fafc;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.leader-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.leader-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h3 {
    color: #1e3a8a;
    margin-bottom: 8px;
}

.leader-title {
    color: #10b981;
    font-weight: 500;
    margin-bottom: 12px;
}

.leader-bio {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Members Full Page Styles */

.members-full {
    padding: 80px 0;
}

.members-intro {
    text-align: center;
    margin-bottom: 60px;
}

.members-intro h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.members-intro p {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.member-full-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 24px;
    align-items: center;
}

.member-full-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.member-logo {
    flex: 0 0 120px;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
}

.member-logo img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    border-radius: 15px;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.member-type {
    color: #10b981;
    font-weight: 500;
    margin-bottom: 12px;
}

.member-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.member-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Regulations Page Styles */

.regulations-content {
    padding: 80px 0;
}

.regulations-intro {
    text-align: center;
    margin-bottom: 60px;
}

.regulations-intro h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.regulations-intro p {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.regulation-section {
    margin-bottom: 60px;
}

.regulation-section h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 32px;
    text-align: center;
}

.regulation-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.regulation-card h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.regulation-list {
    list-style: none;
    padding: 0;
}

.regulation-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    position: relative;
    padding-left: 24px;
}

.regulation-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.protection-grid, .aml-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.protection-card, .aml-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.protection-card h3, .aml-card h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.protection-card p, .aml-card p {
    color: #64748b;
    line-height: 1.6;
}

.aml-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.aml-list li {
    padding: 8px 0;
    color: #4b5563;
    position: relative;
    padding-left: 20px;
}

.aml-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #10b981;
}

.compliance-resources {
    margin-top: 60px;
}

.compliance-resources h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 32px;
    text-align: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.resource-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.resource-card h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.resource-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.resource-link {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Form Styles */

.membership-form, .contact-form {
    padding: 20px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.form-header p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

/* Contact Page Styles */

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form-section p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details h3 {
    color: #1e3a8a;
    margin-bottom: 8px;
}

.contact-details p {
    color: #4b5563;
    line-height: 1.6;
}

.social-section {
    margin-bottom: 60px;
}

.social-section h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.social-section p {
    color: #4b5563;
    text-align: center;
    margin-bottom: 32px;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-card h3 {
    color: #1e3a8a;
    margin-bottom: 4px;
}

.social-card p {
    color: #64748b;
    font-size: 0.9rem;
}

.faq-section {
    margin-bottom: 60px;
}

.faq-section h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 32px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.faq-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.establishment-highlight {
    text-align: center;
    margin-bottom: 20px;
}

.year-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.faq-item h3 {
    color: #1e3a8a;
    margin-bottom: 12px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Membership Benefits */

.membership-benefits {
    margin-top: 60px;
}

.membership-benefits h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 32px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-card h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

/* Responsive Design */

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    .nav-container {
        flex-direction: row;
        height: auto;
        padding: 15px 20px;
        max-width: 100%;
        width: 100%;
    }

    .nav-brand {
        margin-bottom: 0;
        max-width: 100%;
        gap: 15px;
    }
    
    .brand-name-en {
        font-size: 22px;
        letter-spacing: -0.3px;
    }

    .brand-name-dari {
        font-size: 12px;
        margin: 2px 0;
    }

    .brand-name-pashto {
        font-size: 10px;
    }

    .logo img {
        width: 100px;
        height: 60px;
        object-fit: contain;
        border-radius: 6px;
        filter: brightness(1.2) contrast(1.2);
        display: block;
        margin-left: 0;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e3a8a;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .cta-button {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        word-wrap: break-word;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 5px;
        width: 100%;
        max-width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .goals-grid {   
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .goal-card {
        padding: 30px 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .infographic {
        flex-direction: column;
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .info-step {
        min-width: 100%;
        padding: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .members-carousel {
        padding: 20px 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .carousel-container {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .carousel-track {
        gap: 20px;
        max-width: 100%;
        width: fit-content;
        box-sizing: border-box;
        animation: scroll-left-mobile 15s linear infinite;
    }

    @keyframes scroll-left-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-280%);
        }
    }

    .member-card {
        width: 140px;
        min-width: 140px;
        padding: 16px;
        max-width: 140px;
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .education-content {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .social-links {
        justify-content: center;
        margin-top: 24px;
        margin-bottom: 12px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 18px;
    }
    
    .faq-item p {
        font-size: 15px;
    }
    
    .year-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-item h3 {
        font-size: 16px;
    }
    
    .faq-item p {
        font-size: 14px;
    }
    
    .year-badge {
        font-size: 12px;
        padding: 5px 10px;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
        word-wrap: break-word;
        margin-top: -80px;
    }

    .hero-description {
        font-size: 15px;
        word-wrap: break-word;
    }

    .section-title {
        font-size: 24px;
        padding: 0 15px;
        margin-bottom: 40px;
        word-wrap: break-word;
    }

    .values-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .carousel-track {
        gap: 15px;
        max-width: 100%;
        width: fit-content;
        box-sizing: border-box;
    }

    .member-card {
        width: 120px;
        min-width: 120px;
        padding: 12px;
        margin: 0 3px;
        max-width: 120px;
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .member-card h4 {
        font-size: 12px;
        word-wrap: break-word;
    }

    .info-step {
        min-width: 100%;
        padding: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .value-item {
        padding: 20px 15px;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ===================================
   JOBS SECTION STYLES
=================================== */

/* Jobs Hero Section */
.jobs-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #10b981 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jobs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.jobs-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.jobs-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.jobs-hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.jobs-hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.6;
}

.jobs-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.jobs-hero-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.jobs-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.4);
}

.jobs-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jobs-hero-secondary:hover {
    background: white;
    color: #1e3a8a;
}

/* Post Job Section */
.post-job-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-top: 10px;
}

.post-job-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.post-job-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.submit-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.4);
}

.reset-btn {
    background: #64748b;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    background: #475569;
}

/* Jobs Listing Section */
.jobs-listing-section {
    padding: 80px 0;
    background: white;
}

.jobs-filter {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: 12px;
    flex: 1;
    min-width: 300px;
}

.filter-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
}

.search-btn {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #1e40af;
}

.filter-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-options select {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    background: white;
}

/* Featured Jobs */
.featured-jobs {
    margin-bottom: 60px;
}

.featured-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-title i {
    color: #fbbf24;
}

.featured-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Job Cards */
.job-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.job-card.featured {
    border-color: #fbbf24;
    position: relative;
}

.job-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 24px 16px;
}

.job-company {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.company-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 24px;
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 4px;
}

.featured-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.job-actions {
    display: flex;
    gap: 8px;
}

.share-btn,
.bookmark-btn {
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
}

.share-btn:hover,
.bookmark-btn:hover {
    background: #e5e7eb;
    color: #1e3a8a;
}

.bookmark-btn.bookmarked {
    background: #10b981;
    color: white;
}

.job-content {
    padding: 0 24px 20px;
}

.job-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.job-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.job-type {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-type.full-time {
    background: #dcfce7;
    color: #166534;
}

.job-type.part-time {
    background: #fef3c7;
    color: #92400e;
}

.job-type.contract {
    background: #e0e7ff;
    color: #1d4ed8;
}

.job-type.internship {
    background: #fce7f3;
    color: #9a3412;
}

.job-type.remote {
    background: #f3e8ff;
    color: #6d28d9;
}

.job-location {
    color: #64748b;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-salary {
    color: #059669;
    font-weight: 600;
    font-size: 15px;
}

.job-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -moz-box;
    -moz-line-clamp: 3;
    -moz-box-orient: vertical;
    display: box;
    line-clamp: 3;
    box-orient: vertical;
    overflow: hidden;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
}

.posted-date {
    color: #9ca3af;
    font-size: 14px;
}

.apply-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.load-more-container {
    text-align: center;
    margin-top: 60px;
}

.load-more-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f3f4f6;
}

.share-options {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.share-option {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.share-option:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.share-option i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* Animations */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .jobs-hero-title {
        font-size: 36px;
    }
    
    .jobs-hero-subtitle {
        font-size: 20px;
    }
    
    .jobs-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .post-job-form-container {
        padding: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .jobs-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .featured-jobs-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .job-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .share-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .jobs-hero {
        padding: 60px 0;
    }
    
    .jobs-hero-title {
        font-size: 28px;
    }
    
    .post-job-section,
    .jobs-listing-section {
        padding: 60px 0;
    }
    
    .post-job-form-container {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .submit-btn,
    .reset-btn {
        width: 100%;
    }
}
    .goal-card {
        padding: 25px 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .footer-section {
        margin-bottom: 10px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .footer-section p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 6px;
        padding: 0;
    }

    .footer-section strong {
        display: block;
        margin-bottom: 4px;
        font-size: 13px;
    }

    .footer-links {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .footer-links a {
        font-size: 13px;
        padding: 2px 0;
        display: block;
    }

    .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 8px;
    }

    .social-link {
        font-size: 12px;
        padding: 6px 10px;
        margin: 0;
    }

    .footer-content {
        gap: 25px;
        padding: 0 15px;
    }

    .footer-bottom {
        padding: 15px 0;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 11px;
        line-height: 1.4;
        margin: 0;
        padding: 0 10px;
    }

    .btn-primary,
    .btn-secondary {
        box-sizing: border-box;
    }


@media (max-width: 768px) {
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .values-list,
    .leaership-grid,
    .members-grid,
    .goal-card {
        padding: 25px 15px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .jobs-hero-title {
        font-size: 36px;
    }
    
    .jobs-hero-subtitle {
        font-size: 20px;
    }
    
    .jobs-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .post-job-form-container {
        padding: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .jobs-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .featured-jobs-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .job-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .job-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .share-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .jobs-hero {
        padding: 60px 0;
    }
    
    .jobs-hero-title {
        font-size: 28px;
    }
    
    .post-job-section,
    .jobs-listing-section {
        padding: 60px 0;
    }
    
    .post-job-form-container {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .submit-btn,
    .reset-btn {
        width: 100%;
    }
}
    .protection-grid,
    .aml-grid,
    .resources-grid,
    .social-links-large,
    .faq-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .member-full-card {
        flex-direction: column;
        text-align: center;

        .member-logo {
        margin: 0 auto 20px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* Mobile responsive for back to top button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}
