

html {
    scroll-behavior: smooth;
overflow-x: hidden; /* Prevent horizontal scroll */
    max-width: 100%;    /* Ensure body doesn't exceed viewport width */
}
.carousel-inner img {
    width: 100%;
    height: 300px; /* Reduced height */
    object-fit: cover;
}/* Navbar */
.navbar {
    background-color: #ff0909; /* Navbar background color */
    border-bottom: 1px solid #ddd; /* Bottom border */
}

.navbar-brand {
    font-size: 1.5rem; /* Increase the logo size */
    font-weight: bold;
    color: #007bff; /* Cyan blue accent color */
}

.navbar-nav .nav-link {
    color: #333; /* Navbar links color */
    transition: color 0.3s; /* Smooth color transition */
}

.navbar-nav .nav-link:hover {
    color: #00bcd4; /* Navbar links hover color (accent color) */
}

.navbar-nav .dropdown-menu {
    background-color: #f8f9fa; /* Light background color */
}

.navbar-nav .dropdown-item:hover {
    background-color: #007bff; /* Cyan blue background on hover */
    color: #ffffff; /* White text on hover */
}


.navbar-toggler-icon {
    border-color: #333; /* Toggler icon color */
}

/* Sections */
.container {
    max-width: 1200px; /* Max width of section content */
    margin: 0 auto; /* Center align content */
    padding: 20px; /* Padding around content */
}

.quoteSection, .hero-section, .video-section, .blog-section, .testimonial-section, .gallery-section, .contact-section {
    margin-bottom: 40px; /* Bottom margin between sections */
}

.hero-section img {
    max-width: 100%; /* Ensure hero image is responsive */
    height: auto; /* Maintain aspect ratio */
}


    
    /* The Modal (background) */
.modal-introo {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 60px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

/* Modal Content */
.modal-content-introo {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px; /* Max width of the modal */
    height: 80%;
    max-height: 80%;
}

/* The Close Button */
.close-introo {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-introo:hover,
.close-introo:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Video inside modal */
.modal-content-introo video {
    width: 100%;
    height: 100%;
    max-height: 100%;
}

.video-section .embed-responsive {
    margin-bottom: 20px; /* Bottom margin for embedded video */
}

.video-section h3, .popular-videos h3, .latest-videos h3 {
    margin-bottom: 10px; /* Bottom margin for video section headings */
}

.video-section .video-list {
    margin-top: 10px; /* Top margin for video lists */
}



/* Blogs */


/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.blog-card {
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.blog-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 15px;
}

.blog-card .card-body h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.blog-section h2 {
    font-size: 2.5rem; /* Larger font size for heading */
    color: #007bff; /* Accent color for heading */
    margin-bottom: 30px; /* Margin below heading */
}
.blog-card .card-body p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.blog-card .card-body a.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
}

.blog-card .card-body a.read-more:hover {
    text-decoration: underline;
}

.blog-card .card-footer {
    background-color: #f8f9fa;
    padding: 10px 15px;
    font-size: 0.875rem;
    color: #6c757d;
    border-top: 1px solid #dee2e6;
}

/* Blog detail styling */
.blog-detail-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.blog-detail-container h2 {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    padding:40px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: capitalize;
}

.blog-detail-container img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.blog-detail-container .meta {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.blog-detail-container p {
    font-family: 'Times New Roman', serif;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
    padding: 0% 25%;
}


/* Testimonial Section */
.testimonial-section {
    background-color: #f9f9f9; /* Light background color for contrast */
    padding: 40px 0; /* Padding top and bottom */
    text-align: center; /* Center align text */
}

.testimonial-section h2 {
    font-size: 2.5rem; /* Larger font size for heading */
    color: #007bff; /* Accent color for heading */
    margin-bottom: 30px; /* Margin below heading */
}

.testimonials-wrapper {
    display: flex; /* Display testimonials horizontally */
    justify-content: center; /* Center align testimonials horizontally */
    gap: 30px; /* Space between testimonials */
    flex-wrap: wrap; /* Wrap testimonials on smaller screens */
}

.testimonial {
    background: #fff; /* White background for testimonial box */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 20px; /* Padding inside testimonial box */
    width: 300px; /* Fixed width for each testimonial */
    text-align: center; /* Center align text inside testimonial */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}

.testimonial-content {
    display: flex; /* Flex container for icon and text */
    flex-direction: column; /* Stack icon and text vertically */
    align-items: center; /* Center align items horizontally */
}

.testimonial-icon {
    font-size: 40px; /* Size of the icon */
    color: #00bcd4; /* Accent color for icon */
    margin-bottom: 15px; /* Space between icon and text */
}

.testimonial-text footer {
    font-weight: bold; /* Bold font for name */
    color: #fff !important; /* Darker color for name */
    margin-bottom: 10px; /* Space between name and testimonial */
}

.testimonial blockquote {
    font-style: italic; /* Italic style for testimonials */
    margin: 0; /* Remove default margins */
}

.testimonial:hover {
    transform: translateY(-5px); /* Lift the testimonial slightly on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}




/* gallery section */
.gallery-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light gray background */
    text-align: center;
}



.gallery-thumbnail {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease; /* Smooth hover transition */
}

.gallery-thumbnail:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.gallery-section .section-title {
    
    font-size: 2.5rem; /* Larger font size for heading */
    color: #007bff; /* Accent color for heading */
    margin-bottom: 30px; /* Margin below heading */

}







/* Modal Styling */
.modal-content {
    background-color: #ffffff; /* White background */
    border: none; /* No border */
    border-radius: 0; /* No rounded corners */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.modal-body img {
    width: 100%;
    height: auto;
}

.gallery-section .gallery-images {
    display: flex; /* Flex layout for gallery images */
    flex-wrap: wrap; /* Wrap images */
}

.gallery-section .gallery-images img {
    width: calc(25% - 10px); /* Image width with margin */
    margin: 5px; /* Margin around images */
}

/* Contact Us Section */
.contact-us-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.contact-us-section .section-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: bold;
}
.contact-us-section .section-title {
    text-align: center;
}


.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.contact-form .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.contact-form .btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Align the form to the left */
.contact-us-section .container {
    text-align: left;
}

.contact-form {
    max-width: 100%;
    margin: 0;
}

.contact-info {
    padding-left: 30px;
}

.contact-info h4, .contact-info h5 {
    margin-top: 20px;
}

.social-media-icons a {
    font-size: 24px;
    margin-right: 15px;
    color: #333;
    transition: color 0.3s;
}

.social-media-icons a:hover {
    color: #007bff;
}







/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    background-image: url('../images/eagle.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Dark overlay for better readability */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 600px; /* Limit width of content */
    padding: 20px;
}

.btn-primary {
    background-color: #00bcd4; /* Accent color */
    border-color: #00bcd4; /* Accent color */
}

.btn-primary:hover {
    background-color: #005f7f; /* Darker accent color on hover */
    border-color: #005f7f; /* Darker accent color on hover */
}
.quote-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light background color */
    text-align: center;
}

.blockquote {
    font-size: 24px; /* Quote font size */
    color: #333; /* Quote text color */
}

.blockquote p {
    font-style: italic; /* Italic style for quote text */
    margin-bottom: 30px; /* Bottom margin for quote text */
}
 .blockquote-footer {
    font-size: 18px; /* Footer font size */
    margin-top: 20px; /* Top margin for footer */
    color: #fff !important;
font-weight: bold !important;
  
}


.video-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light gray background color */
    text-align: center;
}

.video-section .section-title {

    font-size: 2.5rem; /* Larger font size for heading */
    color: #007bff; /* Accent color for heading */
    margin-bottom: 30px; /* Margin below heading */

}

.video-card {
    border: none; /* No border on cards */
    background-color: #fff; /* White background for cards */
    transition: transform 0.3s ease; /* Smooth hover transition */
}

.video-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow on hover */
}

.video-card .card-img-top {
    width: 100%;
    height: auto;
    border-top-left-radius: 4px; /* Rounded corners for top left and top right */
    border-top-right-radius: 4px;
}

.video-card .card-body {
    padding: 1.25rem; /* Padding inside card body */
}

.video-card .card-title {
    font-size: 1.25rem; /* Larger font size for card titles */
    margin-bottom: 10px; /* Space below card titles */
}

.video-card .card-text {
    color: #6c757d; /* Lighter text color */
    line-height: 1.6; /* Increased line height for readability */
}

.video-card .btn-primary {
    background-color: #007bff; /* Primary button color */
    border-color: #007bff; /* Primary button border color */
}

.video-card .btn-primary:hover {
    background-color: #0069d9; /* Darker shade on hover */
    border-color: #0062cc; /* Darker shade on hover */
}
.video-section .btn-secondary {
    background-color: #6c757d;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}

.video-section .btn-secondary:hover {
    background-color: #5a6268;
    transform: scale(1.05);
}


/* Custom Styles for Video Gallery Page */

/* Navbar custom styles */
.navbar-brand {
    font-size: 1.5rem; /* Increase the logo size */
    font-weight: bold;
    color: #007bff; /* Cyan blue accent color */
}

.navbar-nav .nav-link {
    color: #343a40; /* Dark text color */
}

.navbar-nav .nav-link:hover {
    color: #007bff; /* Cyan blue accent color on hover */
}

/* Gallery Section Styling */

/* Modal Styling */
.modal-content {
    background-color: #ffffff; /* White background */
    border: none; /* No border */
    border-radius: 0; /* No rounded corners */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.modal-body img {
    width: 100%;
    height: auto;
}



.horizontal-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Padding around card content */
}

.horizontal-card .card-img {
    width: 100%;
    height: auto;/* Full height for image */
    object-fit: cover; /* Cover image fit */
}

.icon-links {
    margin-top: 10px;
}
.icon-links a {
    margin-right: 15px;
    font-size: 1.2rem;
}

.card-title {
    font-size: 1.25rem; /* Larger card title */
    font-weight: bold;
}

.card-text {
    font-size: 1rem; /* Regular font size for text */
}

/* Floating Contact Us Button Container */
#contactUsContainer {
    position: fixed;
    bottom: 70px;
    right: 20px;
    display: none; /* Initially hidden */
    z-index: 1000; /* Ensure it is on top */
}


/* Floating Contact Us Button Container */
#contactUsContainer {
    position: fixed;
    bottom: 70px;
    right: 20px;
    display: none; /* Initially hidden */
    z-index: 1000; /* Ensure it is on top */
}

/* Floating Contact Us Button */
.contact-us-button {
    background-color: #007bff; /* Button color */
    color: white; /* Icon color */
    border: none;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
    font-size: 24px; /* Icon size */
    animation: bounce 2s infinite; /* Add bounce animation */
}

.contact-us-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Message Bubble */
.contact-us-bubble {
    background-color: #333; /* Bubble background color */
    color: white; /* Text color */
    padding: 10px 15px;
    border-radius: 15px;
    position: absolute;
    bottom: 60px; /* Adjusted to be above the button */
    right: 0;
    white-space: nowrap;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    animation: fadeIn 1s ease-in-out;
}

/* Keyframes for Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Keyframes for Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/* Partners Companies Section */
.partners-section {
    background-color: #f8f9fa; /* Light gray background */
    text-align: center;
}

.partners-section .section-title {
    color: #343a40; /* Dark text color */
    font-size: 2rem; /* Larger font size */
    margin-bottom: 30px; /* Space below section title */
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.partner-logo {
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effect */
}

.partner-logo img {
    width: 100%; /* Ensure logos fit their containers */
    max-width: 150px; /* Max width for logos */
    filter: grayscale(100%); /* Black and white filter */
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effect */
}

.partner-logo:hover img {
    filter: grayscale(0); /* Remove filter on hover (color) */
    transform: scale(1.1); /* Slightly enlarge on hover */
    animation: bounce 0.3s; /* Add bounce animation on hover */
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}



/* Additional Styles */
.sidebar {
    background-color: #f8f9fa;
    padding: 20px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    overflow-y: auto;
}

.sidebar .nav-item {
    margin-bottom: 10px;
}

.main-content {
    margin-left: 220px; /* Adjust this based on sidebar width */
    padding: 20px;
}

.article-list {
    margin-top: 20px;
}

.article-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.article-item img {
    max-width: 100px;
    margin-right: 20px;
}

.article-content {
    flex: 1;
}

.article-actions {
    display: flex;
    align-items: center;
}

.article-actions a {
    margin-left: 10px;
    font-size: 24px;
    color: #333;
    transition: color 0.3s;
}

.article-actions a:hover {
    color: #007bff;
}


/* about us */

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
  }
  
  /* About Us Section */
  .about-us-section {
    background-color: #fff;
    padding: 60px 0;
  }
  
  .about-us-section h2 {
    text-align: center;
    color: #00bcd4; /* Accent color for heading */
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .about-us-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px; /* Space between image and text */
  }
  
  .about-us-image {
    flex: 1;
    min-width: 300px; /* Ensure the image container does not shrink too much */
  }
  
  .about-us-image img {
    width: 100%;
    border-radius: 8px; /* Rounded corners for the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  }
  
  .about-us-text {
    flex: 2;
    min-width: 300px; /* Ensure the text container does not shrink too much */
  }
  
  .about-us-text h3 {
    color: #333; /* Darker color for subheadings */
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .about-us-text p {
    color: #555; /* Medium color for paragraph text */
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
 
  


/* Hero Section for library only */
/* Hero Section */
.hero-sectionL {
    background: url('../images/eagle.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: #fff;
}

.hero-sectionL h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-sectionL p {
    font-size: 1.5rem;
}

/* Button in Hero Section */
.hero-sectionL .btn {
    background-color: #00bcd4;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
}

.hero-sectionL .btn:hover {
    background-color: #005f7f;
}

/* Table Styles */
.table-hover tbody tr:hover {
    background-color: #f5f5f5;
}

.table img {
    width: 50px;
    height: auto;
}

.table .fa-download {
    font-size: 1.5rem;
    color: #00bcd4;
}

.table .fa-download:hover {
    color: #005f7f;
}

/* Search Bar */
#searchBar {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}




/* Footer */
footer {
    background-color: #007bff; /* Footer background color (accent color) */
    color: #fff; /* Footer text color */
    padding: 40px 0; /* Padding top and bottom */
    text-align: center; /* Center-align text for better layout */
}

footer .form-control {
    border-radius: 5px 0 0 5px;
    border: 1px solid #fff;
    padding: 10px;
}

footer .btn-light {
    border: 1px solid #fff;
    color: #00bcd4; /* Accent color */
    border-radius: 0 5px 5px 0;
    transition: background-color 0.3s, color 0.3s;
}

footer .btn-light:hover {
    background-color: #005f7f; /* Darker accent color on hover */
    color: #fff;
}

footer .text-white a {
    color: #fff;
    transition: color 0.3s;
}

footer .text-white a:hover {
    color: #005f7f; /* Darker accent color on hover */
}
