/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header & Navigation */
header {
    background-color: #18222f;
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f0a04b;
}

/* Hero Section */
.hero {
    display: flex;
    background-color: #18222f;
    color: white;
    padding: 0 5%;
}

.hero-image {
    flex: 1;
    max-width: 50%;
}

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

.hero-content {
    flex: 1;
    padding: 60px 40px;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    margin-bottom: 25px;
    color: #e0e0e0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f0a04b;
    color: white;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: #e09039;
}

.btn-full {
    width: 100%;
}

/* Services Section */
.services {
    padding: 70px 5%;
    background-color: #18222f;
    color: white;
}

.services h2 {
    font-size: 2rem;
    color: #f0a04b;
    margin-bottom: 20px;
}

.services-intro {
    margin-bottom: 40px;
    max-width: 800px;
}

.services-cards {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #243142;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 15px 0;
    color: #f0a04b;
}

.service-icon {
    margin-bottom: 15px;
}

.service-icon img {
    width: 60px;
    height: 60px;
}

/* Guides Section */
.guides {
    padding: 70px 5%;
    background-color: #18222f;
    color: white;
}

.guides h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.guides-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guide-card {
    background-color: #243142;
    padding: 30px;
    border-radius: 10px;
}

/* Competency Section */
.competency {
    padding: 70px 5%;
    background-color: #18222f;
    color: white;
}

.competency h2 {
    font-size: 2rem;
    color: #f0a04b;
    margin-bottom: 40px;
    text-align: center;
}

.competency-cards {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.competency-card {
    flex: 1;
    min-width: 280px;
    background-color: #243142;
    border-radius: 10px;
    overflow: hidden;
}

.competency-image {
    height: 200px;
    overflow: hidden;
}

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

.competency-content {
    padding: 30px;
}

.competency-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    color: #f0a04b;
    font-weight: bold;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #18222f;
    color: white;
    padding: 40px 5% 20px;
    border-top: 1px solid #2a3a4f;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #243142;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #f0a04b;
}

.footer-links {
    text-align: right;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.copyright {
    text-align: center;
    margin-top: 30px;
    color: #aaa;
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background-color: white;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-icon {
    margin-bottom: 15px;
}

.cookie-icon img {
    width: 60px;
    height: 60px;
}

.cookie-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cookie-text {
    margin-bottom: 25px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-accept {
    background-color: #78C3FB;
}

.btn-decline {
    background: none;
    color: #333;
    font-weight: bold;
    cursor: pointer;
}

.btn-decline:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
    }

    .hero-image {
        max-width: 100%;
        order: 1;
    }

    .hero-content {
        order: 2;
        padding: 40px 20px;
    }

    .services-cards, 
    .competency-cards {
        flex-direction: column;
    }

    .service-card, 
    .competency-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

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

.registration-page {
    min-height: calc(100vh - 180px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 5%;
    color: white;

    background-color: #18222f;
}

.registration-container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
}

.registration-content {
    flex: 1;
}

.registration-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.registration-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.contact-info {
    margin-top: 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.address-icon {
    background-color: #78C3FB;
}

.email-icon {
    background-color: #8AD5A1;
}

.phone-icon {
    background-color: #F0A04B;
}

.contact-icon img {
    width: 30px;
    height: 30px;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-details p {
    margin-bottom: 5px;
    color: #e0e0e0;
}

.registration-form {
    flex: 1;
    max-width: 500px;
    background-color: #1e2836;
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    background-color: #243142;
    border: 1px solid #2a3a4f;
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: #b0b0b0;
}

.form-group input:focus {
    outline: none;
    border-color: #78C3FB;
}

.register-btn {
    width: 100%;
    margin-top: 20px;
    background-color: #78C3FB;
}

.register-btn:hover {
    background-color: #64aee6;
}



.journey-page {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.journey-hero {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: center;
}

.journey-hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.journey-hero-content {
    flex: 1;
    color: #fff;
}

.journey-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: white;
}

.journey-hero-content p {
    margin-bottom: 15px;
}

.timeline-section {
    margin-bottom: 70px;
}

.timeline-header {
    font-size: 2rem;
    color: #78C3FB;
    margin-bottom: 30px;
}

.timeline-content {
    display: flex;
    gap: 30px;
}

.timeline-text {
    flex: 2;
}

.timeline-milestones {
    flex: 1;
    background-color: #1e2836;
    padding: 30px;
    border-radius: 10px;
}

.milestone-icon {
    width: 40px;
    height: 40px;
    background-color: #8AD5A1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.milestone-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.milestone-list {
    list-style: none;
}

.milestone-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.milestone-list li::before {
    content: "•";
    color: #78C3FB;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Team Section */
.team-section {
    margin-top: 80px;
}

.team-header {
    font-size: 2rem;
    color: #78C3FB;
    margin-bottom: 40px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #1e2836;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 25px auto 15px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 0 25px 25px;
    text-align: center;
}

.member-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

.member-title {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
}

.member-bio {
    text-align: left;
    font-size: 0.95rem;
}

body {
    background-color: #18222f;
    color: #fff;
}

@media (max-width: 760px) {
    .journey-hero {
        flex-direction: column;
    }

    .timeline-content {
        flex-direction: column;
    }
}

.success-page {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.success-hero {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: center;
}

.success-hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

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

.success-hero-content {
    flex: 1;
}

.success-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: white;
    line-height: 1.2;
}

.success-hero-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    flex: 1;
    background-color: #1e2836;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #78C3FB;
    margin-bottom: 15px;
}

.stat-description {
    font-size: 1rem;
    line-height: 1.5;
}

/* Case Studies Section */
.case-studies-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 80px;
}

.case-study {
    flex: 1;
    min-width: 300px;
    background-color: #1e2836;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
}

.case-study h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.case-study-content {
    margin-bottom: 30px;
}

.case-study-stats {
    background-color: #243142;
    padding: 20px;
    border-radius: 8px;
}

.case-stat {
    margin-bottom: 10px;
}

.case-stat:last-child {
    margin-bottom: 0;
}

.highlight {
    color: #78C3FB;
}
