/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Top Info Bar */
.top-info-bar {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-info-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.95;
}

.info-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.info-link svg {
    flex-shrink: 0;
}

.top-cta {
    display: flex;
    align-items: center;
}

.hire-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hire-btn:hover {
    background-color: #fff;
    color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.top-tagline {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.tagline-text {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInGlow 2s ease-in-out infinite;
}

@keyframes fadeInGlow {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
}

/* Main Header */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

/* ORIGINAL LOGO (BACKUP FOR UNDO):
.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}
*/

/* PROFESSIONAL LOGO (NEW) */
.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -1px;
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3),
                0 2px 8px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 28px rgba(30, 58, 138, 0.4),
                0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-text {
    text-align: left;
}

.logo-text .logo-name {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin: 0;
    font-weight: 700;
    text-align: left;
    display: block;
}

.logo-text .tagline {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
    text-align: left;
}

.main-nav {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    padding: 0.65rem 1.25rem;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #1e3a8a;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #1e3a8a;
    background-color: rgba(30, 58, 138, 0.05);
}

.nav-link.active {
    color: #1e3a8a;
    font-weight: 600;
}

.contact-btn {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff !important;
    margin-left: 0.5rem;
    padding: 0.65rem 1.75rem;
    border-radius: 25px;
}

.contact-btn::after {
    display: none;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Promotional Banner */
.promo-banner-link {
    display: block;
    text-decoration: none;
}

.promo-banner {
    width: 100%;
    overflow: hidden;
}

.promo-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero-section {
    background-image: url('office-banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(59, 130, 246, 0.7) 100%);
    z-index: 1;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    overflow: hidden;
    z-index: 2;
}

.tech-icon {
    position: absolute;
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    animation: float-random 20s infinite ease-in-out;
    font-family: 'Courier New', monospace;
}

.tech-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    font-size: 3rem;
}

.tech-icon:nth-child(2) {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
    font-size: 5rem;
}

.tech-icon:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
    font-size: 4rem;
}

.tech-icon:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
    font-size: 3.5rem;
}

.tech-icon:nth-child(5) {
    top: 70%;
    right: 40%;
    animation-delay: 3s;
    font-size: 4.5rem;
}

.tech-icon:nth-child(6) {
    top: 20%;
    left: 60%;
    animation-delay: 5s;
    font-size: 3rem;
}

@keyframes float-random {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-15px, 15px) rotate(180deg);
    }
    75% {
        transform: translate(15px, -10px) rotate(270deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.hero-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInLeft 1s ease;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.hero-image {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    filter: contrast(1.05) brightness(1.05);
}

.hero-image:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    filter: contrast(1.08) brightness(1.08);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #1e3a8a;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-text-section {
    text-align: left;
    animation: fadeInRight 1s ease;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

.hero-text-section > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-item strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.stat-item span {
    font-size: 0.9rem;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #1e3a8a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2rem;
    color: #1e3a8a;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.skills-category {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #1e3a8a;
}

.skills-category:first-of-type {
    margin-top: 2rem;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.5;
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-tagline {
    color: #6b7280;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.about-main {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content-wrapper {
    display: grid;
    gap: 3rem;
}

/* Story Cards */
.about-story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #3b82f6;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

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

.story-card h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.story-card p {
    color: #6b7280;
    line-height: 1.8;
    font-size: 1rem;
}

/* Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-box {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.highlight-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* Qualities */
.about-qualities {
    margin-top: 4rem;
}

.qualities-title {
    text-align: center;
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

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

.quality-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.quality-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

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

.quality-card h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.quality-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Experience Section */
.experience-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

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

.experience-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.experience-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.experience-card h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #1e3a8a;
    padding-bottom: 0.5rem;
}

.experience-item {
    margin-bottom: 1.5rem;
}

.experience-item:last-child {
    margin-bottom: 0;
}

.experience-item h4 {
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.experience-meta {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.experience-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.75rem;
}

.experience-item ul li {
    color: #6b7280;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.experience-item ul li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #1e3a8a;
    font-weight: bold;
}

.experience-single {
    margin-top: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.experience-single h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #1e3a8a;
    padding-bottom: 0.5rem;
}

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

.competency-item {
    padding: 1.25rem;
    background-color: #f9fafb;
    border-radius: 6px;
    border-left: 4px solid #3b82f6;
    line-height: 1.7;
}

.competency-item strong {
    color: #1e3a8a;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    height: fit-content;
}

.contact-info-box h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    color: #1e3a8a;
    display: block;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: #6b7280;
    margin: 0;
}

.info-item a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.contact-form-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: #1e3a8a;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.message {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Footer */
.main-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

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

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-info-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .top-cta {
        width: 100%;
    }

    .hire-btn {
        width: 100%;
        text-align: center;
    }

    .top-tagline {
        padding: 0.5rem 0;
    }

    .tagline-text {
        font-size: 0.85rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1rem;
    }

    .logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .logo-text .logo-name {
        font-size: 1.3rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .contact-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .hero-section {
        padding: 3rem 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        width: 300px;
        height: 300px;
    }

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

    .hero-section h1 {
        font-size: 2rem;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }

    .tech-icon {
        font-size: 2rem !important;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .experience-grid,
    .competencies-grid {
        grid-template-columns: 1fr;
    }

    .about-story,
    .about-highlights,
    .qualities-grid {
        grid-template-columns: 1fr;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .highlight-number {
        font-size: 2.5rem;
    }

    .qualities-title {
        font-size: 1.5rem;
    }

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

    .skills-category {
        font-size: 1.25rem;
        margin-top: 2rem;
    }

    .experience-single {
        padding: 1.5rem;
    }
}

/* Blog Section */
.blog-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.blog-section .section-container {
    position: relative;
    z-index: 1;
}

.blog-section .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-section .section-subtitle {
    color: rgba(255,255,255,0.9);
}

/* Blog Carousel */
.blog-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    padding: 0 60px;
}

.blog-carousel {
    overflow: hidden;
    width: 100%;
}

.blog-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.blog-carousel-card {
    min-width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
}

.blog-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.blog-carousel-card:hover::before {
    transform: scaleX(1);
}

.blog-carousel-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.35);
}

.blog-carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-carousel-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.blog-carousel-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.blog-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
    opacity: 0;
}

.blog-carousel-image.active {
    opacity: 1;
    z-index: 1;
}

.blog-carousel-card:hover .blog-carousel-image.active {
    transform: scale(1.15);
    filter: brightness(1.05);
}

.blog-image-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.blog-image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-image-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.blog-image-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.blog-carousel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-carousel-placeholder svg {
    stroke: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.blog-carousel-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.blog-carousel-card:hover .blog-carousel-overlay {
    opacity: 1;
    transform: translateY(0);
}

.blog-carousel-category {
    background: rgba(255, 255, 255, 0.98);
    color: #667eea;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.5);
}

.blog-carousel-content {
    padding: 30px;
    background: white;
}

.blog-carousel-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-carousel-date,
.blog-carousel-author,
.blog-carousel-updated {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-carousel-updated {
    color: #f59e0b;
    font-style: italic;
}

.blog-carousel-date svg,
.blog-carousel-author svg,
.blog-carousel-updated svg {
    stroke: #667eea;
}

.blog-carousel-updated svg {
    stroke: #f59e0b;
}

.blog-carousel-title {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.9rem;
    transition: color 0.3s ease;
}

.blog-carousel-card:hover .blog-carousel-title {
    color: #667eea;
}

.blog-carousel-excerpt {
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover:not(:disabled) {
    background: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 36px rgba(102, 126, 234, 0.4);
}

.carousel-btn:hover:not(:disabled) svg {
    stroke: #667eea;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.6);
}

.carousel-btn svg {
    stroke: #667eea;
    stroke-width: 2.5;
    transition: all 0.3s ease;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
}

.carousel-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-indicator:hover::before {
    opacity: 1;
}

.carousel-indicator:hover {
    transform: scale(1.3);
    background: rgba(255, 255, 255, 0.8);
}

.carousel-indicator.active {
    background: white;
    width: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
}

/* No Posts State */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.no-posts-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-posts h3 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.no-posts p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-carousel-card {
        min-width: calc(50% - 15px);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .blog-carousel-card {
        min-width: 100%;
    }

    .blog-carousel-wrapper {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .blog-carousel-image-wrapper {
        height: 220px;
    }

    .blog-carousel-title {
        font-size: 1.2rem;
    }
}
