
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* General Navbar Styles */
.navbar {
    background-color: #003366;
    animation: slideIn 1s ease-out;
}

.navbar-brand {
    font-weight: bold;
    font-size: 2rem; /* Increase size for desktop view */
    color: #fff;
    white-space: nowrap; /* Prevent text from wrapping */
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #fff;
    padding: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #FF5733;
}

/* Navbar Toggler Styles */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-color: #fff; /* Black and white color for the toggler icon */
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1.5rem; /* Adjust font size for mobile view */
        text-align: center;
        flex: 1; /* Make the brand name fit edge-to-edge */
    }
    
    .navbar-toggler-icon {
        background-color: #000; /* Black background for the toggler icon */
    }
    
    .navbar-collapse {
        text-align: center; /* Center align the navbar items */
    }
    
    .navbar-nav {
        margin-top: 10px;
    }
}






.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #003366;
    animation: fadeIn 2s ease-out;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: zoomIn 1s ease-out;
}

.gallery-img img, .news-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    animation: fadeIn 2s ease-out;
    cursor: pointer;
}

.gallery-img img:hover, .news-img img:hover {
    transform: scale(1.05);
}

.contact-form input, .contact-form button {
    border-radius: 25px;
    margin: 10px 0;
}

.contact-form button {
    background-color: #FF5733;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #C70039;
}

.footer {
    background-color: #003366;
    color: #fff;
    padding: 20px;
    text-align: center;
    animation: slideIn 2s ease-out;
}

.footer a {
    color: #FF5733;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

#carouselExampleIndicators {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    margin-bottom: 0; /* Remove bottom margin */
}

#carouselExampleIndicators .carousel-item {
    position: relative;
    height: 100%;
}

#carouselExampleIndicators .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure the image fits within the container without cropping */
}

.carousel-control-prev, .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    #carouselExampleIndicators {
        height: 50vh; /* Adjust height for mobile view */
    }

    #carouselExampleIndicators .carousel-item img {
        object-fit: contain; /* Ensure the image fits within the container without cropping */
    }
}

.hero-section {
    position: relative;
    margin-top: 0;
    padding: 50px 20px; /* Add padding for content spacing */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    animation: fadeIn 2s ease-out;
    border-bottom-left-radius: 50px; /* Lower left curved edge */
    border-bottom-right-radius: 50px; /* Lower right curved edge */
    overflow: hidden; /* To maintain the curved shape */
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif; /* Modern font for heading */
    animation: fadeInUp 1s ease-out;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif; /* Clean font for text */
    animation: fadeInUp 1.5s ease-out;
}

.hero-section .btn {
    background-color: #FF5733;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    animation: bounce 1s infinite;
}

.hero-section .btn:hover {
    background-color: #C70039;
}

/* Responsive design for mobile view */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 15px;
        border-bottom-left-radius: 30px; /* Adjust curve for mobile */
        border-bottom-right-radius: 30px; /* Adjust curve for mobile */
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .hero-section .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Keyframes for animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}



@media (max-width: 768px) {
    #slider-desktop {
        display: none;
    }

    #slider-mobile {
        display: block;
    }
}

@media (min-width: 768px) {
    #slider-desktop {
        display: block;
    }

    #slider-mobile {
        display: none;
    }
}

/* Base Styles */
.mobile-section {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #212529;
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #343a40;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .section-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 15px;
  }
  
  .contact-list {
    list-style-type: none;
    padding: 0;
    font-size: 1rem;
    color: #495057;
  }
  
  .contact-list li {
    margin-bottom: 10px;
  }
  
  .contact-list strong {
    color: #343a40;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .mobile-section {
      padding: 15px;
    }
  
    .section-title {
      font-size: 1.75rem;
      text-align: center;
    }
  
    .section-subtitle {
      font-size: 1.5rem;
      text-align: center;
    }
  
    .section-paragraph {
      font-size: 1.125rem;
      text-align: justify;
    }
  
    .contact-list {
      text-align: center;
    }
  
    .contact-list li {
      margin-bottom: 8px;
    }
  }
  


