/* Dark Animated Gradient Background */
.animated-team-bg {
    background: linear-gradient(135deg, #0a0a0a, #1d1d1d, #111111);
    background-size: 300% 300%;
    animation: bgGradientMove 12s ease infinite;
    position: relative;
    overflow: hidden;
}

/* Smooth gradient motion */
@keyframes bgGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating particles */
.floating-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.15;
    animation: particleFloat 8s linear infinite;
    pointer-events: none;
}

/* Slow float movement */
@keyframes particleFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}



/* Parallax Background */
.hero-parallax-bg {
    background-image: url('https://images.unsplash.com/photo-1647900669139-1a968c4091e1?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTUzfHxtZW4lMjBzdWl0c3xlbnwwfDB8MHx8fDI%3D&?auto=format&fit=crop&w=1400&q=80');
    background-attachment: fixed;
    /* Parallax effect */
    background-position: center;
    background-size: cover;
    filter: brightness(0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Overlay for text readability */
#about-hero .overlay {
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Buttons */
#about-hero .btn-primary {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #111;
    transition: transform 0.3s ease;
}

#about-hero .btn-primary:hover {
    transform: scale(1.05);
}

#about-hero .btn-outline-light {
    border-color: #fff;
    color: #fff;
    transition: all 0.3s ease;
}

#about-hero .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    #about-hero h1 {
        font-size: 2rem;
    }

    #about-hero p {
        font-size: 1.2rem;
    }
}







/* Parallax Background */
.our-story-parallax-bg {
    background-image: url('https://images.unsplash.com/photo-1529635229076-82fefed713c4?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTU0fHxtZW4lMjBzdWl0c3xlbnwwfDB8MHx8fDI%3D&?auto=format&fit=crop&w=1400&q=80');
    background-attachment: fixed;
    /* parallax effect */
    background-position: center;
    background-size: cover;
    filter: brightness(0.6);
    /* darken for text readability */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Overlay */
#our-story .overlay {
    background: rgba(0, 0, 0, 0.4);
    /* subtle dark layer */
    z-index: 2;
}

/* Text colors */
#our-story h2,
#our-story h3,
#our-story p {
    color: #fff;
}

/* Image hover effect */
#our-story img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#our-story img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    #our-story h2 {
        font-size: 1.8rem;
    }

    #our-story h3 {
        font-size: 1.4rem;
    }

    #our-story p {
        font-size: 0.95rem;
    }
}







/* Parallax Background */
.why-pad-parallax-bg {
    background-image: url('https://images.unsplash.com/photo-1582404510421-de6290209c8f?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTUxfHxtZW4lMjBzdWl0c3xlbnwwfDB8MHx8fDI%3D&?auto=format&fit=crop&w=1400&q=80');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    filter: brightness(0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Overlay */
#why-pad-unique .overlay {
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Card Hover Effect */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Icon styling */
#why-pad-unique i {
    color: #ffd700;
}

/* Responsive */
@media (max-width: 768px) {
    #why-pad-unique h2 {
        font-size: 1.8rem;
    }

    #why-pad-unique p {
        font-size: 0.95rem;
    }
}






/* Card Hover Effect */
#team-founder .hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#team-founder .hover-scale:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Rounded profile images */
#team-founder .card-img-top {
    border: 3px solid #ffd700;
    /* gold accent border */
}

/* Responsive */
@media (max-width: 768px) {
    #team-founder h2 {
        font-size: 1.8rem;
    }

    #team-founder p {
        font-size: 0.95rem;
    }
}









/* Parallax Background */
.who-parallax-bg {
    background-image: url('https://images.unsplash.com/photo-1515736076039-a3ca66043b27?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTM1fHxtZW4lMjBzdWl0c3xlbnwwfDB8MHx8fDI%3D&?auto=format&fit=crop&w=1400&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: 1;
}

/* Overlay */
#who-we-are .overlay {
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Button Styling */
#who-we-are .btn-warning {
    background-color: #ffd700;
    border: none;
    color: #111;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#who-we-are .btn-warning:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    #who-we-are h2 {
        font-size: 1.8rem;
    }

    #who-we-are p {
        font-size: 0.95rem;
    }
}