* {
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    color: black;
    font-family: "Fira Sans", sans-serif;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    color: white;
    background-color: #003366;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #003366;
    transform: scale(1.05);
}

.btn:active {
    background-color: #003366;
    transform: scale(0.95);
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2% 5%;
}

.line .side1 {
	width:1000px;
    padding-right: 50px;
}

.side1 h1 {
    font-size: 70px;
    margin-bottom: 30px;
    color: #003366;
}


.line .side2 {
	width:800px;
}
.side2 .carousel-item img{
	 height: auto; /* Set a fixed height */
         width: 100%; /* Set width to 100% to cover the column */
         object-fit: cover; /* Ensure the image covers the area without stretching */
}

.line .side3 {
	width:800px;
}


.side4 .carousel-item img{
	 height: auto; /* Set a fixed height */
         width: 100%; /* Set width to 100% to cover the column */
         object-fit: cover; /* Ensure the image covers the area without stretching */
}

/* Header content responsive */
@media screen and (max-width: 980px) {
    .side2 img {
        width: 350px;
    }

    .side1 h1 {
        font-size: 40px;
    }

    .side1 p {
        font-size: 17px;
    }

    .line {
        margin-top: 80px;
    }
}

@media screen and (max-width: 600px) {
    .side1 h1 {
        font-size: 35px;
    }

    .line {
        flex-direction: column;
    }

    .line .side1 {
        padding: 30px;
    }
}
        button {
            color: #fff;
        }


/* section */

section .topic a {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}

.about .boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about .boxes .box {
    margin: 10px 10px;
    max-width: calc(100% / 3 - 50px);
    text-align: center;
    border-radius: 12px;
    padding: 30px 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
    cursor: default;
}

/* Contact Page  */

.contact {
    padding: 20px;
}

.contact .content {
    margin: 0 auto;
    padding: 30px 0;
}

.content .title {
    width: 80%;
    text-align: center;
    font-weight: bolder;
    font-size: 40px;
}

.title {
    margin-bottom: 30px;
    margin-left: 80px;
}

.contactMenu {
    display: flex;
    justify-content: space-evenly;
}

.input2 {
    margin-top: 10;
}

.label1 {
    font-size: 18px;
    margin-top: 8px;
    margin-bottom: 8px;
    font-weight: bolder;
}

.contactMenu .input1 input {
    border-radius: 13px;
    padding: 6px;
}

.input2 input {
    border-color: rgb(252, 244, 244);
    width: 400px;
}

.input3 input {
    border-color: rgb(252, 244, 244);
    width: 400px;
    height: 200px;
}

.rightside1 {
    display: flex;
    flex-direction: column;
    margin-left: 300px;
}

.title1 {
    font-size: 18px;
    margin-top: 8px;
    margin-bottom: 5px;
    font-weight: bolder;
}

.content1 {
    width: 450px;
    margin-top: 2px;
    color: grey;
}


/* Footer */
footer {
    background: var(--primary-color);
    padding: 15px 0;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

footer .footer span {
    font-size: 17px;
    font-weight: 400;
    color: var(--white-color);
}

footer .footer span a {
    font-weight: 500;
    color: var(--white-color);
}

footer .footer span a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 1060px) {
    .contactMenu {
        flex-direction: column;
        align-items: center;
    }

    .rightside1 {
        display: flex;
        flex-direction: column;
        margin-left: 0px;
    }

    .content1 {
        width: 100%;
        margin-top: 2px;
        color: grey;
    }

    .side2 img {
        width: 95%;
        height: 90%;
    }
}

@media screen and (max-width: 600px) {
    .side2 img {
        width: 100%;
    }

    section .topic a {
        font-size: 20px;
    }

    section .topic p {
        font-size: 5px;
    }

    .about .boxes {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about .boxes .box {
        max-width: 70%;
    }
}

.container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* Center the container */
}

.text, .iframe {
    padding: 10px;
}

.text {
    flex: 0 1 30%; /* Grow and shrink with a base size of 40% */
}

.iframe {
    flex: 0 1 70%; /* Grow and shrink with a base size of 60% */
}

iframe {
    width: 100%;
    height: 100%;
    min-height: 300px; /* Adjust as needed */
}

@media (max-width: 768px) {
    .text, .iframe {
        flex: 1 1 100%; /* Make both elements full-width on small screens */
    }

    iframe {
        min-height: 200px; /* Adjust as needed */
    }
}