
/*Header CSS  part start::*/
/* General Styles */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Navbar Styles */
.main_menu {
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  padding: 15px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .navbar {
      position: fixed;
      top: 0;
      z-index: 1000;
      width: 100%;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  .navbar {
    z-index: 9999;
}

}

.navbar-brand img {
  height: 50px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.1);
}

.navbar-toggler {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  margin: 0 10px;
}

.nav-link {
  color: #fff !important;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  z-index: 1000;
  min-width: 200px;
  padding: 10px 0;
}

.dropdown-item {
  color: #333 !important;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: #f8f9fa;
  padding-left: 25px;
}

.nav-item:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .navbar-nav {
      flex-direction: column;
      background: #1e3c72;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      display: none;
  }

  .nav-item {
      margin: 0;
  }

  .nav-link {
      padding: 15px 20px;
  }

  .dropdown-menu {
      position: static;
      background: rgba(255, 255, 255, 0.1);
      box-shadow: none;
  }

  .dropdown-item {
      color: #fff !important;
  }

  .dropdown-item:hover {
      background: rgba(255, 255, 255, 0.2);
  }

  .navbar-toggler {
      display: block;
  }

  .navbar-collapse.collapse.show {
      display: block;
  }
}
/*Header CSS  part End*/

.profile-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1500px;
  overflow: hidden;
  display: flex;
}

.left-section {
  flex: 0 0 300px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: #f9f9f9;
}

.profile-image {
  width: 100%;
  border-radius: 15px;
  border: 1px solid #eee;
}

.right-section {
  flex: 1;
  padding: 40px;
}

.name {
  font-size: 28px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.designation {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
  font-weight: 500;
}

.education {
  font-size: 16px;
  color: #777;
  margin-bottom: 25px;
  font-style: italic;
  display: block;
}

.divider {
  height: 1px;
  background-color: #eee;
  margin: 20px 0;
}

.bio {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .profile-container {
      flex-direction: column;
  }
  
  .left-section {
      flex: 0 0 auto;
      padding: 20px;
  }
  
  .right-section {
      padding: 30px;
  }
}


/*Profil CSS  part End*/


/*Team Members CSS  part start*/

/* Base styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #f3f4f7, #dfe3ee);
  color: #333;
}
/* Enlarged and Animated Heading */
 /* Enhanced Content Title */
.content__title {
  text-align: center;
  margin: 20px 0;
  padding: 20px;
  background: linear-gradient(to right, #4b6cb7, #182848);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: white;
  animation: fadeIn 2s ease-in;
  transition: background 0.3s ease, transform 0.3s ease;
}

.content__title:hover {
  background: linear-gradient(to right, #182848, #4b6cb7);
  transform: scale(1.05);
}

/* Title and Subtitle */
 h1 {
  margin: 0;
  font-size: 3rem; /* Adjust font size as needed */
  text-shadow: 2px 2px #000;
  color: #ffcc00; /* Highlighted text color */
  animation: slideIn 3s infinite alternate;
  transition: color 0.3s ease;
}

.content__title span {
  display: block;
  margin-top: 10px;
  font-size: 1.5rem; /* Adjust font size as needed */
  color: #ffcc00; /* Highlighted text color */
  animation: fadeIn 2s ease-in;
  transition: color 0.3s ease;
}

/* Animation Keyframes */
@keyframes slideIn {
  0% {
      transform: translateX(-10px);
  }
  100% {
      transform: translateX(10px);
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Team Section */
.team-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 50px 0;
  animation: fadeInUp 2s ease-in;
}

.team-section h1 {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #4b6cb7;
  text-shadow: 2px 2px #182848;
}

.team-member {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 250px;
  padding: 20px;
}

.team-member:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-member img {
  width: 100%;
  border-radius: 10px;
}

.team-member h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 10px 0;
  animation: fadeIn 1.5s ease-in;
}

.team-member p {
  font-size: 1rem;
  color: #666;
  animation: fadeIn 1.5s ease-in;
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-member {
      width: 90%;
  }

  .team-section h1 {
      font-size: 2rem;
  }
}


/*Team Members  part End*/


/* School Logos Css */

/* Client Logo Section */
.client_logo {
  padding: 50px 0;
  background: linear-gradient(to right, #f3f4f7, #dfe3ee);
  text-align: center;
  animation: fadeIn 2s ease-in;
}

.logo_slider {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}

.single_client_logo {
  background: white;
  border-radius: 50%;
  padding: 20px;
  border: 5px solid;
  border-image: linear-gradient(to bottom, #4b6cb7, #182848) 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: moveLogos 10s linear infinite;
}

.single_client_logo:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.client_logo_circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
}

.client_logo_circle img {
  max-width: 100%;
  height: auto;
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes moveLogos {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .client_logo_circle {
      width: 80px;
      height: 80px;
  }

  .single_client_logo {
      padding: 15px;
      border-width: 3px;
  }
}

/* School Logos Css */

/* Chat With Us Link */
.chat_with_us {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(to right, #4b6cb7, #182848);
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 2s ease-in;
}

.chat_with_us:hover {
  background: linear-gradient(to right, #182848, #4b6cb7);
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}
/* Chat With Us Link end */



/* Footer Section */
.footer_part {
  padding: 50px 20px;
  background: linear-gradient(to right, #182848, #4b6cb7);
  color: white;
  text-align: center;
  animation: fadeIn 2s ease-in;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Top Products Section */
.single_footer_part h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffcc00; /* Highlighted text color */
  text-shadow: 2px 2px #000;
}

.single_footer_part h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffcc00; /* Highlighted text color */
  transition: color 0.3s ease;
}

.single_footer_part h4:hover {
  color: #fff;
  transform: scale(1.05);
}

/* Copyright Information */
.copyright_part p {
  margin-top: 30px;
  font-size: 1rem;
}

/* Social Media Icons */
.footer_icon ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.single_social_icon a {
  color: #ffcc00; /* Highlighted icon color */
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.single_social_icon a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer_icon ul {
      flex-direction: column;
  }

  .single_social_icon a {
      font-size: 1.2rem;
  }
}
/* Footer Section End */
