/* Sticky Navbar */
.navbar {
    transition: all 0.3s ease-in-out; /* Smooth transitions */
}

.navbar-brand, .nav-link {
    font-size: 1.1rem; /* Slightly larger text for better readability */
}

.navbar-brand:hover, .nav-link:hover {
    color: #003f82; /* Darker shade of your chosen color on hover */
    text-decoration: none; /* Remove underline on hover */
}

/* Add shadow when scrolling */
.navbar.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    background-color: white; /* Ensure background stays white */
}


.swiper-container {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    background-color: #fff;
}

.swiper-button-next, .swiper-button-prev {
    color: #fff;
}


/* General styles for the hero section */
.hero {
    width: 100%;
    overflow: hidden;
}

/* Ensure swiper containers fill the viewport */
.swiper-container {
    width: 100%;
    height: 100vh; /* Full height for desktop */
}

/* Responsive hero section */
@media (max-width: 768px) {
    .swiper-slide {
        height: 70vh; /* Adjust height for tablets and smaller screens */
    }

    .swiper-container {
        height: auto; /* Adjust container height */
    }

    .swiper-slide .container {
        padding: 20px; /* Add padding to avoid edges on mobile */
    }

    .display-4 {
        font-size: 2rem; /* Make headings smaller on mobile */
    }

    .lead {
        font-size: 1rem; /* Adjust subheadings */
    }
}

@media (max-width: 480px) {
    .swiper-slide {
        height: 60vh; /* Smaller height for very small screens */
    }

    .display-4 {
        font-size: 1.5rem; /* Adjust headings further */
    }

    .lead {
        font-size: 0.9rem; /* Smaller subheadings */
    }

    .btn {
        padding: 10px 20px; /* Adjust button size */
    }
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10px; /* Padding to avoid content sticking to the edges */
}

.swiper-slide img {
    object-fit: cover; /* Ensures images cover the container */
    width: 100%;
    height: 100%;
}
/* Navigation buttons */
.swiper-button-next, .swiper-button-prev {
    width: 30px;
    height: 30px;
    background-size: 100% 100%;
}

@media (max-width: 480px) {
    .swiper-button-next, .swiper-button-prev {
        width: 20px;
        height: 20px;
    }
}



@media (max-width: 768px) {
    .message-content {
        height: auto; /* Adjust height for better fit on smaller screens */
        padding: 10px;
    }
    
    .icon-container i {
        font-size: 30px; /* Reduce icon size for smaller screens */
    }
}

@media (max-width: 576px) {
    .message-content {
        padding: 8px; /* Further reduce padding for very small screens */
    }
}


.message-container {
    max-height: 600px; /* Adjust as needed */
    overflow-y: auto; /* Makes the content scrollable */
    margin: 20px 0; /* Add spacing */
}

.icon-container i {
    color: #075bb0; /* Icon color */
}

.message-content {
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.message-title {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.message-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}


/* Base styling for the team section */
.team-classic-caption {
    padding: 15px;
    background-color: #075bb0;
    border-radius: 10px;
    color: #ffffff;
    box-shadow: 0 4px 8px #075bb0;
    transition: all 0.3s ease-in-out;
}

.team-classic-caption:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-5px);
}

.team-member-image {
    object-fit: cover;
    height: 250px;
    width: 250px;
    border: 5px solid #ffffff;
    transition: transform 0.3s ease-in-out;
}

.team-member-image:hover {
    transform: scale(1.05);
}

.team-member-name {
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    color: #f0f0f0;
    transition: color 0.3s ease;
}

.team-member-name:hover {
    color: #1e90ff;
}

.team-classic-status {
    font-size: 1rem;
    font-style: italic;
    margin-top: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .team-member-image {
        height: 200px;
        width: 200px;
    }

    .team-classic-caption {
        padding: 10px;
    }

    .team-member-name {
        font-size: 1.1rem;
    }

    .team-classic-status {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .col-sm-6, .col-md-4, .col-lg-3 {
        flex: 0 0 100%; /* Full width for smaller devices */
        max-width: 100%;
    }

    .team-member-image {
        height: 180px;
        width: 180px;
    }

    .team-classic-caption {
        padding: 8px;
    }

    .team-member-name {
        font-size: 1rem;
    }

    .team-classic-status {
        font-size: 0.85rem;
    }
}

.partners-section {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: flex-start; /* Aligns items to the left */
	margin: 0;
	padding: 20px;
}

.partners-section .col-md-6, .partners-section .col-xl-4 {
	flex: 1 1 22%; /* 4 items per row */
	max-width: 24%; /* Ensure no more than 4 items per row */
	box-sizing: border-box;
}

/* Styling for individual partner card divs */
.partners-section .quote-modern {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 4px 8px #075bb0;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 150px; /* Reduced height for smaller cards */
	margin-bottom: 20px; /* Space below each card */
}

/* Styling for the image */
.partners-section .quote-modern-figure {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}

.partners-section .quote-modern-figure img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover; /* This will ensure the image covers the div */
	border-radius: 10px;
}

/* Responsive design for small screens */
@media (max-width: 768px) {
	.partners-section .col-md-6, .partners-section .col-xl-4 {
		flex: 1 1 48%; /* 2 cards per row on smaller screens */
		max-width: 48%;
	}
}

@media (max-width: 480px) {
	.partners-section .col-md-6, .partners-section .col-xl-4 {
		flex: 1 1 100%; /* 1 card per row on very small screens */
		max-width: 100%;
	}
}




/* General styling for the form section */
#contacts {
  background-color: #f8f9fa; /* Light background color */
  padding: 40px 15px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Styling for form header */
#contacts .title-classic-title h3 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

#contacts .title-classic-text p {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 25px;
}

/* Styling for form groups */
.form-group-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.form-input:focus {
  border-color: #075bb0;
  box-shadow: 0 0 8px rgba(7, 91, 176, 0.3);
}

.form-label {
  position: absolute;
  top: 12px;
  left: 15px;
  font-size: 1rem;
  color: #aaa;
  pointer-events: none;
  transition: 0.3s;
}

/* Floating label effect */
.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: #075bb0;
}

/* Styling for textarea */
.textarea-lg {
  height: 150px;
  resize: vertical;
}

/* Styling for the submit button */
.button.message {
  background-color: #075bb0;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: block;
  width: 100%;
  transition: background-color 0.3s, transform 0.3s;
}

.button.message:hover {
  background-color: #064d8e;
  transform: translateY(-3px);
}

/* Responsive design */
@media (max-width: 768px) {
  .form-group-container {
    grid-template-columns: 1fr; /* Single column on small screens */
  }
}

@media (max-width: 480px) {
  .form-input,
  .button.message {
    font-size: 1rem;
    padding: 10px;
  }

  .form-label {
    font-size: 0.9rem;
  }
}


/* Custom styles */
.bg-light {
    background-color: #f8f9fa !important; /* Light background */
  }
  .form-control:focus {
    border-color: #075bb0; /* Change the border color on focus */
    box-shadow: 0 0 0 0.25rem rgba(7, 91, 176, 0.25); /* Optional focus box-shadow */
  }
  .btn-primary {
    background-color: #075bb0;
    border-color: #075bb0;
  }
  .btn-primary:hover {
    background-color: #064f8a;
    border-color: #064f8a;
  }

  /* Custom responsive styling */
@media (max-width: 576px) {
    .form-floating label {
      font-size: 0.9rem; /* Adjust label size on small screens */
    }
    .btn-primary {
      font-size: 1rem; /* Adjust button font size */
    }
  }
  
  @media (min-width: 768px) {
    .form-floating input,
    .form-floating textarea {
      padding: 0.75rem; /* Adjust padding for medium screens */
    }
  }

  


  
/* General container styles */


    /* Job card styles */
    .job-card {
        padding: 20px;
        border: 2px solid #075bb0;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Hover effect for job cards */
    .job-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 2px 10px #075bb0;
    }

    /* Button styles */
    .btn-info {
        background-color: #075bb0;
        border: ;
        padding: 10px 15px;
        font-size: 14px;
        border-radius: 3px;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    /* Hover effect for buttons */
    .btn-info:hover {
        background-color: white;
        box-shadow: 0 4px 8px white;
    }

    /* Cursor effect for interactivity */
    .btn-info:focus,
    .job-card:hover a {
        cursor: pointer;
    }

    /* Center the heading */
    .text-center {
        font-weight: bold;
    }






    
.job-card {
    width: 100%;
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}




    .table th, .table td {
        vertical-align: middle;
        text-align: justify;
    }

    .table th {
        background-color: #343a40;
        color: white;
    }

    .table-hover tbody tr:hover {
        background-color: #f8f9fa;
    }

    .table-responsive {
        margin-bottom: 30px;
    }

    .shadow-lg {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .rounded {
        border-radius: 0.375rem;
    }

    .btn-sm {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }

    .table th, .table td {
        padding: 1rem;
    }

    /* Custom Styles for Headings */
    h2 {
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Mobile-Friendly Styles */
    @media (max-width: 767px) {
        .table th, .table td {
            font-size: 0.9rem;
        }

        .table thead {
            font-size: 1rem;
        }

        .btn-sm {
            padding: 0.5rem 1rem;
        }
    }

    /* Enhanced Action Buttons */
    .btn-info {
        background-color: #17a2b8;
        border-color: #17a2b8;
    }

    .btn-info:hover {
        background-color: #138496;
        border-color: #117a8b;
    }

    .btn-success {
        background-color: #28a745;
        border-color: #28a745;
    }

    .btn-success:hover {
        background-color: #218838;
        border-color: #1e7e34;
    }
  
    .animated-title, .animated-description {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    
    .swiper-slide-active .animated-title,
    .swiper-slide-active .animated-description {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Ensure the image fills the viewport without being cropped */
    .swiper-slide {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    
    