@import url('https://fonts.cdnfonts.com/css/titillium');
*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat',sans-serif;
}
.main{
    width: 100%;
   
    
    background-position: center;
    background-size: cover;
    height: 100vh;
}
/**********************************/
header {
    background-color: #282727;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;

    margin-top: -0.7cm;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 80%;
    animation: fadeInDown 1s ease;
}

.logo h1 {
    color: #ff7200;
    font-size: 24px;
}

.menu ul {
    list-style: none;
    display: flex;
}

.menu ul li {
    margin: 0 15px;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Titillium', sans-serif; 
}

.menu ul li a:hover {
    color: #ff7200;
}

/* Add keyframe animation for fadeInDown */
@keyframes fadeInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/************************/
body {
    font-family: 'Montserrat',sans-serif;

    margin: 0;
    padding: 0;
    background-image: url('images/About\ us_icon.jpg'); /* Background image */
    background-size:100%; /* Cover the entire viewport */
    background-position: center top; /* Center the background image vertically at the bottom */
    color: #fff;
}

header {
    margin-top: -3.2pc;
    height: 32px; ;
    background-color: #282727;
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    
}

.container h2 {
    background-color: #FFA500; /* Orange background for titles */
    color: #fff; /* White text for titles */
    padding: 10px;
    margin: 0%;
    border-top-right-radius: 20%;
    border-top-left-radius: 20% ;
}

.container p {
    background-color: #3636368f; /* White background for description text */
    padding: 15px;
    margin: 0%;
    border-bottom-left-radius: 20% ;
    border-bottom-right-radius: 20%;
}

/* Animation for each section */
.container h2,
.container p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.container h2:nth-child(odd),
.container p:nth-child(odd) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles for the navigation bar */

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    h2, p {
        padding: 10px;
    }
}





/*****FOOTER****/ 
.Footer {
    background-color: #44443b;
    box-shadow: #1f1f1f;
    color: #fff;
    margin-top: 30%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Distribute space between the elements */
    position: relative; /* Fixed position */
    bottom: 0; /* Stick to the bottom */
    width: 97.3%; /* Full width */
    overflow: hidden;
    height: 26%;
}

.slogan {
    flex: 0 0 30%; /* Adjust the width as needed */
    text-align: left;
    margin-bottom: 20px; /* Add margin for spacing */
}

.slogan h3 {
    color: #ec7a1c;
    font-size: 36px;
}

.slogan p {
    font-size: 20px;
    color: #e6e4e0;
}

.ExtraLinks {
    flex: 0 0 30%; /* Adjust the width as needed */
    color: #ec7a1c;
    text-align: center;
    margin-right: 10%;
    width: 50%;
}
.ExtraLinks h1 { 
   color: #ec7a1c;
   
}

.ExtraLinks a {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    background-color: #ec7a1c53;
    border-radius: 8%;
    color: #e6e4e0;
    font-size: 18px;
    transition: color 0.3s;
}

.ExtraLinks a:hover {
    color: rgb(255, 119, 0);
}

.Address {
    flex: 0 0 30%; /* Adjust the width as needed */
    text-align: left;
    
}

.Address h2 {
    color: #ec7a1c;
    font-size: 29px;
    margin-bottom: 10px;
}

.address-line {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.address-line img {
    max-width: 30px;
    height: auto;
    margin-right: 10px;
}

.Address h1 {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}
.CopyRight p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 14px; /* Adjust the font size as needed */
    margin: 10px 0; /* Add some margin for spacing */
    color: #e6e4e0;
}
@media screen and (max-width: 600px) {
    /* Styles for screens smaller than 600px */
}

@media screen and (min-width: 601px) and (max-width: 1024px) {
    /* Styles for screens between 601px and 1024px */
}