@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap');

* {
    font-family: "Fira Code";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: #0a0a0a;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Floating animation for the banner */
@keyframes float {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 10% 10%;
    }
    50% {
        background-position: 20% 5%;
    }
    75% {
        background-position: 10% 15%;
    }
}

/* Site overlay should cover everything */
.site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 69, 226, 0.2) 0%, rgba(136, 211, 206, 0.2) 100%);
    z-index: -1; /* Behind all content */
    opacity: 0;
    transition: opacity 1s ease;
}

/* Dark base layer behind overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/banner.png);
    z-index: -2; /* Behind overlay */
}




/* Mobile Menu Styles */
.hamburger {
    display: none; /* Hidden by default on desktop */
    padding: 15px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1000;
    position: absolute;
    right: 20px;
    top: 20px;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(67, 2, 2, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: right 0.4s ease;
    padding: 80px 20px 20px;
    box-sizing: border-box;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu-content a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
    color: #88d3ce;
}

/* Hamburger Animation */
.hamburger.active .hamburger-inner {
    background-color: transparent;
}

.hamburger.active .hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* About section should NOT have its own background */
.about-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: white;
    position: relative;
    /* Remove: background-color: #0a0a0a; */
}


body:hover .site-overlay {
    opacity: 1;
}

/* Remove the banner::after styles since we're using site-wide overlay now */



.about-content {
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

.about-section h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.about-section p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #ccc;
}




/* Navbar styling with glass morphism effect */
.nav {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 100;
    transition: all 0.5s ease;
}

.nav.scrolled {
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.6);
}

.company-name img {
    height: 90px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.company-name img:hover {
    transform: scale(1.05) rotate(-5deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.4s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    transition: width 0.4s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 10;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-content h1 {
    font-size: 90px;
    margin-bottom: 2rem;
    margin-top: 6rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #fff, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(136, 211, 206, 0.7), 0 0 30px rgba(110, 69, 226, 0.4);
    }
}

/* Particle background effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Sketchy Organic Circle Button */
.connect-btn {
    position: relative;
    background: transparent;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1.5rem;
    overflow: visible;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.connect-btn-text {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.connect-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid white;
    border-radius: 100px;
    z-index: 1;
    transition: all 0.4s ease;
    /* Sketchy effect */
    box-shadow: 
        0 0 0 3px rgba(255,255,255,0.1),
        0 0 10px rgba(255,255,255,0.3);
    /* Imperfections */
    clip-path: polygon(
        0% 0%, 100% 0%, 100% 100%, 0% 100%,
        0% 15%, 2% 14%, 3% 16%, 1% 18%,
        98% 15%, 100% 17%, 99% 20%, 97% 18%,
        97% 85%, 99% 83%, 100% 86%, 98% 88%,
        2% 85%, 0% 87%, 1% 90%, 3% 88%
    );
}

.connect-btn::after {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 110px;
    z-index: 0;
    animation: rotate 20s linear infinite;
    /* More organic imperfections */
    clip-path: polygon(
        0% 0%, 100% 0%, 100% 100%, 0% 100%,
        0% 10%, 5% 8%, 7% 12%, 2% 15%,
        95% 10%, 100% 15%, 97% 20%, 92% 18%,
        92% 90%, 95% 85%, 100% 90%, 97% 95%,
        5% 90%, 0% 95%, 3% 98%, 8% 92%
    );
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.connect-btn:hover {
    transform: translateY(-5px) scale(1.02);
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.connect-btn:hover .connect-btn-text {
    transform: scale(1.08);
}

.connect-btn:hover::before {
    background-color: rgba(13, 13, 13, 0.2);
    transform: scale(1.1);
    border-radius: 50% 50% 45% 55% / 60% 40% 60% 40%;
    box-shadow: 
        0 0 0 4px rgba(255,255,255,0.2),
        0 0 20px rgba(255,255,255,0.4);
    /* More pronounced sketchiness on hover */
    clip-path: polygon(
        0% 0%, 100% 0%, 100% 100%, 0% 100%,
        0% 10%, 5% 5%, 10% 15%, 2% 20%,
        90% 5%, 100% 15%, 95% 25%, 85% 20%,
        85% 80%, 90% 75%, 100% 85%, 95% 95%,
        5% 80%, 0% 90%, 8% 95%, 15% 85%
    );
}

.connect-btn:hover::after {
    border-color: rgba(255, 255, 255, 0.5);
    animation-duration: 12s;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
}

/* Work Section */
.work-section {
    padding: 5rem 2rem;
    position: relative;
    margin-top: -10%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    background: linear-gradient(90deg, #fff, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-link {
    display: block;
    text-decoration: none;
    color: white;
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project-title {
    margin-top: 1rem;
    font-size: 1.3rem;
    text-align: center;
    transition: color 0.3s ease;
}

/* Hover Effects */
.project-card:hover {
    transform: translateY(-10px);
}

.project-card:hover .project-image {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.project-card:hover .project-title {
    color: #88d3ce;
}

/* Services Section */
.services-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 2rem auto 0;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 30, 30, 0.8);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(136, 211, 206, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon svg {
    stroke: #6a1111;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    background: linear-gradient(90deg, #fff, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}


/* Question Section */
.question-section {
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.question-container {
    max-width: 800px;
    margin: 0 auto;
}

.question-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    background: linear-gradient(90deg, #fff, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.question-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

/* Sketchy Button Style */
.sketchy-btn {
    position: relative;
    background: transparent;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    margin: 0.5rem;
    overflow: visible;
    transition: all 0.4s ease;
    min-width: 250px;
}

.sketchy-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed white;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.sketchy-btn::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 55px;
    animation: rotate 15s linear infinite;
}

.sketchy-btn:hover {
    transform: translateY(-5px);
}

.sketchy-btn:hover::before {
    transform: scale(1.05);
    border-radius: 50% 50% 45% 55% / 60% 40% 60% 40%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Cute Notification */
.cute-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(136, 211, 206, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    max-width: 300px;
    display: none;
}

.cute-notification.show {
    transform: translateY(0);
    opacity: 1;
    display: block;
}

.cute-notification p {
    color: #0a0a0a;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0a0a0a;
}

.notification-emoji {
    font-size: 2rem;
    text-align: center;
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Footer Styles */
.main-footer {
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-left,
.footer-center,
.footer-right {
    padding: 0.5rem 1rem;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-center {
    font-size: 1.1rem;
    color: #88d3ce;
    font-weight: 500;
}

.footer-right {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-right a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-right a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #88d3ce;
    transition: width 0.3s ease;
}

.footer-right a:hover {
    color: #88d3ce;
}

.footer-right a:hover::after {
    width: 100%;
}

.footer-logo {
    color: #88d3ce;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-logo:hover {
    color: #fff;
    transform: scale(1.05);
}

.footer-logo::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-logo:hover::after {
    width: 100%;
}

/* Project Details Page Styles */
.project-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
}

.project-hero {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-top: 4rem;
}

.project-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.project-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.project-hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-visit-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6e45e2, #88d3ce);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
}

.project-visit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(110, 69, 226, 0.6);
}

.project-details-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.project-details-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.project-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-card {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-card:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 40, 0.8);
    border-color: rgba(136, 211, 206, 0.3);
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tech-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%) brightness(1.5);
    transition: filter 0.3s ease;
}

.tech-item:hover .tech-logo img {
    filter: grayscale(0%) brightness(1);
}

.tech-item span {
    color: #ccc;
    font-size: 0.9rem;
}

.challenge {
    margin-bottom: 3rem;
}

.challenge h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

.project-cta {
    text-align: center;
    margin: 5rem 0;
    padding: 3rem;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(136, 211, 206, 0.2);
}

.project-cta h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}

.cookie-banner.active {
  display: block;
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #88d3ce;
}

.cookie-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ccc;
}

.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 10px 0;
}

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cookie-options label:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cookie-options input[type="checkbox"] {
  accent-color: #88d3ce;
  cursor: pointer;
}

.cookie-options input[type="checkbox"]:disabled {
  accent-color: #666;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#acceptAllCookies, #saveCookiePreferences, #rejectAllCookies {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

#acceptAllCookies {
  background: #88d3ce;
  color: #0a0a0a;
}

#saveCookiePreferences {
  background: transparent;
  color: #88d3ce;
  border: 1px solid #88d3ce;
}

#rejectAllCookies {
  background: transparent;
  color: #ccc;
  border: 1px solid #666;
}

#acceptAllCookies:hover {
  background: #6e45e2;
  color: white;
}

#saveCookiePreferences:hover {
  background: rgba(136, 211, 206, 0.1);
}

#rejectAllCookies:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.cookie-policy-link {
  color: #88d3ce;
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: 5px;
  display: inline-block;
  transition: color 0.3s ease;
}

.cookie-policy-link:hover {
  text-decoration: underline;
  color: #6e45e2;
}



/* Mobile-First Responsive Adjustments */
@media (max-width: 768px) {
    /* Base Layout Adjustments */
    body {
        overflow-x: hidden;
    }

    /* Navigation */
    .nav {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .company-name img {
        height: 50px;
        margin-bottom: 15px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }

    /* Banner */
    .banner-content h1 {
        font-size: 2.5rem;
        margin-top: 3rem;
        margin-bottom: 1.5rem;
    }

    .connect-btn {
        padding: 1rem 1.8rem;
        font-size: 0.9rem;
    }

    /* About Section */
    .about-section {
        height: auto;
        padding: 4rem 1.5rem;
    }

    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-section p {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    /* Work Section */
    .work-section {
        padding: 3rem 1.5rem;
        margin-top: 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-image {
        height: 200px;
    }

    /* Services Section */
    .services-section {
        padding: 3rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 1.8rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav {
        padding: 15px 20px;
    }
    .mobile-menu {
        display: block !important; /* Force show the mobile menu */
    }

    .question-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cute-notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        width: 100%;
    }
    
    .footer-right {
        justify-content: center;
        flex-wrap: wrap;
    }
    .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-options {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .banner-content h1 {
        font-size: 2rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .project-title {
        font-size: 1.1rem;
    }

    .service-card {
        padding: 1.5rem;
    }
   
    .project-hero-content h1 {
        font-size: 2rem;
    }
    
    .project-details-container {
        padding: 1rem;
    }
}


/* Special Cases for Landscape Mobiles */
@media (max-width: 768px) and (orientation: landscape) {
    .banner-content h1 {
        font-size: 2.2rem;
        margin-top: 2rem;
    }

    .about-section {
        padding: 3rem 1.5rem;
    }

    .work-section, .services-section {
        padding: 2.5rem 1.5rem;
    }
    .project-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .project-subtitle {
        font-size: 1.2rem;
    }
    
    .project-details-content h2 {
        font-size: 2rem;
    }
    
    .project-highlights {
        grid-template-columns: 1fr;
    }
    
    .project-cta {
        padding: 2rem 1rem;
    }
    
    .project-cta h3 {
        font-size: 1.5rem;
    }
}




/* Smooth Animations for Mobile */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}