@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #94d034;
    --secondary: #659a1e;
    --accent: #fbc02d;
    --bg-dark: #050505;
    --bg-card: rgba(148, 208, 52, 0.05);
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
    --glass: rgba(148, 208, 52, 0.03);
    --glass-border: rgba(148, 208, 52, 0.15);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 16px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}

* {
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Premium Hover Interactions */
.glass-panel {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-panel:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(148, 208, 52, 0.2);
    border-color: var(--primary);
    z-index: 10;
}

.flyer-slide img {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flyer-slide:hover img {
    transform: scale(1.06) rotate(1deg);
    box-shadow: 0 15px 30px rgba(148, 208, 52, 0.3);
}

h2.reveal.active {
    animation: slideGlow 1.5s ease-out forwards;
}

@keyframes slideGlow {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 23, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--accent);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 450px; /* Wider for 2 columns */
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
    display: grid; /* Use grid for columns */
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    margin-top: 15px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
    width: 100%;
}

.dropdown-menu a {
    font-size: 0.85rem !important;
    padding: 10px 15px !important;
    border-radius: 8px;
    display: block !important;
    width: 100% !important;
    transition: 0.3s;
    opacity: 0.8 !important;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    opacity: 1 !important;
    color: var(--accent) !important;
    transform: translateX(5px);
}


.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger i {
    font-size: 1.5rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.hamburger.toggle i::before {
    content: "\f00d"; /* FontAwesome X icon */
}

/* Mobile Menu Overlay Fix */
@media (max-width: 768px) {
    .nav-links {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background: rgba(10, 14, 23, 0.95);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
    z-index: 1;
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.2;
    border-radius: 50%;
    pointer-events: none;
    animation: pulseBlob 10s infinite alternate ease-in-out;
}

@keyframes pulseBlob {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50px, 50px) scale(1.1);
        opacity: 0.3;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 600;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gradient-shine {
    background: linear-gradient(90deg, #fff, var(--primary), #fff);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.cursor {
    display: inline-block;
    color: var(--primary);
    animation: blink 0.75s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    50% { opacity: 0; }
}

.highlight {
    color: var(--accent);
}

.cta-group {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

/* Hero Visual & Avatar */
.profile-image-container {
    position: relative;
    width: 550px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-avatar {
    width: 100%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

.blob-behind {
    position: absolute;
    width: 450px;
    height: 450px;
    background: var(--gradient);
    filter: blur(80px);
    opacity: 0.3;
    border-radius: 50%;
    z-index: 1;
    animation: pulseBlob 10s infinite alternate ease-in-out;
}

.icon-float {
    font-size: 3rem;
    color: var(--primary);
    position: absolute;
    top: 20px;
    right: 20px;
    animation: float 6s ease-in-out infinite;
}

.icon-float.delay {
    top: auto;
    bottom: 30px;
    right: auto;
    left: 20px;
    color: var(--accent);
    font-size: 2rem;
    animation-delay: 2s;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient);
    z-index: 1;
    border-radius: 20px;
    opacity: 0.3;
}

.about-text {
    padding: 40px;
}

.personal-info {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.personal-info li span {
    color: var(--accent);
    font-weight: 600;
    margin-right: 10px;
}

/* Skills */
.skills-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.skill-category h3 {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 16px;
    background: var(--bg-card);
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.tag:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Experience Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    padding-left: 30px;
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -4px;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.timeline-content {
    padding: 30px;
}

.timeline-content .date {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.timeline-content ul {
    margin-top: 15px;
    list-style-position: inside;
    color: var(--text-muted);
}

/* Education Grid */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.edu-card {
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.edu-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.edu-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.edu-card .date {
    display: block;
    margin: 10px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Education Rows */
.edu-rows-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.edu-row {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    padding: 30px;
    gap: 30px;
}

.edu-row i {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
}

.edu-row h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.edu-row h4 {
    color: var(--accent);
    margin-bottom: 0;
    font-size: 1rem;
}

.edu-row .date {
    text-align: right;
    font-weight: 600;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .edu-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    .edu-row .date {
        text-align: center;
        margin-top: 10px;
    }
}

.edu-row {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.edu-row:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

/* References */
.ref-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.ref-contacts {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ref-contacts i {
    color: var(--accent);
    margin-right: 5px;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.contact-info {
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
}

.contact-details {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details .item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details i {
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-form-mockup {
    padding: 50px;
}

.contact-form-mockup input,
.contact-form-mockup textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: var(--bg-dark);
    border: none;
    color: white;
    border-radius: 8px;
    font-family: inherit;
}

.contact-form-mockup textarea {
    height: 120px;
    resize: none;
}

.contact-form-mockup input:focus,
.contact-form-mockup textarea:focus {
    outline: none;
    border-color: var(--primary);
}

footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
    color: var(--text-muted);
}

/* Responsive Design Enhancements */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .profile-image-container {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .cta-group,
    .social-links {
        justify-content: center;
    }

    .hero-visual {
        order: -1; /* Avatar on top for mobile */
        margin-top: 30px;
    }

    .profile-image-container {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .blob-behind {
        width: 220px;
        height: 220px;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 80%;
        background: rgba(10, 14, 23, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0%);
    }

    .hamburger {
        display: block;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .personal-info {
        grid-template-columns: 1fr;
    }

    .edu-row {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        text-align: center;
    }

    .edu-row .date {
        text-align: center;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .profile-image-container {
        width: 240px;
        height: 240px;
    }

    .nav-links {
        width: 100%;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Why Work With Me Section */
.why-me {
    padding: 100px 0;
    text-align: center;
}

.why-me h2 {
    margin-bottom: 50px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.benefit-card i {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.why-me-footer {
    text-align: center;
    margin-top: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-me-footer p {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.service-card {
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.services-footer {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0;
}

.services-footer p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px;
        align-items: center;
        text-align: center;
    }
}

/* Expertise Section */
.expertise-section {
    padding-bottom: 50px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.expertise-item {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.expertise-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: var(--primary);
}

.expertise-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.expertise-item p {
    margin: 0;
    font-weight: 500;
}

.expertise-closing {
    text-align: center;
    margin-top: 40px;
}

.expertise-closing h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    opacity: 0.9;
}
/* Tools & Skills Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tool-card {
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.tool-header i {
    font-size: 1.8rem;
    color: var(--accent);
}

.tool-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.tool-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tool-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.tool-list li i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.tool-list li:hover {
    color: var(--text-main);
    transform: translateX(5px);
}

.skills-footer {
    text-align: center;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.skills-footer p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 50px 0;
    text-align: center;
}

.achievement-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-radius: 20px;
    transition: 0.3s;
}

.achievement-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.achievement-card h3 {
    font-size: 2.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-weight: 700;
}

.achievement-card p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.achievements-footer {
    text-align: center;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide for cleaner look */
    -ms-overflow-style: none; 
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Hide for cleaner look */
}

.testimonials-slider::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

.testimonial-card {
    flex: 0 0 320px;
    padding: 25px 30px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.testimonial-card i.fa-quote-left {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--text-main);
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 2px;
    color: var(--accent);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 300px;
        padding: 30px;
    }
}

/* Highlighted Nav Button */
.nav-links a.nav-btn {
    background: var(--gradient);
    color: white !important;
    padding: 8px 22px !important;
    border-radius: 50px;
    opacity: 1 !important;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.3);
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.nav-links a.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.4);
    color: white !important;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.project-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.project-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.project-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
}

.logo-container {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border: none;
}

.project-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
    /* Reset the previous styling that was causing issues */
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.logo-container {
    flex-shrink: 0;
    background: transparent;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .pages-grid {
        grid-template-columns: 1fr;
    }
}

/* Flyer Slider Section */
.flyer-slider-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 60px;
}

.flyer-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.flyer-slider::-webkit-scrollbar {
    display: none;
}

.flyer-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.flyer-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.flyer-slider-container:hover .flyer-slide img {
    transform: scale(1.02);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.prev-arrow { left: 0; }
.next-arrow { right: 0; }


/* --- Gallery Layout Responsiveness --- */
.gallery-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--glass-border);
}
.layout-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.flyer-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flyer-slide img {
    width: auto;
    max-width: 100%;
    max-height: 550px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border: 2px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 15px;
}
.slider-btn {
    pointer-events: auto;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.slider-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(148, 208, 52, 0.5);
}

/* --- Global Responsiveness Polish --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 1.8rem !important; }
    .container { padding: 0 15px !important; }
    
    .slider-btn { width: 40px !important; height: 40px !important; font-size: 1rem !important; }
    
    .testimonials-slider { gap: 15px !important; }
}

/* Gallery Dropbox Styling Fixes */
#gallery-dropbox {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 45px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234cc9f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    transition: all 0.3s ease;
}

#gallery-dropbox:hover {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.1);
}

#gallery-dropbox option {
    background: var(--bg-dark);
    color: white;
    padding: 10px;
}

/* Mobile Dropdown Fix */
@media (max-width: 768px) {
    .dropdown-menu {
        grid-template-columns: 1fr !important; /* Single column on mobile */
        width: 100% !important;
        position: static !important;
        transform: none !important;
        max-height: 0;
        overflow: hidden;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 0 !important;
    }

    .dropdown.active .dropdown-menu {
.flyer-slider-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 60px;
}

.flyer-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.flyer-slider::-webkit-scrollbar {
    display: none;
}

.flyer-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.flyer-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.flyer-slider-container:hover .flyer-slide img {
    transform: scale(1.02);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.prev-arrow { left: 0; }
.next-arrow { right: 0; }


/* --- Gallery Layout Responsiveness --- */
.gallery-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--glass-border);
}
.layout-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.flyer-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flyer-slide img {
    width: auto;
    max-width: 100%;
    max-height: 550px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border: 2px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 15px;
}
.slider-btn {
    pointer-events: auto;
    background: var(--bg-card);
    border: 1px solid var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.slider-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(148, 208, 52, 0.5);
}

/* --- Global Responsiveness Polish --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 1.8rem !important; }
    .container { padding: 0 15px !important; }
    
    .slider-btn { width: 40px !important; height: 40px !important; font-size: 1rem !important; }
    
    .testimonials-slider { gap: 15px !important; }
}

/* Gallery Dropbox Styling Fixes */
#gallery-dropbox {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 45px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234cc9f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    transition: all 0.3s ease;
}

#gallery-dropbox:hover {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.1);
}

#gallery-dropbox option {
    background: var(--bg-dark);
    color: white;
    padding: 10px;
}

/* Mobile Dropdown Fix */
@media (max-width: 768px) {
    .dropdown-menu {
        grid-template-columns: 1fr !important; /* Single column on mobile */
        width: 100% !important;
        position: static !important;
        transform: none !important;
        max-height: 0;
        overflow: hidden;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 0 !important;
    }

    .dropdown.active .dropdown-menu {
        max-height: 1000px !important;
        padding: 10px 0 !important;
    }
}

/* Pages Grid Layout */
.pages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.pages-grid .project-card {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    text-align: left !important;
    gap: 25px;
    padding: 30px;
}

@media (max-width: 768px) {
    .pages-grid {
        grid-template-columns: 1fr;
    }
    .pages-grid .project-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px;
        padding: 20px;
    }
}
}
