:root {
    --white: #fff0fa;               /* Light pinky-white */
    --pink: #ff66c4;                /* Vibrant pink */
    --light-pink: #ffc8eb;          /* Cotton candy pink */
    --peach: #ffb347;               /* Bright peachy orange */
    --light-peach: #fff3e0;         /* Pale warm white */
    --dark-pink: #cc007a;           /* Deep magenta */
    --text-color: #3d0a2b;          /* Plum text */
    --shadow: 0 4px 20px rgba(255, 102, 196, 0.25);
    --gradient: linear-gradient(45deg, var(--pink), var(--peach));
    --yellow: rgb(255, 247, 0);
     --orange: rgb(255, 196, 0);
    --red: rgb(255, 0, 0);
    --piink:rgb(238, 91, 177);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
     
    
}
/* ============================================
   LOADING SCREEN — EMOJI FLOATS + BIG WELCOME
   ============================================ */

.loading-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #fff0fa 0%, #ffe4f5 50%, #fff5e6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
    transition: opacity 0.7s ease;
}

.loading-screen.hide {
    opacity: 0;
    pointer-events: none;
}

/* floating emoji items */
.ls-emoji-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ls-em {
    position: absolute;
    font-size: var(--s);
    top: 100%;
    left: var(--l);
    opacity: 0;
    user-select: none;
    animation: em-rise linear infinite;
    animation-duration: var(--dur);
    animation-delay: var(--del);
}

@keyframes em-rise {
    0%   { transform: translateY(0)      translateX(0)        rotate(0deg);   opacity: 0; }
    8%   { opacity: 1; }
    85%  { opacity: 0.85; }
    100% { transform: translateY(-105vh) translateX(var(--dx)) rotate(var(--r)); opacity: 0; }
}

.ls-em:nth-child(1)  { --s:22px; --l:5%;  --dx:18px;  --r:20deg;  --dur:6s;   --del:0s;   }
.ls-em:nth-child(2)  { --s:18px; --l:12%; --dx:-14px; --r:-25deg; --dur:7.5s; --del:0.5s; }
.ls-em:nth-child(3)  { --s:26px; --l:20%; --dx:22px;  --r:15deg;  --dur:5.5s; --del:1.1s; }
.ls-em:nth-child(4)  { --s:16px; --l:28%; --dx:-20px; --r:-30deg; --dur:8s;   --del:0.3s; }
.ls-em:nth-child(5)  { --s:24px; --l:36%; --dx:12px;  --r:35deg;  --dur:6.5s; --del:1.8s; }
.ls-em:nth-child(6)  { --s:20px; --l:45%; --dx:-25px; --r:-15deg; --dur:5s;   --del:0.8s; }
.ls-em:nth-child(7)  { --s:28px; --l:54%; --dx:30px;  --r:25deg;  --dur:7s;   --del:2.2s; }
.ls-em:nth-child(8)  { --s:17px; --l:62%; --dx:-18px; --r:-20deg; --dur:6.2s; --del:1.4s; }
.ls-em:nth-child(9)  { --s:23px; --l:70%; --dx:15px;  --r:40deg;  --dur:5.8s; --del:0.6s; }
.ls-em:nth-child(10) { --s:19px; --l:78%; --dx:-28px; --r:-35deg; --dur:7.8s; --del:2.8s; }
.ls-em:nth-child(11) { --s:25px; --l:86%; --dx:20px;  --r:10deg;  --dur:6.8s; --del:1.6s; }
.ls-em:nth-child(12) { --s:15px; --l:93%; --dx:-12px; --r:-45deg; --dur:5.2s; --del:3.2s; }
.ls-em:nth-child(13) { --s:21px; --l:9%;  --dx:25px;  --r:30deg;  --dur:8.5s; --del:2.0s; }
.ls-em:nth-child(14) { --s:18px; --l:40%; --dx:-16px; --r:-20deg; --dur:6.4s; --del:3.8s; }
.ls-em:nth-child(15) { --s:27px; --l:58%; --dx:22px;  --r:18deg;  --dur:7.2s; --del:1.0s; }
.ls-em:nth-child(16) { --s:14px; --l:74%; --dx:-10px; --r:-28deg; --dur:5.6s; --del:4.2s; }

/* center content */
.loader {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

/* BIG WELCOME TEXT with Shimmer */
.welcome-text {
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 800;
    letter-spacing: 12px;
    text-transform: uppercase;
    background: linear-gradient(
        90deg,
        #cc007a 0%,
        #ff66c4 20%,
        #ffb347 40%,
        #ff66c4 60%,
        #cc007a 80%,
        #ff66c4 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerMove 3s ease-in-out infinite, fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    margin: 0;
    text-align: center;
    width: 100%;
}

@keyframes shimmerMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Bar - Full width matching welcome text */
.loading-bar {
    width: 100%;
    max-width: 600px;
    height: 8px;
    background: rgba(255, 102, 196, 0.15);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    animation: fadeInBar 1.2s ease forwards 0.5s;
}

@keyframes fadeInBar {
    0% { opacity: 0; transform: scaleX(0.8); }
    100% { opacity: 1; transform: scaleX(1); }
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #cc007a, #ff66c4, #ffb347, #ff66c4);
    background-size: 300% 100%;
    border-radius: 10px;
    animation:
        ls-bar-grow 5s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s,
        ls-bar-shine 1.8s ease-in-out infinite 0.2s;
}

@keyframes ls-bar-grow {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes ls-bar-shine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-text {
        font-size: 50px;
        letter-spacing: 8px;
    }
    .loader {
        max-width: 400px;
    }
    .loading-bar {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .welcome-text {
        font-size: 36px;
        letter-spacing: 6px;
    }
    .loader {
        max-width: 300px;
    }
    .loading-bar {
        max-width: 300px;
        height: 6px;
    }
}/* Main Content */
.main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background:linear-gradient(45deg, var(--white), var(--light-peach));
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(255, 155, 179, 0.1);
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: scale(1.1);
}

.logo-initial {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    font-weight: bold;
    color: var(--white);
}

.logo-name {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    color: var(--dark-pink);
    font-weight: 700;
}
/* Second Logo Styling */
.second-logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .second-logo {
        height: 60px; /* Smaller for mobile */
    }
}

@media (max-width: 480px) {
    .second-logo {
        height: 30px; /* Even smaller for small phones */
    }
    
    .logo-container {
        gap: 8px; /* Reduce gap on mobile */
    }
}
.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--dark-pink);
}

.nav-link.active {
    color: var(--dark-pink);
}

.nav-link.active::after {
    width: 100%;
}

.cart-btn {
    background: var(--light-peach);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    box-shadow: var(--shadow);
}

.cart-count {
    background: var(--dark-pink);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-peach) 100%);
}

.section-title {
    font-size: 48px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    font-weight: 600;
}

.section-title span {
    color: var(--dark-pink);
    position: relative;
}




/* Home Content */
.home-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title span {
    color: var(--dark-pink);
    position: relative;
}



.subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-color);
    opacity: 0.8;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.explore-btn {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
}

/* Hover gradient overlay */
.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--peach), var(--pink));
    transition: width 0.2s ease-in-out; /* smoother + faster */
    z-index: -1;
}

/* Expands smoothly */
.explore-btn:hover::before {
    width: 100%;
}

/* Hover lift effect */
.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 155, 178, 0.7);
}



.projects-btn {
    background: transparent;
    color: var(--dark-pink);
    border: 2px solid var(--pink);
}

.projects-btn:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgb(255, 155, 195);
}
.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* === Circle Wrapper with Animated Gradient Border === */
.circle-image {
    width: 360x;
    height: 360px;
    border-radius: 50%;
    padding: 9px;
    position: relative;
    z-index: 1;
    animation: float 4s ease-in-out infinite; /* ✅ Float animation added */
     
}

.circle-image::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--peach), var(--pink), var(--piink), var(--peach));
        animation: fastSlowRotate 6s ease-in-out infinite;
    z-index: 1;
}

/* === Simulated Gradient Glow using Pseudo-Element === */
.circle-image::after {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    border-radius: 50%;
    background: conic-gradient(var(--orange), var(--pink), var(--dark-pink), var(--red), var(--orange),var(--pink), var(--dark-pink), var(--red));
    filter: blur(60px);
    opacity: 0.5;
    animation: fastSlowRotate 7s ease-in-out infinite reverse,
               glowPulse 6s ease-in-out infinite;
    z-index: 0;
}

/* === Actual Image === */
/* === Actual Image === */
.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
   
    position: relative;
    z-index: 2;

    /* 💡 Manual adjustment */
    transform: translate(-9px, -9px); /* Move image right 5px, up 5px */
}


/* === Animations === */
@keyframes fastSlowRotate {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(360deg); }       /* Fast 1 */
  40%  { transform: rotate(720deg); }       /* Fast 2 */
  70%  { transform: rotate(990deg); }       /* Slow 270° more */
  100% { transform: rotate(720deg); }       /* Pause to restart */
}



@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}


.floating-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.heart-icon {
    position: absolute;
    color: var(--pink);
    font-size: 24px;
    opacity: 0.7;
    animation: floating-heart 6s linear infinite;
}

.heart-icon:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.heart-icon:nth-child(2) {
    top: 70%;
    left: 50%;
    animation-delay: 2s;
}

.heart-icon:nth-child(3) {
    top: 40%;
    left: 78%;
    animation-delay: 4s;
}
.heart-icon:nth-child(4) {
    top: 70%;
    right: 77%;
    animation-delay: 3s;
}

.heart-icon:nth-child(5) {
    top: 10%;
    left: 60%;
    animation-delay: 3s;
}


@keyframes floating-heart {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.scroll-down span {
    font-size: 14px;
    color: var(--dark-pink);
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--dark-pink);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 5px;
    height: 8px;
    background-color: var(--dark-pink);
    border-radius: 50%;
    animation: scroll-wheel 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes scroll-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* Products Section */
.products-section {
    background-color: var(--white);
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 155, 179, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 155, 178, 0.41);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-description {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-pink);
}

.add-to-cart {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 155, 178, 0.492);
}

/* Projects Section */
.projects-section {
    background-color: var(--light-peach);
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Add these styles to your CSS */
.project-card {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), 
              box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
  border-radius: 15px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(255, 155, 179, 0.1);
}

.project-card:hover {
  transform: 
    translateY(-10px)
    rotateX(5deg) 
    rotateY(10deg);
  box-shadow: 
    0 20px 40px rgba(255, 102, 196, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.4) 0%, 
    rgba(255, 255, 255, 0) 50%, 
    rgba(255, 255, 255, 0.4) 100%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
}

.project-card:hover::before {
  opacity: 1;
}

/* Required parent container styles */
.projects-container {
  perspective: 2000px;
}

.project-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 20px;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.project-description {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 20px;
    line-height: 1.5;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.project-tag {
    background: var(--light-pink);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.project-btn {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.project-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--peach), var(--pink));
    transition: width 0.3s ease;
    z-index: -1;
}

.project-btn:hover::before {
    width: 100%;
}

.project-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(255, 155, 178);
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-content {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 120px;
        width: 380px;
    height: 380px;
    text-align: center;
    
}

.about-img {
    width: 380px;
    height: 380px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-peach);
    color: var(--dark-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-section {
    background: var(--light-peach);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 155, 179, 0.1);
    transition: all 0.3s ease;
}

.info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 155, 178, 0.349);
}

.info-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-pink);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-section p strong {
    color: var(--dark-pink);
}

.skills {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skill {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.skill p {
    margin-bottom: 5px;
    font-size: 14px;
}

.skill-bar {
    height: 8px;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background: var(--gradient);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--light-peach) 0%, var(--white) 100%);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-text {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-pink);
    color: var(--dark-pink);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 992px) {
    .home-content {
        flex-direction: column;
        text-align: center;
    }
    
    .buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
    
    .about-img {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    .nav ul {
        gap: 15px;
    }
    
    .section {
        padding: 80px 20px;
    }
    
    .title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .circle-image {
        width: 300px;
        height: 300px;
    }

}

@media (max-width: 576px) {
    .logo-name {
        display: none;
    }
    
    .buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .circle-image {
        width: 250px;
        height: 250px;
    }
    
    .products-container, .projects-container {
        grid-template-columns: 1fr;
    }
}
/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(255, 155, 179, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--pink), var(--peach));
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
}

.logo-initial {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
}

.logo-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--dark-pink);
    font-weight: 700;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark-pink);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon i {
    transform: rotate(90deg);
}

/* Navigation Styles */
.nav {
    transition: transform 0.3s ease;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--dark-pink);
}

.nav-link.active {
    color: var(--dark-pink);
}

.nav-icon {
    display: none;
    font-size: 1.2rem;
}

.cart-count {
    background: var(--dark-pink);
    color: var(--white);
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 18rem;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding-top: 5rem;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
    }
    
    .nav-link:hover {
        background: var(--light-peach);
    }
    
    .nav-icon {
        display: block;
        width: 1.5rem;
        text-align: center;
    }
    
    .cart-count {
        margin-left: auto;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .header {
        padding: 1rem;
    }
    
    .nav {
        width: 16rem;
    }
    
    .logo-name {
        font-size: 1.25rem;
    }
}

/* Cart Modal Styles */
.cart-modal, .payment-modal, .order-confirmation-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
}

.cart-modal-content, .payment-modal-content, .order-confirmation-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 15px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.2);
  position: relative;
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from {opacity: 0; transform: translateY(-50px);}
  to {opacity: 1; transform: translateY(0);}
}

.close-cart, .close-payment, .close-confirmation {
  position: absolute;
  right: 25px;
  top: 15px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-cart:hover, .close-payment:hover, .close-confirmation:hover {
  color: var(--dark-pink);
}

.cart-items-container {
  max-height: 400px;
  overflow-y: auto;
  margin: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f5f5f5;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-details {
  flex: 1;
  padding: 0 15px;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--dark-pink);
  font-weight: 600;
}

.cart-item-remove {
  color: #ff6b6b;
  cursor: pointer;
  font-size: 20px;
  transition: transform 0.2s;
}

.cart-item-remove:hover {
  transform: scale(1.2);
}

.cart-total, .payment-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0;
  padding-top: 15px;
  border-top: 2px solid var(--light-peach);
}

.checkout-btn, .confirm-payment-btn, .close-confirmation-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 30px;
  background: var(--gradient);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.checkout-btn:hover, .confirm-payment-btn:hover, .close-confirmation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 155, 179, 0.4);
}

/* Payment Modal Styles */
.payment-instructions {
  background: var(--light-peach);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.payment-instructions h3 {
  color: var(--dark-pink);
  margin-bottom: 15px;
}

.account-details {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
}

.payment-confirmation {
  text-align: center;
  margin-top: 25px;
}

/* Order Confirmation Styles */
.order-confirmation-content {
  text-align: center;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
}

/* Empty Cart Message */
.empty-cart-message {
  text-align: center;
  padding: 40px 0;
  color: #888;
}
/* Add this at the end of your CSS file */

/* Hide scroll down indicator on touch devices (primarily mobile/Android) */
@media (hover: none) and (pointer: coarse) {
    .scroll-down {
        display: none !important;
    }
}

/* Alternative method using max-width (if the above doesn't work on some Android browsers) */
@media only screen and (max-width: 768px) {
    .scroll-down {
        display: none;
    }
}
/* Update header navigation for PC view */
@media (min-width: 769px) {
    .nav-link {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
    }
    
    .nav-icon {
        display: block !important; /* Force show icons */
        font-size: 16px;
    }
    
    .nav-text {
        display: block !important;
    }
    
    /* Cart item styling */
    .cart-item .nav-icon {
        margin-right: 4px;
    }
    
    .cart-count {
        margin-left: 4px;
    }
}
.nav-link:hover .nav-icon {
    transform: translateY(-2px);
    color: var(--dark-pink);
}

.nav-link:hover .nav-text {
    color: var(--dark-pink);
}
.nav-link.active .nav-icon {
    color: var(--dark-pink);
}

.nav-link.active .nav-text {
    font-weight: 600;
}
@media (min-width: 769px) {
    .nav-list {
        gap: 15px;
    }
    
    .nav-link {
        padding: 10px 15px;
        border-radius: 8px;
    }
}
.cart-item .nav-link {
    background: rgba(255, 107, 139, 0.1);
    padding-right: 12px;
}

.cart-count {
    background: var(--dark-pink);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
}



/* Solution 1: Uniform flex alignment */
.nav-list {
    align-items: center; /* Ensures all children align the same way */
}

/* Solution 2: Explicit button heights */
.nav-link {
    min-height: 40px; /* Set consistent minimum height */
    display: flex;
    align-items: center;
}

/* Solution 3: Cart button specific adjustment */
.cart-item .nav-link {
    padding-top: 0;
    padding-bottom: 0;
}

/* Solution 4: Reset line heights */
.nav-text, .cart-count {
    line-height: 1;
}

/* ===== Enhanced About Section (PC View) ===== */
@media (min-width: 992px) {
    .about-section {
        padding: 120px 80px;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 60px;
        align-items: start;
        max-width: 1400px;
        margin: 0 auto;
    }

/* ===== Enhanced About Image Styling ===== */


    .social-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 22px;
        background: linear-gradient(45deg, var(--light-peach), var(--white));
        box-shadow: 0 5px 15px rgba(255, 102, 196, 0.2);
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 25px rgba(255, 102, 196, 0.3);
    }

    .about-text {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .info-section {
        background: white;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(255, 102, 196, 0.1);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 102, 196, 0.1);
    }

    .info-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(255, 102, 196, 0.2);
        border-color: rgba(255, 102, 196, 0.2);
    }

    .info-section h3 {
        font-size: 22px;
        margin-bottom: 20px;
        color: var(--dark-pink);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .info-section h3 i {
        color: var(--pink);
        font-size: 24px;
    }

    .info-section p {
        margin-bottom: 12px;
        line-height: 1.7;
        color: var(--text-color);
    }

    .info-section p strong {
        color: var(--dark-pink);
        font-weight: 600;
    }

    .skills {
        margin-top: 20px;
    }

    .skill-bar {
        height: 10px;
        background: rgba(255, 102, 196, 0.1);
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .skill-level {
        height: 100%;
        border-radius: 10px;
        background: linear-gradient(90deg, var(--pink), var(--peach));
        position: relative;
    }

    .skill-level::after {
        content: attr(data-skill-level);
        position: absolute;
        right: 0;
        top: -25px;
        font-size: 12px;
        font-weight: 600;
        color: var(--dark-pink);
    }
}

/* Add this to your CSS */
.payment-modal-content {
  max-height: 80vh; /* Limit height to 80% of viewport */
  overflow-y: auto; /* Enable vertical scrolling */
  padding-right: 15px; /* Prevent content from hiding behind scrollbar */
}

/* Custom scrollbar styling */
.payment-modal-content::-webkit-scrollbar {
  width: 8px;
}

.payment-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 155, 179, 0.1);
  border-radius: 10px;
}

.payment-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--pink), var(--dark-pink));
  border-radius: 10px;
}

.payment-modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--dark-pink);
}

/* Adjust payment items container */
.payment-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
  padding-right: 10px;
}

/* Projects Intro Section */
.projects-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.projects-intro p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Explore Projects Button - Keep your existing gradient animation */
.explore-projects-btn {
    position: relative;
    background: linear-gradient(270deg, #fe84b1, #fc6ea2, #fea557, #fcb06e, #ff8bb6, #fe84b1);
    background-size: 400% 400%;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    transition: transform 0.3s ease;
    animation: gradientMove 12s linear infinite, glowMove 12s ease-in-out infinite;
}

.explore-projects-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px #f844b361;
}

/* Smooth endless gradient movement */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

/* Button Container for positioning */
.projects-intro {
    position: relative;
    display: inline-block;
}

/* External Bubbles Container */
.external-bubbles {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.explore-projects-btn:hover ~ .external-bubbles {
    opacity: 1;
}

/* Bubble Scatter Animation (Large Explosion) */
@keyframes bubble-scatter {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    70% {
        transform: translate(var(--move-x, 0px), var(--move-y, 0px)) scale(1.4);
        opacity: 0.7;
    }
    100% {
        transform: translate(calc(var(--move-x, 0px) * 1.3), calc(var(--move-y, 0px) * 1.3)) scale(0.5);
        opacity: 0;
    }
}

/* Apply to bubbles */
.bubble {
    position: absolute;
    width: var(--size, 8px);
    height: var(--size, 8px);
    background: var(--color, #ff66c4);
    border-radius: 50%;
    left: var(--left, 50%);
    bottom: var(--top, 20px);
    opacity: 0;
    animation: bubble-scatter 2.5s infinite var(--delay, 0s);
    filter: blur(1px);
    z-index: 0;
}
.bubble:nth-child(1) {
    --color: #ff66c4; --size: 10px; --delay: 0s;
    --move-x: -50px; --move-y: -100px;
}
.bubble:nth-child(2) {
    --color: #ffb347; --size: 14px; --delay: 0.3s;
    --move-x: 100px; --move-y: -50px;
}
.bubble:nth-child(3) {
    --color: #ff00e1; --size: 8px; --delay: 0.6s;
    --move-x: -50px; --move-y: -70px;
}
.bubble:nth-child(4) {
    --color: #ffe066; --size: 12px; --delay: 0.9s;
    --move-x: 80px; --move-y: -50px;
}
.bubble:nth-child(5) {
    --color: #ff4787; --size: 9px; --delay: 1.2s;
    --move-x: -100px; --move-y: -100px;
}


/* Bubble Positions */
.bubble:nth-child(1) {
    --color: #ff66c4; --size: 8px; --delay: 0s; --left: 10%; --top: 0;
}
.bubble:nth-child(2) {
    --color: #ffb347; --size: 12px; --delay: 0.5s; --left: 30%; --top: 5px;
}
.bubble:nth-child(3) {
    --color: #ff00e1; --size: 6px; --delay: 1s; --left: 50%; --top: -5px;
}
.bubble:nth-child(4) {
    --color: #ffe066; --size: 10px; --delay: 1.5s; --left: 70%; --top: 8px;
}
.bubble:nth-child(5) {
    --color: #ff47c2; --size: 7px; --delay: 2s; --left: 90%; --top: -3px;
}


/* Button text and icon */
.btn-text {
    position: relative;
    z-index: 2;
}

.explore-projects-btn .fas {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.explore-projects-btn:hover .fas {
    transform: translateX(5px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .external-bubbles {
        bottom: -30px;
        height: 50px;
    }
    
    .bubble {
        animation-duration: 1.5s;
    }
    
    .bubble:nth-child(1) { --size: 6px; }
    .bubble:nth-child(2) { --size: 9px; }
    .bubble:nth-child(3) { --size: 5px; }
    .bubble:nth-child(4) { --size: 7px; }
    .bubble:nth-child(5) { --size: 6px; }
}
/* Projects Page Specific Styles */
.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.parallax-element {
    transition: transform 0.5s cubic-bezier(0.03, 0.98, 0.52, 0.99);
    will-change: transform;
    transform-style: preserve-3d;
}


        .journey-btn {
            background: var(--pink);
            color: #fff;
            font-weight: 600;
            padding: 12px 26px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(255, 102, 196, 0.35);
            transition: 0.3s;
            margin-left: 15px; /* Added margin to move it right on desktop */
        }

        .journey-btn:hover {
            background: var(--gradient); /* pink → peach */
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 102, 196, 0.5);
        }
        
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .projects-intro div {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .journey-btn {
                margin-left: 0;
                margin-top: 15px; /* Added gap between buttons on mobile */
            }
        }

/* Header Assistant Styles */
.header-assistant {
    position: relative;
    margin: 0 25px;
    display: flex;
    align-items: center;
}

.header-assistant-gif {
    width: 70px; /* Increased from 40px */
    height: 70px; /* Increased from 40px */
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent; /* Increased from 2px */
   
}

.header-assistant-gif:hover {
    transform: scale(1.15); /* Increased from 1.1 */
  
   
}

/* Assistant states in header */
.header-assistant.listening .header-assistant-gif {

    animation: pulse 1.5s infinite;
}

.header-assistant.responding .header-assistant-gif {
    border-color: var(--peach);
}

.header-assistant.speaking .header-assistant-gif {
    border-color: var(--dark-pink);
}

/* Enhanced pulse animation */
@keyframes pulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(255, 102, 196, 0.7);
        transform: scale(1);
    }
    50% { 
        transform: scale(1.05);
    }
    70% { 
        box-shadow: 0 0 0 12px rgba(255, 102, 196, 0); 
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(255, 102, 196, 0);
        transform: scale(1);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header-assistant {
        margin: 0 15px;
        order: 2; /* Position it between logo and menu button */
    }
    
    .header-assistant-gif {
        width: 50px; /* Increased from 35px */
        height: 50px; /* Increased from 35px */
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .header-assistant-gif {
        width: 45px;
        height: 45px;
    }
}

.whatsapp-order-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background: #25D366;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    background: #20bd5a;
}
/* ============================================
   PAGE TRANSITION OVERLAY (inter-page nav)
   ============================================ */
#page-transition {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #fff0fa 0%, #ffe4f5 55%, #fff5e6 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

#page-transition.pt-visible {
    opacity: 1;
    pointer-events: all;
}

#page-transition.pt-exit {
    opacity: 0;
    pointer-events: none;
}

.pt-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.pt-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-pink);
    opacity: 0.85;
    animation: pt-pulse 1s ease-in-out infinite alternate;
}

@keyframes pt-pulse {
    from { opacity: 0.6; transform: scale(0.97); }
    to   { opacity: 1;   transform: scale(1.02); }
}

.pt-dots {
    display: flex;
    gap: 10px;
}

.pt-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--pink), var(--peach));
    animation: pt-bounce 0.9s ease-in-out infinite;
}

.pt-dots span:nth-child(2) { animation-delay: 0.15s; }
.pt-dots span:nth-child(3) { animation-delay: 0.30s; }

@keyframes pt-bounce {
    0%, 100% { transform: translateY(0);    opacity: 0.5; }
    50%       { transform: translateY(-12px); opacity: 1;   }
}
/* ================= Work Showcase Section (Image Carousels) ================= */
.showcase-section {
    text-align: center;
    padding: 60px 0;
    overflow: hidden;
}

.showcase-subtext {
    max-width: 650px;
    margin: 0 auto 35px;
    padding: 0 20px;
    line-height: 1.6;
    color: var(--text-color, var(--text));
    opacity: 0.85;
    font-size: 1.05rem;
}

.showcase-spacer {
    height: 70px;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 35px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
}

.carousel-item {
    position: relative;
    flex-shrink: 0;
    width: 480px;
    height: 300px;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid rgba(255, 102, 196, 0.3);
    box-shadow: 0 12px 32px rgba(255, 102, 196, 0.2);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.6s ease;
}

.carousel-item:hover {
    transform: translateY(-10px) scale(1.045);
    box-shadow: 0 25px 55px rgba(255, 102, 196, 0.4);
    border-color: rgba(255, 102, 196, 0.6);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.carousel-item:hover img {
    transform: scale(1.14);
    filter: brightness(0.45) saturate(1.1);
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    padding: 28px 30px;
    background: linear-gradient(180deg, rgba(61, 10, 43, 0) 30%, rgba(61, 10, 43, 0.55) 65%, rgba(30, 5, 20, 0.92) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item:hover .carousel-overlay {
    opacity: 1;
}

.carousel-overlay h3 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease 0.12s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.carousel-item:hover .carousel-overlay h3 {
    opacity: 1;
    transform: translateY(0);
}

.carousel-overlay p {
    color: #ffe6f5;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 380px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease 0.24s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.24s;
}

.carousel-item:hover .carousel-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* Left to right auto-scroll */
.carousel-ltr {
    animation: carousel-scroll-ltr 30s linear infinite;
}

@keyframes carousel-scroll-ltr {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

/* Right to left auto-scroll */
.carousel-rtl {
    animation: carousel-scroll-rtl 30s linear infinite;
}

@keyframes carousel-scroll-rtl {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .carousel-item {
        width: 320px;
        height: 200px;
        border-radius: 16px;
    }

    .carousel-track {
        gap: 18px;
    }

    .carousel-overlay {
        padding: 20px;
    }

    .carousel-overlay h3 {
        font-size: 1.1rem;
    }

    .carousel-overlay p {
        font-size: 0.85rem;
    }

    .showcase-spacer {
        height: 45px;
    }
}






/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-peach) 100%);
    padding: 80px 50px 60px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-subtitle {
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.6;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 1px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 102, 196, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 102, 196, 0.08);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(255, 102, 196, 0.15);
    border-color: rgba(255, 102, 196, 0.15);
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--dark-pink);
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-number .plus {
    font-size: 32px;
    color: var(--dark-pink);
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.stat-subtext {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.6;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stats-subtitle {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 60px 20px 40px;
        min-height: auto;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 34px;
    }
    
    .stat-number .plus {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 15px;
    }
    
    .stat-subtext {
        font-size: 12px;
    }
}









/* ============================================
   KNOWLEDGE SECTION
   ============================================ */
.knowledge-section {
    background: linear-gradient(135deg, var(--light-peach) 0%, var(--white) 100%);
    padding: 80px 50px 60px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.knowledge-subtitle {
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.6;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 1px;
}

.knowledge-card {
    max-width: 1200px;
    width: 100%;
    background: #fff5f8;
    border-radius: 30px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 102, 196, 0.12);
    box-shadow: 0 8px 32px rgba(255, 102, 196, 0.08);
    position: relative;
    transition: all 0.5s ease;
}

.knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 102, 196, 0.15);
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.knowledge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    border: 1px solid rgba(255, 102, 196, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.knowledge-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.knowledge-item:hover {
    transform: translateY(-4px) scale(1.02);
    background: #ffffff;
    border-color: var(--pink);
    box-shadow: 0 8px 25px rgba(255, 102, 196, 0.12);
}

.knowledge-item i {
    font-size: 20px;
    color: var(--dark-pink);
    min-width: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.knowledge-item:hover i {
    transform: scale(1.2) rotate(-5deg);
    color: var(--pink);
}

/* Responsive */
@media (max-width: 992px) {
    .knowledge-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .knowledge-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .knowledge-section {
        padding: 60px 20px 40px;
        min-height: auto;
    }
    
    .knowledge-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 12px;
    }
    
    .knowledge-item {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .knowledge-item i {
        font-size: 17px;
        min-width: 24px;
    }
    
    .knowledge-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .knowledge-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .knowledge-item {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 10px;
    }
    
    .knowledge-item i {
        font-size: 15px;
        min-width: 20px;
    }
}