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

:root {
    --primary-color: #1a365d;
    --secondary-color: #2d5a87;
    --accent-color: #3182ce;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-accent: #edf2f7;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 54, 93, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.nav-logo span {
    color: #a0aec0;
    font-size: 0.875rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: #ffffff;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero-avatar {
    margin-bottom: 2rem;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

/* Hero Layout */
.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-avatar {
    flex-shrink: 0;
}

.hero-avatar .profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-avatar .profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.hero-text {
    flex: 1;
    text-align: left;
    min-width: 300px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #a0aec0;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    color: #e2e8f0;
    line-height: 1.6;
}

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

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

.cert-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 600px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: #a0aec0;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--accent-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(49, 130, 206, 0.5);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Executive Summary */
.executive-summary {
    background: var(--bg-secondary);
}

.summary-content .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    text-align: center;
}

.compliance-notice {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.compliance-notice h3 {
    color: #c53030;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compliance-notice ul {
    list-style: none;
    padding-left: 0;
}

.compliance-notice li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.compliance-notice strong {
    color: var(--text-primary);
}

/* Qualifications */
.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.qualification-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.qualification-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cert-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-accent);
}

.cert-header i {
    font-size: 2rem;
    color: var(--accent-color);
}

.cert-header h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.cert-details p {
    margin-bottom: 1rem;
}

.cert-details strong {
    color: var(--primary-color);
}

.cert-details blockquote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.cert-details cite {
    display: block;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.achievement-list {
    list-style: none;
    padding-left: 0;
}

.achievement-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.achievement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.stat-item span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.regulatory-section {
    margin-bottom: 1.5rem;
}

.regulatory-section h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.certificate-image {
    margin-top: 2rem;
    text-align: center;
}

.cert-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.cert-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    top: 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 150px;
    text-align: center;
    padding: 1rem;
    background: var(--accent-color);
    color: #ffffff;
    border-radius: 25px;
    font-weight: 600;
    height: fit-content;
    position: relative;
    z-index: 10;
}

.timeline-content {
    flex: 1;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    margin: 0 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.official-recognition {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    color: var(--success-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.achievement {
    text-align: center;
    padding: 1rem;
    background: var(--bg-accent);
    border-radius: 8px;
}

.achievement h4 {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.achievement p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.representative-projects,
.responsibilities,
.results {
    margin: 1.5rem 0;
}

.representative-projects h4,
.responsibilities h4,
.results h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.ceo-quote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.company-info {
    background: var(--bg-accent);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.company-info p {
    margin-bottom: 0.5rem;
}

/* Expertise Section */
.expertise {
    background: var(--bg-secondary);
}

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

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

.tab-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--accent-color);
    color: #ffffff;
}

.tab-content {
    display: none;
}

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

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

.expertise-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.expertise-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.expertise-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expertise-card ul {
    list-style: none;
    text-align: left;
}

.expertise-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.industry-breakdown {
    space-y: 2rem;
}

.industry-item {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.industry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-accent);
}

.industry-header h3 {
    color: var(--primary-color);
    font-weight: 600;
}

.percentage {
    background: var(--accent-color);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.industry-details ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.industry-details li {
    padding-left: 1.5rem;
    position: relative;
}

.industry-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.language-skills {
    max-width: 600px;
    margin: 0 auto;
}

.language-item {
    margin-bottom: 2rem;
}

.language-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skill-bar {
    flex: 1;
    height: 8px;
    background: var(--bg-accent);
    border-radius: 4px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: var(--accent-color);
    border-radius: 4px;
    transition: width 1s ease;
}

.skill-level span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    min-width: 180px;
}

/* Recognition Section */
.rating-section {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.rating-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.aaa-rating {
    text-align: center;
    margin-bottom: 2rem;
}

.rating-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 900;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    box-shadow: var(--shadow-lg);
}

.rating-desc {
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

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

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.metric {
    font-weight: 600;
    color: var(--text-primary);
}

.grade {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.875rem;
}

.score {
    color: var(--text-light);
    font-size: 0.875rem;
}

.bank-quote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.awards-section {
    margin: 3rem 0;
}

.awards-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.awards-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.award-year {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.award-year h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-accent);
}

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

.awards-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 6px;
}

.awards-list i {
    color: var(--warning-color);
    font-size: 1.2rem;
}

.brand-positioning {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.brand-positioning h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.brand-motto {
    text-align: center;
    margin-bottom: 2rem;
}

.brand-motto h4 {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    font-style: italic;
}

.mentor-section {
    margin-bottom: 3rem;
}

.mentor-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mentor-image {
    text-align: center;
}

.mentor-photo {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.mentor-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
}

.image-caption {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.9rem;
}

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

.pillar {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.pillar i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pillar h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pillar p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card i {
    color: var(--accent-color);
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.contact-info strong {
    color: var(--text-primary);
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-info p i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    width: 16px;
    text-align: center;
}

/* WhatsApp specific styling */
.contact-info .fab.fa-whatsapp {
    color: #25D366;
}

.contact-info .fab.fa-whatsapp:hover {
    color: #1EBE5A;
}

.final-compliance {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.final-compliance h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.compliance-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compliance-item i {
    color: var(--accent-color);
}

.compliance-item ul {
    list-style: none;
}

.compliance-item li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.compliance-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.footer-quote {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.footer-quote blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
}

.footer-quote cite {
    display: block;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 2rem 0;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 54, 93, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-main {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-avatar .profile-photo {
        width: 150px;
        height: 150px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .certifications-overview {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 60px;
    }

    .timeline-date {
        position: absolute;
        left: -20px;
        width: 120px;
        font-size: 0.875rem;
        padding: 0.5rem;
    }

    .timeline-content {
        margin: 0;
        margin-top: 1rem;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .rating-details {
        grid-template-columns: 1fr;
    }

    .brand-pillars {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .mentor-photo {
        max-width: 95%;
    }

    .cert-img {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-avatar .profile-photo {
        width: 120px;
        height: 120px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .qualifications-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-direction: column;
        gap: 0.5rem;
    }
}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}