/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: linear-gradient(135deg, rgba(19, 124, 197, 0.03) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Enhanced background with more blue shades */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(19, 124, 197, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(19, 124, 197, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(19, 124, 197, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(19, 124, 197, 0.15) 0%, transparent 50%),
        linear-gradient(45deg, rgba(19, 124, 197, 0.1) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(19, 124, 197, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(19, 124, 197, 0.02) 0%, rgba(19, 124, 197, 0.02) 2%, transparent 2%, transparent 4%);
    z-index: -1;
    opacity: 0.8;
}

/* Add more blue shapes around header */
.header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(19, 124, 197, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Enhanced image area effects */
.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(19, 124, 197, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(19, 124, 197, 0.12) 0%, transparent 60%);
    z-index: -1;
    animation: rotate 25s infinite linear;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    background: radial-gradient(circle at center, rgba(19, 124, 197, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 8s infinite ease-in-out;
}

/* Additional animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Update background shapes for more visibility */
.background-shapes::before {
    content: '';
    position: absolute;
    width: 150vw;
    height: 150vh;
    top: -25vh;
    left: -25vw;
    background: 
        radial-gradient(circle at 20% 20%, rgba(19, 124, 197, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(19, 124, 197, 0.15) 0%, transparent 40%);
    animation: rotateBackground 30s infinite linear;
    z-index: -1;
}

.background-shapes::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(19, 124, 197, 0.1) 0%, transparent 50%) 0 0 / 100px 100px,
        radial-gradient(circle at 50% 50%, rgba(19, 124, 197, 0.1) 0%, transparent 50%) 50px 50px / 100px 100px;
    animation: floatPatterns 20s infinite linear;
    z-index: -1;
}

/* Add floating background elements with stronger visibility */
.background-shapes::before,
.background-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 124, 197, 0.08) 0%, transparent 70%);
    animation: float 25s infinite ease-in-out;
}

.background-shapes::before {
    width: 800px;
    height: 800px;
    top: -400px;
    right: -200px;
    animation-delay: -5s;
}

.background-shapes::after {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -100px;
    animation-delay: -12s;
}

/* Add an additional middle shape */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.background-shapes::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    top: 40%;
    right: 15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 124, 197, 0.06) 0%, transparent 60%);
    animation: float 20s infinite ease-in-out alternate;
}

/* Update float animation for more noticeable movement */
@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -30px) scale(1.1);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Header Styles */
.header {
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header::before {
    display: none;
}

.header.scrolled {
    transform: translateY(-100%);
}

.header.visible {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: #137cc5;
    text-decoration: none;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 2px;
    z-index: 1001;
}

.logo::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #137cc5;
    transition: width 0.2s ease;
}

.logo:hover::after {
    width: calc(100% - 10px); /* Subtracting some width to account for the dot */
}

.logo .highlight {
    color: #137cc5;
    font-weight: 700;
}

.dot {
    color: #137cc5;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #137cc5;
    font-weight: 500;
    position: relative;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
    background: transparent;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 124, 197, 0.06);
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease;
}

.nav-links a:hover {
    color: #137cc5;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
    color: #137cc5;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: #137cc5;
    border-radius: 1px;
}

.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: #137cc5;
    border-radius: 1px;
}

.nav-links a.lets-talk::after,
.nav-links a.lets-talk:hover::after {
    display: none;
}

.nav-links li {
    opacity: 1;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #137cc5;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .nav-links {
        gap: 0.8rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 4px 8px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transition: all 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        width: 100%;
        font-size: 1.1rem;
    }

    .nav-links .lets-talk {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    /* Hamburger menu animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        width: 100%;
        max-width: none;
    }
}

/* Hero Section with background and animations */
.hero {
    min-height: 80vh;
    padding-top: calc(100px + 2rem);
    padding-bottom: 2rem;
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
}

/* Animated background elements */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(19, 124, 197, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    opacity: 0.5;
}

.hero::before {
    top: -200px;
    right: -100px;
}

.hero::after {
    bottom: -200px;
    left: -100px;
    width: 300px;
    height: 300px;
}

/* Content animations */
.hero-title {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-text {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-cta {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-image {
    position: relative;
    flex: 1;
    max-width: 450px;
    pointer-events: none; /* Prevents clicking behavior */
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
    mix-blend-mode: multiply; /* Helps with white background */
    -webkit-user-drag: none; /* Prevents dragging on webkit browsers */
    user-select: none; /* Prevents selection */
}

/* Update hover effect to be more subtle */
.hero-image:hover img {
    transform: translateY(-5px);
}

/* Remove any background color that might appear */
.hero-image::before,
.hero-image::after {
    display: none;
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Add subtle hover effect to image */
.hero-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(19, 124, 197, 0.15);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: #137cc5;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Base button styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Primary button - View Resume */
.cta-primary {
    background-color: #137cc5;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(19, 124, 197, 0.2);
    border: none;
}

.cta-primary:hover {
    background-color: #1070b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 124, 197, 0.3);
    color: white;
}

/* LinkedIn button */
.cta-linkedin {
    background-color: transparent;
    border: 2px solid #0077b5;
    color: #0077b5;
}

.cta-linkedin:hover {
    background-color: rgba(0, 119, 181, 0.05);
    color: #0077b5;
    transform: translateY(-2px);
}

/* Secondary button - Hire Me */
.cta-secondary {
    background-color: #137cc5;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(19, 124, 197, 0.2);
    border: none;
}

.cta-secondary:hover {
    background-color: #1070b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 124, 197, 0.3);
    color: white;
}

/* Arrow animation */
.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.cta-secondary:hover .arrow {
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(19, 124, 197, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #137cc5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #137cc5;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    flex: 1;
    max-width: 450px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 4rem 5%;
    }
    
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 0;
    }

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

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

    .hero-text {
        margin: 0 auto 3rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        max-width: 320px;
    }
}

.worked-with {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.worked-with-text {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.company-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
}

.company-logos img {
    height: 25px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.company-logos img:hover {
    opacity: 1;
}

/* We'll add new styles as we design */ 

/* Update nav links styles */
.nav-links .lets-talk {
    background-color: #137cc5;
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.nav-links .lets-talk:hover {
    background-color: #1070b5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19, 124, 197, 0.2);
    color: white !important;
}

.nav-links a.lets-talk::before {
    display: none;
}

/* Common container style for all sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    width: 100%;
}

/* Section style for future sections */
.section {
    padding: 5rem 5%;
    background: white;
} 

/* Add a seamless background that spans both sections */
body::before {
    display: none;
} 

/* Add new animations */
@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatPatterns {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(20px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Add subtle noise texture */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0CzTOpNE77ME0Zty/nWWzchDtiqrmQDeuv3powQ5ta2eN0FY0InkqDD73lT9c9lEzwUNqgFHs9VQce3TVClFCQrSTfOiYkVJQBmpbq2L6iZavPnAPcoU0dSw0SUTqz/GtrGuXfbyyBniKykOWQWGqwwMA7QiYAxi+IlPdqo+hYHnUt5ZPfnsHJyNiDtnpJyayNBkF6cWoYGAMY92U2hXHF/C1M8uP/ZtYdiuj26UdAdQQSXQErwSOMzt/XWRWAz5GuSBIkwG1H3FabJ2OsUOUhGC6tK4EMtJO0ttC6IBD3kM0ve0tJwMdSfjZo+EEISaeTr9P3wYrGjXqyC1krcKdhMpxEnt5JetoulscpyzhXN5FRpuPHvbeQaKxFAEB6EN+cYN6xD7RYGpXpNndMmZgM5Dcs3YSNFDHUo2LGfZuukSWyUYirJAdYbF3MfqEKmjM+I2EfhA94iG3L7uKrR+GdWD73ydlIB+6hgref1QTlmgmbM3/LeX5GI1Ux1RWpgxpLuZ2+I+IjzZ8wqE4nilvQdkUdfhzI5QDWy+kw5Wgg2pGpeEVeCCA7b85BO3F9DzxB3cdqvBzWcmzbyMiqhzuYqtHRVG2y4x+KOlnyqla8AoWWpuBoYRxzXrfKuILl6SfiWCbjxoZJUaCBj1CjH7GIaDbc9kqBY3W/Rgjda1iqQcOJu2WW+76pZC9QG7M00dffe9hNnseupFL53r8F7YHSwJWUKP2q+k7RdsxyOB11n0xtOvnW4irMMFNV4H0uqwS5ExsmP9AxbDTc9JwgneAT5vTiUSm1E7BSflSt3bfa1tv8Di3R8n3Af7MNWzs49hmauE2wP+ttrq+AsWpFG2awvsuOqbipWHgtuvuaAE+A1Z/7gC9hesnr+7wqCwG8c5yAg3AL1fm8T9AZtp/bbJGwl1pNrE7RuOX7PeMRUERVaPpEs+yqeoSmuOlokqw49pgomjLeh7icHNlG19yjs6XXOMedYm5xH2YxpV2tc0Ro2jJfxC50ApuxGob7lMsxfTbeUv07TyYxpeLucEH1gNd4IKH2LAg5TdVhlCafZvpskfncCfx8pOhJzd76bJWeYFnFciwcYfubRc12Ip/ppIhA1/mSZ/RxjFDrJC5xifFjJpY2Xl5zXdguFqYyTR1zSp1Y9p+tktDYYSNflcxI0iyO4TPBdlRcpeqjK/piF5bklq77VSEaA+z8qmJTFzIWiitbnzR794USKBUaT0NTEsVjZqLaFVqJoPN9ODG70IPbfBHKK+/q/AWR0tJzYHRULOa4MP+W/HfGadZUbfw177G7j/OGbIs8TahLyynl4X4RinF793Oz+BU0saXtUHrVBFT/DnA3ctNPoGbs4hRIjTok8i+algT1lTHi4SxFvONKNrgQFAq2/gFnWMXgwffgYMJpiKYkmW3tTg3ZQ9Jq+f8XN+A5eeUKHWvJWJ2sgJ1Sop+wwhqFVijqWaJhwtD8MNlSBeWNNWTa5Z5kPZw5+LbVT99wqTdx29lMUH4OIG/D86ruKEauBjvH5xy6um/Sfj7ei6UUVk4AIl3MyD4MSSTOFgSwsH/QJWaQ5as7ZcmgBZkzjjU1UrQ74ci1gWBCSGHtuV1H2mhSnO3Wp/3fEV5a+4wz//6qy8JxjZsmxxy5+4w9CDNJY09T072iKG0EnOS0arEYgXqYnXcYHwjTtUNAcMelOd4xpkoqiTYICWFq0JSiPfPDQdnt+4/wuqcXY47QILbgAAAABJRU5ErkJggg==');
    opacity: 0.02;
    z-index: -1;
}

/* Quick Contact Section */
.quick-contact {
    padding: 2rem 5% 0 5%;
    background: transparent;
    position: relative;
    margin-bottom: 0;
}

.quick-contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.quick-contact-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.quick-contact-header p {
    font-size: 1rem;
    color: #666;
}

.quick-contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(19, 124, 197, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(19, 124, 197, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(19, 124, 197, 0.15);
    border-color: rgba(19, 124, 197, 0.3);
}

.contact-card:hover::before {
    opacity: 1;
}

.email-card:hover {
    border-color: rgba(19, 124, 197, 0.4);
}

.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.4);
}

.signal-card:hover {
    border-color: rgba(58, 163, 224, 0.4);
}

.telegram-card:hover {
    border-color: rgba(37, 150, 190, 0.4);
}

.contact-icon-wrapper {
    flex-shrink: 0;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #137cc5, #1a8fe3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(19, 124, 197, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.contact-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.contact-icon.signal img {
    width: 40px;
    height: 40px;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(19, 124, 197, 0.35);
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.contact-card:hover .contact-icon.whatsapp {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.contact-icon.signal {
    background: transparent;
    box-shadow: none;
}

.contact-card:hover .contact-icon.signal {
    box-shadow: none;
    transform: scale(1.1);
}

.contact-icon.telegram {
    background: linear-gradient(135deg, #229ED9, #0088cc);
    box-shadow: 0 6px 20px rgba(37, 150, 190, 0.25);
}

.contact-card:hover .contact-icon.telegram {
    box-shadow: 0 8px 25px rgba(37, 150, 190, 0.35);
}

.contact-details {
    flex: 1;
    position: relative;
    z-index: 2;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.contact-details p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.contact-arrow {
    color: #137cc5;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    opacity: 0.5;
}

.contact-card:hover .contact-arrow {
    transform: translateX(8px);
    opacity: 1;
}

.whatsapp-card .contact-arrow {
    color: #25D366;
}

.signal-card .contact-arrow {
    color: #3AA3E0;
}

.telegram-card .contact-arrow {
    color: #229ED9;
}

@media (max-width: 992px) {
    .quick-contact-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quick-contact {
        padding: 2rem 5%;
    }

    .quick-contact-header h3 {
        font-size: 1.5rem;
    }

    .quick-contact-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }
}

/* Modern About Section Styles */
.about {
    padding: 1rem 5%;
    position: relative;
    overflow: hidden;
    padding-bottom: 1rem;
}

.about::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(19, 124, 197, 0.05) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    opacity: 0.5;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    position: relative;
}

.about-left {
    position: sticky;
    top: 120px;
}

.section-tag {
    display: inline-block;
    color: #137cc5;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 3px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    text-transform: uppercase;
    position: relative;
}

.tag-decoration {
    width: 50px;
    height: 3px;
    background: #137cc5;
    margin-top: 15px;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    animation: growLine 0.6s ease forwards 0.4s;
}

.tag-decoration::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #137cc5;
    border-radius: 50%;
    right: 0;
    top: -4px;
    transform: scale(0);
    animation: growDot 0.4s ease forwards 1s;
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    text-align: justify;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    letter-spacing: 0.2px;
}

.reveal-text {
    animation: revealText 0.8s ease forwards;
}

.about-text:nth-child(2) {
    animation-delay: 0.2s;
}

.about-text:nth-child(3) {
    animation-delay: 0.4s;
}

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

@keyframes growLine {
    to {
        transform: scaleX(1);
    }
}

@keyframes growDot {
    to {
        transform: scale(1);
    }
}

@keyframes revealText {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-left {
        position: relative;
        top: 0;
    }

    .about-text {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: left;
    }

    .section-tag {
        font-size: 1.5rem;
    }
}

/* Add at the top of your CSS file */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Adjust this value based on your header height */
}

/* Optional: Add a subtle separator */
.about::after {
    display: none;
}

/* Add consistent background gradient */
.hero, .about {
    background: transparent;
    position: relative;
}

/* Add consistent background shapes */
.hero::before, .about::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(19, 124, 197, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    opacity: 0.5;
}

.hero::before {
    top: -200px;
    right: -100px;
}

.about::before {
    top: -250px;
    left: -250px;
}

/* Add subtle texture overlay */
.hero::after, .about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0CzTOpNE77ME0Zty/nWWzchDtiqrmQDeuv3powQ5ta2eN0FY0InkqDD73lT9c9lEzwUNqgFHs9VQce3TVClFCQrSTfOiYkVJQBmpbq2L6iZavPnAPcoU0dSw0SUTqz/GtrGuXfbyyBniKykOWQWGqwwMA7QiYAxi+IlPdqo+hYHnUt5ZPfnsHJyNiDtnpJyayNBkF6cWoYGAMY92U2hXHF/C1M8uP/ZtYdiuj26UdAdQQSXQErwSOMzt/XWRWAz5GuSBIkwG1H3FabJ2OsUOUhGC6tK4EMtJO0ttC6IBD3kM0ve0tJwMdSfjZo+EEISaeTr9P3wYrGjXqyC1krcKdhMpxEnt5JetoulscpyzhXN5FRpuPHvbeQaKxFAEB6EN+cYN6xD7RYGpXpNndMmZgM5Dcs3YSNFDHUo2LGfZuukSWyUYirJAdYbF3MfqEKmjM+I2EfhA94iG3L7uKrR+GdWD73ydlIB+6hgref1QTlmgmbM3/LeX5GI1Ux1RWpgxpLuZ2+I+IjzZ8wqE4nilvQdkUdfhzI5QDWy+kw5Wgg2pGpeEVeCCA7b85BO3F9DzxB3cdqvBzWcmzbyMiqhzuYqtHRVG2y4x+KOlnyqla8AoWWpuBoYRxzXrfKuILl6SfiWCbjxoZJUaCBj1CjH7GIaDbc9kqBY3W/Rgjda1iqQcOJu2WW+76pZC9QG7M00dffe9hNnseupFL53r8F7YHSwJWUKP2q+k7RdsxyOB11n0xtOvnW4irMMFNV4H0uqwS5ExsmP9AxbDTc9JwgneAT5vTiUSm1E7BSflSt3bfa1tv8Di3R8n3Af7MNWzs49hmauE2wP+ttrq+AsWpFG2awvsuOqbipWHgtuvuaAE+A1Z/7gC9hesnr+7wqCwG8c5yAg3AL1fm8T9AZtp/bbJGwl1pNrE7RuOX7PeMRUERVaPpEs+yqeoSmuOlokqw49pgomjLeh7icHNlG19yjs6XXOMedYm5xH2YxpV2tc0Ro2jJfxC50ApuxGob7lMsxfTbeUv07TyYxpeLucEH1gNd4IKH2LAg5TdVhlCafZvpskfncCfx8pOhJzd76bJWeYFnFciwcYfubRc12Ip/ppIhA1/mSZ/RxjFDrJC5xifFjJpY2Xl5zXdguFqYyTR1zSp1Y9p+tktDYYSNflcxI0iyO4TPBdlRcpeqjK/piF5bklq77VSEaA+z8qmJTFzIWiitbnzR794USKBUaT0NTEsVjZqLaFVqJoPN9ODG70IPbfBHKK+/q/AWR0tJzYHRULOa4MP+W/HfGadZUbfw177G7j/OGbIs8TahLyynl4X4RinF793Oz+BU0saXtUHrVBFT/DnA3ctNPoGbs4hRIjTok8i+algT1lTHi4SxFvONKNrgQFAq2/gFnWMXgwffgYMJpiKYkmW3tTg3ZQ9Jq+f8XN+A5eeUKHWvJWJ2sgJ1Sop+wwhqFVijqWaJhwtD8MNlSBeWNNWTa5Z5kPZw5+LbVT99wqTdx29lMUH4OIG/D86ruKEauBjvH5xy6um/Sfj7ei6UUVk4AIl3MyD4MSSTOFgSwsH/QJWaQ5as7ZcmgBZkzjjU1UrQ74ci1gWBCSGHtuV1H2mhSnO3Wp/3fEV5a+4wz//6qy8JxjZsmxxy5+4w9CDNJY09T072iKG0EnOS0arEYgXqYnXcYHwjTtUNAcMelOd4xpkoqiTYICWFq0JSiPfPDQdnt+4/wuqcXY47QILbgAAAABJRU5ErkJggg==');
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
}

/* Add a background container that spans both sections */
.content-background {
    position: absolute;
    top: 40%; /* Adjust this value to start from middle of hero section */
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(19, 124, 197, 0.03) 10%,
        rgba(19, 124, 197, 0.03) 90%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: -1;
}

/* Modern Stats section styles */
.about-stats {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 160px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 
        0 2px 10px rgba(19, 124, 197, 0.05),
        0 0 0 1px rgba(19, 124, 197, 0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 124, 197, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 20px rgba(19, 124, 197, 0.1),
        0 0 0 1px rgba(19, 124, 197, 0.1);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #137cc5, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.4rem;
    position: relative;
    display: inline-block;
}

.stat-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0 0.5rem;
}

/* Animation delays */
.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-stats {
        flex-direction: column;
        max-width: 160px;
        margin: 2rem auto 0;
    }

    .stat-item {
        width: 100%;
    }
}

/* Experience Section Styles */
.experience {
    padding: 1rem 5%;
    position: relative;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(19, 124, 197, 0.02) 15%,
        rgba(19, 124, 197, 0.02) 85%,
        rgba(255, 255, 255, 0) 100%
    );
}

.experience-header {
    margin-bottom: 2rem;
}

.experience-timeline {
    position: relative;
    padding-left: 2rem;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(19, 124, 197, 0.2);
    z-index: 1;
}

.experience-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.experience-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.experience-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #137cc5;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(19, 124, 197, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.experience-item:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(19, 124, 197, 0.4);
}

.hidden-experiences {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.hidden-experiences.visible {
    opacity: 1;
    max-height: 3000px;
    margin-bottom: 2rem;
}

.hidden-experiences .experience-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.hidden-experiences.visible .experience-item {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.hidden-experiences .experience-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #137cc5;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(19, 124, 197, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.hidden-experiences .experience-item:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(19, 124, 197, 0.4);
}

@media (max-width: 768px) {
    .experience-timeline::before {
        left: 0;
    }

    .experience-item,
    .hidden-experiences .experience-item {
        padding-left: 2rem;
    }

    .experience-item::before,
    .hidden-experiences .experience-item::before {
        left: -2rem;
    }
}

.experience-company {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 16px;
    box-shadow: 
        0 4px 20px rgba(19, 124, 197, 0.08),
        0 0 0 1px rgba(19, 124, 197, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid #137cc5;
}

.experience-company:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 
        0 8px 30px rgba(19, 124, 197, 0.12),
        0 0 0 1px rgba(19, 124, 197, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
}

.company-info {
    flex: 1;
}

.company-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, #1a1a1a, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #137cc5;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.company-info h4 a:hover {
    color: #0e5c91;
}

.duration, .location {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    margin-right: 1.5rem;
    font-weight: 500;
}

.location i {
    color: #137cc5;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.experience-details {
    padding: 0 1.8rem;
}

.responsibility-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.responsibility-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
}

.responsibility-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #137cc5;
    box-shadow: 0 0 0 2px rgba(19, 124, 197, 0.1);
}

.skills-used {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    padding: 0.4rem 0.8rem;
    background: rgba(19, 124, 197, 0.08);
    color: #137cc5;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(19, 124, 197, 0.12);
    transform: translateY(-2px);
}

.view-more-container {
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.view-more-btn {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(19, 124, 197, 0.2);
    border-radius: 8px;
    color: #137cc5;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-more-btn:hover {
    background: rgba(19, 124, 197, 0.05);
    border-color: rgba(19, 124, 197, 0.3);
    transform: translateY(-2px);
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateY(2px);
}

/* Animation delays for experience items */
.experience-item:nth-child(1) { animation-delay: 0.2s; }
.experience-item:nth-child(2) { animation-delay: 0.4s; }
.experience-item:nth-child(3) { animation-delay: 0.6s; }
.experience-item:nth-child(4) { animation-delay: 0.8s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .experience-timeline::before {
        left: 0;
    }

    .experience-item,
    .hidden-experiences .experience-item {
        padding-left: 2rem;
    }

    .experience-item::before,
    .hidden-experiences .experience-item::before {
        left: -2rem;
    }
}

/* Hidden Experiences Section */
.hidden-experiences {
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.hidden-experiences.visible {
    display: block;
    opacity: 1;
}

.hidden-experiences .experience-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.hidden-experiences.visible .experience-item {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.hidden-experiences .experience-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #137cc5;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(19, 124, 197, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
    opacity: 1;
    visibility: visible;
}

.hidden-experiences .experience-item:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(19, 124, 197, 0.4);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 20px rgba(19, 124, 197, 0.15),
        0 0 0 1px rgba(19, 124, 197, 0.08);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 
        0 8px 25px rgba(19, 124, 197, 0.2),
        0 0 0 1px rgba(19, 124, 197, 0.1);
}

.scroll-to-top i {
    color: #137cc5;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-3px);
}

/* Certifications Section */
.certifications {
    padding: 3rem 5%;
    position: relative;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(19, 124, 197, 0.02) 15%,
        rgba(19, 124, 197, 0.02) 85%,
        rgba(255, 255, 255, 0) 100%
    );
}

.certifications-header {
    margin-bottom: 3rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.certification-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 
        0 4px 20px rgba(19, 124, 197, 0.08),
        0 0 0 1px rgba(19, 124, 197, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-top: 4px solid #137cc5;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    display: flex;
    flex-direction: column;
    height: 380px;  /* Reduced from 420px for more compact layout */
    position: relative;  /* Ensure relative positioning for absolute children */
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(19, 124, 197, 0.12),
        0 0 0 1px rgba(19, 124, 197, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
}

.certification-icon {
    font-size: 2rem;
    color: #137cc5;
    margin-bottom: 1.5rem;
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(19, 124, 197, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.certification-card:hover .certification-icon {
    transform: scale(1.1);
    background: rgba(19, 124, 197, 0.15);
}

.certification-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    padding-bottom: 3.5rem; /* Increased to make room for verify link */
}

.certification-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1a1a1a, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.4;
    min-height: 2.5em; /* Reduced from 2.8em */
    display: flex;
    align-items: center;
}

.certification-content h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #137cc5;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    min-height: 1.2em; /* Reduced from 1.5em */
    display: flex;
    align-items: center;
}

.certification-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
    min-height: 1.5em; /* Reduced from 1.8em */
    align-items: center;
    justify-content: flex-start;
}

.certification-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex: 0 0 auto;
}

.certification-meta i {
    color: #137cc5;
    font-size: 0.9rem;
}

.certification-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 2rem;  /* Increased space for verify link */
    min-height: 3.6em; /* Reduced from 4.8em */
    display: flex;
    align-items: center;
    margin: 0.8rem 0; /* Reduced from 1rem */
}

.verify-link {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #137cc5;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    margin-top: 0;  /* Remove margin-top */
}

.verify-link:hover {
    color: #0e5c91;
    transform: translateX(5px);
}

/* Animation delays for certification cards */
.certification-card:nth-child(1) { animation-delay: 0.2s; }
.certification-card:nth-child(2) { animation-delay: 0.4s; }
.certification-card:nth-child(3) { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .certifications-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .certification-card {
        padding: 1.5rem;
    }
}

/* Tools Expertise Section */
.tools-expertise {
    padding: 2rem 5%;
    position: relative;
}

.tools-header {
    margin-bottom: 2rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.tool-item:nth-child(1) { animation-delay: 0.1s; }
.tool-item:nth-child(2) { animation-delay: 0.2s; }
.tool-item:nth-child(3) { animation-delay: 0.3s; }
.tool-item:nth-child(4) { animation-delay: 0.4s; }
.tool-item:nth-child(5) { animation-delay: 0.5s; }
.tool-item:nth-child(6) { animation-delay: 0.6s; }

.tool-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: all 0.3s ease;
    transform-origin: center;
}

.tool-name {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    text-align: center;
}

.tool-item:hover .tool-logo {
    transform: scale(1.1);
}

.tool-item:hover .tool-name {
    color: #137cc5;
}

@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .tool-logo {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 576px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .tool-logo {
        width: 48px;
        height: 48px;
    }
}

/* Achievements Section */
.achievements {
    padding: 2rem 5%;
    position: relative;
}

.achievements-header {
    margin-bottom: 2rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.achievement-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(19, 124, 197, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(19, 124, 197, 0.12);
}

.achievement-icon {
    width: 48px;
    height: 48px;
    background: rgba(19, 124, 197, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.achievement-icon i {
    color: #137cc5;
    font-size: 1.5rem;
}

.achievement-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.achievement-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.achievement-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.achievement-meta i {
    color: #137cc5;
}

.achievement-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* Animation delays for achievement cards */
.achievement-card:nth-child(1) { animation-delay: 0.2s; }
.achievement-card:nth-child(2) { animation-delay: 0.4s; }
.achievement-card:nth-child(3) { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-card {
        padding: 1.5rem;
    }
}

/* Projects Section */
.projects {
    padding: 3rem 0 1rem 0;
    position: relative;
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(19, 124, 197, 0.02) 15%,
        rgba(19, 124, 197, 0.02) 85%,
        rgba(255, 255, 255, 0) 100%
    );
}

.projects .container {
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.projects-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.projects-grid::-webkit-scrollbar {
    display: none;
}

.project-card {
    min-width: 380px;
    max-width: 380px;
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 12px rgba(19, 124, 197, 0.08);
    transition: all 0.3s ease;
    height: 580px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(19, 124, 197, 0.08);
    box-sizing: border-box;
}

/* Staggered animation delays for project cards */
.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.3s;
}

.project-card:nth-child(4) {
    animation-delay: 0.4s;
}

.project-card:nth-child(5) {
    animation-delay: 0.5s;
}

.project-card:nth-child(6) {
    animation-delay: 0.6s;
}


.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(19, 124, 197, 0.12);
    border-color: rgba(19, 124, 197, 0.15);
}

.project-image {
    width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    margin-bottom: 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.3s ease;
    box-sizing: border-box;
    flex-shrink: 0;
}

.project-image img {
    max-width: 85%;
    max-height: 170px;
    min-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

/* Force consistent sizing for all project images - ensure they all appear the same visual size */
.project-image img[alt*="Wileo"],
.project-image img[alt*="Barefoot Bridal"],
.project-image img[alt*="Pizza Twist"],
.project-image img[alt*="Prialto"],
.project-image img[alt*="Why Not Natural"],
.project-image img[alt*="REMAX"],
.project-image img[alt*="ParentPulse"],
.project-image img[alt*="MedicaidSoft"],
.project-image img[alt*="Guide Protection"] {
    max-width: 85%;
    max-height: 170px;
    min-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.project-card:hover .project-image {
    background: #f0f4f8;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 2.5rem 2rem;
    box-sizing: border-box;
    min-height: 0;
    gap: 1rem;
}

.project-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    padding: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Project Image Link */
.project-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.project-image-link:hover {
    text-decoration: none;
}

/* Project Title Link */
.project-title-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-block;
}

.project-title-link:hover {
    color: #137cc5;
    text-decoration: none;
}

.project-card:hover .project-content h3,
.project-card:hover .project-title-link {
    color: #137cc5;
}

.project-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    min-height: 100px;
    display: flex;
    align-items: flex-start;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0;
    min-height: 3rem;
    align-items: flex-start;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(19, 124, 197, 0.08);
    color: #137cc5;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(19, 124, 197, 0.12);
    transform: translateY(-2px);
}

.project-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(19, 124, 197, 0.08);
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    box-sizing: border-box;
}

.project-link {
    flex: 1;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #137cc5 0%, #1a8fe3 100%);
    color: white !important;
    border: none;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(19, 124, 197, 0.25);
    min-width: 0;
    white-space: nowrap;
}

.project-link::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 ease;
}

.project-link:hover::before {
    left: 100%;
}

.project-link:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #1a8fe3 0%, #137cc5 100%);
    box-shadow: 0 8px 25px rgba(19, 124, 197, 0.35);
    color: white;
}

.project-link.secondary {
    background: white !important;
    border: 2px solid rgba(19, 124, 197, 0.3) !important;
    color: #137cc5 !important;
    box-shadow: 0 2px 8px rgba(19, 124, 197, 0.1);
    visibility: visible !important;
    opacity: 1 !important;
}

.project-link.secondary::before {
    background: linear-gradient(90deg, transparent, rgba(19, 124, 197, 0.1), transparent);
}

.project-link.secondary:hover {
    border-color: #137cc5 !important;
    background: linear-gradient(135deg, rgba(19, 124, 197, 0.05), rgba(19, 124, 197, 0.1)) !important;
    color: #137cc5 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(19, 124, 197, 0.2);
}

.project-link i {
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.project-link:hover i {
    transform: translateX(4px);
}

.project-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 1rem;
}

.project-nav-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(19, 124, 197, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.project-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(19, 124, 197, 0.15);
}

.project-nav-btn i {
    color: #137cc5;
    font-size: 1.2rem;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Duplicate removed - using main .project-image styles above */

.project-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.project-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.project-highlights {
    margin-bottom: 1.5rem;
}

.project-highlights ul {
    list-style: none;
    padding: 0;
}

.project-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.project-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #137cc5;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    padding: 0.4rem 0.8rem;
    background: rgba(19, 124, 197, 0.08);
    color: #137cc5;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(19, 124, 197, 0.12);
    transform: translateY(-2px);
}

/* Removed duplicate .project-link styles - using the main styles above */

/* Projects Note Section */
.projects-note {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(19, 124, 197, 0.1);
}

.projects-note-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.projects-note-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.projects-note-text strong {
    color: #137cc5;
    font-weight: 600;
}

@media (max-width: 768px) {
    .project-image {
        height: 160px;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-content h3 {
        font-size: 1.3rem;
    }
    
    .projects-note {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .projects-note-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .tech-stack {
        gap: 0.6rem;
    }

    .tech-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Project Modal Styles */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-modal.active {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 1rem;
    text-align: right;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #137cc5;
}

.modal-body {
    padding: 0 2rem 2rem;
}

.project-details-header {
    margin-bottom: 2rem;
}

.project-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: #666;
    font-size: 0.95rem;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-meta i {
    color: #137cc5;
}

.project-overview {
    margin-bottom: 2rem;
}

.project-overview h3,
.project-challenges h3,
.project-achievements h3,
.project-approach h3,
.project-tools h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-overview p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.project-challenges {
    margin-bottom: 2rem;
}

.project-challenges ul,
.project-achievements ul {
    list-style: none;
    padding: 0;
}

.project-challenges li {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(19, 124, 197, 0.05);
    border-radius: 8px;
}

.project-achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.project-achievements li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #137cc5;
}

.approach-tags,
.tools-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.approach-tag,
.tools-tags .tool-tag {
    padding: 0.5rem 1rem;
    background: rgba(19, 124, 197, 0.08);
    color: #137cc5;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.approach-tag:hover,
.tools-tags .tool-tag:hover {
    background: rgba(19, 124, 197, 0.12);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }

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

    .project-meta {
        gap: 1rem;
    }

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

/* Recommendations Section */
.recommendations {
    padding: 2rem 5%;
    position: relative;
    width: 100%;
}

.recommendations-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;  /* Reduced from 3rem */
    position: relative;
    width: 100%;
    padding: 0;
}

.recommendations .section-tag {
    color: #137cc5;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.recommendations-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;  /* Reduced from 2rem */
    max-width: 800px;
    margin: 0 auto;
}

.recommendations-slider {
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
}

.recommendations-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
    align-items: stretch;
}

.recommendation-card {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transform: scale(0.98);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.recommendation-card:hover {
    transform: scale(1);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.slider-nav:hover {
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .recommendations-content {
        padding: 1rem;
    }
    
    .slider-nav {
        width: 36px;
        height: 36px;
    }
    
    .prev-btn {
        left: -12px;
    }
    
    .next-btn {
        right: -12px;
    }
}

.recommendation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(19, 124, 197, 0.05) 0%, rgba(19, 124, 197, 0) 100%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(19, 124, 197, 0.1);
}

.recommendation-card:hover::before {
    opacity: 1;
}

.recommender-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.recommender-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(19, 124, 197, 0.15);
    transition: transform 0.4s ease;
}

.recommendation-card:hover .recommender-image {
    transform: scale(1.05);
}

.recommender-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recommender-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #137cc5;
    margin: 0 0 0.4rem 0;
}

.recommender-title {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
}

.recommender-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.2rem;
}

.recommender-location i {
    color: #137cc5;
    font-size: 0.9rem;
    opacity: 0.9;
}

.recommendation-card:hover .recommender-title i,
.recommendation-card:hover .recommender-location i {
    animation: iconPulse 1s ease infinite;
}

@keyframes iconPulse {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
    100% {
        transform: translateY(0);
    }
}

.recommendation-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recommendation-content p {
    margin: 0 0 1.5rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.recommendation-content p:last-of-type {
    margin-bottom: 2rem;
}

.verification-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(19, 124, 197, 0.08) 0%, rgba(19, 124, 197, 0.04) 100%);
    border-radius: 15px;
    border: 1px solid rgba(19, 124, 197, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.verification-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(19, 124, 197, 0.1) 0%, rgba(19, 124, 197, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.verification-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(19, 124, 197, 0.25);
}

.verification-badge:hover::before {
    opacity: 1;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: #137cc5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.verification-badge:hover .badge-icon {
    transform: scale(1.1) rotate(5deg);
}

.badge-icon i {
    color: white;
    font-size: 1.1rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
    color: #137cc5;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.badge-text:hover {
    color: #0e5f99;
}

.verify-note {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
}

.badge-text:hover .verify-note {
    color: #137cc5;
}

.verify-recommendation {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.6rem 1rem;
    background-color: #0077b5;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.verify-recommendation:hover {
    background-color: #006396;
    transform: translateY(-2px);
}

.verify-recommendation i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .verify-recommendation {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
}

.verified-tick {
    color: #137cc5;
    font-size: 0.7em;
    margin-left: 0.3rem;
    vertical-align: middle;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(19, 124, 197, 0.2));
    transition: all 0.3s ease;
}

.recommender-details h3:hover .verified-tick {
    transform: scale(1.1);
    filter: drop-shadow(0 3px 6px rgba(19, 124, 197, 0.3));
}

@keyframes pulseVerified {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(19, 124, 197, 0.2));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 3px 6px rgba(19, 124, 197, 0.3));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(19, 124, 197, 0.2));
    }
}

.recommender-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.2rem;
}

.recommender-location i {
    color: #137cc5;
    font-size: 0.9rem;
    opacity: 0.9;
}

.recommendation-card:hover .recommender-location i {
    animation: locationPulse 1s ease infinite;
}

@keyframes locationPulse {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Industries Section */
.industries {
    padding: 2rem 5%;
    position: relative;
}

.industries-header {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(19, 124, 197, 0.08);
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(19, 124, 197, 0.12);
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .industry-item {
        padding: 1rem;
    }
    
    .industry-icon {
        width: 40px;
        height: 40px;
    }
    
    .industry-name {
        font-size: 0.85rem;
    }
} 

.industries-header .section-tag {
    display: inline-block;
    color: #137cc5;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.industries-header .tag-decoration {
    width: 50px;
    height: 3px;
    background: #137cc5;
    margin-top: 15px;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    animation: growLine 0.6s ease forwards 0.4s;
}

.industries-header .tag-decoration::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #137cc5;
    border-radius: 50%;
    right: 0;
    top: -4px;
    transform: scale(0);
    animation: growDot 0.4s ease forwards 1s;
}

.industry-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #137cc5;
    transition: all 0.3s ease;
}

.industry-icon:hover {
    transform: scale(1.1);
    color: #1a8fe3;
}

/* Strategic Partnerships Section */
.partnerships {
    padding: 3rem 5%;
    position: relative;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(19, 124, 197, 0.02) 15%,
        rgba(19, 124, 197, 0.02) 85%,
        rgba(255, 255, 255, 0) 100%
    );
}

.partnerships::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(19, 124, 197, 0.05) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    opacity: 0.5;
}

.partnerships-header {
    margin-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.partnerships-header .section-tag {
    display: inline-block;
    color: #137cc5;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 3px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    text-transform: uppercase;
    position: relative;
}

.partnerships-header .tag-decoration {
    width: 50px;
    height: 3px;
    background: #137cc5;
    margin-top: 15px;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    animation: growLine 0.6s ease forwards 0.4s;
}

.partnerships-header .tag-decoration::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #137cc5;
    border-radius: 50%;
    right: 0;
    top: -4px;
    transform: scale(0);
    animation: growDot 0.4s ease forwards 1s;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.partnership-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 
        0 4px 20px rgba(19, 124, 197, 0.08),
        0 0 0 1px rgba(19, 124, 197, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 1.8rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(19, 124, 197, 0.12),
        0 0 0 1px rgba(19, 124, 197, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
}

.partner-logo {
    width: 120px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 4px;
}

.partnership-card:hover .partner-logo {
    transform: scale(1.05);
}

.partner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.partner-type {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.partner-name {
    font-size: 1.1rem;
    color: #137cc5;
    font-weight: 600;
}

@media (max-width: 768px) {
    .partnership-card {
        padding: 1.4rem;
        gap: 1.4rem;
    }
    
    .partner-logo {
        width: 100px;
        height: 40px;
    }
    
    .partner-name {
        font-size: 1rem;
    }
    
    .partner-type {
        font-size: 0.85rem;
    }
}

/* What Makes Me Different Section */
.what-makes-different {
    padding: 1rem 5% 0;  /* Reduced top padding */
    position: relative;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(19, 124, 197, 0.02) 15%,
        rgba(19, 124, 197, 0.02) 85%,
        rgba(255, 255, 255, 0) 100%
    );
    overflow: hidden;
    margin-bottom: 0;  /* Remove bottom margin */
    margin-top: 0;  /* Remove top margin */
}

.what-makes-different::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(19, 124, 197, 0.05) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    opacity: 0.5;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto 0;  /* Remove bottom margin */
    padding-bottom: 0;  /* Remove bottom padding */
}

.different-item {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 1.5rem;  /* Reduced padding */
    border-radius: 16px;  /* Reduced border radius */
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(19, 124, 197, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.different-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 124, 197, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 20px;
}

.different-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(19, 124, 197, 0.1),
        0 0 0 1px rgba(19, 124, 197, 0.1);
}

.different-item:hover::before {
    opacity: 1;
}

.different-icon {
    position: relative;
    z-index: 2;
    width: 50px;  /* Reduced size */
    height: 50px;  /* Reduced size */
    background: #137cc5;
    border-radius: 14px;  /* Reduced border radius */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;  /* Reduced margin */
    transition: all 0.4s ease;
    transform: rotate(10deg);
    box-shadow: 
        0 8px 20px rgba(19, 124, 197, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.different-icon i {
    font-size: 1.4rem;  /* Reduced font size */
    color: white;
    transition: all 0.4s ease;
    transform: rotate(-10deg);
}

.different-item:hover .different-icon {
    transform: rotate(0deg) scale(1.1);
    background: #1a8fe3;
    box-shadow: 
        0 12px 25px rgba(19, 124, 197, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.different-item:hover .different-icon i {
    transform: rotate(0deg) scale(1.1);
}

.different-item h3 {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;  /* Reduced font size */
    color: #333;
    margin-bottom: 0.5rem;  /* Reduced margin */
    font-weight: 600;
    transition: all 0.3s ease;
}

.different-item p {
    position: relative;
    z-index: 2;
    color: #666;
    line-height: 1.5;  /* Reduced line height */
    font-size: 0.9rem;  /* Reduced font size */
    margin: 0;
    transition: all 0.3s ease;
}

.different-item:hover h3 {
    color: #137cc5;
    transform: translateX(5px);
}

.different-item:hover p {
    color: #444;
}

/* Add animation delays for all 6 cards */
.different-item:nth-child(1) { animation-delay: 0.1s; }
.different-item:nth-child(2) { animation-delay: 0.2s; }
.different-item:nth-child(3) { animation-delay: 0.3s; }
.different-item:nth-child(4) { animation-delay: 0.4s; }
.different-item:nth-child(5) { animation-delay: 0.5s; }
.different-item:nth-child(6) { animation-delay: 0.6s; }

/* Update responsive design */
@media (max-width: 992px) {
    .different-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin-bottom: 0;  /* Remove bottom margin */
    }
}

@media (max-width: 768px) {
    .what-makes-different {
        padding: 2rem 5% 0;  /* Remove bottom padding */
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 0;  /* Remove bottom margin */
    }

    .different-item {
        padding: 1.2rem;
    }

    .different-icon {
        width: 45px;
        height: 45px;
    }

    .different-icon i {
        font-size: 1.2rem;
    }

    .different-item h3 {
        font-size: 1.1rem;
    }

    .different-item p {
        font-size: 0.85rem;
    }
}

/* Add a subtle animated border effect */
.different-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.different-item:hover::after {
    border-color: rgba(19, 124, 197, 0.3);
    animation: borderPulse 2s infinite;
}

@keyframes borderPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--bg-light);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(19, 124, 197, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(19, 124, 197, 0.1);
}

.service-icon {
    width: 40px;
    height: 40px;
    background: rgba(19, 124, 197, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    color: #137cc5;
    font-size: 1.2rem;
}

.service-card h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 36px;
        height: 36px;
    }
    
    .service-icon i {
        font-size: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

.contact {
    padding: 60px 5% 40px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
}

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

.contact-header .section-tag {
    display: inline-block;
    color: #137cc5;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 3px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    text-transform: uppercase;
    position: relative;
}

.contact-header .tag-decoration {
    width: 50px;
    height: 3px;
    background: #137cc5;
    margin: 15px auto;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    animation: growLine 0.6s ease forwards 0.4s;
}

.contact-intro {
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: center;
}

.contact-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(19, 124, 197, 0.08);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(19, 124, 197, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-icon i {
    color: #137cc5;
    font-size: 1.2rem;
}

.contact-details h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
}

.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #137cc5;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-social .social-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.contact-social .social-link:hover {
    background: #137cc5;
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(19, 124, 197, 0.08);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
}

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

.form-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #137cc5;
    outline: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: #ffffff;
    padding: 0 5px;
    color: #137cc5;
}

.submit-btn {
    background: #137cc5;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #0f63a0;
    transform: translateY(-2px);
}

.submit-btn i {
    font-size: 1.1rem;
}

.footer {
    text-align: center;
    padding: 1.5rem 0;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.footer p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 40px 5% 30px;
    }
    
    .contact-intro p {
        font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-info,
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .contact-social {
        justify-content: center;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Methodology Framework Section */
.methodology {
    padding: 3rem 5%;
    position: relative;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(19, 124, 197, 0.02) 15%,
        rgba(19, 124, 197, 0.02) 85%,
        rgba(255, 255, 255, 0) 100%
    );
}

.methodology::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(19, 124, 197, 0.05) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    opacity: 0.5;
}

.methodology-header {
    margin-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.methodology-header .section-tag {
    display: inline-block;
    color: #137cc5;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 3px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    text-transform: uppercase;
    position: relative;
}

.methodology-header .tag-decoration {
    width: 50px;
    height: 3px;
    background: #137cc5;
    margin-top: 15px;
    position: relative;
    transform: scaleX(0);
    transform-origin: left;
    animation: growLine 0.6s ease forwards 0.4s;
}

.methodology-header .tag-decoration::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #137cc5;
    border-radius: 50%;
    right: 0;
    top: -4px;
    transform: scale(0);
    animation: growDot 0.4s ease forwards 1s;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.methodology-item {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(19, 124, 197, 0.1);
    overflow: hidden;
}

.methodology-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(19, 124, 197, 0.05), rgba(19, 124, 197, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
    border-radius: 20px;
}

.methodology-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(19, 124, 197, 0.1);
}

.methodology-item:hover::before {
    opacity: 1;
}

.methodology-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: #137cc5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.methodology-icon i {
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.methodology-item:hover .methodology-icon {
    transform: scale(1.1) rotate(10deg);
    background: #1a8fe3;
    box-shadow: 0 10px 20px rgba(19, 124, 197, 0.2);
}

.methodology-item h3 {
    position: relative;
    z-index: 2;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.methodology-item p {
    position: relative;
    z-index: 2;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.methodology-item:hover h3 {
    color: #137cc5;
}

.methodology-item:hover p {
    color: #444;
}

/* Add a subtle animated border effect */
.methodology-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.methodology-item:hover::after {
    border-color: rgba(19, 124, 197, 0.3);
    animation: borderPulse 2s infinite;
}

@keyframes borderPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .methodology-item {
        padding: 2rem;
    }

    .methodology-icon {
        width: 50px;
        height: 50px;
    }

    .methodology-icon i {
        font-size: 1.25rem;
    }

    .methodology-item h3 {
        font-size: 1.3rem;
    }
}

.recommendation-card.split-card {
    padding: 2rem;
}

.recommendation-split {
    display: flex;
    gap: 2rem;
}

.split-item {
    flex: 1;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

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

.split-item .recommendation-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .recommendation-split {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .split-item {
        padding: 1rem;
    }
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Interested to Work with Me Section */
.work-with-me {
    margin-top: 0;
    padding: 2rem 5% 4rem;  /* Reduced top padding */
    position: relative;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(19, 124, 197, 0.02) 15%,
        rgba(19, 124, 197, 0.02) 85%,
        rgba(255, 255, 255, 0) 100%
    );
    margin-bottom: 0;
    overflow: hidden;
}

.work-with-me::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(19, 124, 197, 0.05) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    opacity: 0.5;
}

.work-with-me-content {
    max-width: 1200px;
    margin: 2rem auto 0;  /* Reduced top margin */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.work-option {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(19, 124, 197, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.work-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 124, 197, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.work-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(19, 124, 197, 0.1);
}

.work-option:hover::before {
    opacity: 1;
}

.option-icon {
    width: 50px;
    height: 50px;
    background: #137cc5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
    transform: rotate(10deg);
    transition: all 0.4s ease;
}

.option-icon i {
    color: white;
    font-size: 1.3rem;
    transform: rotate(-10deg);
    transition: all 0.4s ease;
}

.work-option:hover .option-icon {
    transform: rotate(0deg) scale(1.1);
    background: #1a8fe3;
    box-shadow: 0 10px 20px rgba(19, 124, 197, 0.2);
}

.work-option:hover .option-icon i {
    transform: rotate(0deg) scale(1.1);
}

.work-option h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.work-option p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    position: relative;
    z-index: 2;
}

.option-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.6rem;
    color: #444;
    font-size: 0.9rem;
}

.option-features li i {
    color: #137cc5;
    font-size: 0.85rem;
}

.work-option-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1.3rem;
    background: transparent;
    border: 2px solid #137cc5;
    color: #137cc5;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.work-option-btn:hover {
    background: #137cc5;
    color: white;
    transform: translateY(-2px);
}

.work-option-btn i {
    transition: transform 0.3s ease;
}

.work-option-btn:hover i {
    transform: translateX(5px);
}

.work-option.featured {
    background: linear-gradient(145deg, #137cc5, #1a8fe3);
    color: white;
    box-shadow: 0 12px 32px rgba(19, 124, 197, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.work-option.featured::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
}

.work-option.featured h3,
.work-option.featured p {
    color: white;
}

.work-option.featured .option-features li {
    color: rgba(255, 255, 255, 0.9);
}

.work-option.featured .option-features li i {
    color: white;
}

.work-option.featured .option-icon {
    background: white;
}

.work-option.featured .option-icon i {
    color: #137cc5;
}

.work-option.featured .work-option-btn {
    background: white;
    color: #137cc5;
    border-color: white;
}

.work-option.featured .work-option-btn:hover {
    background: transparent;
    color: white;
}

/* Recommended Badge */
.recommended-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 0.4rem 0.85rem;
    border-radius: 18px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recommended-badge i {
    font-size: 0.8rem;
    color: #ff6b00;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(255, 215, 0, 0.6);
    }
}

/* Enhanced Premium Styling - Additional refinements */
.work-option:hover {
    box-shadow: 0 24px 48px rgba(19, 124, 197, 0.15);
    border-color: rgba(19, 124, 197, 0.3);
}

.work-option.featured:hover {
    box-shadow: 0 28px 56px rgba(19, 124, 197, 0.35);
    transform: translateY(-12px) scale(1.02);
}

.option-features {
    margin-bottom: 2.5rem;
}

.option-features li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(19, 124, 197, 0.08);
}

.option-features li:last-child {
    border-bottom: none;
}

.work-option.featured .option-features li {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 992px) {
    .work-with-me-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .work-with-me-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .work-option {
        padding: 2rem;
    }

    .option-icon {
        width: 50px;
        height: 50px;
    }

    .option-icon i {
        font-size: 1.3rem;
    }

    .work-option h3 {
        font-size: 1.3rem;
    }
}

.calendly-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
    width: 100%;
    padding: 0;
}

.calendly-wrapper {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(19, 124, 197, 0.15);
    padding: 2rem;
    border: 2px solid rgba(19, 124, 197, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.calendly-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #137cc5, #1a8fe3, #137cc5);
    z-index: 1;
}

.calendly-inline-widget {
    border-radius: 16px;
    overflow: hidden;
    min-height: 700px;
    background: #ffffff;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
    width: 100%;
}

.calendly-inline-widget iframe {
    border-radius: 16px;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    display: block;
}

.calendly-wrapper:hover {
    box-shadow: 0 24px 70px rgba(19, 124, 197, 0.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Force Calendly widget to be responsive */
.calendly-inline-widget,
.calendly-inline-widget > div,
.calendly-inline-widget iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

/* Prevent horizontal scroll in schedule section */
.schedule-meeting {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.schedule-meeting * {
    max-width: 100%;
    box-sizing: border-box;
}

.schedule-meeting {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 5% 5rem 5%;
    margin: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0) 0%,
        rgba(19, 124, 197, 0.02) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

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

@media (max-width: 768px) {
    .schedule-meeting {
        padding: 3rem 0 0;
    }
    .calendly-container {
        min-height: 550px;
    }
}

.section-description {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

@media (max-width: 768px) {
    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .calendly-wrapper {
        padding: 1rem;
    }

    .calendly-inline-widget {
        min-height: 600px;
    }
}

/* Responsive Design Improvements */
@media (max-width: 1200px) {
    .container {
        padding: 0 5%;
    }

    .hero-container {
        gap: 2rem;
    }

    .projects-grid {
        padding: 1rem;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 4rem 5%;
    }

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

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

    .about-content {
        gap: 3rem;
    }

    .services-grid,
    .achievements-grid,
    .different-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 5%;
    }

    .hero {
        min-height: auto;
        padding-top: 6rem;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

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

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

    .hero-text {
        font-size: 1rem;
        margin: 0 auto 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
    }

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

    .services-grid,
    .achievements-grid,
    .different-grid,
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .projects-grid {
        padding: 0.5rem;
        gap: 1rem;
    }

    .project-card {
        min-width: 300px;
        padding: 1.5rem;
    }

    .project-image {
        height: 180px;
    }

    .project-buttons {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.8rem;
    }
    
    .project-link {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

    .section-tag {
        font-size: 1.5rem;
    }

    .worked-with {
        padding: 1rem 5%;
    }

    .company-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2.5rem 5%;
    }

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

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

    .project-card {
        min-width: 260px;
        height: auto;
    }

    .tech-stack {
        gap: 0.5rem;
    }

    .tech-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .section-tag {
        font-size: 1.3rem;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Large Tablets and Small Desktops (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        padding: 0 4%;
    }

    .hero-container {
        gap: 2rem;
    }

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

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .work-with-me-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .partnerships-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .different-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .work-with-me-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .calendly-container {
        padding: 1.5rem;
    }
}

/* Mobile Landscape and Small Tablets (600px - 768px) */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 1rem 4%;
    }

    .logo {
        font-size: 1.4rem;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 5rem 4% 2rem;
    }

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

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

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

    .hero-text {
        font-size: 0.95rem;
        margin: 0 auto 1.5rem;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .cta-button {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-image {
        max-width: 280px;
        margin: 0 auto;
    }

    /* About Section */
    .about {
        padding: 3rem 4%;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .stat-item {
        width: 100%;
    }

    /* Industries */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .industry-item {
        padding: 1.2rem;
    }

    /* Partnerships */
    .partnerships {
        padding: 3rem 4%;
    }

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

    .partnership-card {
        padding: 1rem;
    }

    .partner-logo {
        max-height: 50px;
    }

    /* Services/What I Offer */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Certifications */
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .certification-card {
        padding: 1.5rem;
    }

    /* Tools */
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .tool-item {
        padding: 1rem;
    }

    /* Recommendations */
    .recommendations {
        padding: 3rem 4%;
    }

    .recommendations-content {
        padding: 1rem;
    }

    .recommendation-card {
        padding: 1.5rem;
    }

    .recommender-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .recommender-image {
        margin: 0 auto;
    }

    .slider-nav {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .prev-btn {
        left: -10px;
    }

    .next-btn {
        right: -10px;
    }

    /* Experience */
    .experience {
        padding: 3rem 4%;
    }

    .experience-item {
        padding-left: 2rem;
    }

    .company-info h3 {
        font-size: 1.1rem;
    }

    .company-info h4 {
        font-size: 1rem;
    }

    .responsibility-list li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    /* Projects */
    .projects {
        padding: 3rem 4%;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        min-width: auto;
        width: 100%;
    }

    .project-image {
        height: 180px;
    }

    .project-content {
        padding: 1.2rem;
    }

    .project-content h3 {
        font-size: 1.1rem;
    }

    .project-description {
        font-size: 0.9rem;
        min-height: auto;
    }

    .project-buttons {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.8rem;
    }
    
    .project-link {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

    .project-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* What Makes Me Different */
    .different-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .different-item {
        padding: 1.5rem;
    }

    /* Work With Me */
    .work-with-me {
        padding: 3rem 4%;
    }

    .work-with-me-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .work-option {
        padding: 1.8rem;
    }

    .option-features li {
        font-size: 0.85rem;
    }

    /* Schedule Meeting */
    .schedule-meeting {
        padding: 2rem 4% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box;
    }

    .schedule-meeting .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
    }

    .calendly-container {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
        max-width: 100% !important;
    }

    .calendly-wrapper {
        padding: 1rem;
        width: 100% !important;
        box-sizing: border-box;
        max-width: 100% !important;
    }

    .calendly-inline-widget {
        min-height: 600px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .calendly-inline-widget iframe {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 600px !important;
        display: block !important;
    }

    /* Quick Contact */
    .quick-contact {
        padding: 2rem 4%;
    }

    .quick-contact-header h3 {
        font-size: 1.5rem;
    }

    .quick-contact-header p {
        font-size: 0.9rem;
    }

    .quick-contact-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .contact-details p {
        font-size: 0.85rem;
    }

    /* Section Tags */
    .section-tag {
        font-size: 1.3rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    /* Container */
    .container {
        padding: 0 4%;
    }
}

/* Mobile Portrait (320px - 600px) */
@media (max-width: 600px) {
    /* Header */
    .header {
        padding: 0.8rem 3%;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* Hero */
    .hero {
        padding: 4rem 3% 1.5rem;
    }

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

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

    .hero-text {
        font-size: 0.9rem;
    }

    .hero-image {
        max-width: 240px;
    }

    /* Industries */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .industry-item {
        padding: 1rem 0.8rem;
    }

    .industry-icon {
        width: 32px;
        height: 32px;
    }

    .industry-name {
        font-size: 0.85rem;
    }

    /* Partnerships */
    .partnerships-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .partnership-card {
        padding: 0.8rem;
    }

    .partner-logo {
        max-height: 40px;
    }

    .partner-name {
        font-size: 0.85rem;
    }

    .partner-type {
        font-size: 0.75rem;
    }

    /* Services */
    .service-card {
        padding: 1.2rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    /* Certifications */
    .certification-card {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
    }

    .certification-icon {
        margin: 0 auto 1rem;
    }

    .certification-content h3 {
        font-size: 1.1rem;
    }

    /* Tools */
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tool-logo {
        width: 48px;
        height: 48px;
    }

    .tool-name {
        font-size: 0.85rem;
    }

    /* Recommendations */
    .recommendation-card {
        padding: 1.2rem;
    }

    .recommendation-content p {
        font-size: 0.9rem;
    }

    /* Experience */
    .experience-item {
        padding-left: 1.5rem;
    }

    .view-more-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Projects */
    .project-image {
        height: 150px;
    }

    .project-content {
        padding: 1rem;
    }

    .tech-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    /* Different */
    .different-item {
        padding: 1.2rem;
    }

    .different-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .different-item h3 {
        font-size: 1.1rem;
    }

    .different-item p {
        font-size: 0.85rem;
    }

    /* Work Options */
    .work-option {
        padding: 1.5rem;
    }

    .option-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .work-option h3 {
        font-size: 1.1rem;
    }

    .work-option p {
        font-size: 0.85rem;
    }

    .work-option-btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
    }

    .recommended-badge {
        top: 10px;
        right: 10px;
        padding: 0.3rem 0.7rem;
        font-size: 0.7rem;
    }

    /* Schedule Meeting */
    .schedule-meeting {
        padding: 1.5rem 3% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box;
    }

    .schedule-meeting .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
    }

    .calendly-container {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
        max-width: 100% !important;
    }

    .calendly-wrapper {
        padding: 0.8rem;
        width: 100% !important;
        box-sizing: border-box;
        border-radius: 12px;
        max-width: 100% !important;
    }

    .calendly-inline-widget {
        min-height: 550px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .calendly-inline-widget iframe {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 550px !important;
        border: none !important;
    }

    .section-description {
        font-size: 0.85rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }

    /* Quick Contact */
    .quick-contact {
        padding: 1.5rem 3%;
    }

    .quick-contact-header h3 {
        font-size: 1.3rem;
    }

    .quick-contact-header p {
        font-size: 0.85rem;
    }

    .contact-card {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .contact-icon.signal img {
        width: 32px;
        height: 32px;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.8rem;
    }

    /* Section Tags */
    .section-tag {
        font-size: 1.1rem;
    }

    .section-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Container */
    .container {
        padding: 0 3%;
    }

    /* Scroll to top */
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 1rem;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
    }

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

    .section-tag {
        font-size: 1rem;
    }

    .partnerships-grid,
    .industries-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 0.8rem;
    }
}

/* Additional Responsive Fixes */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    /* Text overflow fixes */
    .partner-name,
    .partner-type,
    .recommender-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Partnership cards responsive */
    .partnership-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .partner-logo {
        margin: 0 auto;
    }

    /* Experience timeline mobile */
    .experience-timeline {
        padding-left: 1.5rem;
    }

    .experience-item::before {
        left: -5px;
        width: 12px;
        height: 12px;
    }

    /* About stats mobile */
    .about-stats {
        flex-direction: column;
        align-items: center;
    }

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

    /* Section headers */
    .different-header,
    .methodology-header,
    .certifications-header,
    .tools-header,
    .recommendations-header,
    .experience-header,
    .projects-header,
    .partnerships-header,
    .industries-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    /* Calendly responsive */
    .calendly-inline-widget {
        min-height: 600px !important;
        width: 100% !important;
    }

    .calendly-inline-widget iframe {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 600px !important;
    }

    .calendly-container {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .calendly-wrapper {
        width: 100%;
        padding: 1rem;
        border-radius: 16px;
    }

    .schedule-meeting .container {
        width: 100%;
        padding: 0;
        max-width: 100%;
    }

    .section-description {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    /* Further reduce padding on very small screens */
    .section,
    .about,
    .projects,
    .partnerships,
    .industries,
    .certifications,
    .tools-expertise,
    .recommendations,
    .experience,
    .what-makes-different,
    .work-with-me,
    .schedule-meeting,
    .quick-contact {
        padding-left: 3% !important;
        padding-right: 3% !important;
    }

    /* Reduce font sizes further */
    .hero-title {
        font-size: 1.6rem;
    }

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

    h3 {
        font-size: 1.2rem;
    }

    /* Compact cards */
    .partnership-card,
    .service-card,
    .certification-card,
    .work-option {
        padding: 1rem;
    }

    /* Smaller icons on mobile */
    .service-icon,
    .certification-icon,
    .different-icon,
    .option-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 3rem 4%;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
    }

    .hero-image {
        max-width: 200px;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .nav-links {
        height: -webkit-fill-available;
    }
}

/* ============================================
   MODERN ANIMATIONS & HOVER EFFECTS
   ============================================ */

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

/* Enhanced Service Cards with Modern Animations */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(19, 124, 197, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(19, 124, 197, 0.2);
}

.service-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #137cc5, #1a8fe3);
}

.service-card:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

/* Enhanced Project Cards - Additional animations already in main styles */

/* Enhanced Certification Cards */
.certification-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(19, 124, 197, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.certification-card:hover::before {
    width: 300px;
    height: 300px;
}

.certification-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 15px 40px rgba(19, 124, 197, 0.2);
}

/* Enhanced Partnership Cards */
.partnership-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partnership-card:hover {
    transform: translateY(-8px) translateX(5px);
    box-shadow: 0 12px 35px rgba(19, 124, 197, 0.2);
}

.partner-logo {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partnership-card:hover .partner-logo {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 5px 10px rgba(19, 124, 197, 0.2));
}

/* Enhanced Work Option Cards */
.work-option {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.work-option::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(19, 124, 197, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.work-option:hover::before {
    opacity: 1;
}

.work-option:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(19, 124, 197, 0.25);
    border-color: #137cc5;
}

.work-option-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.work-option:hover .work-option-icon {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, #137cc5, #1a8fe3);
}

.work-option:hover .work-option-icon i {
    color: white;
    transform: scale(1.1);
}

/* Enhanced Contact Cards */
.contact-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #137cc5, #1a8fe3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(19, 124, 197, 0.25);
}

.contact-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Enhanced Buttons */
.cta-button,
.work-option-btn,
.view-more-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-button::after,
.work-option-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::after,
.work-option-btn:hover::after {
    width: 300px;
    height: 300px;
}

.cta-button:hover,
.work-option-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Enhanced Navigation Links */
.nav-links a {
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #137cc5, #1a8fe3);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    transform: translateY(-2px);
    color: #137cc5;
}

/* Enhanced Experience Items */
.experience-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.experience-company {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.experience-item:hover .experience-company {
    transform: translateX(10px);
    border-left-width: 6px;
}

.experience-item::before {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.experience-item:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(19, 124, 197, 0.5);
}

/* Enhanced Recommendation Cards */
.recommendation-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.recommendation-card:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 15px 40px rgba(19, 124, 197, 0.2);
}

.recommender-image {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.recommendation-card:hover .recommender-image {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(19, 124, 197, 0.3);
}

/* Enhanced Tool Items */
.tool-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tool-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.tool-item:hover .tool-logo {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 15px rgba(19, 124, 197, 0.3));
}

/* Scroll-triggered animations */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Gradient animation for backgrounds */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Pulse animation for icons */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Enhanced Section Headers */
.section-tag {
    transition: all 0.3s ease;
    display: inline-block;
}

.section-tag:hover {
    transform: scale(1.05);
    color: #137cc5;
}

/* Enhanced Stats */
.stat-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.stat-item:hover .stat-number {
    color: #137cc5;
    transform: scale(1.1);
}

.stat-number {
    transition: all 0.3s ease;
}

/* Smooth icon animations */
.fas, .fab {
    transition: all 0.3s ease;
}

/* Enhanced hover for links */
a {
    transition: all 0.3s ease;
}

a:hover {
    color: #137cc5;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

/* Prevent animation on mobile for performance */
@media (max-width: 768px) {
    .service-card:hover,
    .project-card:hover,
    .certification-card:hover,
    .partnership-card:hover,
    .work-option:hover,
    .contact-card:hover {
        transform: translateY(-3px);
    }
    
    .service-card:hover .service-icon,
    .work-option:hover .work-option-icon {
        transform: scale(1.1);
    }
    
    /* Reduce animation complexity on mobile */
    .service-card::before,
    .project-card::after,
    .certification-card::before,
    .work-option::before {
        display: none;
    }
    
    /* Optimize project cards for mobile */
    .project-card {
        min-width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 540px;
    }
    
    .project-content {
        padding: 1.5rem 1.5rem 2rem 1.5rem;
        gap: 0.8rem;
    }
    
    .project-description {
        min-height: 90px;
    }
    
    .project-card::before {
        display: block;
    }
    
    .project-card:hover {
        transform: translateY(-5px);
    }
    
    .project-card:hover .project-image img {
        transform: scale(1.05);
    }
}

/* Honors & Awards Section */
.honors-awards {
    padding: 5rem 0 0.5rem 0;
    background: transparent;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.award-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(19, 124, 197, 0.12);
    border-color: rgba(19, 124, 197, 0.2);
}

.award-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(19, 124, 197, 0.1) 0%, rgba(19, 124, 197, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #137cc5;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.award-card:hover .award-icon {
    background: linear-gradient(135deg, rgba(19, 124, 197, 0.15) 0%, rgba(19, 124, 197, 0.2) 100%);
    transform: scale(1.1);
}

.award-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.award-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.award-issuer {
    font-size: 0.9rem;
    color: #137cc5;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
}

.award-date {
    font-size: 0.85rem;
    color: #999;
    margin: 0 0 1rem 0;
}

.award-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

@media (max-width: 992px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .honors-awards {
        padding: 3rem 0;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .award-card {
        padding: 1.5rem;
    }
    
    .award-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .award-content h3 {
        font-size: 1rem;
    }
}

/* Footer */
.main-footer {
    background: transparent;
    padding: 1rem 0;
    margin-top: 0;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.main-footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.main-footer strong {
    color: #137cc5;
    font-weight: 600;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 1rem 0;
        margin-top: 0;
    }
    
    .main-footer p {
        font-size: 0.85rem;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}