/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
     overflow-x: hidden; /* Crucial */
    
}


/* Navbar Styles */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* ✅ Ensure it doesn't go beyond the screen */
    max-width: 100vw; /* ✅ Limit max width to viewport */
    overflow-x: ; /* ✅ Hide anything overflowing */
    z-index: 1000;
    transition: height 0.4s ease-in-out, background 0.4s ease-in-out;
    border-bottom: ;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box; /* ✅ Include padding in width calculation */
}


/* Default Navbar */
.navbar {
    z-index: 1002;
    position: relative;
    width: 90%;
    height: 100px;
    padding: 10px 20px;
    padding-right: 120px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    

    /* Glassmorphism Effect */
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Border & Shadow */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(200, 16, 46, 0.5); /* Glow using your red */
    
    border-radius: 12px;
    transition: height 0.4s ease-in-out, background 0.4s ease-in-out;
}

/* Logo */
.logo {
    display: inline-flex;
    color: #fff;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
}

.logo img {
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.1);
}

/* Logo Text if using <h2> or link */
.logo h2, .logo a {
    font-size: 1.3em;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
    margin-left: 10px;
}

/* Navigation Links */
.navbar .links {
    display: flex;
    column-gap: 1.3rem;
    list-style: none;
}



/* Dropdown Structure */
.navbar .dropdown {
  position: relative;
}

.navbar .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
  z-index: 999;
    padding-bottom: 5px;
}

.navbar .dropdown-content li {
  list-style: none;
}

.navbar .dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.navbar .dropdown-content a:hover {
  background-color: #111;
  color: #fff;
}

.navbar .dropdown:hover .dropdown-content {
  display: block;
}





.navbar .links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #OOOOFF;
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
}

.navbar .links a:hover {
    color: #C8102E;
}

.navbar .links a:hover::after {
    width: 100%;
}


.navbar a {
    text-decoration: none;
    font-size: 1em;
    transition: font-size 0.3s ease-in-out;
    color: #fff;
}

.navbar a:hover {
    color: #fff;
}

/* Toggle Button (For Mobile View) */
.navbar .toggle_btn {
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
    display: none;
}

/* Dropdown Menu */
.dropdown_menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 10px;
    width: 250px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 5px;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    border: 1px solid #0000Fb;
    list-style: none;
    z-index: 9999;
}

.dropdown_menu.open {
    display: block; /* Not block — flex makes it column */
}
.dropdown_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown_menu a {
    text-decoration: none; /* Removes underline */
    color: white;
    font-size: 1em;
    display: block; /* Makes the whole li clickable */
    width: 100%;
    padding: 10px 0;
}

/* Hover Effect */
.dropdown_menu a:hover {
    background-color: #0000Fb;
    color: #fff;
}

.dropdown_menu li {
    padding: 12px;
    transition: background-color 0.3s;
border-bottom: 1px solid #0000Fb;
}


.dropdown_menu li:hover {
    color: #0000Fb;
}
.dropdown_menu li a {
  color: white;
  text-decoration: none;
}

/* 🟢 Navbar Shrinks When Scrolling */
.scrolled header {
    height: 60px; /* Shrink Navbar */
    background: rgba(0, 0, 0, 0.85);
}

.scrolled .navbar {
    height: 60px;
}

/* 🟢 Shrink Logo on Scroll */
.scrolled .logo img {
    width: 40px;
    height: 40px;
}

/* 🟢 Adjust Links on Scroll */
.scrolled .navbar .links a {
    font-size: 0.9em;
}









/* Home Container */
.container-home {
    width: 100%;
    min-height: 100vh;
    padding-top: 120px; /* Space for the navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 1.5px lightgray;
    overflow: hidden;
    position: relative;
    background-color: transparent;
}


/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/bgs/main_bg.jpg') repeat;
    background-size: 120% 120%;
    opacity: ;
    animation: moveBg 30s linear infinite;
    z-index: -2;
}

@keyframes moveBg {
    0% { background-position: 0% 0%; }
    50% { background-position: 50% 50%; }
    100% { background-position: 0% 0%; }
}

/* Text Content */
.home-content {
    position: relative;
    z-index: 1;
    max-width: 60%;
}

/* Headings */
.container-home h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 0 0 4px black;
    color: #fff;
}

.container-home h2 {
    font-size: 1.5em;
    text-shadow: 0 0 4px black;
    color: #fff;
}

/* Button Styling */
.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
}


.buttons button {
    padding: 10px 15px;
    width: 200px;
    border-radius: 8px;
    background-image: url('assets/images/bgs/b-back.jpg');
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1em;
    border: 2px solid #0000Fb;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.buttons button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* About Section Styles */
.about-section {
  background-color: #fff;
  padding: 70px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.about-content {
  flex: 1 1 580px;
  animation: fadeIn 1s ease-in-out;
}

.about-content h2 {
  font-size: 32px;
  color: #0000Fb;;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.about-content .about-tagline {
  font-size: 20px;
  font-weight: 500;
  color: #444;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #333;
}

.about-points p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0000Fb;;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-content blockquote {
  font-style: italic;
  background: #f0f4ff;
  padding: 16px 20px;
  border-left: 4px solid #0000Fb;;
  margin: 20px 0;
  border-radius: 6px;
  color: #333;
}

.about-image {
  flex: 1 1 450px;
  text-align: center;

}

.about-image img {
  max-width: 100%;
  padding-top: 45px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1.2s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}








/* Study Opportunities Styles */
.study-opportunities {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.study-opportunities .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.study-opportunities h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.study-opportunities .subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.opportunity-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.opportunity-card:hover {
  transform: translateY(-5px);
}

.opportunity-card .flag {
  width: 36px;
  height: auto;
}

.opportunity-card h3 {
  font-size: 20px;
  margin: 10px 0;
}

.opportunity-card .uni-logo {
  width: 100%;
  max-width: 120px;
  margin: 10px 0;
}

.opportunity-card p {
  font-size: 14px;
  color: #333;
  margin: 4px 0;
}

.apply-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0000Fb;;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.apply-btn:hover {
  background-color: #003bcc;
}




.partners-section {
  text-align: center;
  padding: 50px 20px;
  background: #111;
  color: #fff;
}

.partners-section h2 {
  color: #0000Fb;
  font-size: 2rem;
  margin-bottom: 30px;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.partner-logo {
  width: 150px;
  height: 100px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #0000Fb;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  color: #000;
  max-width: 600px;
  position: relative;
}

.modal .close {
  color: #0000Fb;
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  cursor: pointer;
}









/* Duolingo English Test Section Styles */
.duolingo-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.duolingo-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.duolingo-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.duolingo-text {
  flex: 1;
  min-width: 300px;
}

.duolingo-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #0000Fb;;
}

.duolingo-text p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.duolingo-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.duolingo-text ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

.enroll-btn {
  display: inline-block;
  padding: 10px 18px;
  background-color: #0000Fb;;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.enroll-btn:hover {
  background-color: #003bcc;
}

.duolingo-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.duolingo-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}








/*Home Services starts*/

/* Services Section */
.services-section {
  background: #f7f9ff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  font-size: 32px;
  color: #0000Fb;;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 16px;
  color: #555;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-body {
  padding: 25px;
}

.service-body h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-body p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-block;
  background-color: #0000Fb;;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.service-btn:hover {
  background-color: #003bbd;
}

@media screen and (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
}






/* Meet the Team Section Styles with Animation */
.team-section {
  background-color: #f5f7fa;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0000Fb;;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  perspective: 1000px;
}

.team-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  width: 280px;
  padding: 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.team-card:hover {
  transform: scale(1.08) rotateY(1deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.team-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-name {
  font-size: 20px;
  margin: 10px 0 5px;
  color: #222;
}

.team-location {
  font-size: 14px;
  color: #666;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.flag-icon {
  width: 18px;
  height: auto;
  border-radius: 2px;
}

.team-lang {
  font-size: 14px;
  color: #444;
}
@keyframes pulse-card {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.team-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  width: 280px;
  padding: 20px;
  text-align: center;
  animation: pulse-card 5s ease-in-out infinite;
  transition: box-shadow 0.4s ease;
}

.team-card:nth-child(2) {
  animation-delay: 1.5s;
}

.team-card:nth-child(3) {
  animation-delay: 3s;
}




/* Testimonial Section Styles */
.testimonial-section {
  background-color: #f0f4ff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
}

.testimonial-section h2 {
  font-size: 30px;
  color: #0000Fb;;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  flex: 1 1 320px;
  max-width: 360px;
  transition: transform 0.3s ease;
  animation: scaleIn 1s ease-in-out;
}

.testimonial-card:hover {
  transform: scale(1.03);
}

.testimonial-photo img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-quote {
  color: #333;
}

.testimonial-quote .quote-icon {
  color: #0000Fb;;
  font-size: 20px;
  margin-bottom: 10px;
}

.testimonial-quote p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-quote h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0000Fb;;
}

/* Entrance Animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}







/* featured contents section */








.site-footer {
    width: 90vw;               /* Full viewport width */
    max-width: 100vw;           /* Prevent overflow */
    overflow-x: hidden;         /* Hide any overflow */
    padding: 10px 5px;
     background: url('assets/images/bgs/footer-bg.jpg') center/cover no-repeat;
    box-sizing: border-box;     /* Ensure padding doesn't expand width */
    margin: 0 auto;
    backdrop-filter: blur(8px);     /* Optional blur effect */
    -webkit-backdrop-filter: blur(8px);
}

.container-footer {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
    
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid gray''
    
   
  
}

.footer-logo img {
  max-width: 70px;
  height: auto;
  padding: 10px;
}

.footer-nav,
.subscribe {
  flex: 1;
  margin-right: 40px;
}

.footer-nav h3,
.subscribe h3 {
  color: #111;
  font-size: 1.5em;
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  padding: 5px;
  margin: 0;
 
}

.footer-nav a {
    color: #111;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
	background-color: transparent;
 
	
}

.footer-nav a:hover {
  color: #0000Fb;
}

.subscribe p {
  color: #111;
  margin-bottom: 20px;
}

.subscribe-form {
  display: block;
}
.subscribe-form button {
    
    
}

.subscribe-form input[type="email"] {
  flex:2 ;
  padding: 10px;
  border: 1px solid #111;
  border-radius: 5px 0 0 5px;
}




.social-icons {
  text-align: center;
}

.social-icon {
  display: inline-block;
  margin-right: 15px;
  transition: transform 0.2s;
}

.social-icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  filter: brightness(0) invert(0); /* This makes the image black */
}

.social-icon:hover {
  transform: translateY(-3px);
}

/* Optionally, if you want to change the color on hover */



.footer-bottom {
  text-align: center;
  border-top: 1px solid #111;
  padding-top: 5px;
  margin-top: 5px;
    color: #111
}

.footer-bottom p {
  font-size: 1em;
  color: #111;
}



















/* Consultancy Page */
 
.hero-section {
    position: relative;
    overflow: hidden;
    max-height: 600px; /* Set the maximum height of your slideshow */
    z-index: 1; /* Ensure the hero section is above other content */
    padding-top: 100px;
}

.hero-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    max-width: 100%;
    position: relative; /* Set slider's position */
    z-index: 0; /* Set slider's z-index to be behind other content */
}

.slider-image {
    width: auto;
    height: 100%; /* Ensure the images fill the height of the slider */
    max-width: 100%;
    object-fit: cover; /* Maintain aspect ratio while covering the entire slider */
    position: relative; /* Position relative for overlay */
}

/* Dark overlay on slider images */
.slider-image::before {
    content: "";
    position: inherit;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity to make it darker */
}

.hero-content {
    position: absolute;
    top: 65%;
    left: 35%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    padding: 0 10px; /* Add padding to the sides for better readability */
}

.hero-content h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 1em;
    text-shadow: 0px 0px 1px #fff;
}

/* If necessary, adjust the brightness of the image */
.hero-section img {
    width: 100%;
    height: auto;
    filter: brightness(50%); /* Adjust brightness to make image darker */
}




.Education-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    color: #111;
    line-height: 1.6;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.Education-container h2 {
    text-align: center;
    font-size: 26px;
    color: #111;
    margin-bottom: 20px;
}

.why-choose-us-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.why-choose-us-section li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #111;
}

.our-services-section {
    margin-top: 30px;
}

.our-services-section .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.our-services-section .service_1 {
    background-color: #111;
    border: 1px solid #0000Fb;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #fff;
}

.our-services-section .service_1:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.our-services-section .service_1 h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: ;
}

.our-services-section .service_1 img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.our-services-section .service_1 p {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: justify;
    padding: 10px;
}

.form-container {
    margin-top: 30px;
    padding: 20px;
    background-color: #111;
    border: 1px solid #0000Fb;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.form-container h2 {
    text-align: center;
    font-size: 22px;
    color: ;
    margin-bottom: 20px;
    color: #fff;
}

.form-container .form-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.form-container .form-group {
    display: flex;
    flex-direction: column;
}

.form-container .form-group label {
    font-size: 14px;
    color: ;
    margin-bottom: 5px;
}

.form-container .form-group input,
.form-container .form-group select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-container .form-group input[type="date"] {
    font-family: Arial, sans-serif;
}

.form-container .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
    height: 100px;
}

.form-container .buttons {
    grid-column: span 2;
    text-align: center;
    margin-top: 20px;
}

.form-container .buttons button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-container .buttons button:hover {
    background-color: #0056b3;
}













/* Main Service Page */




/* Ensure the container adapts to screen size */
.services-container {
    justify-content: center; 
  align-items: center; 
  max-width: 950px; 
  margin: 0 auto;  /* Use the full width of the viewport */
    margin: 0 auto; /* Center-align the container */
    padding: 20px;
    color: #111;
    line-height: 1.6;
    box-sizing: border-box; /* Prevent padding from affecting the total width */
    padding-top: 100px;
}

/* Responsive typography and layout for the main heading */
.mainServices h2 {
    font-size: 24px; /* Adjusted font size for smaller screens */
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Flex layout for tabs with wrapping behavior on small screens */
.service-tabs {
    display: flex;
    flex-wrap: wrap; /* Allow tabs to wrap on smaller screens */
    justify-content: space-around;
    margin-bottom: 20px;
    border-bottom: 2px solid #fff;
    gap: 10px; /* Add spacing between tabs */
}

/* Adjust tab styles for better usability on smaller devices */
.service-tab {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.service-tab.active {
    color: #0000Fb;
    border-bottom: 3px solid #0000Fb;
}

/* Ensure service cards are responsive */
.container-service-services {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusted for smaller screens */
    gap: 15px;
    margin-top: 20px;
}

.container-service-services.active {
    display: grid;
}

/* Service cards styling */
.mainService {
    background-color: #111; 
    border: 2px solid #0000Fb;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #fff;
}

.mainService:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Image styling */
.mainService img {
    width: 65%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-top: 10px

}

/* Typography for service titles */
.services-text h3 {
    font-size: 18px; /* Adjusted for smaller screens */
    color: #fff;
    margin-bottom: 15px;
    padding: 15px
}

/* Text paragraph styling */
.services-text p {
    font-size: 12px;
    color: #fff;
    margin-bottom: 15px;
    text-align: justify;
    padding: 10px;
}

/* List styling */
.services-text ul {
    list-style-type: disc;
    padding: 20px;
    margin-bottom: 15px;
    color: #fff;
}

/* Service form styling */
.service-form {
    margin-top: 20px;
    text-align: center;
    background-color: #111; 
    padding: 15px;
    border: 2px solid #0000Fb;
    border-radius: 8px;
    color: #fff;
    width: 100%;
}

/* Form input styling */
.service-form select,
.service-form input[type="text"],
.service-form input[type="email"],
.service-form textarea {
    width: 50%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Textarea styling */
.service-form textarea {
    resize: vertical;
    height: 100px;
}









/* contacts page */


/* General Contact Page Styles */
.contact-page {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
}

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.contact-intro h2 {
  font-size: 30px;
  color: #0000Fb;;
  margin-bottom: 15px;
}

.contact-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Contact Form and Info Layout */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form {
  flex: 1 1 500px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #0000Fb;;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background-color: #0000Fb;;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #003bbb;
}

/* Contact Info / Office Box */
.contact-details {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.office-box,
.team-reps,
.office-hours {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.office-box h3,
.team-reps h3,
.office-hours h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0000Fb;;
  display: flex;
  align-items: center;
  gap: 8px;
}

.office-box p,
.team-reps p,
.office-hours p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}






/* Login Page Starts */








/* Courses Page */
.courses_container{
  max-width:1100px;
  margin:0 auto;
  padding: calc(48px + var(--header-h)) 20px 48px;
  color: var(--text, #111);
  font-family: 'Segoe UI', sans-serif;
  line-height:1.6;
    padding-top: 120px;
}

/* Container headings */
.courses_container h1,
.courses_container h2,
.courses_container h3{ line-height:1.2; margin:0 0 10px; }

.courses_container h2{ font-size:clamp(1.4rem,1.1rem + 1.2vw,2rem); }
.courses_container h1{ font-size:clamp(1.8rem,1.2rem + 2.2vw,2.6rem); }

.courses_container p{ color: var(--muted, #666); }


/* Hero */
/* HERO */
.hero-courses{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:70vh;
  padding:2rem 1rem;
  color:#fff;
  text-align:center;
  background:linear-gradient(-45deg,#000,#111,#0000Fb,#111);
  background-size:400% 400%;
  animation:bi-hero-gradient 16s ease infinite;
  overflow:hidden;
}
.hero-courses .hero-content{
  width:100%;
  max-width:920px;
  margin:0 auto;
}
.hero-courses h1{
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1.15;
  margin:0 0 1rem;
}
.hero-courses .subtitle{
  max-width:820px;
  margin:0 auto 1.8rem;
  font-size:clamp(1rem,1.2vw,1.2rem);
  opacity:.95;
}
.hero-courses .hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:.9rem;
  justify-content:center;
  margin:0 0 1.8rem;
}
.hero-courses .badge{
  background:#fff;
  color:#111;
  padding:.6rem 1rem;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  transition:transform .2s ease;
}
.hero-courses .badge:hover{ transform:translateY(-2px) }
.hero-courses .btn-hero{
  display:inline-block;
  padding:.85rem 1.9rem;
  border-radius:32px;
  background:#0000Fb;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.2px;
  transition:transform .2s ease,opacity .2s ease,background .2s ease;
}
.hero-courses .btn-hero:hover{
  transform:translateY(-2px);
  background:#a50d22;
}

@keyframes bi-hero-gradient{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

@media (max-width:768px){
  .hero-courses{ min-height:60vh; padding:2rem 1rem }
  .hero-courses .hero-badges{ gap:.6rem; margin-bottom:1.4rem }
  .hero-courses .badge{ padding:.5rem .8rem; font-size:.9rem }
  .hero-courses .btn-hero{ padding:.8rem 1.5rem }
}

/* SCHOLARSHIP */
.scholarship{
  padding:2.2rem 1rem;
}
.scholarship .scholarship-card{
  max-width:900px;
  margin:0 auto;
  background:#fff;
  color:#111;
  border:2px solid #0000Fb;
  border-radius:14px;
  padding:1.6rem 1.4rem;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  text-align:center;
}
.scholarship .scholarship-card h2{
  margin:0 0 .6rem;
  font-size:clamp(1.4rem,2.5vw,2rem);
}
.scholarship .scholarship-card p{
  margin:.4rem auto 1.2rem;
  max-width:760px;
  font-size:1rem;
}
.scholarship .scholarship-card .btn{
  display:inline-block;
  padding:.75rem 1.6rem;
  border-radius:28px;
  background:#0000Fb;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  transition:transform .2s ease,background .2s ease;
}
.scholarship .scholarship-card .btn:hover{
  transform:translateY(-2px);
  background:#a50d22;
}

@media (max-width:768px){
  .scholarship{ padding:1.6rem 1rem }
  .scholarship .scholarship-card{ padding:1.2rem 1rem }
}


/* Tracks grid */
.tracks{padding:3rem 1rem;background:#fff;color:#222}
.tracks h2{text-align:center;font-size:2rem;margin-bottom:2rem}
.tracks-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1.5rem}
.track{background:#fdfdfd;border-radius:12px;overflow:hidden;box-shadow:0 4px 12px rgba(0,0,0,.05);transition:.3s}
.track:hover{transform:translateY(-5px);box-shadow:0 6px 16px rgba(0,0,0,.1)}
.track-img{width:100%;height:160px;object-fit:cover}
.track-body{padding:1.2rem}
.track-body h3{color:var(--brand)}
.track-body .meta{font-size:.9rem;color:#666;margin:.5rem 0;list-style:none;padding:0}

/* Syllabi */
.syllabi{padding:3rem 1rem;background:#f7faff;color:#222}
.syllabi h2{text-align:center;margin-bottom:2rem}
.syllabus{margin-bottom:2rem}
.syllabus h3{color:var(--brand)}
.syllabus details{background:#fff;border-radius:8px;margin-bottom:.8rem;padding:.8rem 1rem;box-shadow:0 2px 6px rgba(0,0,0,.05)}
.syllabus summary{font-weight:600;cursor:pointer}

/* Projects */
.example-project{text-align:center;margin:20px auto;max-width:800px;border:2px solid #0000Fb;padding:0 0 1rem;color:#222}
.example-project h2{margin-bottom:20px;font-size:2rem}
.project-container{display:flex;flex-direction:column;align-items:center;gap:20px}

/* Main Image and Details */
.main-image-container{width:100%;max-width:600px;position:relative;margin-bottom:20px;opacity:0;transform:translateY(30px);animation:fadeInUp .8s ease-in-out forwards}
.main-image-container img{width:100%;height:auto;border-radius:12px;box-shadow:0 4px 8px rgba(0,0,0,.1)}
.image-details{text-align:center;margin-top:15px}
.image-details h3{font-size:1.5rem;margin-bottom:10px}
.image-details p{font-size:1.1rem;min-height:40px;line-height:1.5}

/* Child Images */


.main-image-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-details {
    text-align: center;
    margin-top: 15px;
    
}

.image-details h3 {
    font-size: 1.5rem;
    color: ;
    margin-bottom: 10px;
}

.image-details p {
    font-size: 1.1rem;
    color: ;
    min-height: 40px;
    line-height: 1.5;
}

/* Child Images */
.child-images-container {
    display: flex;
    
    height: 100px;
    align-content: center;
    border: 2px solid #111;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
    animation-delay: 0.9s; /* Delay for main image animation to complete */
    background-color: #0000Fb;

}

.child-image {
    width: 100px;
    height: 100px;
    align-content: center;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px); /* Animation starts here */
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.child-image img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out; /* Add hover effect here */
}

.child-image:hover img {
    transform: scale(1.2); /* Hover effect on the image only */
}

.child-image:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Add hover shadow */
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-content {
    width: 70%;
    max-width: 900px;
    background-color: #fff;
    border-radius: 12px;
    padding: 5px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.modal-content p {
    margin-top: 5px;
    font-size: 0.8rem;
    color: #111;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0000Fb;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
}

.close-modal:hover {
    background-color: #ff1c1c;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}






/* Outcomes */
.outcomes{background:var(--brand);color:#111;padding:3rem 1rem;text-align:center}
.outcomes-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;margin-top:1rem;list-style:none;padding:0}
.outcomes-grid li{background:rgba(255,255,255,.15);padding:1rem;border-radius:8px}

/* Testimonials */
.testimonials{padding:3rem 1rem;background:#f9f9f9;text-align:center;color:#222}
.testimonials blockquote{max-width:600px;margin:1rem auto;font-style:italic;position:relative}
.testimonials blockquote:before{content:"\201C";font-size:3rem;color:var(--brand);position:absolute;left:-1rem;top:-1rem}

/* Form */
.form-section{padding:3rem 1rem;background:#fff;text-align:center;color:#222}
.form-section form{max-width:600px;margin:0 auto;text-align:left}
.form-section label{display:block;margin-top:1rem;font-weight:600}
.form-section input,.form-section select,.form-section textarea{width:100%;padding:.6rem;margin-top:.4rem;border-radius:6px;border:1px solid #ccc;font-size:1rem}
.form-section .buttons{text-align:center;margin-top:1.5rem}
.form-section button{background:var(--brand);color:#fff;border:none;padding:.8rem 1.8rem;font-size:1rem;border-radius:30px;cursor:pointer;transition:.3s}
.form-section button:hover{background:#005fcc}

/* Responsive only for <768px */
@media (max-width:768px){
  .hero-courses h1{font-size:2rem}
  .tracks-grid{grid-template-columns:1fr}
  .project-container{flex-direction:column}
  .main-image-container img{max-width:100%}
  .child-images-container{justify-content:center}
  .outcomes-grid{grid-template-columns:1fr}
}










/* Doulingo Page */ 


.duolingo_container {
    max-width: 950px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    font-family: 'Orbitron', sans-serif;
    color: #111;
    line-height: 1.6;
    padding-top: 120px;
}

.duolingo_container img{
    width: 100%;
    border: 2px solid #0000Fb;
}

.duolingo_container h1,
.duolingo_container h2,
.duolingo_container h3 {
    text-align: center;
    color: #111;
    margin-bottom: 20px;
}

.duolingo_container p {
    font-size: 16px;
    margin-bottom: 20px;
}

.duolingo_intro {
    background-color: #fff8e5;
    border-left: 5px solid #0000Fb;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.level-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.level-box {
    border: 2px solid #0000Fb;
    border-radius: 10px;
    padding: 20px;
    background-color: #fffbe6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.level-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefits {
    margin-top: 40px;
}

.benefits ul {
    list-style: none;
    padding-left: 0;
}

.benefits li {
    padding-left: 25px;
    background: url('icons/check.svg') no-repeat left center;
    background-size: 18px;
    margin-bottom: 12px;
}

.discount-note {
    margin-top: 20px;
    background-color: #fff3cd;
    border-left: 5px solid #0000Fb;
    padding: 15px;
    font-weight: bold;
    color: #111;
    border-radius: 5px;
}

.form-section {
    background-color: #fff;
    border: 2px solid #0000Fb;
    border-radius: 10px;
    padding: 25px;
    margin-top: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.form-section label {
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
    color: #111;
}

.form-section input,
.form-section select,
.form-section textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.form-section button {
    background-color: #C8102E;
    color: #111;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-section button:hover {
    background-color: #e6a800;
}



.toggle_btn {
  display: none;
}



.team-highlight-section {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
}

.team-wrapper {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 40px;
}

.team-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.team-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-image img:hover {
  transform: scale(1.05);
}

.team-content {
  flex: 2 1 500px;
  padding: 20px 40px;
}

.team-content h2 {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 10px;
}

.team-content h4 {
  font-size: 1.2rem;
  color: #8b000;
  margin-bottom: 20px;
}

.team-content p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.team-wrapper {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}











@media (max-width: 768px) { 
   
  
    .toggle_btn {
    display: block !important;
    position: absolute;
    top: 50px;
    right: 20px;
    z-index: 10000;
    font-size: 1.6em;
    color: white;
    cursor: pointer;
  }
    .navbar .links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px; /* ✅ Below fixed header */
    right: 10px;
    width: 87%;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #C8102E;
    border-radius: 8px;
    padding: 10px;
    z-index: 10001;
  }

  .navbar .links.mobile-visible {
    display: flex;
  }

  .navbar .dropdown-content {
    position: static;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    display: none;
  }

  .navbar .dropdown.open .dropdown-content {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
  }

  .navbar .dropdown-content a {
    padding: 8px;
    font-size: 0.9rem;
  }
    
     .about {
        padding: 50px 20px;
    }

    .branches {
        flex-direction: column;
        align-items: center;
        width: 90%;
    }

    .branch {
        width: 90%;
        height: auto;
        padding: 30px;
    }
       
        .mainServices h2 {
        font-size: 20px;
    }

    .service-tabs {
        flex-direction: column; /* Stack tabs vertically on smaller screens */
        align-items: center;
    }

    .service-tab {
        padding: 10px;
        text-align: center;
    }

    .container-service-services {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Further adjustments for mobile */
    }

    .services-text h3 {
        font-size: 16px;
    }
        
        
        
        /* Courses Page */
        
        .child-images-container {
   border:;
            
}

.child-image {
    width: 70px;
    height: 70px;
   
}
        
        blockquote {
    font-size: 1rem;
   
}
    

   
.container-home {
    
} 
    
    .animated-bg {
         background: url('assets/images/bgs/mobile_bg.png') repeat;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        opacity: 0.; /* optional – adjust based on visibility needs */
    }

.container-home h1 {
    width: 50%;
	margin: 5px;
    margin-top: 10px;
    color: ;
        
    }

    .container-home h2 {
        font-size: 1.5em;
        margin: 5px;
		width: 90%;
       
    }
    

    .buttons {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    

        
    

    .buttons button {
        margin: 10px 10px;
		
    }


	.testimonial {
    width: 90%;
	
}
	.service {
	
	}
	.services {
	
	}
	.services img {
		width: 200px;
		height: 200px;
		padding: 10px;
		padding-top: 50px;
	}
	.services h3 {
		font-size: 1.17em;
	}
	.services p {
		font-size: 1em;
	}
    
    .about p {
        
    }
    .hero-content h1 {
        font-size: 2em;
        
    }
    
    .hero-content p {
        font-size: 1em;
    }
    
    .form-group {
        
    }
    

.details ul li {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .course-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .details ul li strong {
        font-size: 1.2rem;
    }
    
     .level-boxes {
        flex-direction: column;
    }

    .duolingo_container {
        padding-top: 80px;
    }

    
    
}


 



















    
    @media (max-width: 576px)
    {
	
        
       
        
        .logo img{
            width: 40px;
            height: 40px;
        }
        .logo h2{
            font-size: 0.8rem;
            padding-top: 13px;
            padding-left: 45px;
        }
        
        

    
     .container-home {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

   
  

    /* Adjust text sizes for smaller screens */
    .container-home h1 {
        font-size: 1.5em;
        margin-bottom: 15px;
        color: #fff;
        margin-top: 10px;
    }

    .container-home h2 {
        font-size: 1em;
        margin-bottom: 15px;
        color: #fff;
    }

    /* Center buttons */
    .buttons {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        font-size: 0.7rem;
        padding: 5px 5px;
        
    }

    .buttons button {
        width: 90%; /* Make buttons wider */
        max-width: 250px;

    }
		
.services-text {
        text-align: left;
    }
       .about h2 {
        font-size: 1.2em;
	
        }  
        .about p {
            font-size: 1rem
        }
        .branchs h3{
            font-size: 0.4rem;
            padding: 5px 20px;
        }
        .branchs p{
            font-size: 0.5em;
            font-weight: bold;
            overflow: hidden;
            width: 50%;
        }
		
		.homeServices {
		 text-align: center;
			padding: 10px;
            color: #fff;
			
		 
		}
		
		.homeService {
			display:contents;
			width: 100%;
		}

        .container-service{
            
            border-radius: 5px;
            padding: 10px;
        }
        
        .homeService h3{
            color: #fff;
        }
		.homeServices img {
			width: 150px;
			height: 150px;
			margin: 2px;
			padding: 5px;
		}
		.homeServices p {
			padding: 4px;
		}
		
		.testimonials {
			padding: 8px;
			
		}
		.testimonial p{
		font-size: 1em;
		}
        
       .featured-content {
      	width: auto;
        padding: 2px 2px;
	     margin: 0;
	
		}

        .featured-item {
            width: 100%;
        }

        .featured-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 5px 10px rgba(0, 0, 0,  0.15);
        }

        .featured-img img {
	   width: 80%;
  
        }

        .featured-title {
  
        }

        .featured-desc {
        width: 100%;
        }
		
		
        .blog-post{
	   display: block;
	   width: 100%;
	   overflow: hidden;
	   text-align: center;
	
		}
		
		
        .blog-post img {
            
            
		}		
        
        
        .blog-post h2{
			font-size: 1.5em;
		}
		.blog-post p{
			font-size: 1em;
			padding: 10px;
		}
        
        .hero-content {
         width: 90%;
            position:;
    top: 50%;
    left: 50%;
            
        }
        .hero-content h1 {
        font-size: 1.2em;
           
        }
        
        .hero-content p {
        font-size: 0.7em;
        padding: 0px;
            }
 
        .form-section {
            display: block;
        }
        .form-group {
        margin: 10px;
        }
        
        
        
        
.site-footer {
    position: relative;
    width: 100%;
    padding: 40px 20px;
    background: rgba(0, 0, 20, 0.3); /* Transparent dark blue */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    color: #fff;
    overflow: hidden;
    z-index: 10;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/images/bgs/footer-bg.jpg') center/cover no-repeat;
    z-index: -2;
    filter: brightness(0.4); /* darken bg */
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    gap: 30px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1); /* ✨ Glow */
}

.footer-logo img {
    width: 60px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 8px #C8102E;
}

.footer-nav h3,
.subscribe h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.2em;
    text-shadow: 0 0 5px #ffffff88; /* ✨ Glow */
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 0 3px #ffffff55; /* ✨ Glow */
}

.footer-nav a:hover {
    color: #C8102E;
    text-shadow: 0 0 10px #C8102E; /* Stronger glow on hover */
}

.subscribe p {
    margin-top: 5px;
    color: #ccc;
    text-shadow: 0 0 4px #ffffff55;
}

.social-icons {
    margin: 30px 0 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(200, 16, 46, 0.6);
}

.social-icon img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(200, 16, 46, 1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    font-size: 0.9em;
    color: #bbb;
    text-shadow: 0 0 3px #ffffff55;
}
    
        
     }   
        


    /*Education Service*/
      
        
    

    
    
    
    
    
    
    
    
    
    
    
    
    
   



/* ===== BI: Google Translate + Globe Menu (responsive) ===== */

/* Keep page from shifting when Google injects stuff */
html, body { top: 0 !important; }

/* Hide the old Google banner safely (keep DOM present) */
iframe.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate,
#goog-gt-tt, .goog-te-balloon-frame, .goog-tooltip {
  position: absolute !important;
  top: -10000px !important; left: -10000px !important;
  width: 0 !important; height: 0 !important; border: 0 !important;
  overflow: hidden !important; visibility: hidden !important; opacity: 0 !important;
  pointer-events: none !important;
}

/* Hide the Google gadget itself (we drive it via JS) */
#bi-lang { position: absolute; left: -10000px; top: -10000px; width:1px; height:1px; overflow:hidden; }

/* Direction helpers for RTL languages */
html.translated-rtl body { direction: rtl; }
html.translated-ltr body { direction: ltr; }

/* Globe button */
.lang-dropdown { position: relative; display: inline-block; z-index: 1000; }
.lang-btn{
  width:38px; height:38px; border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center;
  background:#111; color:#fff; border:1px solid rgba(255,255,255,.25);
  cursor:pointer;
}
.lang-btn:focus{ outline:0; box-shadow:0 0 0 2px rgba(255,255,255,.18); }

/* Dropdown panel */
.lang-menu{
  position:absolute; right:0; top:calc(100% + 8px);
  min-width: 190px; background:#111; color:#fff;
  border:1px solid rgba(255,255,255,.2); border-radius:12px;
  padding:6px; box-shadow:0 10px 30px rgba(0,0,0,.35);
}
.lang-menu[hidden]{ display:none; }
.lang-menu button{
  display:block; width:100%; text-align:left;
  padding:10px 12px; border:0; background:transparent; color:#fff;
  border-radius:8px; cursor:pointer; font-size:14px;
}
.lang-menu button:hover{ background:rgba(255,255,255,.08); }
.lang-menu button.active::after{ content:"✓"; float:right; opacity:.75; }

/* Mobile tweaks */
@media (max-width: 480px){
  .lang-btn{ width:34px; height:34px; }
  .lang-menu{ min-width: 160px; }
}

/* Optional: keep brand/etc from being translated later */
.notranslate,[translate="no"]{ unicode-bidi:isolate; }




/* Keep header/nav LTR even when the page is in RTL mode */
html.translated-rtl header,
html.translated-rtl header *,
html.translated-rtl .navbar,
html.translated-rtl .navbar *,
html.translated-rtl .links,
html.translated-rtl .links *,
html.translated-rtl .toggle_btn,
html.translated-rtl .lang-dropdown,
html.translated-rtl .lang-dropdown * {
  direction: ltr !important;
  unicode-bidi: isolate;
  text-align: left;
}

/* Make sure the language menu still opens on the right edge */
html.translated-rtl .lang-menu {
  right: 0;
  left: auto;
}

/* Optional: if any caret/chevron flips in RTL, keep it normal */
html.translated-rtl .links .dropdown > a i.fa-caret-down {
  transform: none !important;
}

