/* page.css */

/* Main Styles */


.page-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 20px;*/
}

.main-heading {
    text-align: center;
    font-size: xx-large;
    color: #333;
    margin-bottom: 35px;
    font-style: italic;
    color: orangered;
}

.report{
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    background-color:#a00090;
    color: white;
    position: relative;
    /*left: 10px;*/
    border-radius: 11px;

}

.report:hover{
    transition: transform 0.3s ease;
    animation: neons-border 2s linear infinite;
    background-color: #270023;
}
.sections-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.section {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    border-top: 2px solid black;
    height: fit-content;
}

.section h2 {
    font-size: 1.5em;
    color: #270023;
    margin-bottom: 20px;
}

.section p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    border-bottom: 1px solid gray;
}

.contact-button {
    background: #270023;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.contact-button:hover {
    background: #a00090;
}

/* Gallery Styles */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.gallery img {
    width: calc(50% - 5px);
    border-radius: 5px;
}

/* Tab Styles */
.tab-buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.tab-button {
    background: #270023;
  
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
    flex: 1;
    margin: 0 5px;
}

.tab-button.active {
    background: #a00090;
}

.tab-content {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* Animation Classes from Animate.css */
.animate__animated.animate__fadeIn {
    animation: fadeIn 1s;
}
.tab-content{
    /*display: flex;*/
    flex-direction: column;
    border: 2px solid #d0caca;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 0 4px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .sections-container {
        flex-direction: column;
    }
    
    .tab-buttons {
        flex-direction: column;
    }

    .tab-button {
        margin: 5px 0;
    }
    .main-heading {
    text-align: center;
    font-size: x-large;
    color: #333;
    margin-bottom: 12px;
    font-style: italic;
    color: orangered;
}
}
