
/* Hero Section - EXACT same classes */
.hero {
    background: #fff;
    padding: 8rem 8%;
    display: flex;
    gap: 1.5rem;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero p {
    color: #555;
    max-width: 800px;
    line-height: 1.7;
    font-size: 1rem;
    padding-bottom: 20px;
    font-weight: 600;
}

/* Circular arrow - EXACT same classes */
.hero-circle {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    position: relative;
}

.circle-button {
    width: 200px;
    height: 200px;
    position: relative;
    top: -65px;
}

.rotate-circle {
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
}

.rotate-circle svg {
    width: 100%;
    height: 100%;
}

.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #0a2441;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.arrow:hover {
    transform: translate(-50%, -50%) scale(1.2) rotate(15deg);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Team Section - EXACT same classes */
.team-section {
    padding: 4rem 8%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-card {
    display: flex;
    gap: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
    position: relative;
}

.team-card.slide-in-left {
    transform: translateX(0);
    opacity: 1;
}

.team-card.slide-in-right {
    transform: translateX(0);
    opacity: 1;
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.team-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1b2a41;
}

.team-info h4 {
    font-size: 1.05rem;
    font-weight: 500;
    color: #0a2441;
    margin-bottom: 0.5rem;
}

.team-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Contact Cards - EXACT same classes */
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f4ff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.contact-card span {
    font-size: 1.1rem;
}

.contact-card a {
    text-decoration: none;
    color: #0a2441;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.contact-card a:hover {
    color: #0056b3;
}

/* Fade Animation - EXACT same classes */
.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles - EXACT same classes */
@media (max-width: 768px) {
    .fade-section {
        text-align: center;
    }
    
    .hero {
        text-align: center;
        padding-bottom: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-card img {
        margin-bottom: 1rem;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 80%;
        justify-content: center;
    }
    .rotate-circle{
        margin-top: 26px;
    }
}

