/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

body {
    background: linear-gradient(to right, #1e3a8a, #2563eb); /* Gradient Blue */
    color: white;
}



/* Hidden section animation */
.hidden-section { 
    opacity: 0; 
    transform: translateY(50px); 
}

/* Navbar Mobile Menu */
.mobile-menu { 
    display: none; 
}

/* Full Scroll Section */
.scroll-container {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to right, #1e3a8a, #2563eb); /* Gradient Blue */
    padding: 30px 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* Infinite Scroll Animation */
.scroll-content {
    display: flex;
    width: max-content;
    animation: scroll-loop 10s linear infinite;
}

@keyframes scroll-loop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}




/* Project Card Design */
.project-card {
    flex: 0 0 auto;
    width: 350px;
    height: 270px;
    margin: 0 20px;
    background: linear-gradient(135deg, #ffad32, #ffffff);
    border: 2px solid black;
    border-radius: 15px;
    box-shadow: 0 12px 25px rgb(0, 0, 0);
    overflow: hidden;
    text-align: center;
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

/* Neon Border Animation */
.project-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #05e2ff, #8dff1b, #9b37f9);
    z-index: -1;
    border-radius: 16px;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* On Hover: 3D Lift Effect + Neon Glow */
.project-card:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 10 15px 30px rgb(0, 0, 0);
}

.project-card:hover::before {
    opacity: 1;
}

/* Image with Zoom Effect */
.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

/* Image Animation */
.project-card:hover img {
    transform: scale(1.1);
}

/* Title */
.project-card h4 {
    font-size: 22px;
    font-weight: bold;
    margin: 15px 0;
    color: #333;
    transition: color 0.3s;
    margin-bottom: 2px;
    margin-top: 1px;
}

/* Description */
.project-card p {
    font-size: 16px;
    color: #666;
    padding: 0 10px;
    margin-bottom: 5px;
    margin-top: 2px;
}

/* Glowing Effect */
.project-card:hover h4 {
    color: #fffeff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.project-card:hover p {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(253, 254, 254, 0.7);
}

/* Zoom effect on hover */
.project-card:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}














/* General Section Styling */
#team-section {
    padding: 60px 20px;
    text-align: center;

}

/* Fancy Section Header */
h3 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    background: linear-gradient(90deg, #efff0b, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* Team Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 25px;
    justify-items: center;
}

/* Team Card - Glassmorphism */
.bg-white {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(15px);
    border: 2px solid black;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(deg);
    width: 320px;  /* Adjusted width */
    max-width: 100%;
    text-align: center;
}
/* Hover Effect - 3D Lift */
.team-card:hover {
    transform: perspective(1000px) rotateY(1deg) scale(1.1);
    box-shadow: 16px 16px 24px rgb(0, 0, 0);
}

/* Team Image */
.team-card img {
    width: 150px;
    height: 150px;
    border: 2px solid black;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}
/* Floating Image Effect */
.rounded-full {
    border: 2px solid black;
    transition: transform 0.4s ease-in-out;
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.2));
}

.rounded-full:hover {
    transform: translateY(-10px) rotate(360deg) scale(2.0);
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.3));
}

/* Social Media Icons */
#team-section i {
    margin: 8px;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.text-2xl i:hover {
    transform: scale(1.5) rotate(-360deg);
    color: ;
}

/* Name Styling */
.team-card h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
    color: hsl(0, 75%, 5%);
}

/* Name Hover Animation - Scale & Glow */
.team-card:hover h4 {
    transform: scale(1.5);
    color: #0f1ef7f2; /* Gold effect on hover */
    text-shadow: 0px 0px 10px rgba(223, 239, 0, 0.8);
}

/* Role Styling */
.team-card p {
    font-size: 16px;
    color: rgba(20, 19, 19, 0.8);
    transition: opacity 0.3s ease-in-out, transform 0.4s ease-in-out;
    opacity: 0.9;
}

/* Role Hover Animation - Fade & Slide */
.team-card:hover p {
    opacity: 1;
    transform: translateY(-5px);
    color: #ff6600; /* Cyan glow effect */
    text-shadow: 0px 0px 10px rgba(0, 255, 204, 0.8);
}

/* Hover Glow Animation */
@keyframes glow {
    0% { box-shadow: 0px 0px 5px rgba(0, 0, 255, 0.1); }
    50% { box-shadow: 0px 0px 20px rgba(0, 0, 255, 0.3); }
    100% { box-shadow: 0px 0px 5px rgba(0, 0, 255, 0.1); }
}

.bg-white:hover {
    animation: glow 1s infinite alternate;
}

















/* Bottom Section Styling */
.bottom-section {
    background: linear-gradient(to right, #1e3a8a, #2563eb); /* Gradient Blue */
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

/* Container: Flex Row */
.bottom-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center; /* Align logo & text beside each other */
    gap: 2rem; /* Space between logo and text */
}

/* Logo Section */
.logo-container {
    flex-shrink: 0; /* Prevents logo from shrinking */
}

.logo-img {
    width: 265px;
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
    border-radius: 10px;
    border: 2px solid black;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

/* Content Section */
.content-container {
    max-width: 900px;
    padding: 20px;
    margin: 20px;
    border: 2px solid black;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgb(0, 0, 0); /* Subtle shadow */
    background-color: rgb(255, 255, 255); /* White background */
}

.heading {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(4, 4, 4);
    margin-bottom: 1rem;
    text-transform: unset;
    letter-spacing: 1px;
}

.description {
    font-size: 1rem;
    color: #050505;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Buttons */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-button {
    background: white;
    color: #2563eb;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform:unset;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.project-button:hover {
    background: #dc2626; /* Red */
    color: white;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bottom-container {
        flex-direction: column; /* Stack logo and text on smaller screens */
        text-align: center;
        align-items: center;
    }

    .logo-container {
        margin-bottom: 1rem;
    }

    .content-container {
        text-align: center;
    }
}












.offerings {
    background: linear-gradient(to right, #1e3a8a, #2563eb); /* Gradient Blue */
    padding: 60px 20px;
}
.offerings-container {
    max-width: 1000px;
    margin: 0 auto;
    height: 500px;
    text-align: center;
    border: 2px solid black;
    box-shadow: 1px 5px 20px rgb(0, 0, 0); /* Subtle shadow */
    background-color: rgb(255, 255, 255); /* White background */
    border-radius: 20px;
}
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.offerings-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.offering-card {
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid black;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.984);
    width: 300px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}
.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgb(145, 145, 145);
}
.offering-card:hover h4 {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgb(0, 0, 0);
    background: rgb(203, 188, 188);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid black;
}
.offering-card h4 {
    font-size: 20px;
    color: #ff0000;
    box-shadow: 0 6px 15px rgb(0, 0, 0);
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 10px;
}
.offering-card p {
    color: #555;
    font-size: 16px;
} 