/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-blue: #0A2463;
    --royal-blue: #1E3A8A;
    --light-blue: #3B82F6;
    --accent-gold: #D4AF37;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --light-gray: #E2E8F0;
    --medium-gray: #64748B;
    --dark-gray: #1E293B;
    --text-dark: #0F172A;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-blue);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-medium);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 36, 99, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-medium);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-medium);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-medium);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--royal-blue);
    color: var(--white);
    border-color: var(--royal-blue);
}

.btn-primary:hover {
    background: var(--light-blue);
    border-color: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--royal-blue);
    border-color: var(--royal-blue);
}

.btn-secondary:hover {
    background: var(--royal-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-blue), var(--accent-gold));
    margin: 0 auto;
}

.section-subtitle {
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
    position: relative;
    padding: var(--spacing-xl) 0;
    padding-top: calc(70px + var(--spacing-xl));
    margin-top: 0;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 900px;
}

.hero-title {
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: var(--white);
    opacity: 0.5;
    animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.5);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    transition: var(--transition-medium);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.3);
}

.image-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--royal-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    transition: var(--transition-medium);
}

.image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.3);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--royal-blue);
    font-weight: 600;
}

/* ===== PROJECTS SECTION ===== */
.projects {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

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

.project-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-medium);
    border-left: 4px solid var(--light-blue);
}

.project-card.featured {
    border-left-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), var(--white));
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-title {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.project-category {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-description {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--light-gray);
    color: var(--royal-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-link {
    display: inline-block;
    margin-top: 1.25rem;
    color: var(--royal-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-medium);
}

.project-link:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

.project-card.featured-secondary {
    border-left-color: var(--light-blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), var(--white));
}

/* ===== SKILLS SECTION ===== */
.skills {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

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

.skill-card {
    text-align: center;
    padding: 2rem;
    background: var(--off-white);
    border-radius: 8px;
    transition: var(--transition-medium);
}

.skill-card:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.skill-name {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.skill-description {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-medium);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* ===== TIMELINE STYLES ===== */

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--royal-blue), var(--light-blue));
}

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

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

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--light-blue);
    z-index: 2;
}

.timeline-content {
    width: calc(50% - 40px);
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-medium);
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.timeline-title {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.timeline-company {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.timeline-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ===== BLOGS SECTION ===== */
.blogs {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.blogs-scroll-wrapper {
    position: relative;
    padding: 0 60px;
}

.blogs-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--light-blue) var(--light-gray);
}

.blogs-container::-webkit-scrollbar {
    height: 8px;
}

.blogs-container::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.blogs-container::-webkit-scrollbar-thumb {
    background: var(--light-blue);
    border-radius: 4px;
}

.blogs-container::-webkit-scrollbar-thumb:hover {
    background: var(--royal-blue);
}

.blog-card {
    min-width: 350px;
    max-width: 350px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-medium);
    border-left: 4px solid var(--light-blue);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.blog-card.loading {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-loading-text {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--royal-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

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

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.blog-card-meta {
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-card-preview {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.blog-card-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.blog-action-btn {
    background: transparent;
    border: none;
    color: var(--medium-gray);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
}

.blog-action-btn:hover {
    background: var(--light-gray);
    color: var(--royal-blue);
}

.blog-action-btn.active {
    color: var(--light-blue);
}

.blog-action-btn .icon {
    font-size: 1.1rem;
}

.blog-view-more {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--royal-blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-medium);
    text-align: center;
    width: 100%;
}

.blog-view-more:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scroll-btn:hover {
    background: var(--royal-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn-left {
    left: 0;
}

.scroll-btn-right {
    right: 0;
}

.scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.scroll-btn:disabled:hover {
    background: var(--white);
    color: var(--royal-blue);
    transform: translateY(-50%);
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem;
}

.blog-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.blog-modal-content {
    background: var(--white);
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    margin: 2rem auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.blog-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition-medium);
    z-index: 1;
}

.blog-modal-close:hover {
    background: var(--royal-blue);
    color: var(--white);
    transform: rotate(90deg);
}

.blog-breadcrumbs {
    padding: 1.5rem 2.5rem 0;
    font-size: 0.9rem;
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-breadcrumbs a {
    color: var(--royal-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-breadcrumbs a:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--medium-gray);
    margin: 0 0.25rem;
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 500;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.blog-modal-body {
    padding: 2.5rem;
}

.blog-modal-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.blog-modal-meta {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.blog-modal-content-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-modal-content-text h1,
.blog-modal-content-text h2,
.blog-modal-content-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.blog-modal-content-text p {
    margin-bottom: 1rem;
}

.blog-modal-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1rem 0;
}

.blog-modal-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-comments-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.blog-comments-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.blog-comment-form {
    margin-bottom: 2rem;
}

.blog-comment-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
    margin-bottom: 1rem;
}

.blog-comment-input:focus {
    outline: none;
    border-color: var(--royal-blue);
}

.blog-comment-submit {
    padding: 0.75rem 2rem;
    background: var(--royal-blue);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-medium);
}

.blog-comment-submit:hover {
    background: var(--light-blue);
}

.blog-comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-comment {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--light-blue);
}

.blog-comment-author {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.blog-comment-date {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 0.75rem;
}

.blog-comment-text {
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== VISION SECTION ===== */
.vision {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--royal-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.vision-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.vision-content .section-line {
    background: linear-gradient(90deg, var(--accent-gold), var(--white));
}

.vision-statement {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 2rem 0;
    line-height: 1.6;
}

.vision-statement strong {
    color: var(--accent-gold);
}

.vision-description {
    font-size: 1.15rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.vision-description strong {
    color: var(--white);
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--light-blue);
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--royal-blue);
    text-decoration: underline;
}

.contact-details p {
    color: var(--medium-gray);
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-medium);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

/* ===== SUPPORT SECTION ===== */
.support {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.support-embed-wrapper {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: var(--white);
    min-height: 600px;
}

.support-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: var(--light-gray);
    margin: 0;
}

.footer-link {
    color: #D4AF37;
    text-decoration: none;
}

.footer-links {
    margin-top: 8px;
    font-size: 0.9em;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-blue);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition-medium);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
    }

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

    .nav-toggle {
        display: flex;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

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

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-marker {
        left: 20px;
    }

    .timeline-content {
        width: 100%;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .blogs-scroll-wrapper {
        padding: 0 50px;
    }

    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .blog-card {
        min-width: 300px;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .about-intro {
        font-size: 1.1rem;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3.5rem;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    .projects-grid,
    .skills-grid {
        grid-template-columns: 1fr;
    }

    .vision-statement {
        font-size: 1.25rem;
    }

    .vision-description {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .blogs-scroll-wrapper {
        padding: 0 45px;
    }

    .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .blog-card {
        min-width: 280px;
        max-width: 280px;
    }

    .blog-modal {
        padding: 1rem;
    }

    .blog-modal-body {
        padding: 1.5rem;
    }

    .blog-modal-title {
        font-size: 1.5rem;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ACCESSIBILITY ===== */
*:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .hero-cta,
    .contact-form,
    .footer {
        display: none;
    }

    body {
        color: #000;
    }

    section {
        page-break-inside: avoid;
    }
}
