@import url('https://fonts.googleapis.com/css2?family=Aclonica&family=Aladin&family=Allura&family=Alumni+Sans+Pinstripe:ital@0;1&family=Cinzel:wght@400..900&family=Euphoria+Script&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth
}
nav{
    backdrop-filter: blur(10px);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav li{
    height: 60px;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #34495E;
}
nav a:hover{
    background-color: #183547;
    color: #b24c52;
}

nav li:first-child{
    margin-right: auto;
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 99;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: url('./images/bg49.jpg') no-repeat center center/cover;
}
.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%;
    color: #FFEDDA;
}
.menu-button{
    display: none;
}

@media (max-width: 778px){
    .sidebar{
        width: 80%;
    }
    .hideOnMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
}
@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }
}

.banner {
    padding: 50px 5%;
    display: flex;
    justify-content: center;
}

.banner-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

/* Left Content */
.card-left {
    flex: 1;
}

.card-left h1 {
    color: #b24c52;
    font-size: 3rem;
    font-family: 'Aclonica', sans-serif;
    line-height: 1.2;
}

.card-left p {
    color: #183547;
    font-size: 1.8rem;
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    font-weight: bolder;
    margin-top: 15px;
}

/* Experience Small Cards */
.exp-small-cards {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.info {
    text-align: center;
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 120px;
}

.info h2 {
    font-size: 2rem;
    color: #b24c52;
    font-family: 'Aladin', cursive;
}

.info p {
    font-size: 1.3rem;
    color: #183547;
    margin: 5px 0 0;
}

/* Right Image */
.card-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.card-right img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    border-radius: 10px;
}

/* 📱 Responsive Design */
@media (max-width: 1024px) {
    .banner-cards {
        flex-direction: column;
        text-align: center;
    }

    .card-left h1 {
        font-size: 2.5rem;
    }

    .card-left p {
        font-size: 1.5rem;
    }

    .exp-small-cards {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 15px;
    }

    .info {
        padding: 10px 15px;
        min-width: 100px;
    }

    .info h2 {
        font-size: 1.8rem;
    }

    .info p {
        font-size: 1.2rem;
    }

    .card-right img {
        max-height: 50vh;
        width: 90%;
    }
}

/* 📱 Mobile Screens (Max width 778px) */
@media (max-width: 778px) {
    .banner {
        padding: 30px 3%;
    }

    .banner-cards {
        flex-direction: column;
    }

    .card-left h1 {
        font-size: 2rem;
    }

    .card-left p {
        font-size: 1.3rem;
    }

    /* Keep exp-small-cards in a row */
    .exp-small-cards {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .info {
        padding: 10px;
        min-width: 80px;
    }

    .info h2 {
        font-size: 1.5rem;
    }

    .info p {
        font-size: 1rem;
    }

    /* Hide the right image */
    .card-right {
        display: none;
    }
}
.project-section {
    text-align: center;
    margin: 30px 0;
    padding: 10px;
    min-height: 60vh;
    position: relative;
    z-index: -10;
}

.project-section h1 {
    font-size: 3rem;
    font-family: 'Aladin', cursive;
    color: #34495E;
    margin-bottom: 2rem;
}

/* 🔥 Project Layout */
.project-section {
    text-align: center;
    padding: 100px 5%;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.project-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    color: #34495E;
    font-family: 'Aladin', cursive;
    display: inline-block;
    letter-spacing: 1.5px;
}

.project-section h1::after {
    content: "";
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #ff5f00, #ff9900);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

/* 🔥 Project Grid */
.active-projects {
    display: flex;
    justify-content: center;
    gap: 30px;margin: 0 auto;
}

/* 🚀 Glassmorphic Project Card */
.projects {
    position: relative;
    width: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.projects:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(5, 166, 190, 0.5);
}

/* 🎨 Image */
.projects img {
    width: 100%;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease-in-out;
}

/* 💡 Image Hover Effect */
.projects:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}
/* 📊 Progress Bar */
.progress-container {
    width: 100%;
    max-width: 300px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    height: 20px;
    margin-top: 15px;
}

.progress-bar {
    height: 100%;
    width: 70%;
    background: linear-gradient(to right, #ff5722, #e64a19);
    text-align: center;
    line-height: 20px;
    color: white;
    font-weight: bold;
    transition: width 0.5s ease-in-out;
}

/* 📊 Progress Bar */
.progress-container {
    width: 100%;
    max-width: 300px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    height: 20px;
    margin-top: 15px;
}

.progress-bar {
    height: 100%;
    width: 70%;
    background: linear-gradient(to right, #ff5722, #e64a19);
    text-align: center;
    line-height: 20px;
    color: white;
    font-weight: bold;
    transition: width 0.5s ease-in-out;
}

/* 🔥 Hover Info */
.project-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.project-card:hover .projects {
    opacity: 1;
    transform: translateY(0);
    border-radius: 12px;
}


/* 📱 Responsive Design */
@media (max-width: 1024px) {
    .project-section h1 {
        font-size: 2.5rem;
    }

    .active-projects {
        gap: 20px; /* Reduce gap on smaller screens */
        width: 90%; /* Make sure the layout is not too wide */
    }

    .projects {
        max-width: 300px; /* Reduce card size for smaller screens */
    }

    .progress-container {
        max-width: 250px; /* Adjust progress bar size */
    }
}

/* 📱 Mobile Screens (Max width 778px) */
@media (max-width: 778px) {
    .project-section h1 {
        font-size: 2rem;
    }

    .active-projects {
        gap: 10px; /* Further reduce gap on mobile */
        flex-direction: column; /* Stack the project cards vertically */
        align-items: center;
    }

    .projects {
        width: 80%; /* Reduce card size even more on mobile */
        max-width: 300px;
    }

    .progress-container {
        width: 80%; /* Make progress bar more responsive */
        max-width: 200px;
    }
}


/* 🔥 Completed Projects Section */
.completed-projects {
    text-align: center;
    padding: 100px 5%;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.completed-projects h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    color: #34495E;
    font-family: 'Aladin', cursive;
    display: inline-block;
    letter-spacing: 1.5px;
}

.completed-projects h1::after {
    content: "";
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #ff5f00, #ff9900);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

/* 🔥 Project Grid */
.project-grid {
    display: flex;
    justify-content: center;
    gap: 30px;margin: 0 auto;
}

/* 🚀 Glassmorphic Project Card */
.project-card {
    position: relative;
    width: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(5, 166, 190, 0.5);
}

/* 🎨 Image */
.project-card img {
    width: 100%;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease-in-out;
}

/* 💡 Image Hover Effect */
.project-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* ✅ Completion Date & CTA */
.completed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 10px;
}

/* 📅 Date Text */
.completed span {
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* 🔥 Animated CTA Button */
.completed a {
    text-decoration: none;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 8px;
    background: linear-gradient(to right, #ff5f00, #ff9900);
    color: white;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
    font-size: 1rem;
    position: relative;
}

/* 🎨 Button Hover Effect */
.completed a:hover {
    background: linear-gradient(to right, #ff784e, #ff5f00);
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.6);
}

/* 🔥 Hover Info */
.project-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.project-card:hover .project-info {
    opacity: 1;
    transform: translateY(0);
    border-radius: 12px;
}

/* 📱 Responsive Styles */
@media (max-width: 1200px) {
    .project-card {
        width: 320px; /* Adjust card size for medium screens */
    }
}

@media (max-width: 992px) {
    .project-card {
        width: 280px; /* Adjust card size for smaller screens */
    }
    .completed-projects h1 {
        font-size: 2.5rem; /* Reduce font size for smaller screens */
    }
}

@media (max-width: 768px) {
    .project-card {
        width: 100%; /* Full width cards for very small screens */
        margin-bottom: 20px; /* Add space between cards */
    }
    .completed-projects h1 {
        font-size: 1.5rem; /* Further reduce font size */
    }
    .project-grid {
        flex-direction: column; /* Stack cards vertically */
        align-items: center;
    }
    .completed span{
        font-size: 1rem;
    }
    .completed a{
        font-size: .8rem;
    }
}

@media (max-width: 480px) {
    .completed-projects h1 {
        font-size: 1rem; /* Smaller title font size */
        margin-bottom: 30px;
    }
    .project-card {
        width: 100%; /* Full width on the smallest screens */
    }
    .completed span{
        font-size: 1rem;
    }
    .completed a{
        font-size: .8rem;
    }
}

.team {
    width: 100%;
    min-height: 100vh;
    text-align: center;
    background: url('/images/bg51.jpg');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}
.team-card {
    width: 100%;
    min-height: 100vh;
}
.team-title-info {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
.team-title-info h2 {
    font-size: 3.5rem;
    color: #F7B733;
    font-family: 'aclonica';
}
.team-title-info h4 {
    font-family: 'allura', cursive;
    font-weight: bolder;
    font-size: 2.5rem;
    color: #9e363a;
}
.team-title-info p {
    font-size: 1.6rem;
    color: #FFEDDA;
    font-family: "Alumni Sans Pinstripe", cursive;
    margin-bottom: 50px;
    font-weight: bolder;
}
.team-info {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.team-profile {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
}
.team-profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.team-profile-pic img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.team-member-info {
    width: 100%;
    margin-top: 10px;
}
.team-member-info h3 {
    font-size: 1.5rem;
    color: #06b6d4;
    font-family: 'aladin', sans-serif;
}
.team-member-info h5 {
    font-size: 1rem;
    color: #e64a19;
    font-family: 'aclonica', cursive;
}
.team-member-info p {
    font-size: 1.4rem;
    color: #FFEDDA;
    font-family: "Alumni Sans Pinstripe", cursive;
    font-weight: bold;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}
.social-icons i {
    font-size: 2rem;
    color: #5F8B4C;
}

.social-icons i:hover {
    color: #FC4A1A;
    transform: scale(1.2);
}
/* Default styles are already set above */

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .team-title-info h2 {
        font-size: 3rem;
    }
    .team-title-info h4 {
        font-size: 2rem;
    }
    .team-title-info p {
        font-size: 1.4rem;
    }
    .team-info {
        flex-direction: column;
        align-items: center;
    }
    .team-profile {
        width: 80%;
    }
}

/* Mobile devices (480px and below) */
@media screen and (max-width: 480px) {
    .team-title-info h2 {
        font-size: 2.5rem;
    }
    .team-title-info h4 {
        font-size: 1.8rem;
    }
    .team-title-info p {
        font-size: 1.2rem;
    }
    .team-profile {
        width: 100%;
    }
    .team-member-info h3 {
        font-size: 1.3rem;
    }
    .team-member-info h5 {
        font-size: 0.9rem;
    }
    .team-member-info p {
        font-size: 1.2rem;
    }
    .social-icons i {
        font-size: 1.8rem;
    }
}


.testimonial-section-big-area{
    width: 100%;
    height: 100vh; 
}
.client{
    font-size: 3rem;
    padding: 20px;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'aladin', cursive;
}
.container-section{
    height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonial{
    position: relative;
    max-width: 900px;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}
.image{
    height: 170px;
    width: 170px;
    object-fit: cover;
    border-radius: 50%;
}
.slide{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
}
.slide p{
    padding: 0 100px;
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Alumni Sans Pinstripe', cursive;
    font-weight: bolder;
    color: #34495E;
}
.quote-icon{
    font-size: 2rem;
    color: #e64a19;
    margin: 10px 20px;
}
.details{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.name{
    font-size: 1.2rem;
    color: #e64a19;
    font-family: 'Aladin', cursive;
}
.job{
    font-size: .8rem;
    font-family: 'Aclonica', sans-serif;
    color: #183547;
}
.nav-btn{
    color: #ff9900;
}
.nav-btn:hover{
    color: #34495E;
}


.contact-container {
    height: 120vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: center;
    padding: 20px;
    gap: 20px;
}

/* Left Side (Form) */
.contact-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 500px; /* Limits width on large screens */
}

.contact-left-title h1 {
    color: #e64a19;
    font-size: 2.5rem;
    font-family: "Aclonica", sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
}

.contact-left-title hr {
    border: none;
    width: 200px;
    height: 5px;
    border-radius: 10px;
    background-color: #ff5722;
}

/* Form Inputs */
.contact-inputs {
    width: 100%;
    max-width: 400px;
    height: 50px;
    border: none;
    border-bottom: 2px solid #34495E;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #554632;
    border-radius: 10px;
    font-size: 1rem;
}

.contact-left textarea {
    height: 150px;
    padding-top: 15px;
    border-radius: 10px;
}

.contact-inputs:focus {
    border: 2px solid #e64a19;
}

.contact-inputs::placeholder {
    color: #a9a9a9;
}

/* Submit Button */
.contact-left button {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    font-size: 1rem;
    color: #34495E;
    gap: 10px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(270deg, #ff5722, #ff9900);
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-left button:hover {
    opacity: 0.8;
}

/* Right Side (Map) */
.contact-right {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.contact-right iframe {
    width: 100%;
    height: 500px;
    border-radius: 20px;
}

/* Media Queries for Smaller Screens */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-left-title h1 {
        font-size: 2rem;
    }

    .contact-inputs {
        max-width: 100%;
        width: 90%;
    }

    .contact-right {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .contact-left-title h1 {
        font-size: 1.8rem;
    }

    .contact-inputs {
        width: 100%;
    }

    .contact-left button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .contact-left-title h1 {
        font-size: 1.5rem;
    }

    .contact-inputs {
        font-size: 0.9rem;
        height: 45px;
        padding-left: 15px;
    }

    .contact-left button {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .contact-right iframe {
        height: 250px;
    }
}

footer {
    position: relative;
    width: 100%;
    background: #5B2333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px; /* Added padding for better spacing */
}

/* Social Links & Menu */
.social-links-footer, .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 15px; /* Ensures spacing between items */
}

.social-links-footer li, .menu li {
    list-style: none;
}

.social-links-footer a, .menu a {
    text-decoration: none;
    font-size: 1.8rem; /* Slightly smaller for responsiveness */
    color: #F7F4F3;
    margin: 0 8px;
    display: inline-block;
    transition: 0.3s;
}
.menu a{
    text-decoration: none;
    color: #F7F4F3;
    margin: 0 10px;
    font-size: 1.4rem;
    opacity: 0.7;
    display: inline-block;
}
.social-links-footer a:hover {
    color: #F7F4F3;
    transform: translateY(-5px); /* Keeps the slight bounce effect */
    text-shadow: 0 0 10px rgba(247, 244, 243, 0.8), 
                 0 0 20px rgba(247, 244, 243, 0.6), 
                 0 0 30px rgba(247, 244, 243, 0.4);
}
.menu a:hover {
    opacity: 1;
    transform: translateY(-5px); /* Keeps the slight bounce effect */
    text-shadow: 0 0 10px rgba(247, 244, 243, 0.8), 
                 0 0 20px rgba(247, 244, 243, 0.6), 
                 0 0 30px rgba(247, 244, 243, 0.4);
}

/* Footer Text */
footer p {
    color: #F7F4F3;
    font-family: "Alumni Sans Pinstripe", cursive;
    font-weight: bolder;
    font-size: 1.3rem;
    margin: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
     .menu {
        flex-direction: column; /* Stack elements on smaller screens */
        gap: 20px;
    }
    .social-links-footer a, .menu a {
        font-size: 1.5rem;
        margin: 5px 0;
    }
    footer p {
        font-size: 1.2rem;
        margin: 15px;
    }
}

@media (max-width: 480px) {
     .menu a {
        font-size: 1.3rem;
    }
    footer p {
        font-size: 1rem;
    }
}


