@import url('https://fonts.googleapis.com/css2?family=Anton&family=Lexend:wght@100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Oxanium:wght@200..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
p{
    font-family: Montserrat;
}
/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 16px;
    background-color: #131212;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none; /* Initially hidden */
    opacity: 0;
    transform: translateY(20px); /* Start slightly below */
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000000000;
  }
  
  /* Hover effect */
  #backToTop:hover {
    background-color: #333;
  }
  
  /* Show button with fade-up effect */
  #backToTop.show {
    display: block;
    opacity: 1;
    transform: translateY(0); /* Move to original position */
  }
/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Title & Description Section */
.description {
    background: #000;
    color: white;
    padding: 50px 10%;
    text-align: left;
    
}

.description h1 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 25px;
}

.description p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Missions Section */
.missions {
    background: #000000;
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Mission Card */
.mission-card {
    display: flex;
    background: #0b0b0b;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 90%;
    margin: 0 auto;
}

/* Hover Effect */
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 60px rgba(255, 217, 0, 0.346);
}

/* Image Section */
.image-container {
    flex: 1;
    overflow: hidden;
    max-height: 300px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Hover Zoom Effect */
.mission-card:hover .image-container img {
    transform: scale(1.05);
}

/* Content Section */
.content {
    flex: 1;
    padding: 30px;
    color: white;
}

/* Title */
.content h2 {
    font-size: 28px;
    color: #fc7200;
    margin-bottom: 15px;
}

/* Text */
.content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Read More Button */
.read-more {
    text-decoration: none;
    color: #fc7200;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.read-more:hover {
    color: white;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Footer */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 15px;
}

/* ✅ Responsive Design */

/* Larger Screens (Desktop) */
@media (max-width: 1440px) {
    .mission-card {
        max-width: 80%;
    }
}

/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
    .mission-card {
        flex-direction: column;
        max-width: 95%;
    }
    .image-container {
        height: 240px;
    }
}

/* Small Screens (Phones) */
@media (max-width: 768px) {
    .description h1 {
        font-size: 30px;
    }

    .content h2 {
        font-size: 22px;
    }

    .content p {
        font-size: 14px;
    }

    .missions {
        padding: 30px 5%;
    }
}
