* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Only style bullets for lists inside sections, not navigation */
section ul {
    list-style: none;
    padding-left: 0;
}

section ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 25px;
    line-height: 1.6;
}

section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: #F39C12;
	
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

/* Styling for h3 inside list items */
section ul li h3 {
    font-size: 1.4em !important;
    color: #1D4E89;
    margin: 0 0 3px 0;
    font-weight: 600;
}

/* Styling for paragraph text inside list items */
section ul li p {
    font-size: 1em;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Custom icon bullets - use inline style with --icon-url variable */
/* Custom icon bullets - use inline style with --icon-url variable */
section ul li.icon-bullet {
    position: relative;
    padding-left: calc(var(--icon-size, 24px) + 15px);
    min-height: var(--icon-size, 24px);
    display: block;
    margin-bottom: 20px;
}

/* The icon itself */
section ul li.icon-bullet::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: var(--icon-size, 24px);
    height: var(--icon-size, 24px);
    transform: translateY(-50%);
    display: block;

    background-color: transparent;
    background-image: var(--icon-url);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 0;
}


.feature-card h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.feature-card p {
    font-size: 1.2em;
    margin-bottom: 20px;
	color:black;
	text-align:left;
}

.feature-card ul {
    margin-top: 15px;
    text-align: left;
}

.feature-card ul li {
    font-size: 1em;
    color: #666;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card p {
    flex-grow: 1;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #df2935 0%, #e67e22 100%);
    color: white;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #df2935 0%, #e67e22 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.logo {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

nav.scrolled .logo {
    height: 60px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

nav ul li {
    margin: 0 25px;
    padding-left: 0;
}

nav ul li::before {
    display: none;
}

nav ul li a {
    text-decoration: none;
    color: #1D4E89; 
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #f39c12 ;
	/*#fdca40;  */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover:after {
    width: 100%;
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
}

#home {
    background: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    min-height: 85vh;
    position: relative;
}

#intro {
    background: white;
    min-height: 100vh;
    padding-top: 140px;
    align-items: flex-start;
    padding-bottom: 100px;
}

#intro .section-content {
    padding-top: 40px;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#intro h2 {
    margin-bottom: 30px;
    margin-top: 0;
}

#intro .content-text {
    text-align: center;
    margin-bottom: 25px;
    max-width: 900px;
    font-size: 1.3em;
}

#intro .service-boxes {
    margin-top: auto;
    padding-top: 200px;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 78, 137, 0.2);
}

.home-content {
	margin-top: 150px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#home h1 {
    font-size: 5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
	font-weight : 100;
    text-align: center;
}

#home p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.service-boxes {
    display: flex;
    gap: 30px;
    justify-content: center;
    /*margin: 50px 0 40px;*/
    flex-wrap: wrap;
	margin-top: auto;
	padding-top: 150px;
}

.service-boxes a h3 {
    font-size: 1.8em;
	/*padding-top: 100px;*/
    margin-bottom: 15px;
    color: #1D4E89;
}

.service-box {
	  
   /* padding-top: 200px;*/
    background: rgb(245, 245, 245, 0.8);
    border-radius: 5px;
    padding: 40px 30px;
    min-width: 250px;
    flex: 1;
    max-width: 300px;
    text-decoration: none;
    color: #333333;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.service-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    border-color: #1D4E89;
    box-shadow: 0 12px 30px rgba(29, 78, 137, 0.5);
}

.service-box h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #1D4E89;
}

.service-box p {
    font-size: 1em;
    margin: 0 0 20px 0;
    color: #333333;
    text-align: left;
    flex-grow: 1;
}

.service-box-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #F39C12 0%, #e67e22 100%);
    color: white;
    border: none;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.service-box-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator svg {
    width: 50px;
    height: 50px;
    fill: white;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.section-content {
    max-width: 1200px;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section-content.visible {
    opacity: 1;
    transform: translateY(0);
}

#advisory {
    background: #F5F5F5;
}

#training {
    background: white;
}

#elearning {
    background: linear-gradient(rgba(51, 51, 51, 0.2), rgba(29, 78, 137, 0.1)), url('elearning-content.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    min-height: 85vh;
    position: relative;
}

#about {
    background: white;
}

#contact {
    background: linear-gradient(135deg, #1D4E89 0%, #0d2847 100%);
    color: white;
}

h2 {
    font-size: 3em;
    margin-bottom: 30px;
    color: #1D4E89;
    text-align: center;
}

#elearning h2,
#contact h2 {
    color: white;
}

.content-text {
    font-size: 1.5em;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 350px;
    min-width: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text-content {
    flex: 1;
    min-width: 0;
}

.about-text-content p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #666;
    text-align: left;
    margin: 0 0 20px 0;
}

#contact .content-text {
    color: rgba(255, 255, 255, 0.9);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #1D4E89;
    position: relative;
    z-index: 2;
}

/* Training section specific styles with background images */
#training .feature-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
}

#training .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7) !important;
    transition: background 0.3s ease;
    z-index: 1;
}

#training .feature-card:hover::before {
    background: rgba(0, 0, 0, 0.85) !important;
}

#training .feature-card > h3,
#training .feature-card > p,
#training .feature-card ul {
    position: relative;
    z-index: 2;
}

#training .feature-card > h3 {
   color: white !important; 
}

#training .feature-card > p {
  color: rgba(255, 255, 255, 0.9) !important; 
	
}

#training .feature-card ul li {
    color: rgba(255, 255, 255, 0.85) !important;
}

#training .feature-card ul li::before {
    background: #f39c12 !important;
}

#training .feature-card:nth-child(1) {
    background-image: url('leadership-training.jpg');
}

#training .feature-card:nth-child(2) {
    background-image: url('management-training.jpg');
}

#training .feature-card:nth-child(3) {
    background-image: url('innovation-training.jpg');
}

.contact-form {
    max-width: 600px;
    margin: 50px auto 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #F39C12 0%, #e67e22 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .logo {
        height: 45px;
    }

    nav.scrolled .logo {
        height: 40px;
    }

    nav ul {
        flex-wrap: wrap;
        padding: 15px 0;
    }

    nav ul li {
        margin: 5px 15px;
    }

    #home h1 {
        font-size: 2.5em;
    }

    #home p {
        font-size: 1.2em;
    }

    .service-boxes {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        max-width: 100%;
        width: 100%;
    }

    h2 {
        font-size: 2em;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
    
    .about-text-content p {
        text-align: center;
    }
}
/* Section bottom center div */
.section-bottom-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    width: 100%;
}

/* Training section specific background for bottom center */
#training .section-bottom-center {
    background-color: rgba(29, 78, 137, 0.9);
    padding: 40px 20px;
    border-radius: 10px;
    margin-top: 50px;
	color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5em;
	
}

#elearning .section-bottom-center {
    background-color: rgba(29, 78, 137, 0.9);
    padding: 40px 20px;
    border-radius: 10px;
    margin-top: 50px;
	color: white;
    display: flex;
  /*  align-items: center;*/
    justify-content: center;
    font-weight: bold;
    font-size: 1.5em;
	
}.form-status {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(6px);
    min-height: 1.4em;
}

.form-status.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-status.success {
    color: #8EE4AF; /* calm green */
}

.form-status.error {
    color: #FFB6B6; /* soft red */
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
    display: none; /* hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    margin: 4px 0;
    background: #1D4E89;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger animation when open */
.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile behaviour */
@media (max-width: 768px) {
    nav {
        padding: 0 16px;
    }

    /* Show hamburger on mobile */
    .nav-toggle {
        display: block;
    }

    /* Turn the menu into a dropdown */
    nav ul {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        display: none; /* hidden by default on mobile */
    }

    nav ul.nav-open {
        display: flex; /* shown when toggled via JS */
    }

    nav ul li {
        margin: 8px 0;
    }
}


@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

}

@media (max-width: 768px) {
    .home-content,
    .fade-in-section,
	.training,
	.elearning,
	.advisory,
    .scroll-indicator {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 768px) {
    section ul li.icon-bullet {
        padding-left: calc(var(--icon-size, 24px) + 20px);
        margin-bottom: 16px;
    }
}