/* Base Styles */
:root {
    --primary-color: #1a73e8;
    --secondary-color: #0d47a1;
    --accent-color: #ff6d00;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Button styling */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #ff6d00;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.3);
}

    .btn-primary:hover {
        background-color: #e66100;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 109, 0, 0.4);
    }

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-outline:hover {
        background-color: white;
        color: #ff6d00;
        transform: translateY(-2px);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="white" stroke-opacity="0.1" stroke-width="1"/></svg>');
        opacity: 0.1;
    }

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-family: 'Poppins', sans-serif;
}

.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Highlights */
.about-highlights {
    padding: 80px 0;
    background-color: white;
}

.highlight-card {
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background: white;
    margin-bottom: 30px;
}

    .highlight-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }

    .highlight-card i {
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .highlight-card h3 {
        color: var(--secondary-color);
        margin-bottom: 15px;
    }

/* Skills Section */
.skills-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

    .skills-section h2 {
        font-family: 'Poppins', sans-serif;
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 50px;
        color: var(--secondary-color);
    }

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

.skill-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

    .skill-card h3 {
        font-family: 'Poppins', sans-serif;
        color: var(--primary-color);
        margin-bottom: 20px;
        font-size: 1.5rem;
    }

    .skill-card ul {
        list-style: none;
        padding: 0;
    }

    .skill-card li {
        padding: 8px 0;
        border-bottom: 1px solid var(--light-gray);
    }

        .skill-card li:last-child {
            border-bottom: none;
        }

/* Call to Action */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6d00 0%, #ff9800 100%);
    color: white;
    text-align: center;
}

    .cta-section h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-family: 'Poppins', sans-serif;
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

    .btn-primary:hover {
        background-color: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

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

    .btn-outline:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

.btn-lg {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        font-family: 'Poppins', sans-serif;
    }

    .hero-content p {
        font-size: 1.2rem;
        font-family: 'Poppins', sans-serif;
    }

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

        .hero-buttons .btn {
            width: 80%;
            max-width: 300px;
        }

    .skills-section h2 {
        font-size: 2rem;
        font-family: 'Poppins', sans-serif;
    }

    .cta-section h2 {
        font-size: 2rem;
        font-family: 'Poppins', sans-serif;
    }

    .highlight-card {
        padding: 20px 15px;
    }

    .skill-card {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
        font-family: 'Poppins', sans-serif;
    }

    .hero-content p {
        font-size: 1rem;
        font-family: 'Poppins', sans-serif;
    }

    .skills-section {
        padding: 50px 0;
    }

        .skills-section h2 {
            font-size: 1.8rem;
            font-family: 'Poppins', sans-serif;
        }

    .cta-section {
        padding: 50px 0;
    }

        .cta-section h2 {
            font-size: 1.5rem;
        }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

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

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

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

/* Card Hover Animation */
.card-hover {
    transition: var(--transition);
}

    .card-hover:hover {
        transform: translateY(-10px);
    }
/* Navigation Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .logo-link:hover {
        color: #007bff;
    }

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 1rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link:hover {
        color: #007bff;
        background-color: #f8f9fa;
    }

    /* Active link styling */
    .nav-link.active {
        color: #007bff;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
    }

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }
}

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

/* Ensure proper spacing */
body {
    margin-top: 70px; /* Height of header */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    .logo-link {
        font-size: 1.2rem;
        font-family: 'Poppins', sans-serif;
    }
}

/* Modern Contact Card Styling */
.contact-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    max-width: 400px;
    margin: 20px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .contact-card img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
        border: 3px solid #007bff;
    }

    .contact-card .card-header {
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }

    .contact-card .card-text {
        font-size: 1rem;
        color: #555;
        margin-bottom: 15px;
    }

    .contact-card .card-footer {
        padding: 15px 0;
        border-top: 1px solid #eee;
    }

    .contact-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .contact-card li {
        margin: 10px 0;
    }

    .contact-card a {
        text-decoration: none;
        color: #007bff;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: color 0.3s ease;
    }

        .contact-card a:hover {
            color: #0056b3;
        }
/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

    .mission-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
        text-align: center;
        color: #333;
    }

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

    .mission-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #666;
        margin-bottom: 20px;
    }
    .mission-content .mission-image {
        margin-bottom: 30px;
    }

    .mission-content .mission-image img {
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        max-width: 100px;
    }

.mission-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6d00;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1rem;
    color: #666;
}

/* Responsive styles */
@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

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

    .mission-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* About Content Section */
.about-content {
    padding: 50px 0;
}

    .about-content .section-title {
        margin-bottom: 20px;
    }

    .about-content .lead {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .about-content .about-image {
        margin-bottom: 30px;
    }

        .about-content .about-image img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

    .portfolio-section .section-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 60px;
        color: #333;
        font-family: 'Poppins', sans-serif;
    }

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

.portfolio-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

    .portfolio-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .portfolio-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

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

.portfolio-content {
    padding: 25px;
}

    .portfolio-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #333;
        font-family: 'Poppins', sans-serif;
    }

    .portfolio-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 0;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }

        .portfolio-section .section-title {
            font-size: 2rem;
            margin-bottom: 40px;
        }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

        .portfolio-section .section-title {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

    .portfolio-content {
        padding: 20px;
    }

        .portfolio-content h3 {
            font-size: 1.3rem;
        }
}
.card-list {
    list-style-type: disc; /* Optional: keeps bullet points */
    margin: 10px 0; /* Adds some spacing above and below */
    padding-left: 20px; /* Indents the list items */
}

    .card-list li {
        margin: 5px 0;
        font-size: 0.95rem;
    }