/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* White background */
}

/* Base Section Styles */
.section {
    padding: 50px;
    margin: 20px 0;
}

/* Section Light Blue */
.section-lightblue {
    background-color: #ffffff; /* White background */
    display: flex;
    text-align: justify;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
}
.section-lightblue:hover {
    background-color: #fa8501; /* Light orange background */
    box-shadow: 5px 5px 100px rgba(0, 0, 0, 0.2); /* Black shadow */
}
.section-lightblue img {
    width: 45%;
    border-radius: 10px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.section-lightblue img:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 100px rgba(255, 255, 0, 0.8); /* Yellow shadow */
}
.section-lightblue .text {
    width: 45%;
    color: #4a4a4a;    
    opacity: 1;
    margin-bottom: 50px;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: justify;
    
}
.section-lightblue .text.visible {
    opacity: 1;
    transform: translateY(0);
    
  
    
}
.section-lightblue .text p {
    line-height: 1.6;
    margin-top: 20px;
    transition: color 0.3s ease;
    
}
.section-lightblue:hover .text p {
    color: #333;
}
.buttons {
    margin-top: 20px;
    z-index: -2;
}
.buttons a {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    background-color: #ff7f00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.buttons a:hover {
    background-color: #e66b00;
    transform: scale(1.05);
}


/* Section White */
.section-white {
    background-color: #ffffff; /* White background */
    text-align: center;
    margin-bottom: 20px;
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
}
.section-white:hover {
    background-color: #f0f0f0; /* Slightly darker white background */
    box-shadow: 5px 5px 100px rgba(0, 0, 0, 0.2); /* Black shadow */
}
.section-white h2 {
    font-size: 24px;
    color: #333;
    opacity: 0;
    margin-bottom: 30px;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-white h2.visible {
    opacity: 1;
    transform: translateY(0);
}
.section-white h2:hover {
    color: #555;
}
.section-white p {
    width: 60%;
    margin: 0 auto;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
    text-align: justify;
}
.section-white p.visible {
    opacity: 1;
    transform: translateY(0);
}
.section-white p:hover {
    color: #333;
}
.section-white img {
    width: 60%;
    border-radius: 10px;
    margin-top: 20px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.section-white img:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 70px rgba(251, 219, 60); /* Yellow shadow */
}
.section-lightblue:active, .section-white:active {
    background-color: #fa8501;
}
/* Section Red */
.section-red {
    background-color: #fa8501; /* Orange background */
    text-align: center;
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
}
.section-red:hover {
    background-color: #f9f8f2; /* Light gray background */
    margin-bottom: 20px;
    box-shadow: 5px 5px 100px rgba(0, 0, 0, 0.2); /* Black shadow */
}
.section-red h2 {
    font-size: 50px;
    color: #080707;
    margin-bottom: 30px;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-red h2.visible {
    opacity: 5px;
    transform: translateY(0);
}
.section-red h2:hover {
    color: #ef0303; /* Bright red */
}

   /* Responsive Layout for Smaller Screens */

/* Medium screens (992px and below) */
@media (max-width: 992px) {
    .section-lightblue, .section-white, .section-red {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .section-lightblue img,
    .section-white img {
        width: 90%;
        margin-bottom: 20px;
    }
    
    .section-lightblue .text,
    .section-white p {
        width: 100%;
        padding: 10px;
    }
}


/* Small screens (768px and below) */
@media (max-width: 768px) {
    .section-lightblue, .section-white, .section-red {
        padding: 20px;
    }

    .section-lightblue img,
    .section-white img {
        width: 100%;
    }
}

/* Extra small screens (576px and below) */
@media (max-width: 576px) {
    .section {
        padding: 15px;
    }

    .section-lightblue, .section-white, .section-red {
        padding: 10px;
    }
    
    .section-lightblue img,
    .section-white img {
        width: 100%;
    }
    
    .section-lightblue .text,
    .section-white p {
        margin: 0;
    }
}