/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Alegreya+Sans+SC&family=Chango&family=Caladea&family=Rubik+Moonrocks&family=Bungee+Inline&family=Alegreya+Sans+SC&family=Rammetto+One&family=Michroma&family=Nosifer&display=swap');


body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #000000;
    text-decoration: none;
}

    a:hover {
        color: #5faee3;
        text-decoration: none;
    }

h1,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

h2,
h3 {
    font-family: "Playfair Display", serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    width: 40px;
    height: 40px;
    border-radius: 5%;
    transition: all 0.4s;
    background: white;
    color: black;
    border: 2px solid black;
    border-radius: 10%;
}

    .back-to-top i {
        font-size: 28px;
        color: black;
        line-height: 0;
    }

    .back-to-top:hover {
        background: black;
        color: white;
        border: 2px solid white;
        border-radius: 10%;
    }

    .back-to-top i:hover {
        color: white;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
	# Header
	--------------------------------------------------------------*/


#header {
    z-index: 997;
    transition: all 0.5s ease;
    padding: 16px 0;
    box-shadow: 0px 2px 12px rgb(0 28 59 / 45%);
    background-color: #ffffff;
    border: 6px solid #f1f1f1;
    width: 90%;
    margin: 20px auto 0;
}

    #header.header-scrolled {
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        padding: 12px 0;
        top: 0;
        margin-top: 0;
        border-radius: 0;
        width: 100%;
        border: 0;
    }

    #header .logo h1 {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
        color: #000000; /* Blue color for the logo */
    }

        #header .logo h1 a,
        #header .logo h1 a:hover {
            color: #000000;
            text-decoration: none;
        }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 50px; /* Increased the logo size slightly */
    }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: inline-block;
        padding: 12px 20px;
        font-size: 18px;
        font-weight: 500;
        color: #333333;
        white-space: nowrap;
        transition: 0.3s;
        font-family: 'Poppins', sans-serif; /* Clean modern font */
    }

        .navbar a:hover,
        .navbar .active,
        .navbar li:hover > a {
            color: #000000;
            text-decoration: none;
        }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        padding: 10px 30px;
        margin-left: 30px;
        border-radius: 50px;
        color: white;
        background: #000000;
        transition: all 0.3s ease;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            background: #ffffff;
            border: 2px solid #000000;
            color: #000000;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 30px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
        }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #000000;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #000000;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    #header {
        box-shadow: 0px 2px 12px rgba(106, 91, 91, 0.0);
        background-color: white;
        border: 6px solid rgba(0, 0, 0, 0.0);
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 8px;
        background-color: rgba(0, 0, 0, 0.6);
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        text-align: center;
        font-size: 28px;
        color: #ffffff;
    }

    .navbar-mobile ul.list-border li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 0;
        margin: 18px;
    }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #000000;
    }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 0px;
        background: #000000;
        color: white;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #000000;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Hero section */
#hero {
    background: #ffffff; /* White background */
    height: 100vh;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    #hero .hero-info {
        color: #333; 
        text-align: center;
        animation: fadeInUp 1s ease-out;
        z-index: 2;
        font-family: 'Poppins', sans-serif;
    }

    #hero h1 {
        font-size: 50px;
        font-family: 'Caladea', serif;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 1.2;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #000000;
    }

    #hero h2 {
        font-size: 23px;
        font-family: "Open Sans", sans-serif;
        margin-bottom: 30px;
        font-weight: 400;
        color: #555;
    }

    #hero .social-links a {
        font-size: 24px;
        display: inline-block;
        background: #000000;
        color: #fff;
        line-height: 1;
        padding: 15px 15px;
        margin: 0 10px 20px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

        #hero .social-links a:hover {
            background-color: #f6fafd;
            color: #100e0e;
            border: 2px solid #090909;
        }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyframes for movement and rotation */
@keyframes moveAndRotate {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: translate(20px, -20px) rotate(45deg);
        opacity: 0.8;
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }
}

/* Style for the shapes */
.shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: transparent;
    box-shadow: 0 4px 10px rgb(0 0 0 / 43%);
    animation: moveAndRotate 6s infinite ease-in-out;
    opacity: 0.6;
}

    /* Square shapes (no border-radius) */
    .shape.square {
        border-radius: 0%;
    }

    /* Rounded shapes */
    .shape.rounded {
        border-radius: 50%; /* Circle */
    }

    .shape:nth-child(1) {
        top: 10%;
        left: 20%;
        animation-delay: 0s;
    }

    .shape:nth-child(2) {
        top: 10%;
        left: 30%;
        animation-delay: 2s;
    }

    .shape:nth-child(3) {
        top: 35%;
        left: 16%;
        animation-delay: 4s;
    }

    .shape:nth-child(4) {
        top: 10%;
        left: 45%;
        animation-delay: 1s;
    }

    .shape:nth-child(5) {
        top: 75%;
        left: 75%;
        animation-delay: 2.5s;
    }

    .shape:nth-child(6) {
        top: 75%;
        left: 15%;
        animation-delay: 3s;
    }

    .shape:nth-child(7) {
        top: 15%;
        left: 90%;
        animation-delay: 4.5s;
    }

    .shape:nth-child(8) {
        top: 40%;
        left: 80%;
        animation-delay: 1.5s;
    }

    .shape:nth-child(9) {
        top: 75%;
        left: 25%;
        animation-delay: 5s;
    }

    .shape:nth-child(10) {
        top: 75%;
        left: 85%;
        animation-delay: 2s;
    }

/* Mobile responsiveness */
@media (max-width: 991px) {
    .shape {
        width: 40px;
        height: 40px;
    }


        #hero h1 {
            font-size: 50px;
        }

        #hero h2 {
            font-size: 22px;
        }

        #hero .social-links a {
            font-size: 20px;
            padding: 12px 12px;
        }

    .hero-info {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .shape {
        width: 35px;
        height: 35px;
    }

    #hero {
        background-size: cover;
    }

        #hero h1 {
            font-size: 45px;
        }

        #hero h2 {
            font-size: 20px;
        }

        #hero .social-links a {
            font-size: 18px;
            padding: 10px 10px;
        }
}

@media (max-width: 575px) {
    .shape {
        width: 30px;
        height: 30px;
    }

        #hero h1 {
            font-size: 36px;
        }

        #hero h2 {
            font-size: 18px;
        }

        #hero .social-links a {
            font-size: 16px;
            padding: 8px 8px;
        }
}



@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}


.section-title {
    text-align: left;
    padding-bottom: 25px;
}

    .section-title h2 {
        font-size: 32px;
        position: relative;
        color: #3e3e3e;
        font-weight: 500;
        font-family: "Playfair Display", serif;
    }

    .section-title h4 {
        font-size: 40px;
        text-transform: uppercase;
        position: relative;
        color: #000000;
        font-weight: 500px;
        font-family: 'Caladea', serif;
    }

        .section-title h4::after {
            content: "";
            width: 100px;
            height: 1px;
            background: #000000;
            display: inline-block;
        }

        .section-title h4::after {
            margin: 0 0 8px 15px;
        }


    .section-title p {
        margin: 15px 0 0 0;
    }

@media screen and (max-width: 768px) {
    .section-title {
        padding-left: 20px;
    }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7f7f7, #ffffff); /* Soft background gradient */
}

    .services .section-title h4 {
        text-align: center;
        font-size: 24px;
        color: #000000;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .services .section-title h2 {
        text-align: center;
        font-size: 36px;
        color: #333;
        font-weight: 700;
        margin-bottom: 50px;
    }

    .services .icon-box {
        padding: 40px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

        .services .icon-box::before {
            content: "";
            position: absolute;
            background: #000000;
            right: -40px;
            top: -40px;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            transition: all 0.3s;
            z-index: -1;
        }

        .services .icon-box:hover::before {
            background: #000000;
            right: 0;
            top: 0;
            width: 100%;
            height: 100%;
            border-radius: 0%;
        }

    .services .icon {
        margin-bottom: 25px;
        padding-top: 10px;
        display: inline-block;
        text-align: center;
        width: 80px;
        height: 80px;
        background: #000000;
        color: white;
        font-size: 36px;
        border-radius: 50%;
        transition: all 0.3s ease-in-out;
    }

    .services .icon-box:hover .icon {
        background: white;
        color: #000000;
        transform: translateY(-5px);
    }

    .services .title {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
    }

        .services .title a {
            color: #333;
            transition: color 0.3s ease-in-out;
        }

    .services .icon-box:hover .title a {
        color: white;
    }

    .services .description {
        font-size: 16px;
        line-height: 1.6;
        color: #555;
        margin-bottom: 0;
        transition: color 0.3s ease-in-out;
    }

    .services .icon-box:hover .description {
        color: white;
    }

@media screen and (max-width: 768px) {
    .services .icon-box {
        margin: 0 15px 30px;
    }

    .services .icon {
        font-size: 30px;
        width: 70px;
        height: 70px;
    }

    .services .section-title h2 {
        font-size: 28px;
    }

    .services .section-title h4 {
        font-size: 20px;
    }
}




/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    padding: 80px 20px;
    background-color: #ffffff;
    position: relative;
}

    .about h1 {
        font-family: 'Caladea', serif;
        font-size: 48px;
        color: #333;
        text-align: left;
        margin-bottom: 20px;
        font-weight: bold;
        text-transform: uppercase;
        line-height: 1.2;
    }

    .about p {
        font-family: 'Alegreya Sans SC', sans-serif;
        font-size: 18px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .about .about-text {
        font-size: 16px;
        color: #444;
        margin-bottom: 25px;
    }

    .about .about-cta {
        margin-top: 20px;
    }

        .about .about-cta .btn {
            padding: 12px 30px;
            font-size: 18px;
            background-color: black;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

            .about .about-cta .btn:hover {
                background-color: #ffffff;
                border-color: #000000;
                color: black;
            }

    .about .image img {
        max-width: 100%;
        border-radius: 15px;
        box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
    }

.about-list {
    padding-left: 0; 

    list-style-type: none; 
}

    .about-list li {
        margin-bottom: 10px; 
        line-height: 1.5; 
    }

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .about h1 {
        margin-top: 40px;
        font-size: 40px;
    }

    .about p {
        font-size: 16px;
    }

    .about .content {
        flex-direction: column;
    }

    .about .image {
        margin-bottom: 20px;
    }

    .about .about-cta .btn {
        padding: 10px 25px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .about h1 {
        font-size: 28px;
    }

    .about .about-text {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .about .about-cta .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .about .content {
        margin-top: 20px;
    }

    .about p {
        font-size: 15px;
    }
}




/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
/* Portfolio Section */
.portfolio {
    padding: 20px 20px;
    background-color: #f8f9fa;
}

    /* Portfolio Title */
    .portfolio .section-title {
        text-align: center;
        margin-bottom: 10px;
    }

        .portfolio .section-title h4 {
            font-size: 18px;
            font-weight: 500;
            color: #000000;
            text-transform: uppercase;
        }

        .portfolio .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            text-transform: capitalize;
        }

    /* Portfolio Filters (Buttons) */
    .portfolio #portfolio-flters {
        list-style: none;
        text-align: center;
        padding: 2px 0;
        margin-bottom: 40px;
    }

        .portfolio #portfolio-flters li {
            cursor: pointer;
            display: inline-block;
            padding: 14px 25px;
            font-size: 16px;
            text-transform: uppercase;
            color: #fff;
            margin: 0 5px;
            margin-top: 15px;
            border-radius: 25px;
            background: #333;
            position: relative;
            overflow: hidden;
            font-family: 'Chango', cursive;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
            transition: all 0.3s ease;
        }

            .portfolio #portfolio-flters li:hover,
            .portfolio #portfolio-flters li.filter-active {
                background: #000000;
                color: #fff;
                border: 1px solid #000000;
            }

            /* Hover animation for filter buttons */
            .portfolio #portfolio-flters li:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(45deg, #1f448b, #555); /* Gradient effect */
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.5s ease-out;
                z-index: -1; /* Keep the gradient below the text */
            }

            /* On hover effect: Expand gradient */
            .portfolio #portfolio-flters li:hover:before {
                transform: scaleX(1); /* Gradient expands */
            }

            .portfolio #portfolio-flters li:hover {
                transform: translateY(-5px); /* Lift effect */
                box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
            }

    /* Portfolio Item Styling */
    .portfolio .portfolio-item {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .portfolio .portfolio-wrap {
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: transform 0.3s ease;
        border-radius: 8px;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    }

        .portfolio .portfolio-wrap img {
            width: 100%;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .portfolio .portfolio-wrap:hover img {
            transform: scale(1.05);
        }

    .portfolio .portfolio-info {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        padding: 20px;
        z-index: 3;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 8px;
        transition: opacity 0.3s ease;
    }

    .portfolio .portfolio-wrap:hover .portfolio-info {
        opacity: 1;
    }

    .portfolio .portfolio-info h3 {
        font-size: 20px;
        color: #fff;
        font-weight: 600;
        text-align: center;
    }

    .portfolio .portfolio-info h4 {
        font-size: 18px;
        color: #fff;
        font-weight: 500;
        font-family: 'Alegreya Sans SC', sans-serif;
        text-align: center;
    }

    .portfolio .portfolio-info p {
        color: #fff;
        font-size: 16px;
        text-align: center;
    }

    .portfolio .portfolio-info a {
        color: #fff;
        font-size: 24px;
        margin: 10px;
        display: inline-block;
        transition: color 0.3s ease;
    }

        .portfolio .portfolio-info a:hover {
            color: #000000;
        }

/* Mobile and Tablet Adjustments */
@media (max-width: 991px) {
    .portfolio #portfolio-flters li {
        font-size: 14px;
        padding: 10px 15px;
    }

    .portfolio .portfolio-info h3 {
        font-size: 18px;
    }

    .portfolio .portfolio-info h4 {
        font-size: 16px;
    }

    .portfolio .portfolio-info p {
        font-size: 14px;
    }

    .portfolio .portfolio-item {
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .portfolio .portfolio-info h3 {
        font-size: 16px;
    }

    .portfolio .portfolio-info h4 {
        font-size: 14px;
    }

    .portfolio .portfolio-info p {
        font-size: 12px;
    }

    .portfolio .portfolio-item {
        margin-top: 20px;
    }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
    background: linear-gradient(135deg, #f9f9f9, #ffffff); 
    padding: 80px 0;
}

    .testimonials .section-title h1 {
        font-size: 40px;
        font-family: 'Caladea', serif;
        text-align: center;
        text-transform: uppercase;
        color: #000000;
        margin-bottom: 20px;
    }

    .testimonials .section-title p {
        font-size: 18px;
        text-align: center;
        color: #333; 
        margin-bottom: 40px;
    }

    .testimonials .testimonials-slider {
        position: relative;
    }

    .testimonials .testimonial-item {
        background: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

        .testimonials .testimonial-item:hover {
            transform: translateY(-10px);
        }

        .testimonials .testimonial-item p {
            font-size: 18px;
            font-style: italic;
            color: #333;
            line-height: 1.5;
            margin-bottom: 20px;
        }

    .testimonials .testimonial-img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #e2e0e0;
        margin-bottom: 20px;
    }

    .testimonials .testimonial-item h3 {
        font-size: 20px;
        font-weight: bold;
        color: #222;
    }

    .testimonials .testimonial-item h4 {
        font-size: 16px;
        color: #777;
        margin-bottom: 20px;
    }

    .testimonials .quote-icon-left,
    .testimonials .quote-icon-right {
        color: #000000; 
        font-size: 28px;
    }

    /* Pagination */
    .testimonials .swiper-pagination {
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: center;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            border: 2px solid #000000; 
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #000000;
            transform: scale(1.2);
        }

/* Mobile responsiveness */
@media (max-width: 767px) {
    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

    .testimonials .testimonial-img {
        position: static;
        margin-bottom: 15px;
    }

    .testimonials h1 {
        font-size: 32px;
    }

    .testimonials p {
        text-align: center;
        font-size: 16px;
    }
}



/*--------------------------------------------------------------
# Team
/* Team Section */
.team {
    background-color: #f9f9f9; /* Light background */
    padding: 80px 0;
}

    /* Section Title */
    .team .section-title h4 {
        font-size: 24px;
        font-weight: 600;
        color: #000000; 
        margin-bottom: 10px;
    }

    .team .section-title h2 {
        font-size: 36px;
        font-weight: 700;
        color: #333;
        margin-bottom: 50px;
        text-transform: uppercase;
        padding: 0 15px; 
    }

    /* Member Card */
    .team .member {
        background-color: #fff;
        border-radius: 10px;
        border: 1px solid #ddd;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        margin-bottom: 30px;
        width: 100%;
    }

        .team .member:hover {
            transform: translateY(-10px); 
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

    /* Member Image */
    .team .member-img {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        margin-bottom: 20px;
        border-radius: 10px;
    }

        .team .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease-in-out;
        }

    .team .member:hover .member-img img {
        transform: scale(1.1); 
    }

    /* Member Info */
    .team .member-info {
        padding: 10px;
    }

        .team .member-info h4 {
            font-weight: 700;
            font-size: 20px;
            color: #333;
            margin-bottom: 8px;
        }

        .team .member-info span {
            font-size: 14px;
            color: #000000;
            font-weight: 500;
        }

    .team .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; 
        margin-left: -15px;
        margin-right: -15px;
    }

    /* Each Column */
    .team .col-lg-3, .team .col-md-6 {
        flex-basis: 24%; 
        margin-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

/* Responsive Design */
@media screen and (max-width: 768px) {
    .team .col-lg-3, .team .col-md-6 {
        flex-basis: 40%; 
    }

    .team .section-title h2 {
        font-size: 28px;
    }

    .team .section-title h4 {
        font-size: 20px;
    }
}

@media screen and (max-width: 576px) {
    .team .col-lg-3, .team .col-md-6 {
        flex-basis: 80%; 
        margin-bottom: 30px;
    }

    .team .member-img {
        height: 200px; 
    }

    .team .member-info h4 {
        font-size: 16px;
    }

    .team .member-info span {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/


.faq {
    margin: 0 auto;
    padding: 50px 0;
    background-color: #f7f8fa;
}

    .faq .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

        .faq .section-title h4 {
            font-size: 18px;
            font-weight: 600;
            color: #000000;
            text-transform: uppercase;
        }

        .faq .section-title h2 {
            font-size: 32px;
            font-weight: 700;
            color: #333;
            text-transform: capitalize;
        }

.faq__content {
    padding: 20px;
}

.faq ul {
    list-style: none;
    font-family: "Poppins", sans-serif;
}

.faq li {
    padding-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.faq i {
    color: #000000;
    margin-right: 10px;
}

.faq .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

summary {
    font-size: 1.2rem;
    font-weight: 600;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease-in-out;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    summary:hover {
        background-color: #f0f0f0;
        border-color: #000000;
        color: #000000;
    }

details[open] summary {
    background-color: #000000;
    color: white;
    border-color: #000000;
}

    details[open] summary ~ * {
        animation: sweep 0.5s ease-in-out;
    }

details > summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
}

details[open] > summary::after {
    content: "-";
}

details > summary::-webkit-details-marker {
    display: none;
}

.faq__content {
    display: none;
    padding-top: 10px;
}

details[open] .faq__content {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes sweep {
    0% {
        opacity: 0;
        margin-top: -10px;
    }

    100% {
        opacity: 1;
        margin-top: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Mobile and Tablet Adjustments */
@media (max-width: 991px) {
    .faq .section-title h2 {
        font-size: 26px;
    }

    summary {
        font-size: 1rem;
        padding: 12px;
    }

    .faq .faq__content ul {
        font-size: 14px;
        padding-left: 0px;
    }
}

@media (max-width: 767px) {
    .faq {
        padding: 30px 15px;
    }

        .faq .section-title h2 {
            font-size: 24px;
        }

        .faq li {
            font-size: 14px;
        }

    summary {
        font-size: 1rem;
        padding: 12px;
    }
}

}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    z-index: 1;
}

    .contact h1 {
        text-align: left;
        margin-bottom: 20px;
        font-family: 'Montserrat', sans-serif;
        font-size: 36px;
        color: #333;
        font-weight: 600;
    }

    .contact p {
        font-family: 'Raleway', sans-serif;
        font-size: 18px;
        color: #555;
        line-height: 1.6;
    }

    .contact .contact-content {
        margin-bottom: 30px;
    }

    .contact .contact-form {
        background-color: #fff;
        padding: 40px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .contact .php-email-form {
        width: 100%;
    }

        .contact .php-email-form .form-group {
            margin-bottom: 20px;
        }

        .contact .php-email-form input,
        .contact .php-email-form textarea {
            border-radius: 8px;
            border: 1px solid #ddd;
            padding: 15px;
            font-size: 16px;
            width: 100%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
        }

            .contact .php-email-form input:focus,
            .contact .php-email-form textarea:focus {
                border-color: #000000;
                box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
            }

        .contact .php-email-form button[type=submit] {
            background-color: #000000;
            color: white;
            font-size: 18px;
            font-weight: 600;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            transition: 0.3s;
            cursor: pointer;
            width: 100%;
        }

            .contact .php-email-form button[type=submit]:hover {
                background-color: #eff3f5;
                transform: scale(1.05);
                color: black;
                border: 2px solid black;
            }
          .button-area span {
                font-size: 17px;
                margin-left: 30px;
                margin-top: 1.5rem;
                display: none;
                text-align:center;
           }


@media (max-width: 991px) {
    .contact h1 {
        font-size: 32px;
        text-align: center;
    }

    .contact p {
        font-size: 16px;
        text-align: center;
    }

    .contact .contact-form {
        margin-top: 30px;
    }

    .button-area span {
        margin: 20px 0 0;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .contact .container {
        padding: 0 15px;
    }

    .contact .contact-content {
        margin-bottom: 20px;
    }

    .contact .contact-form {
        padding: 30px;
    }

    .contact .php-email-form button[type=submit] {
        width: 100%;
        padding: 12px;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* Footer Section */
.footer {
    background-color: #151617; 
    color: #fff;
    padding-top: 60px;
}

/* Footer Logo */
.footer-logo img {
    width: 180px;
    margin-bottom: 15px;
}

/* Footer Title */
.footer-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Footer Description */
.footer-description {
    font-size: 16px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Footer Social Media Links */
.footer-social-links {
    margin-top: 15px;
}

    .footer-social-links a {
        color: #fff;
        font-size: 24px;
        margin-right: 20px;
        transition: all 0.3s ease;
    }

        .footer-social-links a:hover {
            color: #c8c6c6;
            transform: scale(1.1);
        }

/* Copyright Section */
.copyright {
    background-color: #0f0f0f;
    color: #aaa;
    font-size: 14px;
    padding: 15px 0;
    margin-top: 30px;
}

    .copyright span {
        color: #aaa;
    }

/* Responsive Design */
@media (max-width: 991px) {
    .footer-logo img {
        width: 160px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-social-links a {
        font-size: 22px;
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .footer-logo img {
        width: 140px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-social-links a {
        font-size: 20px;
        margin-right: 10px;
    }
}
