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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background-color: #2E86AB;
    color: white;
    border: 2px solid #2E86AB;
}

.btn-primary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-round {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #2E86AB;
    color: white;
    font-size: 12px;
    line-height: 1.2;
}

.btn-round:hover {
    background-color: #6c757d;
    transform: translateY(-8px);
}

/* Header Styles */
.header {
    position: relative;
    z-index: 1000;
}

.top-bar {
    background: linear-gradient(135deg, #2E86AB 0%, #6c757d 100%);
    color: white;
    padding: 10px 0;
    transition: transform 0.3s ease;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left h4 {
    margin: 0;
    font-size: 1rem;
}

.top-bar-divider {
    width: 2px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.top-bar-center {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.top-bar-center p {
    margin: 0;
    font-size: 0.9rem;
}

.main-nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: top 0.3s ease;
}

.sticky-nav {
    top: 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-item a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-item a:hover {
    color: #2E86AB;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 0.85rem;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2E86AB;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2E86AB 0%, rgba(46, 134, 171, 0.8) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-text h1 {
    margin-bottom: 1rem;
}

.highlight {
    color: #6c757d;
}

.hero-text h4 {
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    position: absolute;
    right: 50px;
    bottom: 50px;
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-icon img {
    width: 200px;
    height: auto;
}

.mission-text h2 {
    text-align: left;
    color: #2E86AB;
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Services Overview */
.services-overview {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

.services-overview h2 {
    color: #2E86AB;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.service-card {
    flex: 0 1 250px;
    max-width: 300px;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h4 {
    color: #2E86AB;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Impact Statistics */
.impact-stats {
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
    padding: 80px 0;
}

.impact-stats h2 {
    color: white;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.stat-card {
    flex: 0 1 180px;
    max-width: 220px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.3;
}

/* Approach Section */
.approach {
    padding: 80px 0;
    background: white;
}

.approach h2 {
    color: #2E86AB;
    margin-bottom: 1rem;
}

.approach > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.approach-card {
    flex: 0 1 300px;
    max-width: 350px;
}

.approach-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.approach-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.approach-card h4 {
    color: #2E86AB;
    font-size: 1.2rem;
}

.approach-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.approach-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

/* Industries Section */
.industries {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.industry-card {
    flex: 0 1 300px;
    max-width: 350px;
}

.industry-card {
    height: 250px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: scale(1.02);
}

.industry-front,
.industry-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.6s ease;
    backface-visibility: hidden;
}

.industry-front {
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
}

.industry-back {
    background: linear-gradient(135deg, #b29f53 0%, #d4c26a 100%);
    color: white;
    transform: rotateY(180deg);
    flex-direction: column;
    gap: 1rem;
}

.industry-card:hover .industry-front {
    transform: rotateY(-180deg);
}

.industry-card:hover .industry-back {
    transform: rotateY(0);
}

.industry-front h3 {
    font-size: 1.3rem;
    margin: 0;
}

.industry-back p {
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-detail h2 {
    color: #0e3262;
    margin-bottom: 1rem;
}

.service-detail > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h4 {
    color: #2E86AB;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: white;
}

.team h2 {
    color: #2E86AB;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.team-member {
    flex: 0 1 220px;
    max-width: 280px;
}

.team-member {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member h4 {
    color: #2E86AB;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.team-member p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2E86AB 0%, #6c757d 100%);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer h3 {
    margin-bottom: 2rem;
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 20px;
    height: 20px;
    background: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

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

.contact-form input,
.contact-form select {
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form option {
    background: #2E86AB;
    color: white;
}

.footer-bottom {
    background: rgba(46, 134, 171, 0.2);
    padding: 20px 0;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #adb5bd;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Accredited Training Page Styles */
.accredited-hero {
    background: linear-gradient(135deg, #2E86AB 0%, rgba(46, 134, 171, 0.9) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.accredited-hero .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.accredited-hero .hero-text h4 {
    color: white;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.accredited-hero .hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6c757d;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certification-badge {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.certification-badge::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-content h3 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
}

.badge-content p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-section h2 {
    color: #2E86AB;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.benefit-card {
    flex: 0 1 220px;
    max-width: 280px;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 50, 98, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.benefit-card h4 {
    color: #2E86AB;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.programmes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.programmes-section h2 {
    color: #2E86AB;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.programmes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.programme-card {
    flex: 0 1 280px;
    max-width: 350px;
    margin: 0;
}

.programme-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 50, 98, 0.1);
    max-width: 350px;
    margin: 0 auto;
}

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

.programme-header {
    background: linear-gradient(135deg, #0e3262 0%, #1a4a7a 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.programme-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.programme-header h3 {
    margin: 0 0 0.8rem 0;
    font-size: 1.3rem;
}

.programme-level {
    background: #b29f53;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.programme-content {
    padding: 1.5rem;
}

.programme-content p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.programme-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.programme-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.programme-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2E86AB;
    font-weight: bold;
}

.programme-details {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.process-section {
    padding: 80px 0;
    background: white;
}

.process-section h2 {
    color: #0e3262;
    margin-bottom: 3rem;
}

.process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    text-align: center;
}

.process-step {
    flex: 0 1 220px;
    max-width: 280px;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0e3262 0%, #1a4a7a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.process-step h4 {
    color: #0e3262;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0e3262 0%, #1a4a7a 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0e3262;
    border-color: white;
}

/* Corporate Training Page Styles */
.corporate-hero {
    background: linear-gradient(135deg, #0e3262 0%, rgba(14, 50, 98, 0.9) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="corporate-grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23corporate-grid)"/></svg>');
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.corporate-badge {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #b29f53 0%, #d4c26a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.corporate-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.corporate-badge::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transform: rotate(-10deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(-10deg) translateY(0px); }
    50% { transform: rotate(-10deg) translateY(-10px); }
}

.value-section {
    padding: 80px 0;
    background: white;
}

.value-section h2 {
    color: #0e3262;
    margin-bottom: 3rem;
}

.value-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.value-card {
    flex: 0 1 220px;
    max-width: 280px;
}

.value-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 50, 98, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.corporate-programmes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.corporate-programmes-section h2 {
    color: #0e3262;
    margin-bottom: 1rem;
}

.corporate-programmes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.corporate-programme-card {
    flex: 0 1 320px;
    max-width: 380px;
}

.corporate-programme-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 50, 98, 0.1);
    position: relative;
}

.corporate-programme-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0e3262, #b29f53, #0BDAB3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.corporate-programme-card:hover::after {
    transform: scaleX(1);
}

.corporate-programme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.corporate-programme-card .programme-header {
    background: linear-gradient(135deg, #0e3262 0%, #1a4a7a 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.programme-category {
    background: #6c757d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.delivery-section {
    padding: 80px 0;
    background: white;
}

.delivery-section h2 {
    color: #0e3262;
    margin-bottom: 3rem;
}

.delivery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.delivery-option {
    flex: 0 1 260px;
    max-width: 320px;
}

.delivery-option {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 50, 98, 0.1);
}

.delivery-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.delivery-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.delivery-option h4 {
    color: #0e3262;
    margin-bottom: 1rem;
}

.delivery-option p {
    color: #666;
    margin-bottom: 1.5rem;
}

.delivery-option ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.delivery-option li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.delivery-option li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2E86AB;
    font-weight: bold;
}

.corporate-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2E86AB 0%, #6c757d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.corporate-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,0 50,25 25,50 0,25" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.corporate-cta-section .cta-content {
    position: relative;
    z-index: 2;
}

/* Youth Development Page Styles */
.youth-hero {
    background: linear-gradient(135deg, #2E86AB 0%, #6c757d 100%);
    /* background: linear-gradient(135deg, #2E86AB 0%, rgba(46, 134, 171, 0.9) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="youth-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%2300BDAB3" opacity="0.2"/><circle cx="5" cy="5" r="1" fill="%236c757d" opacity="0.3"/><circle cx="25" cy="8" r="1.5" fill="%2300BDAB3" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23youth-pattern)"/></svg>'); */
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.youth-badge {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.youth-badge::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border: 3px solid #6c757d;
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 2s linear infinite;
}

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.youth-impact-section {
    padding: 80px 0;
    background: white;
}

.youth-impact-section h2 {
    color: #0e3262;
    margin-bottom: 3rem;
}

.impact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.impact-card {
    flex: 0 1 220px;
    max-width: 280px;
}

.impact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(108, 117, 125, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.impact-card:hover::before {
    animation: shine 0.5s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.impact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(108, 117, 125, 0.2);
    border-color: #6c757d;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.impact-icon {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    display: block;
}

.youth-programmes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.youth-programmes-section h2 {
    color: #0e3262;
    margin-bottom: 1rem;
}

.youth-programmes-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.youth-programme-card {
    flex: 0 1 320px;
    max-width: 380px;
}

.youth-programme-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.youth-programme-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2E86AB, #6c757d, #2E86AB);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.youth-programme-card:hover::after {
    transform: scaleX(1);
}

.youth-programme-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(108, 117, 125, 0.15);
    border-color: #6c757d;
}

.youth-programme-card .programme-header {
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.programme-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.success-section {
    padding: 80px 0;
    background: white;
}

.success-section h2 {
    color: #0e3262;
    margin-bottom: 3rem;
}

.success-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.success-story {
    flex: 0 1 260px;
    max-width: 320px;
}

.success-story {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 5px solid #2E86AB;
    position: relative;
}

.success-story::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #2E86AB;
    opacity: 0.3;
    font-family: serif;
}

.success-story:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(108, 117, 125, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.success-quote p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.success-author h4 {
    color: #2E86AB;
    margin-bottom: 0.5rem;
}

.success-author span {
    color: #6c757d;
    font-weight: 600;
    font-size: 0.9rem;
}

.youth-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2E86AB 0%, #6c757d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.youth-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="youth-cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="15" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1"/><circle cx="20" cy="20" r="5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23youth-cta-pattern)"/></svg>');
    opacity: 0.3;
}

.youth-cta-section .cta-content {
    position: relative;
    z-index: 2;
}

.youth-cta-section .cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.youth-cta-section .btn-primary {
    background-color: #2E86AB;
    border-color: #2E86AB;
    font-size: 1.1rem;
    padding: 15px 35px;
}

.youth-cta-section .btn-primary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    transform: translateY(-3px);
}

.youth-cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.youth-cta-section .btn-secondary:hover {
    background: white;
    color: #2E86AB;
    border-color: white;
}

.cta-note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.cta-note p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Team Page Styles */
.team-hero {
    background: linear-gradient(135deg, #2E86AB 0%, rgba(46, 134, 171, 0.9) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.team-hero .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.team-hero .hero-text h4 {
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.team-hero .hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.team-members-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-members-section h2 {
    color: #0e3262;
    margin-bottom: 3rem;
}

.team-members-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.team-member-card {
    flex: 0 1 400px;
    max-width: 450px;
}

.team-member-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 50, 98, 0.1);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.member-image {
    text-align: center;
    margin-bottom: 2rem;
}

.member-avatar {
    font-size: 4rem;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(46, 134, 171, 0.3);
}

.member-info h3 {
    color: #2E86AB;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.member-info h4 {
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.credential {
    background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.member-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.member-expertise {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.member-expertise h5 {
    color: #2E86AB;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-expertise ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-expertise li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.member-expertise li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2E86AB;
    font-weight: bold;
}

.team-values-section {
    padding: 80px 0;
    background: white;
}

.team-values-section h2 {
    color: #0e3262;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.value-card {
    flex: 0 1 250px;
    max-width: 300px;
}

.value-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 50, 98, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h4 {
    color: #0e3262;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.team-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
    text-align: center;
}

.team-cta-section .cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.team-cta-section .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #2E86AB 0%, rgba(46, 134, 171, 0.9) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.about-hero .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.about-hero .hero-text h4 {
    color: white;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-hero .hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.about-badge {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slowRotate 20s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-badge::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: slowRotate 15s linear infinite reverse;
}

.mission-vision-section {
    padding: 80px 0;
    background: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 50, 98, 0.1);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.mission-card h3, .vision-card h3 {
    color: #0e3262;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.mission-card p, .vision-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.story-section h2 {
    color: #0e3262;
    margin-bottom: 3rem;
}

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

.story-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-stats .stat-item:hover {
    transform: scale(1.05);
}

.story-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0e3262;
    line-height: 1;
}

.story-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.values-section {
    padding: 80px 0;
    background: white;
}

.values-section h2 {
    color: #0e3262;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.values-section .value-card {
    flex: 0 1 260px;
    max-width: 320px;
}

.value-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 50, 98, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 117, 125, 0.1), transparent);
    transition: left 0.5s;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.approach-section h2 {
    color: #0e3262;
    margin-bottom: 3rem;
}

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

.approach-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.approach-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.approach-step h4 {
    color: #2E86AB;
    margin-bottom: 1rem;
}

.approach-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.accreditations-section {
    padding: 80px 0;
    background: white;
}

.accreditations-section h2 {
    color: #0e3262;
    margin-bottom: 3rem;
}

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

.accreditation-text {
    margin-bottom: 3rem;
}

.accreditation-text p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.accreditation-card {
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.accreditation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 134, 171, 0.3);
}

.accreditation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.accreditation-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.accreditation-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2E86AB 0%, #6c757d 100%);
    color: white;
    text-align: center;
}

.about-cta-section .cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.about-cta-section .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #2E86AB 0%, rgba(46, 134, 171, 0.9) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero .hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero .hero-text h4 {
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact-hero .hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-text {
    font-weight: 600;
}

.contact-methods {
    padding: 80px 0;
    background: white;
}

.contact-methods h2 {
    color: #0e3262;
    margin-bottom: 3rem;
}

.methods-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.method-card {
    flex: 0 1 220px;
    max-width: 280px;
}

.method-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 50, 98, 0.1);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.method-card h4 {
    color: #0e3262;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.method-card p {
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.method-link {
    color: #2E86AB;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-link:hover {
    color: #6c757d;
}

.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #2E86AB;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2E86AB;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E86AB;
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    color: #666;
}

.form-submit {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    margin-top: 1rem;
    align-self: center;
    min-width: 150px;
}

.contact-faq {
    padding: 80px 0;
    background: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    color: #2E86AB;
    margin-bottom: 1rem;
}

.faq-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2E86AB;
    box-shadow: 0 10px 25px rgba(46, 134, 171, 0.1);
}

.faq-item.active {
    border-color: #2E86AB;
    box-shadow: 0 10px 25px rgba(46, 134, 171, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
}

.faq-question h4 {
    color: #2E86AB;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.faq-item.active .faq-question h4 {
    color: white;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2E86AB;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(46, 134, 171, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
    text-align: center;
}

.contact-cta .cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2E86AB;
}

/* Modern Homepage Styles */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 50%, #2E86AB 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.8) 0%, rgba(74, 144, 164, 0.6) 100%);
    z-index: 2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-modern .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.gradient-text {
    background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #0e3262;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6c757d;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    opacity: 0.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Modern Section */
.about-modern {
    padding: 100px 0;
    background: white;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-badge.white {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.section-header h2 {
    font-size: 3rem;
    color: #2E86AB;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(108, 117, 125, 0.3);
}

.feature-content h4 {
    color: #2E86AB;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-10px);
}

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

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 50, 98, 0.8) 0%, rgba(11, 218, 179, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.visual-card:hover .visual-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2E86AB;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Services Modern Section */
.services-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
    border-color: #2E86AB;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 134, 171, 0.3);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.showcase-content h3 {
    color: #2E86AB;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.showcase-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2E86AB;
    font-weight: bold;
    font-size: 1.2rem;
}

.showcase-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Process Modern Section */
.process-modern {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #0e3262 0%, #6c757d 50%, #b29f53 100%);
    z-index: 1;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(46, 134, 171, 0.3);
    border: 4px solid white;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
}

.timeline-content h4 {
    color: #0e3262;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Impact Modern Section */
.impact-modern {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.impact-background {
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 50%, #2E86AB 100%);
    position: relative;
}

.impact-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="impact-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23impact-pattern)"/></svg>');
    opacity: 0.3;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.impact-text {
    color: white;
}

.impact-text h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.impact-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.impact-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6c757d;
    line-height: 1;
}

.highlight-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.stat-card-modern .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-card-modern .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.stat-card-modern .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

/* Testimonials Modern Section */
.testimonials-modern {
    padding: 100px 0;
    background: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid rgba(14, 50, 98, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #6c757d;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h5 {
    color: #0e3262;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.author-info span {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA Modern Section */
.cta-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><polygon points="20,0 40,20 20,40 0,20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-modern .btn-primary {
    background-color: #2E86AB;
    border-color: #2E86AB;
}

.cta-modern .btn-primary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 117, 125, 0.4);
}

.cta-modern .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-modern .btn-outline:hover {
    background: white;
    color: #2E86AB;
    border-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
    .hero-modern {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stats .stat-item {
        padding: 1rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-feature {
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .visual-card img {
        height: 250px;
    }
    
    .tab-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .service-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .showcase-content h3 {
        font-size: 1.8rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        justify-content: center;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .impact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .impact-text h2 {
        font-size: 2.2rem;
    }
    
    .impact-highlights {
        justify-content: center;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .container {
        padding: 0 15px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .top-bar-divider {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 0;
        list-style: none;
        margin: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-cta {
        position: static;
        text-align: center;
        margin-top: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .about-feature {
        gap: 0.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
        min-width: 50px;
        height: 50px;
    }
    
    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-showcase {
        padding: 1.5rem;
    }
    
    .showcase-content h3 {
        font-size: 1.5rem;
    }
    
    .showcase-content p {
        font-size: 1rem;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .impact-text h2 {
        font-size: 1.8rem;
    }
    
    .impact-text p {
        font-size: 1rem;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .mission,
    .services-overview,
    .impact-stats,
    .approach,
    .industries,
    .team {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accredited-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .accredited-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .certification-badge {
        width: 150px;
        height: 150px;
    }
    
    .certification-badge::before {
        width: 170px;
        height: 170px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .programmes-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        text-align: center;
        align-items: center;
        justify-items: center;
    }
    
    .process-step {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .corporate-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .corporate-badge {
        width: 150px;
        height: 150px;
        transform: rotate(0deg);
    }
    
    .corporate-badge::before {
        width: 170px;
        height: 170px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .corporate-programmes-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .youth-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .youth-badge {
        width: 150px;
        height: 150px;
    }
    
    .youth-badge::before {
        width: 180px;
        height: 180px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .youth-programmes-grid {
        grid-template-columns: 1fr;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .youth-cta-section .cta-content h2 {
        font-size: 2rem;
    }
    
    .team-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .team-members-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member-card {
        padding: 2rem;
    }
    
    .member-avatar {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-cta-section .cta-content h2 {
        font-size: 2rem;
    }
    
    .about-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-badge {
        width: 150px;
        height: 150px;
    }
    
    .about-badge::before {
        width: 170px;
        height: 170px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-timeline {
        grid-template-columns: 1fr;
    }
    
    .accreditations-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-section .cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .contact-stat {
        padding: 0.8rem 1.2rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-accordion {
        margin: 0 1rem;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem 1.5rem;
    }
    
    .contact-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-item a {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
        border-radius: 8px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-buttons {
        margin-top: 2rem;
    }
    
    /* Hero Sections Mobile */
    .hero-reach .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-main-image {
        height: 300px;
    }
    
    .floating-card {
        position: static;
        margin: 1rem 0;
        animation: none;
    }
    
    .hero-stats-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1rem 1.5rem;
        width: 100% !important;
        min-width: auto !important;
        max-width: none !important;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    /* Content Grid Mobile */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .stats-overlay {
        position: static;
        margin-top: 1rem;
        gap: 1rem;
    }
    
    /* Speakers Mobile */
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .speaker-image img {
        height: 200px;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    /* Contact Form Mobile */
    .hero-content-with-form {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }
    
    .side-form-container {
        margin: 0 auto;
        padding: 2rem 1.5rem;
        max-width: 500px;
        width: 100%;
        display: block;
    }
    
    .side-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Methods Grid Mobile */
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .method-card {
        padding: 2rem 1.5rem;
    }
    
    /* FAQ Mobile */
    .faq-accordion {
        margin: 0 15px;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-toggle {
        align-self: flex-end;
        margin-top: -2rem;
    }
    
    /* Team Mobile */
    .team-members-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member-card {
        padding: 2rem 1.5rem;
    }
    
    .member-credentials {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    
    /* About Mobile */
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .story-stats {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .story-stats .stat-item {
        flex: 1;
        min-width: 120px;
        margin: 0.5rem;
    }
    
    /* Service Pages Mobile */
    .accredited-hero .hero-content,
    .corporate-hero .hero-content,
    .youth-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .certification-badge,
    .corporate-badge,
    .youth-badge {
        width: 150px;
        height: 150px;
    }
    
    .certification-badge::before,
    .corporate-badge::before {
        width: 170px;
        height: 170px;
    }
    
    .youth-badge::before {
        width: 180px;
        height: 180px;
    }
    
    .corporate-badge {
        transform: rotate(0deg);
    }
    
    /* Programme Cards Mobile */
    .programmes-grid,
    .corporate-programmes-grid,
    .youth-programmes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .programme-card,
    .corporate-programme-card,
    .youth-programme-card {
        margin: 0 15px;
    }
    
    /* Benefits and Values Mobile */
    .benefits-grid,
    .value-grid,
    .impact-grid,
    .delivery-grid,
    .success-grid,
    .values-grid,
    .approach-timeline,
    .accreditations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* CTA Sections Mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Consultation Page Card Text Centering */
.consultation-service-card .service-content {
    text-align: center;
}

.consultation-service-card .service-features {
    text-align: center;
    list-style-position: inside;
}
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* General Mobile Improvements */
    .section-header-center,
    .testimonials-header,
    .faq-header {
        padding: 0 15px;
    }
    
    .btn-large,
    .btn-primary-large,
    .btn-secondary-large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

/* Reach Summit Styles with Blue and Grey */
.hero-reach {
    background: linear-gradient(135deg, #2E86AB 0%, #6c757d 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-reach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.highlight-text {
    background: linear-gradient(135deg, #6c757d 0%, #adb5bd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    color: white;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(46, 134, 171, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 134, 171, 0.4);
}

.btn-secondary-large {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

.hero-stats-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #6c757d;
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-right {
    position: relative;
}

.hero-image-container {
    position: relative;
}

.hero-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -20px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: -10px;
    animation-delay: 4s;
}

.card-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E86AB 0%, #6c757d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    color: #333;
}

.card-content p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    flex: 0 1 250px;
    max-width: 300px;
}

.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E86AB 0%, #6c757d 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Main Content Section */
.main-content {
    padding: 100px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #2E86AB 0%, #6c757d 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.highlight-list {
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-text h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    color: #2E86AB;
    font-weight: 600;
}

.highlight-text p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-primary-medium {
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(46, 134, 171, 0.3);
}

.btn-primary-medium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 134, 171, 0.4);
}

.image-stack {
    position: relative;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stats-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 2rem;
}

.stats-overlay .stat-item {
    text-align: center;
}

.stats-overlay .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2E86AB;
    line-height: 1;
}

.stats-overlay .stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Speakers Section */
.speakers-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-header-center h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.speakers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

.speaker-card {
    flex: 0 1 250px;
    max-width: 300px;
}

.speaker-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.speaker-image {
    position: relative;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.speaker-info {
    padding: 1.5rem;
    text-align: center;
}

.speaker-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.speaker-title {
    color: #2E86AB;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.8rem 0;
}

.speaker-topic {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

.speakers-cta {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-outline-medium {
    background: transparent;
    color: #2E86AB;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #2E86AB;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-medium:hover {
    background: #2E86AB;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 134, 171, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.testimonials-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-grid .testimonial-card {
    flex: 0 1 350px;
    max-width: 400px;
}

.testimonials-grid .testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonials-grid .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: #6c757d;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 2;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.author-info span {
    color: #2E86AB;
    font-size: 0.85rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2E86AB 0%, #6c757d 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    color: white;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-check {
    width: 20px;
    height: 20px;
    background: #2E86AB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.cta-feature span:last-child {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.btn-primary-xl {
    background: linear-gradient(135deg, #2E86AB 0%, #4A90A4 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 15px 40px rgba(46, 134, 171, 0.4);
    margin-bottom: 1rem;
}

.btn-primary-xl:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(46, 134, 171, 0.5);
}

.cta-note {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
    font-style: italic;
}

/* Privacy Policy Page Styles */
.privacy-hero {
    background: linear-gradient(135deg, #2E86AB 0%, #6c757d 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.privacy-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.privacy-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.privacy-content {
    padding: 80px 0;
    background: white;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-text h2 {
    color: #2E86AB;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 0.5rem;
}

.privacy-text h3 {
    color: #333;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem 0;
}

.privacy-text p {
    color: #666;
    margin-bottom: 1rem;
}

.privacy-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-text li {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #2E86AB;
}

.contact-details p {
    margin-bottom: 0.8rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 24px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}