

/* Top Bar */
.top-bar {
    background: #0a1f44; /* Deep Blue */
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

/* Left Text */
.top-bar span {
    margin-right: 10px;
}

/* Icons */
.top-bar i {
    color: #28a745;
}

/* Social Icons */
.top-social {
    color: #fff;
    margin-left: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.top-social:hover {
    color: #28a745;
}

/* Navbar Logo */
.logo-img {
    height: auto;
    width: auto;
}



/* Nav Links */
.navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
    color: #333;
    margin: 0 8px;
    transition: 0.3s;
}

/* Hover Effect */
.navbar-nav .nav-link:hover {
    color: #28a745;
}

/* Active Link Style */
.navbar-nav .nav-link.active {
    color: #28a745;
    font-weight: 600;
}


/* Default Nav Link */
.navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
    color: #333;
    margin: 0 8px;
}

/* Underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #28a745;
    transition: 0.3s;
}

/* Hover + Active */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}


@media (max-width: 991px) {

    .navbar-nav .nav-link {
        padding: 10px 15px;
    }

    .navbar-nav .nav-link.active {
        background: #f8f9fa;
        border-left: 4px solid #28a745;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}

/* Donate Button Fix */
.donate-btn {
    background-color: #28a745;   /* Green */
    color: #fff !important;      /* Force white text */
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

/* Hover Effect */
.donate-btn:hover {
    background-color: #218838;
    color: #fff !important;
}
/* Hero Logo */
.hero-logo {
    height: 70px;
    width: auto;
}

/* Mobile Responsive Logo */
@media (max-width: 576px) {
    .logo-img {
        height: 40px;
    }

    .hero-logo {
        height: 55px;
    }
}

/* Hero Banner with Animation */
.hero-banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Background Layer */
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url('img/banner.png') no-repeat center center/cover;

    /*Zoom Animation */
    animation: zoomEffect 20s ease-in-out infinite alternate;
    z-index: -2;
}

/* Dark Overlay */
.hero-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
    left: 0;
    z-index: -1;
}

/* Animation Keyframes */
@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

/* Content Styling */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-top: 15px;
    color: #ddd;
}

/* Buttons */
.hero-buttons .btn {
    padding: 12px 25px;
    border-radius: 30px;
}

/*Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
}



/* About Section */

/* Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa, #eef3f8);
}

/*  Image Box (Modern Style) */
.about-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Image */
.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* Gradient Overlay Effect */
.about-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(40,167,69,0.4), rgba(10,31,68,0.4));
    opacity: 0;
    transition: 0.4s;
}

/* Hover Effect 🔥 */
.about-img-box:hover img {
    transform: scale(1.08);
}

.about-img-box:hover::after {
    opacity: 1;
}

/* Content Box (Glass Effect) */
.about-content-box {
    border-radius: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.4s;
    position: relative;
}

/* Accent Line Instead of Border */
.about-content-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(#28a745, #20c997);
    border-radius: 5px 0 0 5px;
}

/* Hover Effect */
.about-content-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Title */
.about-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a1f44;
}

/* Button */
.about-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
    color: #fff;
    transition: 0.3s;
}

.about-btn:hover {
    transform: scale(1.05);
}

/* Equal Height */
.row.align-items-stretch > [class*='col-'] {
    display: flex;
}

/* Mobile */
@media (max-width: 768px) {
    .about-content-box {
        padding: 20px;
    }
}

/* About Section End */



/* Donate Section */
.donate {
    background: linear-gradient(to right, #28a745, #218838);
}

/* Card Hover */
.card {
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

/* Buttons */
.btn {
    border-radius: 30px;
}

/* Section Background */
.what-we-do {
    background: #f8f9fa;
}

/* Card Design */
.work-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Icon */


/* Title */
.work-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Hover Effect */
.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .work-card {
        padding: 20px;
    }
}

/* Icon Style */
.work-card .icon {
    font-size: 40px;
    color: #28a745;
    margin-bottom: 15px;
}

/* Hover Effect for Icon */
.work-card:hover .icon {
    color: #20c997;
    transform: scale(1.2);
    transition: 0.3s;
}

/* Section Background */
.works-gallery {
    background: #f8f9fa;
}

/* Card Design */
.gallery-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Image */
.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.4s;
}

/* Hover Zoom */
.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

/* Card Hover */
.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Description */
.gallery-card p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* View More Button */
.view-more-btn {
    padding: 8px 20px;
    border-radius: 25px;
}


/* Responsive */
@media (max-width: 768px) {
    .gallery-img {
        height: 180px;
    }
}




/* Close Button Style */
.custom-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border-radius: 50%;
    padding: 8px;
    opacity: 1;
    z-index: 10;
}

/* Hover Effect */
.custom-close:hover {
    background-color: #28a745;
    filter: invert(1);
}

/* Modal Design */
.gallery-modal {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

/* Image */
#modalImage {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
}

/* Description */
.modal-desc {
    background: #f8f9fa;
    text-align: center;
}



/* Modal Image */
#modalImage {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
}

/* Description Bottom */


.modal-desc p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

/* Smooth Effect */
.modal-content {
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* Testimonial Start */
/* Section */
.testimonial-section {
    background: #f8f9fa;
}

/* Wrapper */
.testimonial-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

/* Each Item */
.testimonial-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
}

/* Active */
.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
}

/* Exit Left */
.testimonial-item.exit {
    transform: translateX(-100%);
    opacity: 0;
}

/* Image */
.testimonial-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #28a745;
}

/* Text */
.testimonial-text {
    font-size: 18px;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-text {
        text-align: center;
        margin-top: 15px;
    }
}

/* Testimonial End */
/* Footer Main */
.footer-section {
    background: #0a1f44; /* Deep Blue */
}

/* Titles */
.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #28a745;
    padding-left: 5px;
}

/* Keywords */
.footer-keywords {
    font-size: 14px;
    color: #bbb;
}

/* Social Icons */
.social-icon {
    display: inline-block;
    margin-left: 10px;
    color: #fff;
    background: #1c3b70;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icon:hover {
    background: #28a745;
    transform: scale(1.1);
}

/* Bottom Bar */
.footer-bottom {
    background: #061530; /* More deep */
    padding: 15px 0;
    font-size: 14px;
}

/*  For Stylist Heading Start */
/* Main Heading */
.main-heading {
    font-size: 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0a1f44;
    position: relative;
}

/* Gradient Text Effect */
.main-heading span.text-gradient {
    background: linear-gradient(45deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Icon */
.heading-icon {
    font-size: 28px;
    color: #28a745;
    transition: 0.3s;
}

/* Hover Icon Animation */
.main-heading:hover .heading-icon {
    transform: rotate(-10deg) scale(1.2);
    color: #20c997;
}

/* Underline Effect */
.main-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 5px;
    transition: 0.3s;
}

/* Hover Expand Line */
.main-heading:hover::after {
    width: 75%;
}

/* Sub Heading */
.sub-heading {
    font-size: 1rem;
    color: #666;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-heading {
        font-size: 1.8rem;
    }
}

/*  For Stylist Heading end */


/*  For Typing Sub Heading Start*/
/* Sub Heading */
.typing-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #0a1f44;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Icon */
.typing-heading .icon {
    color: #28a745;
    font-size: 28px;
}

/* Typed Text Cursor */
.typed-cursor {
    font-size: 2rem;
    color: #28a745;
}



/* Mobile */
@media (max-width: 768px) {
    .typing-heading {
        font-size: 1.8rem;
    }
}
#typed-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*  For Typing Sub Heading End*/