/* Common styles for inside pages */
.page-header {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.9) 0%, rgba(59, 130, 246, 0.9) 100%), url('../images/aboutBanner.jpg') center/cover;
    padding: 80px 0;
    text-align: center;
    color: white;
    margin-bottom: 50px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}


/* SECTION */

.contact-section {
    padding: 60px 0;
}

/* TIMELINE LEFT */

.timeline {
    border-left: 4px solid #1c2d5a;
    padding-left: 25px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {

    content: "";
    position: absolute;
    left: -34px;
    top: 5px;

    width: 14px;
    height: 14px;

    background: #ff6a00;
    border-radius: 50%;

}

.timeline-item h6 {
    color: #ff6a00;
    font-weight: bold;
}

.timeline-item p {
    color: #333;
}

/* 3D CONTACT CARD */

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover {
    transform: perspective(1000px) rotateY(-4deg) rotateX(4deg);
    box-shadow: 15px 25px 60px rgba(0, 0, 0, 0.25);
}

.contact-card form,
.contact-card h3 {
    transform: translateZ(40px);
    transition: transform 0.4s ease;
}

/* FORM */

.form-control {
    height: 45px;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(0);
}

.form-control:focus {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08), inset 0 1px 2px rgba(0, 0, 0, 0.02);
    border-color: #FC602A;
    outline: none;
}

textarea.form-control {
    height: auto;
}

/* BUTTON */

.submit-btn {

    background: #d35400;

    color: white;

    padding: 10px 40px;

    border: none;

    border-radius: 6px;

    transition: .3s;

}

.submit-btn:hover {

    background: #a84300;

    transform: translateY(-2px);

}

/* MAP */

.map-card {

    margin-top: 20px;

    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

}

.map-card iframe {

    width: 100%;

    height: 300px;

    border: 0;

}

/* SOCIAL ICONS */
.social-icons-list {
    display: flex;
    gap: 15px;
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.social-icons-list li a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FC602A;
    color: white;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-icons-list li a:hover {
    background: #0040ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 64, 255, 0.3);
}

/* RESPONSIVE */
@media(max-width: 991px) {
    .contact-card {
        margin-top: 40px;
    }
}

@media(max-width:768px) {
    .timeline {
        margin-bottom: 30px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .social-icons-list {
        margin-bottom: 40px;
        justify-content: flex-start;
    }
}

@media(max-width:576px) {
    .contact-card {
        padding: 25px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .social-icons-list {
        justify-content: center;
    }

    .timeline {
        padding-left: 15px;
    }
}