/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: -40px -40px 40px -40px;
}

/* Default header (for home page) */
.header.home {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

/* Achievement page header */
.header.achievement {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    color: #ffd166;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.header.achievement h1,
.header.achievement p {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.header.achievement h1 {
    color: #ffffff;         
    font-weight: 800;
    text-shadow: none;      
    background: none;         
    backdrop-filter: none;
    display: block;           
    padding: 0;
}

.header.achievement h2,
.header.achievement p {
    color: #fff; /* or #ffd166 if you prefer gold */
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Consultant page header */
.header.consultant {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.header h1 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    font-weight: 700;
}

/* Home page specific header styling */
.header.home h1 {
    font-size: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color:#ffd166;
}

.header h2 {
    font-size: 1.3em;
    margin: 0 0 20px 0;
    opacity: 0.9;
    font-weight: 300;
}

.header.home h2 {
    font-size: 1.5em;
    margin: 15px 0;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.header p {
    font-size: 1.1em;
    margin: 0;
    opacity: 0.9;
}

.logo {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #2ecc71;
}

.motto {
    font-size: 1.2em;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Section Styles */
.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
    font-weight: 600;
}

/* Consultant page section title */
.section-title.consultant {
    font-size: 2em;
    text-align: center;
    position: relative;
    border-bottom: none;
    padding-bottom: 15px;
}

.section-title.consultant:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3em;
    color: #34495e;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

/* Home Page Specific Styles */
.services-section {
    margin-bottom: 50px;
}

.services-title {
    font-size: 2.2em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.service-category {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 6px solid #2ecc71;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
}

.service-category:nth-child(3) {
    border-left-color: #3498db;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.category-letter {
    background: #2ecc71;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 20px;
    box-shadow: 0 4px 8px rgba(46, 204, 113, 0.3);
}

.service-category:nth-child(3) .category-letter {
    background: #3498db;
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.category-title {
    flex: 1;
}

.category-title h2 {
    font-size: 1.8em;
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
}

.time-frame {
    font-size: 1em;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 5px;
}

.service-list {
    padding-left: 0;
    list-style: none;
}

.service-list li {
    background: white;
    margin: 15px 0;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2ecc71;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 1.1em;
    line-height: 1.5;
}

.service-category:nth-child(3) .service-list li {
    border-left-color: #3498db;
}

.service-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-list li:before {
    content: "▸";
    color: #2ecc71;
    font-size: 1.2em;
    margin-right: 10px;
    font-weight: bold;
}

.service-category:nth-child(3) .service-list li:before {
    color: #3498db;
}

/* Achievement Page Specific Styles */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.achievement-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #667eea;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.specialization-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.specialization-card:nth-child(2) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.specialization-card:nth-child(3) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color:#003366;
}

.specialization-card:nth-child(4) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color:#5a005a;
}

.specialization-card:hover {
    transform: translateY(-5px);
}

.specialization-card h4 {
    margin-top: 0;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.industry-tag {
    background: #667eea;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.why-choose {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.why-choose h3 {
    margin-top: 0;
    font-size: 1.5em;
}

.why-choose ul {
    list-style: none;
    padding-left: 0;
}

.why-choose li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkmark {
    background: #2ecc71;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.quote {
    text-align: center;
    font-style: italic;
    font-size: 1.1em;
    color: #7f8c8d;
    margin-top: 30px;
    padding: 20px;
    border-left: 4px solid #667eea;
    background: #f8f9fa;
}

/* Consultant Page Specific Styles */
.consultant-profile {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.consultant-name {
    font-size: 2.2em;
    margin: 0 0 20px 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.consultant-photo {
    width: 200px;
    height: 250px;
    border-radius: 15px;
    border: 5px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
    object-fit: cover;
}

.consultant-title {
    font-size: 1.4em;
    margin: 20px 0 0 0;
    font-weight: 500;
    opacity: 0.95;
}

.about-text {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 6px solid #667eea;
    font-size: 1.1em;
    line-height: 1.8;
    color: #2c3e50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: justify;
}

.services-list,
.expertise-list {
    list-style: none;
    padding: 0;
}

.services-list li,
.expertise-list li {
    background: white;
    margin: 20px 0;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #2ecc71;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-size: 1.05em;
    line-height: 1.6;
}

.services-list li:hover,
.expertise-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.services-list li:before,
.expertise-list li:before {
    content: "🎯";
    margin-right: 15px;
    font-size: 1.2em;
}

.expertise-list li:before {
    content: "⚡";
}

.expertise-intro {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 1.1em;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 5px 15px rgba(240, 147, 251, 0.3);
}

.training-scope {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    margin-top: 30px;
}

.training-intro {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 1.1em;
    font-weight: 500;
    text-align: center;
}

.training-list {
    counter-reset: training-counter;
    list-style: none;
    padding: 0;
}

.training-list>li {
    counter-increment: training-counter;
    background: white;
    margin: 20px 0;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #3498db;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.training-list>li:before {
    content: counter(training-counter);
    position: absolute;
    left: -15px;
    top: 15px;
    background: #3498db;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.training-list ul {
    margin-top: 15px;
    padding-left: 20px;
}

.training-list ul li {
    background: #f8f9fa;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #3498db;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Common Styles for All Pages */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

strong {
    color: #2c3e50;
}

.emoji {
    font-size: 1.2em;
    margin-right: 5px;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0 30px 0;
}

.cta-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-section h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Navigation Styles */
.navigation {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
}

.navigation h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3em;
}

/* Consultant page navigation adjustment */
.navigation.consultant h3 {
    margin: 0;
    font-size: 1.2em;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Consultant page navigation adjustment */
.navigation.consultant .nav-links {
    margin-top: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px;
    }

    .header {
        margin: -20px -20px 30px -20px;
        padding: 30px 20px;
    }

    .header h1 {
        font-size: 2em;
    }

    .header.home h1 {
        font-size: 2.2em;
        flex-direction: column;
        gap: 10px;
    }

    .consultant-name {
        font-size: 1.8em;
    }

    .consultant-photo {
        width: 150px;
        height: 180px;
    }

    .section-title {
        font-size: 1.6em;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links a {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .consultant-photo {
        width: 120px;
        height: 150px;
    }

    .about-text,
    .services-list li,
    .expertise-list li {
        padding: 20px;
    }

    .training-list>li {
        padding: 20px;
        margin-left: 20px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.header h1 {
    color: #333;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header p {
    color: #666;
    font-size: 1.2rem;
    font-weight: 300;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.customer-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.customer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.customer-card:hover::before {
    left: 100%;
}

.customer-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.customer-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f0f2ff, #e8edff);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 3px solid #667eea;
    position: relative;
}

.customer-name {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.customer-type {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.stats-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.navigation {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.nav-link {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .header h1 {
        font-size: 2.2rem;
    }

    .customer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.floating-shape:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 20%;
    animation-delay: 5s;
}

.floating-shape:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin-top: 30px;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 55s linear infinite;
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

.img {
    flex: 0 0 auto;
    width: 300px;
    height: 100px;
    border-radius: 8px;
    margin: 0 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.img:nth-child(16){
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin: 0 10px;
    overflow: hidden;
}

.img:hover{
    animation-play-state: paused;
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

