/* Global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: white; 
}

/* Hero Section */
/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Background Shapes Animation */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-shapes div {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: #ff9e00;
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: #00d2ff;
    bottom: -150px;
    right: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #ff00aa;
    top: 50%;
    right: 20%;
    animation: float 7s ease-in-out infinite 2s;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    color: white;
}

.logo span {
    position: relative;
    z-index: 2;
}

.logo-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 2s infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9e00, #ff006a);
    transition: width 0.3s ease;
}

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

/* Menu Icon */
.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
}

.bar {
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Content */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-top: 50px;
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.intro-wrapper {
    overflow: hidden;
}

.intro-text {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.greeting {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.name-animation {
    position: relative;
    display: inline-block;
}

.name {
    background: linear-gradient(90deg, #ff9e00, #ff006a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 50px;
    background: white;
    margin-left: 5px;
    animation: blink 0.8s infinite;
    vertical-align: middle;
}

.profession {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    position: relative;
    padding-left: 20px;
}

.profession::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 3px;
    background: linear-gradient(90deg, #ff9e00, #ff006a);
}

/* Call to Action Button */
.btn-container {
    margin: 40px 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: linear-gradient(90deg, #ff9e00, #ff006a);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 0, 106, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 106, 0.3);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff006a, #ff9e00);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn:hover::before {
    opacity: 1;
}

.arrow-wrapper {
    width: 20px;
    height: 20px;
    position: relative;
}

.arrow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.arrow::before, .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    width: 10px;
    height: 2px;
    background: white;
    transform-origin: right center;
}

.arrow::before {
    transform: rotate(45deg) translateY(-3px);
}

.arrow::after {
    transform: rotate(-45deg) translateY(3px);
}

.cta-btn:hover .arrow {
    transform: translate(5px, -50%);
}



/* Profile Image */
.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.profile-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

.profile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff9e00, #ff006a);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    opacity: 0.1;
    animation: morph 8s ease-in-out infinite;
}

.tech-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 4;
    animation: float 4s ease-in-out infinite;
}

.bubble-1 {
    top: 20px;
    right: 0;
    animation-delay: 0s;
}

.bubble-2 {
    bottom: 50px;
    left: 0;
    animation-delay: 1s;
}

.bubble-3 {
    bottom: 20px;
    right: 30px;
    animation-delay: 2s;
}

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

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .text-content {
        max-width: 100%;
    }
    
    .profession::before {
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        top: -15px;
    }
    
    .btn-container {
        display: flex;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .profile-wrapper {
        width: 300px;
        height: 300px;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 90;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .menu-icon.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-icon.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-icon.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero-section {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .intro-text {
        font-size: 2.5rem;
    }
    
    .greeting {
        font-size: 1.2rem;
    }
    
    .profession {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .profile-wrapper {
        width: 250px;
        height: 250px;
    }
}

/* Skills Section */
#skills {
    background-color: #f9f9f9; 
    text-align: center;
    padding: 80px 20px;
}

#skills h2 {
    font-size: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-bottom: 50px;
    color: #007bff; 
    position: relative;
    display: inline-block;
}

#skills h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background-color: #007bff;
    transform: translateX(-50%);
    border-radius: 2px;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.skill-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.skill:hover .skill-icon {
    transform: scale(1.1);
}

.skill p {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    #skills h2 {
        font-size: 32px;
    }

    .skill {
        width: 100px;
        padding: 15px;
    }

    .skill p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    #skills h2 {
        font-size: 28px;
    }

    .skill {
        width: 80px;
        padding: 10px;
    }

    .skill p {
        font-size: 14px;
    }
}

/* About Section Styling */
#about {
    padding: 60px 0;
    background: #f9f9f9;
}
.pull-right {
    color: black;
}
.about-mf {
    margin-top: 30px;
}

.box-shadow-full {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    background: #fff;
}

.about-img img {
    max-width: 80%;
    border-radius: 50%;
    background-color: black;
}

.about-info {
    margin-top: 20px;
}
span{
    color: #333;
}

.title-s {
    font-weight: 700;
    color: #333;
}

.skill-mf {
    margin-top: 30px;
   
}
.skill-mf span{
    color: black;
}

.skill-mf .progress {
    height: 10px;
    margin-bottom: 20px;
    background: #e0e0e0;
}

.skill-mf .progress-bar {
    background:#007bff;
}

.about-me {
    margin-top: 30px;
}

.title-box-2 {
    margin-bottom: 20px;
}

.title-left {
    font-weight: 700;
    font-size: 28px;
    color: #333;
}

.lead {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.line-mf {
    width: 60px; /* Adjust width as needed */
    height: 4px;
    background-color: blue; 
    margin: 10px 0 20px; /* Adjust margins as needed */
}

.button-container {
    text-align: center; /* Center align the button */
    margin-top: 20px; /* Adjust top margin as needed */
}

.btn-primary {
    background-color: #007bff; /* Blue color */
    color: #fff; /* Text color */
    border-radius: 25px; /* Rounded corners */
    padding: 10px 20px; /* Padding inside button */
    font-size: 16px; /* Button text size */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

.btn-primary:hover {
    background-color:yellowgreen; /* Darker blue on hover */
}

.gradient-bg {
    background-image: linear-gradient(to right, green);
    color: #fff; 
    transition: background-image 0.3s ease; 
}

.gradient-bg:hover {
    background-image: linear-gradient(to right,yellowgreen,yellowgreen); 
}

/* Responsive Styling */
@media (max-width: 768px) {
    .about-img img {
        margin: 0 auto;
    }

    .about-info {
        /* text-align: center; */
        position: relative;
        left: 0;
    }

    .skill-mf .progress-bar {
        width: 100% !important;
    }

    .about-me {
        /* text-align: center; */
        position: relative;
        left: 0;
    }
}


/* Education section */
#Education {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

#Education::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" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>');
    background-size: cover;
    z-index: 0;
}

.educationContent {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
    animation: fadeIn 1.2s ease-out;
}

.sectionHeader {
    margin-bottom: 40px;
}

.sectionHeader h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(90deg, #ffcc00, #ffde59);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: slideInLeft 0.8s ease-out;
}

.divider {
    height: 4px;
    width: 120px;
    background: linear-gradient(90deg, #ffcc00, transparent);
    border-radius: 2px;
    animation: expand 1s ease-out;
}

.educationItem {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.degreeInfo h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
}

.institution {
    font-size: 1.3rem;
    color: #aad3ff;
    margin-bottom: 5px;
    font-weight: 400;
}

.duration {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.coursesSection {
    animation: fadeInUp 1.2s ease-out;
}

.coursesSection h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
}

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

.courseCategory {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    border-left: 3px solid #ffcc00;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.courseCategory h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffde59;
    position: relative;
    padding-bottom: 10px;
}

.courseCategory h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffde59;
}

.courseCategory ul {
    list-style: none;
    padding-left: 0;
}

.courseCategory li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #e0e0e0;
}

.courseCategory li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffcc00;
    font-weight: bold;
}

.imageUet {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.imageUet img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.imageUet:hover img {
    transform: scale(1.03);
}

.universityBadge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #1a1a1a;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.universityBadge span:last-child {
    font-size: 0.8rem;
    opacity: 0.8;
}

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

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

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

@keyframes expand {
    from { width: 0; }
    to { width: 120px; }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .educationContent {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .imageUet {
        order: -1;
        margin-bottom: 30px;
    }
    
    .sectionHeader h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .educationContent {
        padding: 30px;
    }
    
    .sectionHeader h2 {
        font-size: 2.2rem;
    }
    
    .degreeInfo h3 {
        font-size: 1.6rem;
    }
    
    .courseGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    #Education {
        padding: 60px 15px;
    }
    
    .educationContent {
        padding: 25px;
    }
    
    .sectionHeader h2 {
        font-size: 2rem;
    }
    
    .degreeInfo h3 {
        font-size: 1.4rem;
    }
    
    .institution {
        font-size: 1.1rem;
    }
}
/* contact section */
#contact {
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.6);
}

.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

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

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 12px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #0056b3;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007bff;
}

footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #ccc;
}
/* Project styling */
/* Projects Section Styles */
.projects-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: #3498db;
}

.section-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

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

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.project-image {
    position: relative;
    height: 220px;
    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.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech span {
    background: rgba(52, 152, 219, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.project-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.project-links {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #3498db;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.project-btn.secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.project-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.project-btn.secondary:hover {
    background: #d5dbdb;
}

/* Font Awesome Icons (add this to your head if not already included) */
/* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> */

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 70px 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}
/* Animations */
