/* Base Styles */
:root {
    --primary-color: #3a86ff;
    --primary-dark: #2667cc;
    --secondary-color: #8338ec;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --white-color: #ffffff;
    --black-color: #000000;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-dark: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: var(--white-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--primary-color);
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
}

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

.btn.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn.small {
    padding: 0.8rem 1.8rem;
    font-size: 1.4rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    transition: var(--transition);
}

.header.scrolled .navbar {
    padding: 1rem 0;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links li a {
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%), url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
}

.subtitle {
    font-size: 2rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.title {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInDown 1s ease 0.2s forwards;
    opacity: 0;
}

.job-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 500;
    animation: fadeInDown 1s ease 0.4s forwards;
    opacity: 0;
}

.description {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    max-width: 600px;
    animation: fadeInDown 1s ease 0.6s forwards;
    opacity: 0;
}

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

.image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow-dark);
    animation: fadeIn 1s ease 0.5s forwards, float 6s ease-in-out infinite;
    opacity: 0;
}

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

.tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.tech-icons i {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-color);
    background-color: var(--white-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    animation: float 6s ease-in-out infinite;
}

.tech-icons i:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.tech-icons i:nth-child(2) {
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

.tech-icons i:nth-child(3) {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

.tech-icons i:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

.tech-icons i:nth-child(5) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.tech-icons i.spin {
    animation: spin 10s linear infinite;
}

.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 400px;
    border-radius: 10px;
    box-shadow: var(--box-shadow-dark);
    transition: var(--transition);
}

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

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.personal-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item span {
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--dark-color);
}

.info-item p {
    font-size: 1.6rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin: 3rem 0;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* Skills Section */
.skills-content {
    margin-top: 5rem;
}

.skills-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.skills-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.skills-text p {
    font-size: 1.6rem;
}

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

.skill-category {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.skill-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-dark);
}

.skill-category h4 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-info span {
    font-size: 1.4rem;
}

.progress-bar {
    height: 8px;
    background-color: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: width 1.5s ease;
}

/* Projects Section */
.projects-content {
    margin-top: 5rem;
}

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

.filter-btn {
    padding: 0.8rem 2rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.project-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-dark);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 134, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-links {
    opacity: 1;
}

.project-link {
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.project-link:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

.project-info {
    padding: 2rem;
}

.project-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.project-tech span {
    font-size: 1.2rem;
    background-color: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

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

/* Experience Section */
.experience-content {
    margin-top: 5rem;
}

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

.tab-btn {
    padding: 1rem 2.5rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

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

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

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 3rem;
}

.timeline-date {
    position: absolute;
    top: 0;
    width: 120px;
    text-align: center;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 30px;
    font-size: 1.4rem;
    font-weight: 500;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -130px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -130px;
}

.timeline-content {
    width: calc(50% - 4rem);
    padding: 2rem;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: var(--white-color);
    transform: rotate(45deg);
    z-index: -1;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

.timeline-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-content h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.timeline-content ul {
    margin-left: 2rem;
}

.timeline-content ul li {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

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

.certification-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.certification-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.certification-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.certification-info p {
    font-size: 1.4rem;
    color: var(--gray-color);
}

/* Commercial Projects */
.commercial-projects-content {
    margin-top: 5rem;
}

.projects-slider {
    padding: 2rem;
}

.commercial-project-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin: 1rem;
}

.commercial-project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-dark);
}

.commercial-project-card .project-image {
    height: 200px;
}

.commercial-project-card .project-info {
    text-align: center;
}

.commercial-project-card .project-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.commercial-project-card .project-info p {
    font-size: 1.4rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--light-gray);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 5rem;
    margin-top: 5rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.info-text p {
    font-size: 1.6rem;
    margin: 0;
    color: var(--gray-color);
}

.contact-form {
    flex: 1;
    background-color: var(--white-color);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1.6rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

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

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 5rem 0 0;
}

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

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo .logo {
    color: var(--white-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    font-size: 1.6rem;
    opacity: 0.8;
}

.footer-links h3,
.footer-skills h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-links h3::after,
.footer-skills h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    font-size: 1.6rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-skills ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-skills ul li {
    font-size: 1.4rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 1.4rem;
    opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

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

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

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

    .about-content {
        flex-direction: column;
    }

    .personal-info {
        grid-template-columns: 1fr;
    }

    .contact-content {
        flex-direction: column;
    }

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

    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 8rem !important;
        padding-right: 0 !important;
    }

    .timeline-item:nth-child(odd) .timeline-date,
    .timeline-item:nth-child(even) .timeline-date {
        left: -1.75rem;
        right: auto;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
    }
}

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

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transition: var(--transition);
        z-index: 999;
    }

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

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

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

@media (max-width: 576px) {
    .section {
        padding: 5rem 0;
    }

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

    .title {
        font-size: 4rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

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

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  animation: modalFadeIn 0.4s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}

.modal-content {
  background: white;
  margin: 2% auto;
  padding: 0;
  width: 90%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.3);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.form-header {
  padding: 25px;
  background: linear-gradient(135deg, #3a86ff 0%, #8338ec 100%);
  color: white;
}

.form-header h3 {
  margin: 0 0 10px;
  font-size: 2.2rem;
}

.form-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 1.4rem;
}

.form-header a {
  color: white;
  text-decoration: underline;
}

.form-container {
  height: 70vh;
  overflow-y: auto;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.close-btn:hover {
  transform: rotate(90deg) scale(1.1);
}

/* Contact Button */
.contact-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #3a86ff 0%, #8338ec 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(58, 134, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(58, 134, 255, 0.6);
}

.contact-button i {
  font-size: 1.8rem;
}

/* Animations */
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 5% auto;
  }
  
  .form-container {
    height: 60vh;
  }
  
  .contact-button {
    bottom: 20px;
    right: 20px;
    padding: 14px 22px;
    font-size: 1.4rem;
  }
}