body,
html {
  scroll-behavior: smooth;
  font-family: Poppins, sans-serif;
  margin: 0;
  padding: 0;
  height: 100%; /* Ensure no extra space around the viewport */
  overflow-x: hidden; /* Prevent horizontal scroll */
}
body {
  padding-top: 90px;
}

/* Target all sections that are scrolled to */
section {
  scroll-margin-top: 70px; /* Adjust the 70px value to match your header height */
}

.footer-link {
  color: inherit; /* Matches the surrounding text color */
  text-decoration: none; /* Removes the underline */
  font-weight: normal;
}

.footer-link:hover {
  text-decoration: none; /* Ensures no underline on hover */
  color: orangered;
}

/* 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;
  }
}

/*All Section Title Styling */
.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #056579;
  margin-bottom: 10px;
  padding-top: 22px;
}

/* Horizontal line under the headline */
.section-hr {
  width: 60px;
  height: 4px;
  background-color: #eb5204;
  border: none;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 30px;
}
.headline-underline {
  width: 60px;
  height: 4px;
  background-color: #eb5204;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(
    to right,
    #ffffff,
    #cacaca
  ); /* Gradient background */
  color: white; /* Optional: Change text color to white for better contrast */
}

/* Navbar Brand Padding for Desktop */
@media (min-width: 1024px) {
  .navbar-brand {
    padding-left: 40px;
  }
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #056579 !important; /* Change the link color */
  font-weight: bold;
  font-size: 0.9rem;
}

/* Remove border from the last item */
.navbar-nav .nav-item:last-child .nav-link {
  border-right: none;
}

/* Navbar Links Hover Effect */
.navbar-nav .nav-link:hover {
  color: #eb5204 !important; /* Change link color on hover */
}

/* Mobile Navigation Bar Styles */
.navbar-mobile {
  overflow-y: auto; /* Enable vertical scrolling */
  max-height: 100vh; /* Ensure it doesn't exceed the viewport height */
  position: fixed;
  top: 0;
  right: -250px; /* Initially off-screen */
  width: 250px;
  height: 100%;
  background-color: #b0b0b0d7;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  z-index: 99999; /* Above overlay */
  padding: 20px;
}

/* Mobile Navigation List */
.navbar-mobile ul {
  list-style-type: none;
  padding: 0;
}

/* Mobile Navigation Item Styles */
.navbar-mobile ul li {
  margin: 0; /* Remove margin between list items */
}

.navbar-mobile ul li a {
  padding: 8px 10px; /* Reduce padding for tighter spacing */
  font-size: 16px; /* Adjust font size */
  line-height: 0.9 !important; /* Force line height with !important */
  display: block;
}

/* Mobile Submenu Styling */
.mobile-submenu li {
  padding-left: 15px;
}

/* Mobile Navigation Link Hover Effect */
.navbar-mobile a:hover {
  color: #eb5204; /* Change hover color */
  transition: color 0.3s ease; /* Smooth transition effect */
}

.navbar-mobile a {
  text-decoration: none;
  color: #ffffff; /* Use your primary color */
  font-weight: bold;
}
.mobile-submenu {
  display: none;
}

/* Social Icons */
.social-icons {
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center the icons horizontally */
  margin-top: 20px; /* Optional: Add some space above */
}

.social-icons a {
  margin: 0 10px; /* Equal spacing for icons */
}

/* Overlay Styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark transparent */
  display: none; /* Hidden by default */
  z-index: 1000; /* Below navbar */
}

/* Close Button Styles */
.close-btn {
  background: none;
  border: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Slogan Text Styling */
.navbar-slogan {
  font-family: "Proxima Nova Condensed", sans-serif;
  font-size: 1.5rem; /* Adjust size for desktop */
  color: #056579;
  text-align: center;
  margin: 0;
  font-weight: 711;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  .navbar-center {
    position: absolute;
    left: 53%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
  }

  /* Make slogan text smaller for mobile */
  .navbar-slogan {
    font-size: 1.1rem; /* Adjust size for mobile */
  }
}

/* Hide the slogan on larger screens if needed */
@media (min-width: 769px) {
  .navbar-center {
    display: none;
  }
}

/* Dropdown Menu Styles */
.navbar .dropdown-menu {
  background-color: #ffffff; /* White background */
  border: none; /* Remove border */
  border-radius: 8px; /* Rounded corners */
  padding: 10px 0;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1); /* Add shadow */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px); /* Slight move effect */
  transition: all 0.3s ease-in-out;
}

/* Submenu for "Scholarships" */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  display: none; /* Hide submenu by default */
  position: absolute;
  top: 0;
  left: 100%; /* Position the submenu to the right */
  margin-top: 0;
  border-radius: 5px;
  background-color: #ffffff;
}

/* Show submenu when hovering over "Scholarships" */
.dropdown-submenu:hover .dropdown-menu {
  display: block; /* Show submenu on hover */
}

/* Dropdown Item Styles */
.navbar .dropdown-item {
  color: #1a689e; /* Your brand color for text */
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
  background-color: #056579; /* Hover background */
  color: #fff; /* Hover text color */
  border-radius: 5px; /* Rounded hover */
}

/* Dropdown Arrow Rotation on Toggle */
.navbar .dropdown-toggle::after {
  transition: transform 0.3s;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 1024px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Bring it up smoothly */
  }

  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg); /* Rotate the arrow when open */
  }
}

/* Color Scheme */
.text-blue {
  color: #056579; /* Blue */
}

.btn-orange {
  background-color: #eb5204; /* Orange */
  color: white;
}

.btn-orange:hover {
  background-color: #056579; /* Blue on hover */
  color: white;
}

.bg-ash {
  background-color: #f1f3f5; /* Ash background of teacher testimonial section */
}

.bg-black {
  background-color: #020609; /* Black background */
}

.text-ash {
  color: #ffffff; /* Ash text */
}

/* scrolling Section */
.scrolling-container {
  background: #eb5204; /* Full-width background */
  overflow: hidden; /* Hide overflow */
  position: relative;
}

.scrolling-text {
  background: #eb5204;
  color: white;
  padding: 10px;
  white-space: nowrap;
  overflow: hidden; /* Ensure no overflow is visible */
  position: relative;
  white-space: nowrap; /* Prevents the text from breaking lines */
  width: 100%; /* Ensure it takes the full width */
  padding-right: 150%; /* Creates space for the text to scroll smoothly */
}

.scrolling-text .announce-icon {
  display: inline-block;
  margin-right: 10px;
}

/* Hero Section */
#hero {
  position: relative; /* Ensures content can be positioned over the video */
  min-height: 100vh; /* Full viewport height */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video Background */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Ensures no overflow */
  z-index: 0; /* Set the z-index lower than hero content */
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the entire section */
}

/* Content in Hero */
.hero-content {
  position: relative; /* Allows for layering above the video */
  z-index: 1; /* Ensures the content appears above the video */
  text-align: center; /* Centers text */
  color: white; /* Ensures text is visible */
}

.hero-content {
  background-color: rgba(5, 102, 121, 0.693); /* #056579 with 69.3% opacity */
  padding: 30px;
  border-radius: 10px; /* Rounded corners for the background */
  display: flex; /* Use flexbox for centering */
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Center items horizontally */
  justify-content: center; /* Center items vertically */
  text-align: center; /* Center text */
  z-index: 1; /* Ensure it appears above the overlay */
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #hero {
    min-height: 70vh; /* Full height for mobile view */
  }

  #hero h1 {
    font-size: 1.5rem; /* Adjust font size for mobile */
  }
  #hero p {
    font-size: 1rem;
  }
  #hero .btn-lg {
    padding: 4px 5px; /* Adjust button size for mobile */
  }

  .hero-content {
    padding: 7px; /* Adjust padding for mobile */
    padding-bottom: 17px;
  }
}

/* For very small mobile devices, like portrait phones */
@media (max-width: 480px) {
  #hero h1 {
    font-size: 1.5rem; /* Smaller font for very small screens */
  }

  .hero-content {
    padding: 10px; /* Further reduce padding for smaller devices */
  }
}

#about {
  border: 7px solid #eb5204;
  padding-top: 10px; /* Adjust top padding */
  padding-bottom: 20px; /* Adjust bottom padding */
}

/* 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;
}

/* About us */
/* Section Title */
.section-title {
  color: #056579; /* Your primary color */
  font-size: 2.5rem; /* Increase font size for title */
  font-weight: bold;
}

/* Service Box */
.service-box {
  background-color: #f9f9f9; /* Light background for contrast */
  border-radius: 10px; /* Rounded corners */
  padding: 20px; /* Inner padding */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

/* Service List Styles */
.service-list {
  list-style-type: none; /* Remove default bullet points */
  padding: 0; /* Remove padding */
}

/* Service List Items */
.service-list li {
  margin-bottom: 15px; /* Space between list items */
  font-size: 1.1rem; /* Slightly larger text for readability */
  line-height: 1.5; /* Increase line height for better spacing */
  padding: 10px; /* Inner padding for list items */
  border-bottom: 1px solid #ddd; /* Add bottom border for table-like effect */
}

/* Remove bottom border from last item */
.service-list li:last-child {
  border-bottom: none; /* No border for the last item */
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-list li {
    font-size: 1rem; /* Adjust font size for smaller screens */
  }
}

/* Styling for the Clarity Session and Scholarship Guidance boxes */
.rounded-box {
  border-radius: 20px;
  overflow: hidden;
}

.rounded-box .card-img-top {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card-body {
  padding: 20px;
}

.btn-primary {
  background-color: #056579;
  border-color: #056579;
}

.btn-primary:hover {
  background-color: #eb5204;
  border-color: #eb5204;
}

/* Hero Section Styling */
.hero-section {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.25rem;
}

/* Section Styling */
section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #056579;
  margin-bottom: 40px;
}

section p.lea {
  font-size: 1.2rem;
  color: #333;
}

/* Image styling for responsiveness */
.clarity-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Media query to handle mobile view adjustments */
@media (max-width: 768px) {
  .clarity-image {
    width: 80%; /* Reduce the image size on mobile */
    margin-bottom: 20px; /* Adds space between image and text */
  }
}

#scholarship-hero img {
  border-radius: 15px; /* Slightly rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
  transition: box-shadow 0.3s ease; /* Optional: Smooth hover effect */
}

#scholarship-hero img:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow on hover */
}

/* Frequently Question Section Title */
/* Section Title */
.section-title {
  color: #056579;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

/* .faq-toggle {
    text-align: left; /* Aligns text to the left by default */
*/

  /* FAQ Container */
  .faq-container {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

/* FAQ Question Styles */
.faq-question {
  background-color: #f9f9f9;
  padding: 15px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f1f1f1;
}

/* FAQ Icons */
.faq-icon {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #eb5204;
}

/* FAQ Answer */
.collapse {
  padding: 10px 0;
  margin-top: 10px;
}

.faq-toggle i {
  transition: transform 0.3s ease;
}

/* Our Programs Section Styling */
#our-programs {
  background-color: #f1f3f5;
  padding: 20px 0; /* Adjust padding for mobile view */
  margin-top: 0; /* Remove any top margin */
  height: auto; /* Set height to auto to allow content to dictate height */
}

.program-image-wrapper {
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 0; /* Ensure no margin at the top */
  border-radius: 0; /* Set border-radius to 0 for the image as well */
}

.program-image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.program-image-wrapper img:hover {
  transform: scale(1.05);
}

.programs-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center the buttons horizontally */
}

.program-btn {
  background-color: transparent;
  border: 3px solid #eb5204;
  border-radius: 50px;
  color: #eb5204;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  width: 100%;
  white-space: nowrap; /* Ensure text stays in one line */
}

.program-btn:hover {
  background-color: #eb5204;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.program-description {
  display: none;
  font-size: 18px;
  color: #ffffff;
  margin: 10px 0 0;
  text-align: center;
  background-color: #056579;
  padding: 10px;
  border-radius: 10px;
  max-width: 80%;
  justify-content: center;
  margin: 10px auto; /* Center buttons */
}

.program-description.active {
  display: block;
}
/* Programs Title Styling */
.programs-title {
  font-size: 1.2rem; /* Larger font size for emphasis */
  font-weight: bold; /* Make it bold */
  color: black; /* Keep the font color black */
  text-align: center; /* Center the text */
  margin: 20px 0; /* Add margin for spacing */
  padding: 10px; /* Add some padding for better touch target */
  letter-spacing: 1px; /* Slightly increase letter spacing */
  text-transform: uppercase; /* Make text uppercase for emphasis */
  border-bottom: 2px solid #eb5204; /* Add a bottom border with your theme color */
}
/* Adjust button layout for desktop */
@media (min-width: 768px) {
  .col-md-7 {
    display: flex;
    flex-wrap: wrap;
  }
}

/* Reduce button width and center them on mobile */
@media (max-width: 768px) {
  #our-programs {
    padding: 20px 0; /* Adjust padding for mobile view */
    margin-top: 0; /* Remove any top margin */
    height: auto; /* Set height to auto to allow content to dictate height */
  }
  .programs-content {
    justify-content: center; /* Center buttons horizontally on mobile */
  }
  .program-image-wrapper {
    margin-top: -50px; /* Move the image up by 20px (adjust value as needed) */
  }

  .program-btn {
    width: 80%; /* Reduce button width for mobile view */
    margin: 10px auto; /* Center buttons */
    display: block; /* Ensure block display for buttons */
  }
}

/* partnership image section */
.full-width-image-container {
  width: 100%; /* Full width container */
  overflow: hidden;
}

.full-width-image {
  width: 100%; /* Full width by default */
  height: auto;
  display: block;
}

/* Media query for larger screens (desktops) */
@media (min-width: 1024px) {
  .full-width-image {
    width: 60%; /* Adjust width for desktops */
    max-width: 1200px; /* Optional: limit max width */
    margin: 0 auto; /* Center the image horizontally */
  }
}

/* Countries section */
#countries-we-serve {
  background-color: #ffffff;
}

.country-item img {
  width: 80px; /* Set flag width */
  height: auto;
  transition: transform 0.3s ease;
}

.country-item p {
  margin-top: 10px;
  font-size: 16px;
  color: #a6b0b9; /* Color for country names */
}

/* Hover effect for country items */
.country-item:hover img {
  transform: scale(1.1);
}

.country-item:hover p {
  color: #056579; /* Change text color on hover */
}

/* Responsive Design */
@media (min-width: 768px) {
  .country-item {
    flex: 0 0 20%; /* Show 5 countries per row on desktop */
  }
}

@media (max-width: 767px) {
  .country-item {
    flex: 0 0 50%; /* Show 2 countries per row on mobile */
  }
}

/* Stay Inspired Section */
/* Stay Inspired Section */
#stay-inspired .img-fluid {
  width: 100%; /* Ensures the image takes the full width of the column */
  height: auto; /* Maintains the aspect ratio */
  border-radius: 8px; /* Adds a slight rounding to corners */
}
.ins {
  font-family: "Dancing Script", cursive; /* Apply scripted font */
  font-size: 4rem !important; /* Increase font size */
  color: #056579; /* Use your specified color */
  font-weight: bold; /* Make it bold */
}

@media (min-width: 768px) {
  #stay-inspired .img-fluid {
    max-width: 90%; /* Adjusts image size for larger screens */
    margin: auto; /* Centers the image in the column */
  }
}

/* Invest Section */
/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #056579;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Invest Section */
#invest-education {
  background-color: #f8f9fa;
  padding: 50px 0;
  border-radius: 10px;
}

/* Image Styling */
#invest-education img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Table Styling */
.invest-table {
  width: 100%;
  border-spacing: 0; /* Remove space between rows */
  border: 2px solid #056579; /* Add border around entire table */
}

/* Add borders to all table cells */
.invest-table td {
  border: 2px solid #056579; /* Darker border for visibility */
  padding: 10px; /* Reduced padding */
}

/* Headings for each reason */
.invest-heading {
  font-size: 1.4rem;
  font-weight: bold;
  color: #eb5204;
  display: flex;
  align-items: center;
}

.invest-heading i {
  color: #056579;
  margin-right: 10px;
  font-size: 1.6rem; /* Slightly smaller icon size */
}

/* Text styling for each reason */
.invest-text {
  font-size: 0.9rem; /* Reduced font size */
  color: #333;
  line-height: 1.4; /* Reduced line height */
  margin-top: 5px;
}

.invest-heading {
  display: flex; /* Use flexbox for horizontal alignment */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  margin: 0; /* Remove default margin */
}

.invest-heading i {
  margin-right: 10px; /* Add space between icon and heading */
}
/* Adjust for mobile view */
@media (max-width: 768px) {
  .invest-table {
    margin: 0 auto; /* Center the table */
    width: 93%;
  }
  .invest-table td {
    text-align: center; /* Center text inside table cells */
  }

  .invest-heading {
    font-size: 1.2rem;
  }

  .invest-text {
    font-size: 0.85rem;
  }

  #invest-education img {
    margin-bottom: 20px;
  }
}

/* Importance Section Styling */
/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #056579;
  margin-bottom: 1.5rem;
  text-align: center; /* Center the title */
}

/* Importance Section Styling */
#importance-study-abroad {
  background-color: #f8f9fa; /* Light background for the section */
  padding: 50px 0;
  border-radius: 10px; /* Soft edges for the section */
  text-align: center; /* Center everything in the section */
}

/* Headings for each importance point */
.importance-heading {
  font-size: 1.6rem;
  font-weight: bold;
  color: #eb5204;
  margin-bottom: 10px;
  display: flex;
  align-items: center; /* Align icon and text */
  justify-content: center; /* Center the icon and text */
}

.importance-heading i {
  color: #056579;
  margin-right: 10px;
  font-size: 1.8rem; /* Increase icon size for emphasis */
}

/* Text styling for importance points */
.importance-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 700px; /* Limit the width for better readability */
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Columns */
#importance-study-abroad .row {
  margin-top: 20px;
  justify-content: center; /* Center the columns */
}

#importance-study-abroad .col-md-6 {
  margin-bottom: 30px;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
  .importance-heading {
    font-size: 1.4rem;
  }

  .importance-text {
    font-size: 0.95rem;
    padding: 0 15px; /* Add padding on the sides to avoid text hitting the edges */
  }
}

/* Events Section Styling */
#events-section {
  background-color: #d5d5d5;
  padding: auto;
  margin: auto;
}

.event-image-wrapper {
  text-align: center;
}

.event-image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 600px;
  object-fit: cover;
}

.event-details-wrapper {
  padding-left: 20px;
}

.event-list {
  list-style-type: disc;
  color: #056579;
  padding-left: 20px;
}

.event-list li {
  font-size: 18px;
}

.event-list li strong {
  color: #eb5204;
  font-weight: bold;
}

/* Ensure proper layout and alignment */
@media (max-width: 768px) {
  .event-details-wrapper {
    padding-left: 0;
    margin-top: 20px;
    text-align: center;
  }

  .event-list {
    text-align: left;
    padding-left: 15px;
  }

  .event-image-wrapper img {
    max-width: 450px;
  }
}

/* CSS for the our offices section */
#our-offices h5 {
  margin-bottom: 8px;
  font-weight: bold;
}
#our-offices p {
  margin-bottom: 0;
}

/* New red location pin icon */
.fas.fa-map-pin {
  color: #eb5204; /* Bright red for the icons */
}

/* Responsive columns for Our Offices (custom class to avoid conflicts) */
.office-col {
  text-align: center;
}

@media (max-width: 768px) {
  .office-col {
    flex: 0 0 50%; /* Two columns in mobile view */
    max-width: 50%;
  }
  .img-fluid {
    width: 100%;
  }
}

/* Center align text and elements */
.d-flex {
  justify-content: center;
  text-align: center;
}

.office-underline {
  width: 300px;
  height: 4px;
  background-color: #056579;
}

/* Style for Teacher testimonial boxes */
.testimonial-box {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Style for the teacher testimonial images */
.shadow-img {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  max-width: 100%;
  height: 400px;
  object-fit: cover; /* Ensures the image fills the space without being distorted */
}

/* Students Testimonial Section Styling */
#testimonial-section {
  background-color: #f1f3f5;
  padding: 60px 0;
}

.testimonial-box {
  border: 4px solid #056579;
  padding: 14px;
  text-align: center;
  height: 100%;
  border-radius: 0; /* Remove rounded corners */
}

.testimonial-image-wrapper {
  margin-bottom: 15px;
}

.testimonial-image-wrapper img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid #056579;
  padding: 5px;
}

.testimonial-statement {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  text-align: left;
}

.testimonial-name {
  font-size: 18px;
  font-weight: bold;
  color: #056579;
}

.testimonial-country {
  font-size: 16px;
  color: #555;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .testimonial-box {
    margin-bottom: 20px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 15px;
  }
}

/* Subscribe Section */
#subscribe {
  background-color: #ffffff; /* Light background color */
}

.section-title {
  color: #056579; /* Title color */
}

.btn-primary {
  background-color: #eb5204; /* Button color */
  border: none; /* Remove border */
}

.btn-primary:hover {
  background-color: #d94f03; /* Darker shade on hover */
}

/* Get in Touch Section Custom Styles */

.text-orange {
  color: #eb5204;
}

.btn-orange {
  background-color: #eb5204;
  color: white;
  border: none;
}

.btn-outline-primary {
  border-color: #056579;
  color: #056579;
}

.btn-outline-primary:hover {
  background-color: #056579;
  color: white;
}

.bg-light {
  background-color: #f8f9fa;
}

form .form-control {
  border-radius: 5px;
}

form button {
  border-radius: 5px;
  padding: 10px;
}

/* Later Styling */
/* Section Title Styling */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #eb5204;
}

/* Card Styling */
.card {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
}

.card-text {
  font-size: 1rem;
  color: #333;
}

/* Icon Styling */
.card i {
  color: #056579;
}

/* Custom Button Styling */
.btn-custom {
  background-color: #056579;
  color: #fff;
  border-radius: 50px;
  padding: 10px 30px;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #eb5204;
}

/* Community Engagement Section Styling */
#community-engagement {
  padding: 60px 0; /* Adjust padding for larger screens */
}

/* List Items Styling */
#community-engagement ul li {
  display: flex; /* Flexbox for aligning icon and text */
  align-items: flex-start; /* Align icons to the start of the text */
  font-size: 1.2rem; /* Slightly increase the font size */
  text-align: left; /* Ensure text is aligned to the left */
  margin-bottom: 20px; /* Add some space between each list item */
}

/* Icon Styling */
#community-engagement ul li i {
  margin-right: 15px; /* Increase space between icon and text */
  font-size: 1.8rem; /* Increase icon size for desktop */
  color: #fff; /* White color for icons */
  flex-shrink: 0; /* Prevent icon from shrinking in small viewports */
}

/* Adjustments for mobile */
@media (max-width: 768px) {
  #community-engagement {
    padding: 40px 0; /* Reduce padding for mobile */
  }

  #community-engagement ul li {
    font-size: 1rem; /* Smaller font size on mobile */
    text-align: center; /* Center text on mobile */
    margin-bottom: 15px; /* Adjust space between list items */
    flex-direction: column; /* Stack icon and text vertically */
    align-items: center; /* Center the icon and text */
  }

  #community-engagement ul li i {
    font-size: 1.4rem; /* Adjust icon size on mobile */
    margin-bottom: 8px; /* Add space below the icon */
  }
}

/* Mission statement section - Mobile Optimizations */
@media (max-width: 768px) {
  #mission-statement h1 {
    font-size: 1.8rem; /* Adjust headline size for mobile */
    line-height: 1.1;
  }

  #mission-statement p {
    font-size: 1rem; /* Adjust paragraph size for mobile */
  }

  #mission-statement {
    padding: 40px 20px; /* Add some padding adjustments for mobile view */
  }
}

#interactive-tools {
  background-color: #f1f3f5;
}

.tool-card {
  border-radius: 15px; /* Rounded corners for cards */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.tool-card:hover {
  transform: translateY(-5px); /* Lift effect on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.card-title {
  font-size: 1.25rem; /* Font size for titles */
  font-weight: bold; /* Bold titles */
}

.card-text {
  font-size: 1rem; /* Font size for descriptions */
  color: #555; /* Darker color for readability */
}

/* Visa Text Styling */
.visa-text,
.learning-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* Lists Styling */
.visa-list,
.learning-list {
  list-style: none;
  padding-left: 0;
}

.visa-list li,
.learning-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 20px;
}

.visa-list li::before,
.learning-list li::before {
  content: "\f00c"; /* FontAwesome check icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #eb5204;
  position: absolute;
  left: 0;
  top: 0;
}

/* 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 #e0e0e0; /* Light gray color */
  margin: 30px 0; /* Space above and below the line */
  width: 100%; /* Full width */
}

/* 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 */
  }
}

/* Prevents margin collapse and controls spacing */
.row {
  margin-left: -5px; /* Prevents extra space on left */
  margin-right: -5px; /* Prevents extra space on right */
}

.col-6 {
  padding-left: 5px; /* Space between columns */
  padding-right: 5px; /* Space between columns */
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 25px; /* Rounded corners */
  background: linear-gradient(135deg, #056579, #eb5204);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s, transform 0.3s;
  margin-top: 20px; /* Space above the button */
}

.cta-button:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
  background: linear-gradient(
    135deg,
    #eb5204,
    #056579
  ); /* Reverse gradient on hover */
  color: white;
}

#romanian-scholarship {
  background-color: #f8f9fa; /* Light background for the section */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 20px;
}

.blog-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-post {
  background-color: #eeeded;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  flex: 1;
  transition: transform 0.2s ease;
  flex-basis: calc(33.333% - 20px); /* Ensures 3 posts per row with space */
}

.blog-post:hover {
  transform: translateY(-5px);
}

/* Rounded Image */
.bblog-image {
  width: 100%;
  border-radius: 4%;
  object-fit: cover;
  height: 200px;
}

/* Blog Headline */
.blog-headline {
  font-size: 1.3rem;
  color: #333;
  margin-top: 15px;
  margin-bottom: 5px;
  text-decoration: none;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Date styling */
.blog-date {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 15px;
}

/* Blog Details */
.blog-details {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Read More Button */
.read-more {
  font-size: 1rem;
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: #217dbb;
}

.read-more .arrow {
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.read-more:hover .arrow {
  transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
    align-items: center;
  }

  .blog-post {
    max-width: 100%;
  }
  .bblog-image {
    width: 100%;
    border-radius: 4%;
    object-fit: cover;
  }
}

/* Blog Section Styling */
.blog-section {
  padding: 20px;
  font-family: Arial, sans-serif;
}

/* Layout for Desktop View - Center the Image */
.article-wrapper {
  display: flex;
  flex-direction: column; /* Stack the image and text vertically */
  align-items: center; /* Center the content */
  margin-bottom: 30px;
}

/* Text Section */
.article-section {
  text-align: left;
  width: 100%;
  max-width: 800px; /* Limit the width of the text for readability */
  margin-bottom: 20px;
}

/* Image Section */
.blog-image {
  width: 100%;
  max-width: 800px; /* Limit the width of the image for consistency */
  height: auto;
  text-align: center; /* Ensure the image is centered */
  margin-bottom: 20px;
}

.blog-image img {
  width: 100%;
  height: auto;
  object-fit: contain; /* Ensure the entire image is visible */
  border-radius: 8px;
}

/* Responsive Design for Blog Section */
@media (max-width: 1024px) {
  /* Adjust layout for tablet and smaller screens */
  .article-wrapper {
    flex-direction: column;
  }

  .article-section,
  .blog-image {
    max-width: 100%; /* Make it full-width on smaller screens */
    margin: 0 auto; /* Center on smaller screens */
  }
}

@media (max-width: 768px) {
  /* Ensure image and text are still full-width and responsive */
  .blog-image img {
    width: 100%;
    height: auto; /* Maintain the height ratio */
  }
}
.apply-button {
  background-color: #1964bf; /* Vibrant coral color */
  color: #ffffff; /* White text color */
  padding: 15px 30px; /* Top-bottom and left-right padding */
  border: none; /* Remove default border */
  border-radius: 5px; /* Rounded corners */
  font-size: 16px; /* Font size */
  font-weight: bold; /* Bold font */
  text-transform: uppercase; /* Uppercase text */
  cursor: pointer; /* Change cursor on hover */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
  display: inline-block; /* Align button correctly */
}

.apply-button:hover {
  background-color: #da3324; /* Darker shade on hover */
  transform: translateY(-2px); /* Slightly lift the button on hover */
}
.button-container {
  text-align: center; /* Center-align the content */
  margin: 20px 0; /* Add margin for spacing */
}

.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;
}
.office-section-title {
  color: #056579;
  font-weight: 700;
}

.office-card {
  border-left: 5px solid #e74c3c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.office-card h4 {
  color: #056579;
  font-weight: 700;
}

.office-card p {
  margin-bottom: 6px;
}

.office-card a {
  color: #e74c3c;
  font-weight: 600;
}
* CSR Content Styles */ .csr-content {
  background-color: #f8f9fa;
}

.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;

  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);
}

.carousel-item img {
  max-height: 70vh;
  object-fit: contain;
}
.deep-shadow {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25) !important;
}
/* Social Media Icons */
.btn-instagram,
.btn-facebook,
.btn-linkedin {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid;
  font-size: 24px;
  transition: all 0.3s ease;
}

/* Instagram */
.btn-instagram {
  color: #e4405f;
  border-color: #e4405f;
}

/* Facebook */
.btn-facebook {
  color: #1877f2;
  border-color: #1877f2;
}

/* LinkedIn */
.btn-linkedin {
  color: #0077b5;
  border-color: #0077b5;
}

/* Hover Effects */
.btn-instagram:hover {
  background: #e4405f;
  color: white;
  transform: translateY(-3px);
}

.btn-facebook:hover {
  background: #1877f2;
  color: white;
  transform: translateY(-3px);
}

.btn-linkedin:hover {
  background: #0077b5;
  color: white;
  transform: translateY(-3px);
}

/* Platform labels under icons */
.platform-label {
  font-size: 0.9rem;
  color: #2c3e50;
  font-weight: 500;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .btn-instagram,
  .btn-facebook,
  .btn-linkedin {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .platform-label {
    font-size: 0.8rem;
  }
}
.social-link {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.social-link:hover {
  text-decoration: underline;
  color: #000000;
}
