/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --primary-dark: #004499;
    --primary-light: #3385d9;
    --secondary-color: #00a86b;
    --secondary-dark: #008050;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, #0066cc 0%, #00a86b 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
  

}

.logo {
  margin-right: 90px;  /* 👈 space between logo and menu */
}

.nav-menu a {
  white-space: nowrap;   /* 🔥 prevents word break */
}


.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-nav::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: white;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Slider Container */
.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slider-slide .slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-slide .slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slider-slide .slide-content p {
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

.slider-nav svg {
    width: 24px;
    height: 24px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    align-items: center;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.slider-dots .dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.slider-dots .dot:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.slider-dots .dot.active {
    background: white;
    border-color: white;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--bg-white);
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 168, 107, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Why Program Section */
.why-program {
    background: var(--bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.content-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    margin: 1rem 0;
}

.check-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.citation {
    font-size: 0.9rem;
    color: var(--text-lighter);
    font-style: italic;
    margin-top: 1rem;
    display: block;
}

.mt-2 {
    margin-top: 1rem;
}

/* Differentiators Section */
.differentiators {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.feature-card ul li {
    margin: 0.5rem 0;
    color: var(--text-light);
}

/* Overview Section */
.overview {
    background: var(--bg-light);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.overview-card.highlight {
    border: 2px solid var(--primary-color);
}

.overview-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--text-dark);
}

.note {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin-bottom: 1rem;
}

/* Learning Framework */
/* .learning-framework {
    background: white;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.domain-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.domain-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.domain-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.domain-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.domain-card p {
    color: var(--text-light);
    font-size: 0.95rem;
} */

/* //second code first up */

.learning-framework {
    position: relative;
}

.domains-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.domain-card {
    min-width: 280px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
    text-align: center;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;  /* White button */
    color: #0066CC;       /* Blue arrow */
    border: none;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 25px;
}

.arrow.left {
    left: 40px;
}

.arrow.right {
    right: 40px;
}

.arrow:hover {
    background: #0a58ca;  /* Hover blue */
    color: #FFFFFF;       /* White arrow */
}



/* Skill Mapping */
.skill-mapping {
    background: var(--bg-light);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.skill-category h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);

}




.skill-category ul {
    list-style: none;
}

.skill-category ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.skill-category ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Program Structure */
.program-structure {
    background: white;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.customization-section {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.customization-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.focus-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.focus-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.cert-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-style: italic;
}

/* Benefits Section */
.benefits {
    background: var(--bg-light);
}

.benefits-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.benefit-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.benefit-item ul li {
    color: var(--text-light);
    margin: 0.5rem 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-box h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* Impact Section */
.impact {
    background: white;
}

.impact-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.impact-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 15px;
    overflow: hidden;
}

.impact-table thead {
    background: var(--primary-color);
    color: white;
}

.impact-table th,
.impact-table td {
    padding: 1.5rem;
    text-align: left;
}

.impact-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.impact-table tbody tr:last-child {
    border-bottom: none;
}

.impact-table tbody tr:hover {
    background: var(--bg-light);
}

.impact-table td {
    color: var(--text-light);
}

.impact-footer {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 2rem;
}

/* Partners Section */
.partners {
    background: var(--bg-light);
    
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.partner-logo {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.partner-placeholder {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

.partners-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.testimonial-placeholder {
    text-align: center;
    color: var(--text-lighter);
    font-style: italic;
    padding: 2rem 0;
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */


/* Contact Section */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        transition: left 0.3s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .slider-slide .slide-content h2 {
        font-size: 2rem;
    }
    
    .slider-slide .slide-content p {
        font-size: 1.2rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 30px;
        gap: 10px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots .dot.active {
        width: 12px;
        height: 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
        min-height: 85vh;
    }
    
    .slider-slide .slide-content h2 {
        font-size: 1.75rem;
    }
    
    .slider-slide .slide-content p {
        font-size: 1rem;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .content-card,
    .feature-card,
    .overview-card {
        padding: 1.5rem;
    }
}
/* NAVBAR BASE */
.navbar {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #e6e6e6;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* LOGO CONTAINER */
.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
}

/* MAIN LOGO IMAGE */
.logo img {
    height: 40px;              /* Perfect balanced size */
    width: auto;
    object-fit: contain;
    display: block;

    /* Premium clean look */
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.15));
    border-radius: 6px;  
}

/* SUBTITLE BELOW LOGO */
.logo-subtitle {
    font-size: 12px;
    color: #444;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-left: 3px;
}

/* NAV WRAPPER ALIGNMENT */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}




.logo img {
    height: 95px;         /* Big, clear, visible */
    width: auto;
    object-fit: contain;
    display: block;

    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.18));
}

/* Adjust navbar height */
.navbar {
    padding: 18px 0;
}


        /* BOARD OF STUDIES SECTION */
        .bos-section {
            padding: 60px 20px;
            max-width: 1100px;
            margin: auto;
            text-align: center;
        }

        .bos-title {
            font-size: 32px;
            font-weight: 700;
            color: #0b4470;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .bos-subtitle {
            font-size: 16px;
            color: #6c7586;
            margin-bottom: 35px;
        }

        .bos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 24px;
        }

        .bos-card {
            background: #ffffff;
            padding: 24px;
            border-radius: 18px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #edf1f5;
        }

        .bos-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
        }

        .bos-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 14px;
            border: 3px solid #0b4470;
        }

        .bos-card h3 {
            margin: 6px 0;
            font-size: 20px;
            font-weight: 700;
            color: #0b4470;
        }

        .bos-role {
            color: #1870bd;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .bos-desc {
            color: #6c7586;
            font-size: 14px;
            line-height: 1.4;
        }

        .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* NAVBAR MAIN WRAPPER */
.navbar {
    padding: 10px 0;
    height: 90px;                /* slim, fixed height */
    display: flex;
    align-items: center;
    background-color: #fff;      /* clean white header */
    border-bottom: 1px solid #eee;
}

/* CONTAINER ADJUSTMENTS */
.navbar .container {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;            /* balanced spacing */
}

/* LOGO LEFT */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* LOGO IMAGE */
.logo img {
    height: 75px;               /* perfect professional size */
    width: auto;
    object-fit: contain;
}

/* NAV MENU RIGHT */
.nav-wrapper {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%;
}

/* NAV MENU ALIGNMENT */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;                 /* perfect spacing between links */
}

/* NAV LINKS */
.nav-menu a {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
}

/* CONTACT BUTTON (RIGHT SIDE) */
.btn-nav {
    background-color: #1067e7;
    color: white !important;
    padding: 10px 22px;
    border-radius: 25px;
}

.partners-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logo img {
    width: 180px;      /* increase or decrease size */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.partner-logo img:hover {
    transform: scale(1.08);
}


/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Text Testimonial Card */
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #1b76d1;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 26px rgba(0, 0, 0, 0.12);
}

/* Text Styling */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #333;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}

.testimonial-role {
    font-size: 0.95rem;
    color: #777;
}

/* CHW Image Card */
.testimonial-img-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.15);
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.testimonial-img:hover {
    transform: scale(1.05);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    text-align: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 12px;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 45px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    z-index: 10000;
}

.partners {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
}

.partner-block {
    margin-top: 50px;
}

.partner-title {
    font-size: 24px;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 8px;
}

.partner-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    align-items: center;
}

.partner-logo {
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.partner-logo img {
    width: 160px;      /* Increased Logo Size */
    height: auto;
    opacity: 0.95;
}

.partner-logo:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    opacity: 1;
}

.partners-note {
    margin-top: 40px;
    text-align: center;
    font-size: 15px;
    color: #777;
}


.partners {
    padding: 80px 0;
    background: #f8fafc;
}

/* H2 Center */
.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 10px;
}

/* Subtitle */
.section-subtitle {
    font-size: 16px;
    color: #444;
    font-weight: 600;       /* Bold */
    text-align: center;     /* Center */
    max-width: 700px;
    margin: 0 auto 40px;
}

/* H3 Center */
.partner-title {
    font-size: 34px;
    font-weight: 700;
    color: #0066cc;
    text-align: center;
    margin-bottom: 10px;
}

/* All description <p> bold */
.partner-desc,
.partners-note {
    font-size: 20px;
    font-weight: 600;      /* Bold */
    text-align: center;    /* Center */
    color: #555;
    margin-bottom: 25px;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-top: 20px;
    align-items: center;
}

/* Partner Logo Box */
.partner-logo {
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

/* Increased Logo Size */
.partner-logo img {
    width: 170px;
    height: auto;
    opacity: 0.95;
}

/* Hover Effect */
.partner-logo:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    opacity: 1;
}

/* Bottom Note */
.partners-note {
    margin-top: 40px;
    color: #666;
}


/* Section Layout */
.why-program {
    padding: 60px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.section-header h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

/* Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.content-card {
    background: #fff;
    border-radius: 12px;
    padding-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    overflow: hidden;
    transition: 0.3s;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Image */
.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* Text */
.content-card h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 15px 20px 5px 20px;
    color: #1a1a1a;
}

.content-card p {
    padding: 0 20px;
    font-size: 15px;
    color: #444;
}

/* Hide long content initially */
.full-text {
    display: none;
    margin-top: 10px;
    color: #555;
}

/* Read More Link */
.read-more {
    display: block;
    margin: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #0A66C2;
    cursor: pointer;
    transition: 0.3s;
}

.read-more:hover {
    color: #084a8a;
}



/* Container for the grid */
.why-program .content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; /* space between cards */
    align-items: stretch; /* make all cards equal height */
    margin-top: 20px;
}

/* Individual content cards */
.why-program .content-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* makes content evenly spaced vertically */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.why-program .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Images */
.why-program .content-card .card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Card headings */
.why-program .content-card h3 {
    font-size: 1.25rem;
    margin: 10px 0;
}

/* Text */
.why-program .content-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Read More button */
.why-program .content-card .read-more {
    color: var(--primary-color, #0066cc);
    cursor: pointer;
    font-weight: 500;
    align-self: flex-start;
    margin-top: auto;
}
@media (max-width: 768px) {
    .why-program .content-card .card-img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .why-program .content-card .card-img {
        height: 120px;
    }
}
/* Container & Section */
.skill-mapping {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.skill-mapping .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.skill-mapping .section-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Skill Card */
.skill-category {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #4CAF50; /* Accent color */
}

.skill-category h3 {
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 600;
}

.skill-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-category ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555555;
    position: relative;
    padding-left: 18px;
}

.skill-category ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Hover effect */
.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* Responsive for smaller devices */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}
/* Container & Section */
.skill-mapping {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.skill-mapping .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.skill-mapping .section-header h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

/* Skills Grid for Laptop/Desktop */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Skill Card */
.skill-category {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #4CAF50; /* Accent color */
    flex: 1 1 30%; /* 3 cards in a row approx */
    max-width: 30%;
    box-sizing: border-box;
}

.skill-category:nth-child(4), 
.skill-category:nth-child(5) {
    max-width: 45%; /* 2nd row → 2 cards larger */
    flex: 1 1 45%;
}

.skill-category h3 {
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 600;
}

.skill-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-category ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555555;
    position: relative;
    padding-left: 18px;
}

.skill-category ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Hover effect */
.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* Responsive: tablets and smaller screens */
@media (max-width: 1024px) {
    .skill-category {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .skill-category {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* Section */
.learning-framework {
    padding: 60px 0;
}

.section-header h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
}

/* Horizontal Row */
.domains-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar (Optional) */
.domains-row::-webkit-scrollbar {
    display: none;
}

/* Card */
.domain-card {
    flex: 0 0 280px;
    background: #ffffff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid #e5e7eb;
}

.domain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Icon */
.domain-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

/* Title */
.domain-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
}

/* Text */
.domain-card p {
    margin-top: 10px;
    color: #64748B;
    font-size: 15px;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .domain-card {
        flex: 0 0 250px;
    }
}

/* ---- Benefits Grid: Horizontal Modern Layout ---- */
.benefits-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 5px 20px 5px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
}

/* Hide scrollbar (optional, clean UI) */
.benefits-grid::-webkit-scrollbar {
    display: none;
}

/* ---- Benefit Card ---- */
.benefit-item {
    flex: 0 0 300px; /* width of each card */
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

/* Hover effect */
.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

/* Titles */
.benefit-item h4 {
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
}

/* Text */
.benefit-item p,
.benefit-item ul li {
    color: #475569;
    font-size: 15px;
    line-height: 1.5;
}

/* Citation Text */
.benefit-item .citation {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .benefit-item {
        flex: 0 0 250px;
    }
}
/* ---- Main Section Heading Professional Blue ---- */
.section-header h2 {
    color: #1d4ed8;            /* Professional modern blue */
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}
/* ---- Benefit Card (Modern Gradient Border + Glass Look) ---- */
.benefit-item {
    flex: 0 0 300px;
    padding: 22px;
    border-radius: 18px;

    /* Gradient Border */
    border: 2px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, #3b82f6, #06b6d4) border-box;

    /* Glass-like effect */
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    backdrop-filter: blur(4px);

    transition: 0.3s ease;
}

/* Hover glow + lift */
.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(59,130,246,0.25);
}
.benefit-item h4 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #1d4ed8; /* modern bold blue */
    letter-spacing: 0.3px;
}
.benefit-item p,
.benefit-item ul li {
    color: #475569;
    font-size: 15px;
    line-height: 1.55;
}

.benefit-item ul {
    padding-left: 18px;
}

.benefit-item ul li::before {
    content: "✔";
    color: #0ea5e9; /* modern cyan tick */
    margin-right: 8px;
    font-size: 14px;
}
/* Remove default bullets */
.benefit-item ul {
    list-style: none;
    padding-left: 0;
}

/* Each list item styling */
.benefit-item ul li {
    position: relative;
    padding-left: 24px;
    font-size: 15px;
    color: #475569;
    font-weight: 400; /* remove bold */
    line-height: 1.55;
    margin-bottom: 8px;
}

/* Clean professional ✓ icon */
.benefit-item ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #0ea5e9; /* modern cyan tick */
    font-size: 16px;
    font-weight: 600; /* bold only icon */
}


/* ---- Section Header Modern Styling ---- */
.section-header {
    text-align: center;
    margin-bottom: 45px;
}

/* Main Heading */
.section-header h1 {
    font-size: 38px;
    font-weight: 750;
    color: #1e3a8a; /* deep professional blue */
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 14px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* modern gradient text */
}

/* Subtitle / Paragraph */
.section-header .section-subtitle {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.65;
    color: #475569; /* soft modern gray */
    font-weight: 400;
    padding: 0 10px;
    opacity: 0.92;
}


/* Workers Testimonials - Modern Look */
.workers-testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.workers-testimonials .section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    color: #0b2447;
    margin-bottom: 20px;
}

.workers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.worker-card {
    background: #ffffff;
    padding: 25px 28px;
    border-radius: 16px;
    border: 1px solid #e6e9ef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.worker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.worker-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #2d334a;
    font-weight: 400;
    text-align: justify;
}


/* ============================
   PREMIUM TESTIMONIAL SECTION
   ============================ */

.workers-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #eef4ff 0%, #f8fbff 100%);
}

/* Heading */
.workers-testimonials .section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    color: #0a1a42;
    letter-spacing: 0.5px;
    margin-bottom: 50px;
    text-transform: capitalize;
}

/* Grid */
.workers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    padding: 0 20px;
}

/* Card */
.worker-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    padding: 32px 35px;
    border-radius: 20px;
    border: 1px solid rgba(200, 210, 230, 0.5);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06),
                0 4px 12px rgba(0, 0, 0, 0.04);

    transition: all 0.35s ease;
    position: relative;
}

/* Hover Animation */
.worker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.10);
    background: rgba(255, 255, 255, 0.9);
}

/* Left Accent Bar */
.worker-card::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 80%;
    background: linear-gradient(180deg, #0038ff, #07c8f9);
    left: 0;
    top: 10%;
    border-radius: 10px;
    opacity: 0.8;
}

/* Text */
.worker-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #1f2b47;
    font-weight: 430;
    text-align: justify;
}
.feature-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.feature-card.expanded .more-content {
    max-height: 500px; /* enough for long content */
}

.read-more-btn {
    margin-top: 15px;
    background: #0056b3;
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: #003f82;
}


.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Container for each step with arrow */
.process-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Main Step Box */
.process-step {
    background: #ffffff;
    padding: 25px;
    width: 230px;
    min-height: 180px; /* Equal height */
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Step Number Circle */
.step-number {
    width: 48px;
    height: 48px;
    background: #0056b3;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    font-weight: bold;
}

/* Arrow */
.process-arrow {
    font-size: 32px;
    color: #0056b3;
    font-weight: bold;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
    }
    
    .process-item {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }
}
.process-flow {
    display: flex;
    align-items: flex-start; /* FIXES NUMBER ALIGNMENT */
    justify-content: center;
    gap: 35px;
    margin-top: 40px;
}

/* Step Container (Equal Height & Aligned Top) */
.process-step {
    background: #fff;
    width: 260px;
    min-height: 260px;   /* FIX: Equal height */
    border-radius: 18px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    align-items: center; /* FIX: Number alignment */
    text-align: center;
}

/* Step Number (Perfect Circle, Perfect Alignment) */
.step-number {
    width: 55px;
    height: 55px;
    background: #0056d6;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 15px;
}

/* Arrow styling */
.process-arrow {
    font-size: 30px;
    font-weight: bold;
    margin-top: 110px; /* FIX: Align arrows with numbers */
    color: #0056d6;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
        gap: 25px;
    }
    .process-arrow {
        transform: rotate(90deg);
        margin-top: 0;
    }
}
/* MAIN WRAPPER - 5 cards in one horizontal row */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: nowrap;  /* IMPORTANT: forces all 5 in one line */
    overflow-x: auto;   /* In case screen is small */
    padding-bottom: 10px;
}

/* Each item */
.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Step card styling */
.process-step {
    background: #fff;
    width: 240px;            /* All equal width */
    min-height: 250px;       /* All equal height */
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* keep number aligned */
}

/* Step number circle */
.step-number {
    width: 50px;
    height: 50px;
    background: #0056d6;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* Arrow between cards */
.process-arrow {
    font-size: 28px;
    font-weight: bold;
    margin-top: 10px;
    color: #0056d6;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .process-flow {
        overflow-x: auto; /* Horizontal scroll */
    }
    .process-item {
        min-width: 240px; /* ensures proper scroll */
    }
}

@media (max-width: 600px) {
    .process-arrow {
        display: none; /* Hide arrows on very small screens */
    }
}



.content-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;      /* Make all cards equal height */
    gap: 30px;
}

.content-card {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;    /* Align card content vertically */
    justify-content: space-between;
}

.card-img {
    width: 100%;
    height: 200px;             /* FIX: All images same height */
    object-fit: cover;         /* Crop properly */
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Heading spacing */
.content-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

/* Text justification */
.short-text, .full-text {
    text-align: justify;
    flex-grow: 1;              /* Makes text area stretch evenly */
}

/* Read more stays at bottom */
.read-more {
    margin-top: 20px;
    font-weight: 600;
    color: #007bff;
    cursor: pointer;
}
.content-card {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.card-img {
    width: 100%;
    height: 180px;             /* FIXED height for all cards */
    object-fit: cover;
    border-radius: 12px;
    background: #f1f1f1;       /* If image missing → grey placeholder area */
    margin-bottom: 15px;
}

/* Content area must stretch same height */
.content-text {
    flex-grow: 1;              /* forces equal spacing inside all cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.short-text, .full-text {
    text-align: justify;
    margin-bottom: 20px;
}

/* Read More always at same bottom position */
.read-more {
    margin-top: auto;
    font-weight: 600;
    color: #007bff;
    cursor: pointer;
}
/* what make dchdo program  */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);   /* 4 cards in one row */
    gap: 25px;                                /* equal gap between cards */
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;       /* vertical alignment */
    justify-content: space-between;
    height: 100%;                 /* equal height cards */
}

/* Card heading alignment */
.feature-card h3 {
    margin: 15px 0;
}

/* Intro + more content block: stretch evenly */
.feature-card .intro,
.feature-card .more-content {
    text-align: justify;          /* justify text */
    flex-grow: 1;                 /* makes all text area equal height */
}

.more-content ul {
    margin-left: 18px;
}

/* Number styling */
.feature-number {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
}

/* Read More button aligned at bottom */
.read-more-btn {
    margin-top: 20px;
    padding: 10px 16px;
    border: none;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    align-self: flex-start;   /* keeps button left aligned */
}

.read-more-btn:hover {
    opacity: 0.85;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border-left: 6px solid #007bff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);

    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Number */
.feature-number {
    font-size: 32px;
    font-weight: 700;
    color: #c6ddff;
    margin-bottom: 15px;
}

/* Title */
.feature-card h3 {
    margin-bottom: 15px;
}

/* Justify text for intro + more-content */
.feature-card .intro p,
.feature-card .more-content p,
.feature-card .more-content ul {
    text-align: justify;
    line-height: 1.6;
}

/* This makes inside content equal height and pushes button to bottom */
.card-body {
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Button stays aligned bottom in all cards */
.read-more-btn {
    margin-top: 25px;
    padding: 10px 18px;
    background: #007bff;
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    align-self: flex-start;
}

.read-more-btn:hover {
    opacity: 0.85;
}


.workers-testimonials {
    padding: 60px 0;
    background: #f7faff;
}

.section-header h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #1a237e;
}

.workers-grid {
    display: flex;
    flex-direction: column;
    gap: 40px; /* 40px gap between cards */
}

.worker-card {
    position: relative;
    background: #ffffff;
    padding: 32px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    overflow: hidden;
}

/* 🔥 Thin Single Color Stripe */
.worker-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;      /* Thin single line */
    background: #0d6efd;  /* Modern blue */
    border-radius: 2px;
}

.worker-text {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    text-align: justify;  /* fully justified */
}



/* Remove the large white gap between sections */
.partners {
    padding-bottom: 40px !important; /* reduced */
    margin-bottom: 0 !important;
}

.partners-note {
    margin-bottom: 10px !important;
}

/* Testimonials section starts immediately with clean spacing */
.testimonials {
    padding-top: 40px !important;
    margin-top: 0 !important;
}

/* Workers Testimonials – aligned professionally */
.workers-testimonials {
    padding-top: 40px !important;
    margin-top: 0 !important;
}

/* SECTION HEADER uniform styling */
.section-header h1,
.section-header h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.section-header p {
    margin-top: 0;
    margin-bottom: 25px;
}

/* Standard container cleanup */
section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.partners,
.testimonials,
.workers-testimonials {
    background-color: #ffffff00; /* transparent – avoids visible white block gaps */
}

/* Reduce top padding of testimonials area */
.testimonials .container,
.workers-testimonials .container {
    padding-top: 0 !important;
}

/* Partner block spacing fixed */
.partner-block {
    margin-bottom: 30px !important;
}

/* Grid spacing optimized */
.partners-grid,
.testimonials-grid,
.workers-grid {
    gap: 40px;
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.section-header h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Text Truncation */
.testimonial-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* show only 5 lines */
  -webkit-box-orient: vertical;
  line-height: 1.6;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.testimonial-text.expanded {
  -webkit-line-clamp: unset;
}

/* Read More Button */
.read-more {
  color: #007bff;
  cursor: pointer;
  font-weight: 600;
  align-self: flex-start;
  margin-bottom: 1rem;
  user-select: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #0056b3;
}

/* Author */
.testimonial-author {
  font-weight: bold;
  color: #333;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
/* Testimonial Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Text Truncation & Justify */
.testimonial-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* show only 5 lines */
  -webkit-box-orient: vertical;
  line-height: 1.6;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  text-align: justify; /* Added justification */
}

.testimonial-text.expanded {
  -webkit-line-clamp: unset;
  text-align: justify; /* keep justification after expand */
}

.feature-card p {
    margin: 0;               /* remove default browser margin */
    line-height: 1.55;       /* perfect readability */
    text-align: justify;     /* clean alignment */
}

.feature-card .intro p {
    margin-bottom: 12px;     /* equal consistent spacing */
}

.feature-card .more-content p {
    margin-bottom: 12px;     /* same spacing as intro */
}


.intro p {
    text-align: left !important;
    word-spacing: normal;
    letter-spacing: normal;
}
.intro {
    text-align: left !important;
}
.intro p {
    text-align: justify;
    text-justify: inter-word;   /* Prevents extra wide gaps */
}

.intro p:last-child {
    text-align-last: left;      /* Prevents last line from stretching */
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.benefit-item h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
}
/* BENEFITS SECTION PREMIUM DESIGN */
.benefits {
    padding: 60px 0;
}

.benefits .section-header h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

/* Tabs */
.benefits-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 10px 22px;
    border: none;
    background: #f0f0f0;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.tab-button.active,
.tab-button:hover {
    background: #005bbb;
    color: #fff;
}

/* Content Area */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Benefits grid layout */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Benefit Item Box */
.benefit-item {
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Title inside box */
.benefit-item h4 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #222;
    font-weight: 600;
    text-align: left;
}

/* List inside box */
.benefit-item ul {
    margin: 0;
    padding-left: 18px;
}

.benefit-item ul li {
    margin-bottom: 8px;
    line-height: 1.5;
    text-align: justify; /* ❤️ PERFECT alignment */
    font-size: 15px;
    color: #444;
}

/* Paragraphs justified */
.benefit-item p,
.benefit-item .citation {
    text-align: justify;
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

/* Citation style */
.citation {
    display: block;
    margin-top: 6px;
    font-style: italic;
    color: #777;
    font-size: 14px;
}
/* Horizontal scroll container */
.benefits-grid {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

/* For Webkit browsers */
.benefits-grid::-webkit-scrollbar {
    height: 6px;
}

.benefits-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 12px;
}

/* Card (Benefit Item) styling */
.benefit-item {
    min-width: 320px;   /* card width */
    max-width: 320px;
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    flex-shrink: 0;      /* prevents shrinking */
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Headings inside card */
.benefit-item h4 {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

/* List alignment clean & justified */
.benefit-item ul {
    padding-left: 18px;
    margin: 0;
}

.benefit-item ul li {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.5;
    text-align: justify;
}

.benefit-item p,
.citation {
    font-size: 15px;
    color: #444;
    text-align: justify;
    line-height: 1.5;
}

.customization-section {
    margin-bottom: 0 !important;
    padding-bottom: 10px;
}

.program-structure {
    padding-bottom: 0 !important;
    margin-bottom: 20px !important;
}
#benefits,
.program-structure {
    margin: 0 !important;
    padding: 0 !important;
}
.bos-section,
.partners {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.process-flow {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap; /* Keep in one row */
}

.process-item {
    flex: 1;
}

.process-step {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;

    /* Equal height for whole card */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step h3 {
    margin: 15px 0 10px;
    font-size: 18px;
    font-weight: 600;
    min-height: 55px;  /* Title equal height */
}

.process-step p {
    font-size: 15px;
    line-height: 1.5;
    color: #555;

    /* Equal height for all <p> text */
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.process-flow {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.process-item {
    flex: 1;
}

.process-step {
    background: #fff;
    padding: 25px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    text-align: center;

    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Equal heading height */
.process-step h3 {
    min-height: 60px;        /* <-- Adjust if needed */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* Equal description height */
.process-step p {
    min-height: 95px;        /* <-- Ensures perfect alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 5px;
}

.learning-framework,
.skill-mapping {
    padding: 10px 0;
}

.learning-framework .container,
.skill-mapping .container {
    padding: 10px 0;
}

.domains-row {
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 15px;
}



/* Footer Styling */
.footer {
    background: #0d1b2a;
    color: #ffffff;
    margin-top: 50px;
    padding-top: 40px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-desc {
    line-height: 1.6;
    color: #d3d3d3;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #34b3f1;
}

.footer-contact i {
    margin-right: 8px;
    color: #34b3f1;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    color: #9ca3af;
}
/* ===========================
   FOOTER – Professional Style
   =========================== */

.footer {
    background: #081A44;      /* dark IIHMR blue */
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: 'Segoe UI', sans-serif;
    margin-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-desc {
    color: #d4d8e7;
    line-height: 1.6;
    font-size: 15px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-links a {
    color: #e0e6f1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #4da3ff;
    padding-left: 4px; /* smooth shift like gov websites */
}

.footer-contact i {
    color: #4da3ff;
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #b8bfd4;
}
/* Footer Main */
.footer {
    background: #081A44;
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* Top Grid */
.footer-top {
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-desc {
    color: #d4d8e7;
    font-size: 15px;
    line-height: 1.6;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li a {
    color: #e0e6f1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #4da3ff;
    padding-left: 4px;
}

/* NEW: Address + Logo Row */
.footer-address-logo {
    margin: 40px auto;
    width: 90%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.address-box {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.6;
    width: 60%;
}

.address-box i {
    font-size: 32px;
    color: #fff;
    margin-right: 15px;
}

.logo-box img {
    width: 300px;   /* same size as screenshot */
}

/* Separator Line */
.footer-line {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.3);
    margin: 25px auto;
    width: 90%;
}

/* Bottom Text */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #d6d8e9;
}





/* Footer CSS */
.footer {
    background-color: #0b1c4d;
    color: #fff;
    padding: 50px 20px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-section {
    flex: 1 1 180px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.contact-info li {
    margin-bottom: 5px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a img {
    width: 24px;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
}

.footer-bottom .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.footer-bottom hr {
    border-color: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.footer-bottom p {
    font-size: 14px;
}
.footer {
    background-color: #0d1b2a;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-desc, .footer-links, .footer-logo p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00bfff;
}

.footer-logo img {
    width: 120px;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #aaa;
}

.footer-bottom a {
    color: #00bfff;
    text-decoration: none;
}


/* SECTION BACKGROUND */
.location-section {
    background: #0A1A63;     /* Navy Blue */
    padding: 40px 20px;
}

/* MAIN FLEX CONTAINER */
.location-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT SIDE: ICON + TEXT */
.location-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.location-icon {
    width: 45px;
    height: auto;
}

.address-text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
}

/* RIGHT SIDE: LOGO */
.iihmr-logo {
    width: 350px;     /* Increase/Decrease as needed */
    height: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
        text-align: center;
    }

    .location-left {
        justify-content: center;
    }

    .iihmr-logo {
        width: 260px;
        margin-top: 20px;
         filter: brightness(0) invert(1);   /* Converts black → white */
    }
}


.location-section {
    background: #0A1A63;
    padding: 40px 20px;
    color: #fff;
}

/* TOP ROW: CONTACT + QUICK LINKS */
.top-footer {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
}

.footer-col {
    width: 33.33%;
}

.footer-title {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

/* CENTER COLUMN (Quick Links) */
.center-col {
    text-align: center;
}

.footer-links li {
    list-style: none;
    margin: 8px 0;
}

.footer-links a {
    color: #fff;
    font-size: 17px;
    text-decoration: none;
}

/* LOCATION + LOGO */
.location-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT SIDE */
.location-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.location-icon {
    width: 45px;
}

/* BOTTOM RIGHT LOGO – WHITE */
.iihmr-logo {
    width: 270px;
    filter: brightness(0) invert(1);   /* Make white */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .top-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 30px;
    }

    .location-container {
        flex-direction: column;
        text-align: center;
    }

    .iihmr-logo {
        margin-top: 20px;
        width: 200px;
    }
}
/* Footer Section */
.location-section {
    background-color: #0b1c4d; /* Dark blue */
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

/* Container for location and logo */
.location-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left part: Location info */
.location-left {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1 1 300px;
}

.location-icon {
    width: 24px;
    height: 24px;
    margin-top: 4px;
}

.address-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

/* Center: Logo */
.location-right {
    flex: 0 1 auto;
    text-align: center;
}

.iihmr-logo {
    max-height: 60px;
    object-fit: contain;
}

/* Right part: Contact info */
.footer-col {
    flex: 1 1 250px;
}

.footer-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin: 2px 0;
}

/* Back-to-top arrow */
.location-section .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00a3ff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 20px;
    text-decoration: none;
}

.location-section .back-to-top:hover {
    background-color: #007bb5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .location-right {
        margin: 20px 0;
    }
    
    .footer-col {
        width: 100%;
        margin-bottom: 20px;
    }
}
/* MOBILE VIEW: show cards vertically */
@media (max-width: 768px) {
    .features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
    }

    .feature-card {
        width: 100% !important;
    }
}


.feature-card {
    position: relative;
    padding-top: 40px; /* space for number */
}

.feature-number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #1355b8e7; /* change color as you like */
}

@media (max-width: 768px) {
    .features-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .feature-card {
        width: 100% !important;
    }

    .feature-number {
        font-size: 26px !important;
        top: 12px !important;
        left: 12px !important;
    }
}



.benefits {
  padding: 80px 20px;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
}

.subtitle {
  color: #64748b;
  font-size: 16px;
  margin-top: 8px;
}

.benefit-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.benefit-btn {
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.benefit-btn:hover {
  background: #e0e7ff;
}

.benefit-btn.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.benefit-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  display: none;
  animation: fadeIn 0.4s ease;
}

.benefit-content.active {
  display: block;
}

.benefit-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===============================
   BENEFITS SECTION – MODERN UI
================================ */

.benefits {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f9fafb 0%, #eef2ff 100%);
  font-family: "Inter", system-ui, sans-serif;
}

/* HEADER */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.6px;
}

.subtitle {
  font-size: 17px;
  color: #64748b;
  margin-top: 12px;
  line-height: 1.6;
}

/* TABS */
.benefit-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.benefit-btn {
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid #c7d2fe;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  color: #1e293b;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
}

.benefit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
}

.benefit-btn.active {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.35);
}

/* CONTENT CARD */
.benefit-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px 46px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: none;
  animation: fadeSlide 0.45s ease;
}

.benefit-content.active {
  display: block;
}

.benefit-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #334155;
  text-align: left;
}

/* ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .section-header h2 {
    font-size: 28px;
  }

  .benefit-content {
    padding: 28px 24px;
  }

  .benefit-content p {
    font-size: 16px;
  }
}
.benefit-content p {
  font-size: 16.5px;          /* professional reading size */
  line-height: 1.95;          /* key fix: airy & readable */
  color: #1f2937;             /* softer than pure black */
  letter-spacing: 0.2px;      /* improves long text */
  font-weight: 400;
  max-width: 820px;           /* prevents wide text fatigue */
  margin: 0 auto;
  text-align: left;
  
  /* improves rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.benefit-content {
  padding: 48px 56px;   /* more breathing space */
}


@media (max-width: 640px) {
  .benefit-content {
    padding: 28px 22px;
  }
}

.benefit-content {
  border-left: 4px solid #c7d2fe;
}



.benefit-content p {
  font-size: 16.5px;          /* professional reading size */
  line-height: 1.95;          /* key fix: airy & readable */
  color: #1f2937;             /* softer than pure black */
  letter-spacing: 0.2px;      /* improves long text */
  font-weight: 400;
  max-width: 820px;           /* prevents wide text fatigue */
  margin: 0 auto;
  text-align: left;
  
  /* improves rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.benefit-content {
  padding: 48px 56px;   /* more breathing space */
}

.benefit-content {
  border-left: 4px solid #c7d2fe;
}



/* ================= MOBILE NAVBAR ================= */
@media (max-width: 991px) {

  .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo img {
    max-height: 42px;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: #1e293b;
    border-radius: 2px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    display: none;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
    animation: fadeSlide 0.35s ease;
  }

  .nav-menu a {
    font-size: 17px;
    font-weight: 500;
    color: #0f172a;
    text-decoration: none;
  }

  .btn-nav {
    padding: 12px 26px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff !important;
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================= MOBILE HERO ================= */
@media (max-width: 991px) {

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    text-align: center;
    padding: 90px 16px 40px;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 12px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
    opacity: 0.95;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Slider arrows smaller */
  .slider-nav {
    width: 38px;
    height: 38px;
  }

  /* Dots spacing */
  .slider-dots {
    bottom: 18px;
  }
}


@media (min-width: 768px) and (max-width: 991px) {

  .hero-title {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-buttons .btn {
    width: auto;
    min-width: 220px;
  }
}





.patient-voices {
    padding: 60px 0;
    background: #f9fafb;
}

.patient-voices .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.patient-voices .section-header p {
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}


.patient-voices {
    padding: 60px 0;
    background-color: #f9fafb;
}

.patient-voices .section-header {
    margin-bottom: 30px;
}

.patient-voices .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.patient-voices .section-header p {
    font-size: 16px;
    color: #555;
    max-width: 720px;
    margin: 0 auto;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper iframe {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.patient-voices {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.patient-voices .section-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.patient-voices .section-header p {
    font-size: 15px;
    color: #555;
    max-width: 720px;
    margin: 0 auto 25px;
}

.video-wrapper {
    max-width: 720px;   /* Smaller professional width */
    margin: 0 auto;
}

.video-wrapper iframe {
    width: 100%;
    height: 405px;      /* Balanced aspect ratio */
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}


/* BENEFITS SECTION */
.benefits {
    padding: 80px 0;
    background: #ffffff;
}

/* Header */
.benefits .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.benefits .section-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefits .section-header .subtitle {
    font-size: 16px;
    color: #6c757d;
}

/* Tabs */
.benefit-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.benefit-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.benefit-btn.active {
    background: #0d6efd;
    color: #ffffff;
    border-color: #0d6efd;
}

/* CONTENT WRAPPER */
.benefit-content {
    display: none;
}

.benefit-content.active {
    display: block;
}

/* ✅ TEXT ALIGNMENT FIX */
.benefit-content p {
    max-width: 900px;              /* prevents too-wide text */
    margin: 0 auto;               /* centers content */
    padding: 30px 32px;           /* inner spacing */
    font-size: 16px;
    line-height: 1.85;            /* key readability */
    color: #2c3e50;
    background: #f8f9fb;
    border-left: 4px solid #0d6efd;
    border-radius: 8px;

    /* Professional reading style */
    text-align: justify;
    text-justify: inter-word;
}

/* Large screens polish */
@media (min-width: 992px) {
    .benefit-content p {
        font-size: 17px;
        line-height: 1.9;
    }
}


/* Overlay */
.contact-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Popup Box */
.contact-popup {
    background: #ffffff;
    width: 90%;
    max-width: 800px;
    height: 600px;
    border-radius: 16px;
    position: relative;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    animation: popupFade 0.3s ease;
}

/* Heading */
.contact-popup h3 {
    text-align: center;
    margin-bottom: 10px;
}

/* Iframe */
.contact-popup iframe {
    width: 100%;
    height: 90%;
    border: none;
    border-radius: 12px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Animation */
@keyframes popupFade {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .contact-popup {
        height: 90vh;
    }
}

/* CONTACT SECTION GAP FIX */
.contact {
    padding-top: 30px;     /* reduce from default */
    padding-bottom: 40px;
    margin-top: 0;
}

/* Header spacing */
.contact .section-header {
    margin-bottom: 20px;
}

.contact .section-header h2 {
    margin: 0;             /* remove default h2 margin */
}

/* iframe wrapper spacing */


.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}





