/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  overflow-x: hidden;
  background-image: url(body.png);
}
html {
  overflow-x: hidden;
}

.section-title {
  font-weight: bold;
  font-size: 2rem;
}
.section-hr {
  border: none;
  height: 3px; /* Set thickness */
  background-color: #de262c; /* Fully solid color */
  width: 50px; /* Adjust width as needed */
  margin: 10px auto; /* Center the line */
  opacity: 1; /* Ensure full opacity */
}

/* Cookie Popup Styling */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f8f9fa;
  border-top: 1px solid #ccc;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 7px;
  color: #333;
}

.cookie-content p {
  margin-bottom: 15px;
  font-size: 0.9rem !important;
}

.cookie-link {
  color: #056579;
  text-decoration: underline;
  font-weight: bold;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
}

.btn-accept {
  background-color: #056579;
  color: #fff;
}

.btn-reject {
  background-color: #e74c3c;
  color: #fff;
}

.btn:hover {
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-buttons {
    flex-direction: column;
    gap: 5px;
  }
}

/* Style for the popup overlay */
.popup-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}
/* Make the first option bold */
.bold-option {
  font-weight: bold;
}
/* Style for the popup content with border */

/* Style for the popup logo */
.popup-logo {
  position: absolute;
  top: -60px; /* Adjust the logo's position above the box */
  left: 50%;
  transform: translateX(-50%); /* Center the logo horizontally */
  width: 80px; /* Set a fixed width for the logo */
  height: 80px; /* Set a fixed height for the logo */
  background: rgb(
    255,
    255,
    255
  ); /* Add a semi-transparent circle for a glass effect */
  border-radius: 50%; /* Make the logo background circular */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
  padding: 5px; /* Add some padding inside the circle */
  z-index: 2; /* Ensure the logo is above the popup content */
}

/* Style the logo image */
.popup-logo img {
  width: 100%; /* Fit the image within the container */
  height: 100%; /* Maintain aspect ratio */
  object-fit: contain; /* Ensure the logo scales proportionally */
}

/* Style for the popup content with glassmorphism */
.popup-content {
  position: relative;
  background: rgba(235, 232, 232, 0.301); /* Semi-transparent white */
  padding: 25px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3); /* Soft shadow */
  border: 1px solid rgba(0, 0, 0, 0.2); /* Subtle border for glass effect */
  animation: popup-fade-in 0.3s ease-in-out;
  backdrop-filter: blur(15px); /* Enhanced blur for content */
  -webkit-backdrop-filter: blur(15px); /* Safari support */
  border: 2px solid #b3b2b2;
}

/* Close button style */
/* Close button style */
.close-btnn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #ffffff; /* Bright color for contrast */
  cursor: pointer;
  background: none;
  border: none;
  transition: transform 0.2s;
}

.close-btnn:hover {
  transform: scale(1.2); /* Subtle hover effect */
  color: #de262c; /* Highlight on hover */
}

/* Header style */
.popup-content h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #ffffff;
}

/* Add stylish underline to text */
.popup-content p {
  font-size: 1rem;
  color: #ffffff; /* White text for visibility */
  margin-bottom: 15px;
  position: relative;
}

.popup-content p::after {
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  background: #ffffff;
  margin: 8px auto 0;
}

/* Dropdown menu styling */
.popup-content select {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #cccccc;
}

/* Button styling */
.popup-content button {
  margin-top: 15px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #007bff, #0056b3); /* Modern gradient */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add button shadow */
}

.popup-content button:hover {
  background: linear-gradient(135deg, #0056b3, #003f7f);
  transform: scale(1.05); /* Subtle hover effect */
}

/* Fade-in animation */
@keyframes popup-fade-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* About us Page */
h2 {
  font-weight: 600;
}
.page {
  border: 4px solid #1a6c9c;
  margin: 20px auto; /* Center the page */
  padding: 20px;
  max-width: 900px; /* Set a maximum width to make it smaller on large screens */
}

.image-placeholder {
  width: 100%;
  height: 200px;
  background-color: #f0f0f0;
  text-align: center;
  line-height: 200px;
  font-size: 20px;
  color: #888;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
  .page {
    max-width: 100%; /* Full width on smaller screens */
    margin: 10px;
    padding: 10px;
  }
}
.two-column-list {
  columns: 2; /* Splits the list into two columns */
  column-gap: 20px; /* Adjusts the space between columns */
  padding: 0;
}

.two-column-list li {
  margin-bottom: 10px; /* Adds space between list items */
  text-align: center; /* Centers the text of each list item */
  list-style-position: inside; /* Ensures the bullet stays inside with centered text */
}

/* Floating WhatsApp Icon */
.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-icon img {
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: transform 0.3s;
}

.whatsapp-icon img:hover {
  transform: scale(1.1);
}

/* Call Options (Initially Hidden) */
.call-options {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 999;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.call-button {
  display: block;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
}

.call-button i {
  margin-right: 10px;
}

/* WhatsApp Call Button */
.whatsapp-call {
  background-color: #25d366;
}

.whatsapp-call:hover {
  background-color: #1ebe56;
}

/* Direct Call Button */
.direct-call {
  background-color: #056579;
}

.direct-call:hover {
  background-color: #ff5e00;
}

/* Show Call Options when clicked */
.show-options {
  display: block;
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #ffffff;
  border-bottom: 3px solid #196b9d;
  position: fixed;
  width: 100%;
  z-index: 100;
}
/* Keep dropdown container aligned but prevent it from becoming a flex container */
.nav-links .dropdown {
  display: block; /* Restore block so submenu positions correctly */
  position: relative; /* Keep dropdown content anchored */
}

/* Keep ONLY the link inside dropdown aligned */
.nav-links .dropdown > .drop-btn {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Logo */
.logo img {
  height: 60px;
}

/* Nav Links Styling */
.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #de262c;
  font-weight: 700;
  transition: color 0.3s;
  font-size: 14px;
}

.nav-links a:hover {
  color: #196b9d;
}

/* Dropdown Menu Styling */
.dropdown {
  position: relative;
}

.down-arrow {
  margin-left: 5px; /* Space between link text and arrow */
}

.dropdown-content {
  display: none; /* Keep it hidden by default */
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.dropdown-content a {
  color: #d7222e;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.divider {
  height: 1px; /* Height of the divider */
  background-color: #d7222e; /* Color of the divider */
  margin: 5px 0; /* Space above and below the divider */
}

.dropdown:hover .dropdown-content {
  display: block; /* Show dropdown on hover */
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Animated Menu Icon for Mobile */
.menu-icon {
  display: none;
  position: relative;
  cursor: pointer;
  z-index: 102;
}

.menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: #000000;
  transition: 0.3s;
}

/* Transform to Close Icon */
.menu-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active span:nth-child(2) {
  opacity: 0;
}

.menu-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Styling */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: #d7222ed3;
  padding: 60px 20px 20px; /* Add padding at the top */
  display: flex;
  flex-direction: column;
  gap: 15px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 101;
  background-image: url("nav logo.png"); /* Path to your logo */
}
.mobile-nav .nav-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Underline effect */
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
/* Close Button CSS */
.close-btn {
  position: absolute;
  top: 25px;
  right: 39px;
  font-size: 24px;
  color: black;
  cursor: pointer;
  z-index: 110;
  transition: transform 0.3s ease, color 0.3s ease;
  animation: pulse 1.5s infinite ease-in-out; /* Pulse animation */
}
/* Overlay Styling */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 100;
}

/* Toggle Active States */
.mobile-nav.active {
  transform: translateX(0);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Dropdown styling in mobile nav */
.mobile-dropdown {
  position: relative;
}

.mobile-submenu {
  display: none;
  padding-left: 20px;
  margin-bottom: -10px;
  padding-top: 10px;
  list-style-type: disc;
  color: #fff;
}

.mobile-submenu.active {
  display: block; /* Show submenu when active */
}

.mobile-dropdown.active .mobile-submenu {
  display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-icon {
    display: block;
  }

  .mobile-submenu li {
    margin-bottom: 8px;
    color: white; /* Set text color to white */
  }

  .mobile-submenu li::marker {
    color: white; /* Set bullet color to white */
  }
}
.social-media {
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between the icons */
  margin-top: 20px; /* Space above the icons */
}

.social-media a {
  color: #fff; /* White color for the icons */
  font-size: 1.5em; /* Size of the icons */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s; /* Smooth color transition */
}

.social-media a:hover {
  color: #d7222e; /* Change color on hover */
}

.apply-now {
  display: block;
  background-color: #196b9d; /* Button color */
  color: #fff; /* Text color */
  padding: 10px 20px; /* Padding for the button */
  text-align: center; /* Center the text */
  text-decoration: none; /* Remove underline */
  border-radius: 5px; /* Rounded corners */
  margin-top: 20px; /* Space above the button */
  transition: background-color 0.3s; /* Smooth background transition */
}

.apply-now:hover {
  background-color: #08588a; /* Change button color on hover */
}

/* Hover effect - rotate */
.close-btn:hover {
  color: #ffffff;
  transform: rotate(90deg) scale(1.2); /* Rotate and scale slightly on hover */
}

/* Pulse animation */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(
      1.1
    ); /* Slightly enlarges in the middle of the animation */
  }
}

.hero {
  position: relative;
  height: 100vh; /* Full height */
  color: #fff;
  overflow: hidden; /* Prevent overflow */
}

.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the whole section */
  transform: translate(-50%, -50%);
  z-index: 1; /* Behind the text */
}

.container {
  position: relative;
  z-index: 2; /* Above the video */
  text-align: center;
}

.btn-light {
  background-color: #ffffff;
  color: #d7222e; /* Change to your desired button color */
}

/*  industries */
.invest-table td {
  border: 0.5px solid #eb3333; /* Border color and size for each cell */
}
/* Style for smaller headings and icons */
.invest-heading {
  font-size: 1.2rem; /* Smaller heading size */
  font-weight: bold; /* Keep bold for emphasis */
}

#recruitment-process {
  background-color: #f7f7f7;
  padding: 50px 0;
}

.process-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.process-title {
  text-align: center;
  font-size: 36px;
  color: #196b9d;
  font-weight: bold;
  margin-bottom: 10px;
}

.process-description {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.process-step-icon {
  font-size: 40px;
  color: #007bff;
  margin-right: 20px;
  flex-shrink: 0;
}

.process-step-content h3 {
  color: #196b9d;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.process-step-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

/* Media query for larger screens */
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* why choose Section */
#courses-offered {
  position: relative;
}

.course-image {
  position: relative;
  height: 250px; /* Set a fixed height */
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex; /* Use flexbox for alignment */
  align-items: center; /* Center vertically */
}

/* Align the info to the left */
.course-info {
  position: absolute;
  left: 10px; /* Align to left */
  color: white;
  padding: 15px;
  background: rgba(13, 62, 148, 0.5); /* Dark background for readability */
  border-radius: 5px;
  width: 50%; /* Set a width to ensure it doesn't take the entire space */
}

.course-info h3 {
  margin: 0;
  font-size: 1.5em; /* Adjusted heading size */
}

.course-info p {
  margin-top: 5px;
  font-size: 1em; /* Adjusted paragraph size */
}

/* Responsive Design */
@media (max-width: 767px) {
  .course-image {
    height: 200px; /* Adjust height for mobile */
  }

  .course-info {
    left: 10px; /* Keep on left */
    bottom: 10px; /* Align to bottom */
    padding: 10px;
    width: 60%; /* Ensure it stays on the left */
  }

  .course-info h3 {
    font-size: 1.2em; /* Smaller heading size */
  }

  .course-info p {
    font-size: 0.9em; /* Smaller paragraph size */
  }
}

/* For desktop view, set 2 cards per row */
@media (min-width: 768px) {
  .country-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .country-card {
    width: 90%; /* Adjust to ensure two cards per row */
  }
}

/* For mobile view, set 1 card per row */
@media (max-width: 767px) {
  .country-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .country-card {
    width: 100%;
  }
}

/* journey section */
.schengen-section {
  /* background: linear-gradient(rgba(29, 105, 157, 0.8), rgba(29, 105, 157, 0.8)), url('path-to-your-background-image.jpg') no-repeat center center;*/
  background-size: cover;
  color: #ffffff;
  padding: 60px 0;
}

.section-description {
  color: black;
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.country-card {
  background-color: rgba(
    218,
    213,
    213,
    0.85
  ); /* Lighter semi-transparent background */
  border-radius: 12px; /* Rounded corners */
  padding: 20px; /* Increased padding */
  margin: 15px 0; /* Margin between cards */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* More pronounced shadow */
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}

.country-card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); /* Darker shadow on hover */
}

.country-image {
  width: 100%; /* Full width for images */
  height: auto; /* Maintain aspect ratio */
  border-radius: 10px; /* Rounded corners for images */
}

.country-card h3 {
  font-size: 1.5rem; /* Country name size */
  margin-top: 15px; /* Space above the title */
  color: black;
}

.country-card p {
  color: black;
  font-size: 1rem; /* Smaller text for descriptions */
  margin-top: 10px; /* Space above the description */
}

.services-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  scroll-snap-type: x mandatory;
}

.service-slide {
  min-width: 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.5s ease-in-out;
}

.service-image {
  width: 40%;
  border-radius: 8px;
  margin-right: 20px;
}

.service-content {
  width: 55%;
  text-align: left;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.prev-slide,
.next-slide {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  margin: 0 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
  background-color: #0056b3;
}
/* Desktop-specific styles */
/* Desktop-specific styles */
@media (min-width: 1024px) {
  .services-container {
    width: 70%; /* Reduce the container width on desktop */
    margin: 0 auto; /* Center the container horizontally */
    text-align: center; /* Ensure text is centered within the container */
  }

  .services-slider {
    display: flex;
    overflow: hidden;
    width: 100%; /* Make sure the slider takes the full container width */
  }

  .service-slide {
    min-width: 100%; /* Ensure each slide takes full width */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 40px; /* Add padding around the content */
    box-sizing: border-box; /* Prevent overflow from padding */
  }

  .service-image {
    width: 30%; /* Adjust image width */
    margin-right: 30px; /* Increase space between image and text */
  }

  .service-content {
    width: 60%; /* Make the content area wider */
    text-align: left; /* Align text to the left */
  }

  .services-title {
    font-size: 40px; /* Larger title font */
    margin-bottom: 20px;
  }

  .services-description {
    font-size: 20px; /* Slightly larger description */
    margin-bottom: 40px;
  }

  .slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .prev-slide,
  .next-slide {
    font-size: 20px;
    padding: 12px 25px; /* Larger button padding */
    margin: 0 15px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    border: none;
  }

  .prev-slide:hover,
  .next-slide:hover {
    background-color: #0056b3;
  }
}

#core-values {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.core-values-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.core-values-title {
  font-size: 36px;
  font-weight: bold;
  color: #196b9d;
  margin-bottom: 30px;
}

.core-values-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.core-value {
  width: 22%; /* Adjust this width as per need */
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.core-value:hover {
  transform: translateY(-5px); /* Slight lift effect on hover */
}

.core-value-icon {
  font-size: 50px; /* Size the icon */
  color: #196b9d; /* Adjust icon color */
  margin-bottom: 20px;
}

.core-value h3 {
  font-size: 22px;
  font-weight: bold;
  color: #196b9d;
  margin-bottom: 10px;
}

.core-value p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Media query for larger screens */
@media (min-width: 768px) {
  .core-value {
    width: 23%; /* Adjust the width for larger screens */
  }
}
/* Media query for mobile screens */
@media (max-width: 767px) {
  .core-value {
    width: 100%; /* Set each card to take the full width on mobile */
  }
}

/* Our Sister Company Section */
#our-sister-company {
  padding: 50px 0;
}
#our-sister-company h3 {
  font-size: 28px;
  font-weight: 600;
  color: #056579;
}

#our-sister-company p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

#our-sister-company img {
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* Add shadow */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer;
}

#our-sister-company .zoom-on-hover:hover {
  transform: scale(1.05); /* Zoom effect on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
}

#our-sister-company a {
  display: block;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  #our-sister-company .row {
    text-align: center;
  }

  #our-sister-company .order-md-2 {
    order: 1;
  }

  #our-sister-company img {
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  /* For mobile view, change the order of elements for the "Navon Study International" section */
  #our-sister-company .order-md-1 {
    order: 2; /* Place image after the text in mobile view */
  }

  #our-sister-company .order-md-2 {
    order: 1; /* Place text before the image in mobile view */
  }
}
.section-divider {
  border: 1px solid #8d8d8d; /* Light gray color */
  margin: 30px 0; /* Space above and below the line */
  width: 100%; /* Full width */
}
/* CSS for smaller social media icons */
.text-center a .fa-facebook,
.text-center a .fa-instagram,
.text-center a .fa-linkedin {
  font-size: 1.2rem; /* Adjust size as needed */

  transition: color 0.3s;
  padding-bottom: 10px;
}

.text-center a {
  margin: 0 1px; /* Space between icons */
}

.text-center a:hover .fa-facebook,
.text-center a:hover .fa-instagram,
.text-center a:hover .fa-linkedin {
  color: #0056b3; /* Darker shade of blue on hover */
}

.client-testimonials-section {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 30px;
}

.client-testimonial-card {
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid #196b9d;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.client-image {
  width: 90%;

  margin-bottom: 15px;
  object-fit: cover;
}

.testimonial-content {
  padding: 0 15px;
}

.client-feedback {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.client-name {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.client-title {
  font-size: 0.9rem;
  color: #888;
}

.testimonials-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  text-align: center; /* Center-align text content */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center-align items horizontally */
}

.testimonial-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.worker-title {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
  text-align: left;
}

.star-rating {
  color: #ffd700; /* Gold color for stars */
  font-size: 1.2rem;
  margin-top: 10px;
}

.star-rating span {
  padding: 0 2px;
}

/* Gallery Section Styling */
#unique-gallery {
  padding: 2rem 1rem; /* Vertical padding and horizontal padding */
}

/* Gallery Item Styling */
.gallery-item {
  border-radius: 10px; /* Rounded corners */
  overflow: hidden; /* Hide overflow for rounded corners */
  transition: transform 0.3s; /* Smooth transform effect */
}

/* Hover Effect on Gallery Items */
.gallery-item:hover {
  transform: scale(1.05); /* Slightly scale up on hover */
}

/* Adjustments for Mobile */
@media (max-width: 768px) {
  .gallery-item {
    margin-bottom: 5px; /* Reduced space between items on mobile */
  }
}

/* Custom CSS for Modal */
.modal-dialog-centered {
  display: flex;
  align-items: center; /* Centering content vertically */
  min-height: calc(100% - 1rem); /* Adjust height for full view */
}
/* Close Button Customization */
.btn-close {
  z-index: 1050; /* Ensure it is above the image */
  /* Add any additional styles as needed */
  background-color: white;
}
/* Add this CSS to your stylesheet */
.modal-open {
  overflow: hidden;
}

/* Contact Section Styles */
#contact {
  background-color: #ffffff; /* White background for the contact section */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  padding: 30px; /* Spacing around the content */
}
.contact-image {
  max-width: 100%; /* Ensures the image doesn't overflow the container */
  height: auto; /* Maintains the aspect ratio of the image */
  border-radius: 8px; /* Rounded corners for a modern look */
  margin-bottom: 20px; /* Spacing below the image */
}

.contact-info h2 {
  font-size: 2.5rem; /* Larger heading */
  color: #333; /* Darker text color */
}

.contact-info h4 {
  font-size: 1.75rem; /* Slightly smaller than the main heading */
  margin: 20px 0 10px; /* Spacing around the subheading */
  color: #de262c; /* Accent color for the subheading */
}

.contact-info p {
  font-size: 1.1rem; /* Slightly larger font size for better readability */
  color: #666; /* Grey text for better contrast */
}

.contact-info a {
  color: #de262c; /* Link color matching the theme */
  text-decoration: none; /* Remove underline for a cleaner look */
}

.contact-info a:hover {
  text-decoration: underline; /* Underline on hover for better UX */
}

/* Form Styles */
/* Form Styles */
.contact-form {
  margin-top: 20px; /* Spacing above the form */
  background-color: #ffffff; /* White background for the form */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow */
  padding: 20px; /* Padding inside the form */
}

.contact-form .form-group {
  margin-bottom: 15px; /* Spacing between form fields */
}

.contact-form label {
  font-weight: bold; /* Bold labels for better readability */
  color: #333; /* Darker text color for labels */
}

.contact-form .form-control {
  border: 1px solid #ccc; /* Border for input fields */
  border-radius: 4px; /* Slightly rounded corners for inputs */
  padding: 10px; /* Padding inside inputs */
}

.contact-form .btn-primary {
  background-color: #de262c; /* Primary button color */
  border: none; /* Remove border */
  width: 100%; /* Full-width button */
  padding: 10px; /* Padding for button */
  font-size: 1.1rem; /* Slightly larger font size for button */
}

/* Footer Styles */
footer {
  background-color: #343a40; /* Dark background for the footer */
  color: white; /* White text color */
  border-top: 4px solid #1a6396; /* Top border for a modern touch */
}

footer p {
  margin: 0; /* Remove default margin */
  font-size: 1rem; /* Uniform font size */
}

.blog-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center align the cards */
  gap: 20px;
  padding: 20px;
  position: relative; /* Allow for absolute positioning */
  top: -30vh; /* Adjust to pull up the blog section */
  z-index: 1; /* Ensure blog cards are above the video */
}

.blog-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left; /* Left-align text within the card */
  width: 100%;
  max-width: 410px; /* Set maximum width for each card */
  position: relative; /* Allow for positioning within the section */
  transition: transform 0.3s; /* Smooth transition for overlap effect */
}

/* Overlap Effect */
.blog-card:hover {
  transform: translateY(-10px); /* Lift the card on hover */
}

.blog-card-image {
  width: 100%;
  border-radius: 10px 10px 0 0;
  height: 220px;
}

.blog-card-headline {
  font-size: 1.25em;
  font-weight: bold;
  margin: 10px 10px 5px; /* Adjusted margins: top, sides, bottom */
  padding: 0 10px; /* Added horizontal padding */
}

.blog-card-paragraph {
  font-size: 1em;
  margin: 5px 10px; /* Adjusted margins: top, sides */
  padding: 0 10px; /* Added horizontal padding */
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  color: red;
  font-weight: bold;
  margin: 10px 10px 15px; /* Adjusted margins: top, sides, bottom */
  padding: 0 10px; /* Added horizontal padding */
}

.blog-read-more span {
  margin-left: 5px;
  font-size: 1.2em;
}

.candidate-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #196b9d;
  color: white;
}

/* CSR Content Styles */
.csr-content {
  background-color: #f8f9fa;
}
.card-text {
  text-align: left !important;
}
.card-title {
  text-align: left !important;
}
.csr-country-section {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.csr-initiative {
  transition: transform 0.3s ease;
}

.csr-initiative:hover {
  transform: translateY(-5px);
}

.gallery-preview {
  background-color: #f8f9fa;
  border-radius: 8px;
}

.gallery-preview img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-preview img:hover {
  transform: scale(1.05);
}

.more-images-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.csr-highlight {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 5px solid #0d6efd !important;
}

.founder-note {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
}

.right-menu {
  position: absolute;
  right: 0; /* Open from the left side */
  left: auto; /* Disable right alignment */
}

/* Job Card */
.job-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #1586cf;
}

/* Job Heading */
.job-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1586cf;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Description Text */
.job-text p {
  margin: 0 0 6px 0;
  font-size: 0.95rem;
  color: #555;
}

/* Buttons */
.job-card .btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  background-color: #1586cf !important;
  border: none;
}

.job-card .btn:hover {
  background-color: #0f6ea9 !important;
}

/* Section Styling */
#skills-training-bg {
  background: #f8f9fa;
}
/* Card Styling */
.training-card-bg {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease-in-out;
  border: 1px solid #e2e2e2;
}

.training-card-bg h4 {
  font-size: 20px;
  font-weight: 600;
  color: #003366;
  margin-bottom: 12px;
}

.training-card-bg p {
  font-size: 15px;
  color: #444;
}

.training-card-bg:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-color: #007bff;
}

.training-card-bg i {
  color: #de262c;
}

/* Link Styling */
#skills-training-bg a {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
}

#skills-training-bg a:hover {
  text-decoration: underline;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-img {
  width: 170px;
  height: 170px;
  object-fit: cover;

  border: 4px solid #056579;
}

.team-name {
  font-weight: 600;
  color: #056579;
  margin-bottom: 5px;
}

.team-role {
  color: #e74c3c;
  font-weight: 500;
}
