/* Styles for the body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a0f00 0%, #2e1a0a 50%, #3d2410 100%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    width: auto;
    min-height: 100vh;
    color: #f5e6d3;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
    color: #1a0f00;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    width: auto;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.4);
    backdrop-filter: blur(10px);
}

header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
    color: #1a0f00;
}

.header-subtitle {
    margin: 0;
    font-size: 1.2em;
    color: #422006;
    font-weight: 300;
}

nav {
    text-align: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #2e1a0a 0%, #3d2410 100%);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(145deg, #d97706, #f59e0b);
    color: #1a0f00;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
    border: 1px solid rgba(251, 191, 36, 0.3);
    font-weight: 500;
}

nav ul li a:hover {
    background: linear-gradient(145deg, #f59e0b, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.6);
    color: #1a0f00;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2e1a0a 0%, #3d2410 100%);
    padding: 80px 20px;
    text-align: center;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    color: #e0cdb0;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-subtitle {
    font-size: 1.1em;
    color: #e0cdb0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Featured Projects Grid */
.featured-projects {
    margin-bottom: 80px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: linear-gradient(145deg, #2e1a0a, #3d2410);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(217, 119, 6, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(217, 119, 6, 0.5);
}

.project-card.featured {
    border: 2px solid #fbbf24;
    background: linear-gradient(145deg, #3d2410, #4a2c14);
}

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

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    border-radius: 0;
    padding: 0;
    background: none;
    transition: transform 0.3s ease;
}

.project-image img:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.project-content {
    padding: 25px;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.project-header h3 {
    color: #fbbf24;
    font-size: 1.4em;
    margin: 0;
    min-width: 200px;
}

.project-badge {
    background: linear-gradient(145deg, #d97706, #f59e0b);
    color: #1a0f00;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    white-space: nowrap;
}

.project-badge.featured {
    background: linear-gradient(145deg, #fbbf24, #f59e0b);
    color: #1a0f00;
}

.project-badge.council {
    background: linear-gradient(145deg, #10b981, #059669);
    color: white;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.project-showcase-item.featured {
    border: 2px solid #fbbf24;
    background: linear-gradient(145deg, #3d2410, #4a2c14);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.project-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.achievement-highlights {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

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

.achievement-item i {
    color: #fbbf24;
    font-size: 1.2em;
    margin-top: 2px;
    min-width: 20px;
}

.achievement-item span {
    color: #f5e6d3;
    line-height: 1.5;
}

.achievement-item strong {
    color: #fbbf24;
    font-weight: 600;
}

.info-link {
    background: linear-gradient(145deg, #374151, #4b5563);
}

.info-link:hover {
    background: linear-gradient(145deg, #4b5563, #6b7280);
}

.featured-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.featured-achievement {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.featured-achievement i {
    color: #fbbf24;
    font-size: 1.1em;
}

.featured-achievement span {
    color: #cbd5e1;
    font-size: 0.9em;
    line-height: 1.4;
}

.project-links-featured {
    margin-top: 15px;
}

.project-link-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(145deg, #059669, #10b981);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9em;
    font-weight: 500;
}

.project-link-small:hover {
    background: linear-gradient(145deg, #047857, #059669);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.project-description {
    color: #f5e6d3;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.tech-tag {
    background: rgba(251, 191, 36, 0.15);
    color: #fcd34d;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85em;
    border: 1px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(251, 191, 36, 0.25);
    transform: translateY(-2px);
}

/* Project Showcase */
.all-projects {
    margin-bottom: 80px;
}

.project-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.project-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: linear-gradient(145deg, #2e1a0a, #3d2410);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(217, 119, 6, 0.3);
    transition: all 0.3s ease;
}

.project-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.4);
}

.project-showcase-item:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.project-showcase-item:nth-child(even) .project-media {
    order: 2;
}

.project-showcase-item:nth-child(even) .project-details {
    order: 1;
}

.project-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-media img,
.project-media video {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

.project-details .project-header {
    margin-bottom: 20px;
}

.project-year {
    background: linear-gradient(145deg, #374151, #4b5563);
    color: #d1d5db;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75em;
    margin-right: 10px;
}

.project-features {
    margin-top: 20px;
    padding: 20px;
    background: rgba(217, 119, 6, 0.15);
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
}

.project-features h4 {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.1em;
}

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

.project-features li {
    padding: 8px 0;
    color: #f5e6d3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-features li i {
    color: #fbbf24;
    width: 16px;
}

.project-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(145deg, #d97706, #f59e0b);
    color: #1a0f00;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.project-link:hover {
    background: linear-gradient(145deg, #f59e0b, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.6);
}

.play-link {
    background: linear-gradient(145deg, #059669, #10b981);
}

.play-link:hover {
    background: linear-gradient(145deg, #047857, #059669);
}

/* Technologies Section */
.technologies-section {
    margin-bottom: 60px;
}

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

.tech-category {
    background: linear-gradient(145deg, #2e1a0a, #3d2410);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(217, 119, 6, 0.3);
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
}

.tech-category h3 {
    color: #fbbf24;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2em;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

img{
    border: 3px solid #f59e0b;
    border-radius: 15px;
    box-shadow: 
        0 10px 30px rgba(217, 119, 6, 0.4),
        0 0 20px rgba(251, 191, 36, 0.3);
    max-width: 100%;
    display: block;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #2e1a0a, #3d2410);
    padding: 3px;
}

img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(217, 119, 6, 0.6),
        0 0 30px rgba(251, 191, 36, 0.5);
}

video {
    border: 3px solid #f59e0b;
    border-radius: 15px;
    box-shadow: 
        0 10px 30px rgba(217, 119, 6, 0.4),
        0 0 20px rgba(251, 191, 36, 0.3);
    max-width: 100%;
    display: block;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #2e1a0a, #3d2410);
    padding: 3px;
}

video:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(217, 119, 6, 0.6),
        0 0 30px rgba(251, 191, 36, 0.5);
}

/* Responsive Design */
@media only screen and (max-width: 767px) {
    header {
        padding: 20px 15px;
    }
    
    header h1 {
        font-size: 1.8em;
    }
    
    .header-subtitle {
        font-size: 1em;
    }
    
    nav ul {
        flex-direction: column;
        gap: 8px;
    }
    
    nav ul li a {
        padding: 10px 20px;
        width: 90%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .hero-section {
        padding: 40px 15px;
        margin: 15px 10px;
    }
    
    .hero-title {
        font-size: 2em !important;
    }
    
    .hero-description {
        font-size: 1em;
        padding: 0 10px;
    }
    
    .main-content {
        padding: 20px 10px;
    }
    
    .section-header h2 {
        font-size: 1.8em;
        flex-direction: column;
        gap: 10px;
    }
    
    .section-header .section-subtitle {
        font-size: 1em;
        padding: 0 15px;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .project-image {
        height: 180px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .project-header h3 {
        font-size: 1.2em;
        min-width: auto;
    }
    
    .project-showcase-item {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 20px;
    }
    
    .project-showcase-item:nth-child(even) .project-media,
    .project-showcase-item:nth-child(even) .project-details {
        order: initial;
    }
    
    .project-media img,
    .project-media video {
        max-width: 100%;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-category {
        padding: 20px;
    }
    
    .project-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .project-link {
        text-align: center;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
}

/* Adjustments for tablets and larger screens */
@media only screen and (min-width: 768px) {
    header {
        padding: 20px;
    }
    nav ul li a {
        padding: 15px 30px;
    }
    .main-content {
        padding: 40px 20px;
    }
}

/* Adjustments for laptops and desktops */
@media only screen and (min-width: 992px) {
    header {
        padding: 30px;
    }
    nav ul li a {
        padding: 20px 40px;
    }
    .main-content {
        padding: 40px 30px;
    }
}

/* Adjustments for extra-large screens */
@media only screen and (min-width: 1200px) {
    .main-content {
        max-width: 1400px;
    }
}

header {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
    color: #1a0f00;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    width: auto;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.4);
    backdrop-filter: blur(10px);
}
/* Styles for the main content */
.main-content {
    background: linear-gradient(145deg, #2e1a0a 0%, #3d2410 100%);
    padding: 30px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(251, 191, 36, 0.1);
    border-radius: 15px;
    margin: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(217, 119, 6, 0.3);
    width: auto;
    box-sizing: border-box;
    z-index: 0;
    color: #f5e6d3;
}

/* Styles for headings */
h1 {
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.4);
    margin-bottom: 15px;
}

h2{
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.4);
    padding-top: 30px;
    margin-bottom: 15px;
}

/* Styles for links */
a {
    color: #f59e0b;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

nav {
    text-align: center;
    margin-top: 0px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #2e1a0a 0%, #3d2410 100%);
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(145deg, #d97706, #f59e0b);
    color: #1a0f00;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin: 5px;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

nav ul li a:hover {
    background: linear-gradient(145deg, #f59e0b, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.6);
    color: #1a0f00;
}

/* Enhanced Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h4 {
    color: #1a0f00;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    color: #1a0f00;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    padding: 5px 0;
    font-weight: 500;
}

.contact-link:hover {
    color: #422006;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 15, 0, 0.3);
    color: #1a0f00;
    font-weight: 500;
}

footer {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
    color: #1a0f00;
    padding: 30px 0;
    text-align: center;
    width: 100%;
    box-shadow: 0 -4px 20px rgba(217, 119, 6, 0.4);
    backdrop-filter: blur(10px);
    margin-top: auto;
}

.footer-Index {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-Index h4 {
    margin-bottom: 10px;
}

.footer-Index a {
    color: #1a0f00;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-Index a:hover {
    color: #422006;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

/* Adjustments for mobile phones */
@media only screen and (max-width: 767px) {
    header {
        padding: 15px;
    }
    nav ul li a {
        display: block;
        padding: 10px 15px;
        width: 90%;
        text-align: center;
        margin: 5px auto;
    }

    .main-content {
        background: linear-gradient(145deg, #2e1a0a 0%, #3d2410 100%);
        padding: 15px;
        margin: 10px;
        border-radius: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
}

/* Adjustments for tablets and larger screens */
@media only screen and (min-width: 768px) {
    header {
        padding: 20px;
    }
    nav ul li a {
        padding: 15px 30px;
    }
    .main-content {
        padding: 20px;
    }
    .SideImage {
        max-width: 25%;
        height: aut;
    }
}

/* Adjustments for laptops and desktops */
@media only screen and (min-width: 992px) {
    header {
        padding: 30px;
    }
    nav ul li a {
        padding: 20px 40px;
    }
    .main-content {
        padding: 30px;
    }
}

/* Adjustments for extra-large screens */
@media only screen and (min-width: 1200px) {
    .main-content {
        width: 50%;
        margin-left: 25%;
    }
}


