/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.services-list ul {
  list-style-type: none;
  padding: 0;
}

.cta-button {
  display: inline-block; /* Ensures it's treated like a block for margin control */
  margin-bottom: 1px; /* Adjust this value for the amount of space you want */
}

.contact-phone {
  margin-top: 5px; /* Adds space between the email link and phone number */

}
.contact-phone {
  
  font-size: 17px !important; /* Forces the font size to apply */
  white-space: nowrap;
}







.view-details-button {
  display: inline-block;
  margin-top: 5px;
  /* padding: 5px 7px; Reduced padding for a smaller button */
  font-size: 25px !important;
  /* background-color: #F39C12; */
  /* color: #fff; */
  color: #f39c12;
  margin-bottom: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
}

/* Sticky chatbot icon */
.sticky-chatbot {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #f39c12;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s; /* Smooth transition */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000; /* Ensure it's above other content */
}

/* Popup chat container */
.chat-popup {
  position: fixed;
  left: 20px; /* Adjust distance from left edge */
  bottom: 20px; /* Adjust distance from bottom */
  width: 400px; /* Increased width for better visibility */
  max-height: 80vh; /* Limit height if needed */
  background-color: #fff; /* White background */
  border: 1px solid #ccc; /* Border color */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Deeper shadow */
  border-radius: 10px; /* Rounded corners */
  display: none; /* Hidden by default */
  z-index: 9998;
  overflow: hidden; /* Hide overflow */
  transition: all 0.3s ease; /* Smooth transition */
}

/* Chat header */
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f39c12; /* Header background color */
  color: #fff; /* Header text color */
  border-bottom: 1px solid #f39c12; /* Header border */
}

/* Close button */
.close-button {
  background: none;
  border: none;
  color: #fff; /* Close button text color */
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s; /* Smooth color transition */
}

.close-button:hover {
  color: #f39c12; /* Change color on hover */
}

/* Ensure chat content is scrollable */
.chat-container {
  overflow-y: auto;
  height: calc(100% - 60px); /* Adjust based on input and other container heights */
  padding: 10px;
}

.chat-box {
  max-height: 70%; /* Limit height for messages */
  overflow-y: auto; /* Enable scrolling */
}

/* User message styling */
.user-message {
  background-color: #f39c12; /* Light blue for user messages */
  border-radius: 5px; /* Rounded corners for messages */
  padding: 5px 10px; /* Padding for messages */
  margin: 5px 0; /* Margin between messages */
  align-self: flex-end; /* Align user messages to the right */
}

/* Bot message styling */
.bot-message {
  background-color: #f1f1f1; /* Light grey for bot messages */
  border-radius: 5px; /* Rounded corners for messages */
  padding: 5px 10px; /* Padding for messages */
  margin: 5px 0; /* Margin between messages */
  align-self: flex-start; /* Align bot messages to the left */
}

/* Input container styling */
.input-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: #f9f9f9; /* Light background for input area */
  border-top: 1px solid #ccc; /* Top border for input area */
}

/* Input field styling */
.input-container input[type="text"] {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px; /* Rounded corners for input */
  margin-right: 10px;
  transition: border 0.3s; /* Smooth border transition */
}

.input-container input[type="text"]:focus {
  border: 1px solid #f39c12; /* Border color on focus */
  outline: none; /* Remove default outline */
}

/* Send button styling */
.input-container button {
  padding: 8px 12px; /* Adjust padding */
  background-color: #f39c12; /* Button color */
  color: #fff; /* Button text color */
  border: none;
  border-radius: 5px; /* Rounded corners for button */
  cursor: pointer;
  display: flex; /* Use flexbox to align items */
  align-items: center; /* Center align items vertically */
  transition: background-color 0.3s; /* Smooth background color transition */
}

.input-container button:hover {
  background-color: #f39c12; /* Darker button color on hover */
}

/* Send icon */
.send-icon {
  width: 16px; /* Adjust icon size */
  height: 13px; /* Adjust icon size */
  margin-left: 5px; /* Spacing between text and icon */
}


.sticky-chatbot img {
  width: 80%; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
  fill: white; /* SVG fill color */
}




.view-details-button:hover {
  /* color: #ffffff; */
  color: black;
}

.content-section {
  margin-top: 30px;
}

.content-section h2 {
  margin-bottom: 15px;
}

.content-section p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.content-section ul {
  list-style-type: disc;
  margin-left: 20px;
}

.content-section ul li {
  margin-bottom: 5px;
}

.black {
  color: black;
}

.orange {
  color: #f39c12;
}

.bold {
  font-weight: bold;
}

.banner {
  margin-bottom: 20px; /* Compensates for fixed header */
  text-align: center;
}

.banner-image {
  width: 60%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* 
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination-btn {
    padding: 10px 15px;
    margin: 0 5px;
    cursor: pointer;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

.pagination-btn.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

 */

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap; /* Add this to wrap buttons on smaller screens */
  gap: 5px; /* Adjust the gap between buttons for responsiveness */
  padding: 10px; /* Add padding to create some space around the pagination */
}

.pagination-btn {
  padding: 8px 12px; /* Slightly reduce padding for smaller screens */
  margin: 5px; /* Add margin for better spacing between buttons */
  cursor: pointer;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  border-radius: 4px; /* Make buttons rounded for a modern look */
  transition: background-color 0.3s ease; /* Smooth transition effect */
}

.pagination-btn.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

/* /* Development Services Section */
.development-services {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.development-services h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.development-services p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.services-list li {
  font-size: 25px;
}

.services-list li i {
  margin-right: 10px;
  color: #f39c12;
}

.cta-section {
  background-color: #f39c12;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #fff;
  color: #f39c12;
  padding: 7px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.cta-button:hover {
  background-color: #e7e7e7;
}

.social-media2 {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.social-media2 li {
  display: inline-block;
  margin-right: 10px;
}

.social-media2 a {
  color: #f39c12;
  font-size: 30px;
  text-decoration: none;
}

.social-media {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.social-media li {
  display: inline-block;
  margin-top: 20px;
  margin-right: 10px;
}

.social-media a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

/* privacy */

/* Privacy Policy Section */
.privacy-policy {
  background-color: #fff;
  padding: 2rem 0;
  margin-top: 20px;
}

.privacy-policy h1,
.privacy-policy h2 {
  color: #333;
}

.privacy-policy p,
.privacy-policy ul {
  margin-bottom: 1.5rem;
}

.privacy-policy ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* Logo */
#logo{
  transition: width 0.6s ease-in-out;
  width: 200px;
}
.logo img {
  max-width: 100%;
  margin-bottom: 10px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Benefits of Learning Section */
.benefits-section {
  padding: 40px 0;
  background-color: #f4f4f4;
  text-align: center;
}

.benefits-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.benefits-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.benefits-section p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #666;
}

.benefits-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: 18%;
  transition: transform 0.3s;
}

.benefit-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.benefit-item h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}

.benefit-item:hover {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .benefit-item {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .benefit-item {
    width: 90%;
  }
}
header {
  background-color: #f8f8f8;
  padding: 10px 0;
  position: sticky;
  top: 0; /* Keeps the header at the top */
  z-index: 1000;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

header .container {
  width: 100%;
  max-width: 1300px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo h1 {
  font-size: 1.8rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #f39c12;
}

.btn {
  background-color: #f39c12;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #e67e22;
}

/* Modern Search bar styles */
.search-bar {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 30px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.search-bar input {
  border: none;
  outline: none;
  padding: 10px;
  font-size: 16px;
  border-radius: 20px;
  background-color: transparent;
  width: 120px;
  transition: width 0.3s ease-in-out;
}

/* .search-bar input:focus {
    width: 300px;
} */

.search-bar button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007bff;
  transition: color 0.3s;
}

.search-bar button:hover {
  color: #0056b3;
}

.search-bar svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
/* General Styles for Hamburger Icon */
.hamburger {
  cursor: pointer;
  font-size: 24px;
  z-index: 9999; /* Ensure it's above other content */
}

.hamburger i {
  font-size: 24px;
  color: #333;
}

/* Hero Section */
.hero {
  position: relative;
  background: url("./public/hero-image1.jpg") center center/cover no-repeat;
  height: calc(100vh - 80px); /* Full viewport height minus the header height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  animation: backgroundSlider 9s infinite; /* Apply the animation */
}

/* Keyframes to change the background image */
@keyframes backgroundSlider {
  0% {
    background: url("./public/hero-image.jpg") center center/cover no-repeat;
  }
  33% {
    background: url("./public/hero-image2.jpg") center center/cover no-repeat;
  }
  66% {
    background: url("./public/hero-image3.jpg") center center/cover no-repeat;
  }
  100% {
    background: url("./public/hero-image.jpg") center center/cover no-repeat;
  }
}

/* Overlay Section */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(
    230,
    126,
    34,
    0.3
  ); /* Orange overlay with 30% opacity */
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  flex-direction: column; /* Stack elements vertically */
  padding: 20px;
  z-index: 1; /* Ensure overlay is above the background */
}

.hero .container {
  z-index: 1;
}

.hero h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.hero .btn {
  background-color: #f39c12;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-size: 1rem;
}

.hero .btn-outline {
  background-color: transparent;
  border: 2px solid #f39c12;
}

.hero .btn:hover {
  background-color: #e67e22;
}

.hero .btn-outline:hover {
  background-color: #f39c12;
  color: white;
}

/* Contact Section */
.contact {
  padding: 50px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-info div {
  width: 45%;
  padding: 20px;
  background-color: #f39c12;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.contact-info h3 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #000;
}

.contact-info p {
  margin: 0;
  font-size: 16px;
  color: #000;
}

/* Form Styles */
form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

form input,
form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

form textarea {
  height: 150px;
}

form .btn {
  display: inline-block;
  background-color: #f39c12;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form .btn:hover {
  background-color: #ff6b6b;
}

.sitemap-body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.sitemap-wrapper {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sitemap {
  list-style-type: none;
}

.sitemap > li {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.sitemap > li a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.sitemap > li a:hover {
  color: #FF5722;
}

.sitemap ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.sitemap ul li {
  font-size: 1.2rem;
}

.sitemap ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sitemap ul li a:hover {
  color: #FF5722;
}

@media (max-width: 768px) {


  .sitemap > li {
      font-size: 1.2rem;
  }

  .sitemap ul li {
      font-size: 1rem;
  }
}


/* Statistics Section */
.statistics {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.statistics .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px 10px;
  width: 95px;
  height: 153px;
}

.stat-number {
  font-size: 38px;
  font-weight: bold;
  color: #f39c12;
}

.stat-text {
  font-size: 16px;
  margin-top: 5px;
}

@media (max-width: 768px) { /* Adjust for tablets and mobile devices */
  .stat-number {
    font-size: 24px; /* Smaller font size for mobile */
  }

  .stat-text {
    font-size: 12px; /* Adjust font size so both come on one line */
  }
}

@media (max-width: 480px) { /* For smaller mobile screens */
  .stat-number {
    font-size: 20px; /* Further reduce font size on smaller screens */
  }

  .stat-text {
    font-size: 10px; /* Make text smaller on very small screens */
  }
}


/* About Us Section */
.about-us,
.our-training,
.vision-mission,
.strengths {
  padding: 50px 0;
  text-align: center;
}

.about-us h2,
.our-training h2,
.vision-mission h2,
.strengths h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1f1f1f;
}

.about-us p,
.our-training p,
.vision-mission p,
.strengths p,
.strengths ul {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.strengths ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.strengths ul li {
  background: url("checkmark.svg") no-repeat left center;
  padding-left: 30px;
  margin-bottom: 10px;
}

/* Vision and Mission Section */
.vision-mission {
  background-color: #f0f0f0;
}

.vision,
.mission {
  width: 48%;
  display: inline-block;
  vertical-align: top;
  margin: 0 1%;
}

/* Section Styling */
.professors {
  padding: 5px 0;
  background-color: #f9f9f9;
}

.professors h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  color: #333;
}

/* Grid for Professors */
.professors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; /* Align center horizontally */
}

/* Individual Professor Styling */
.professor {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  width: calc(25% - 20px); /* 4 items per row */
  text-align: center;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.professor img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #e0e0e0;
}

.professor h3 {
  margin: 15px 0 10px;
  font-size: 1.2em;
  color: #333;
}

.professor p {
  font-size: 0.9em;
  color: #666;
}

/* Hover Effect */
.professor:hover {
  transform: translateY(-10px);
}

/* Corporate Trainings Section */
.corporate-trainings {
  padding: 50px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.corporate-trainings h2 {
  margin-bottom: 30px;
  font-size: 2em;
  color: #333;
}

/* Esteemed Clients Grid */
.clients-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.client {
  width: calc(33% - 20px);
  margin-bottom: 30px;
  text-align: center;
  background-color: white;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.client img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.client p {
  font-size: 1em;
  color: #666;
}

.client:hover {
  transform: translateY(-10px);
}

/* Corporate Training Modes */
.training-modes {
  text-align: center;
}

.modes-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.mode {
  width: calc(33% - 20px);
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.mode img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.mode h4 {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 10px;
}

.mode p {
  font-size: 1em;
  color: #666;
}

.mode:hover {
  transform: translateY(-10px);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .client,
  .mode {
    width: calc(50% - 20px); /* 2 items per row */
  }
}

@media (max-width: 600px) {
  .client,
  .mode {
    width: 100%; /* 1 item per row */
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .professor {
    width: calc(33.333% - 20px); /* 3 items per row */
  }
}

@media (max-width: 900px) {
  .professor {
    width: calc(50% - 20px); /* 2 items per row */
  }
}

@media (max-width: 600px) {
  .professor {
    width: 100%; /* 1 item per row on smaller screens */
  }
}

/* Footer */
footer {
  width: 100%;
  /* background-color: #8f8f8e ; */
  /* color: white; */
  background-color: white;
  color: #000;
  padding: 20px 0;
  margin: 0;
}

.side {
  display: flex;
  flex-direction: column;
}

.footer-middle {
  /* margin-right: 30px; Adjust the value as needed */
  display: flex;
  gap: 40px;
  justify-content: space-evenly;
  position: relative;
  top: 67px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer-left,
.footer-middle,
.footer-right {
  flex: 1;
  margin-right: 50px;
}

.footer-left {
  width: 28vw;
}



.footp {
  text-align: justify;
  width: 100%;
}



.footer-logo {
  max-width: 150px; /* Adjust the size as needed */
  margin-bottom: 15px;
}

.footer-links-top-courses {
  display: flex;
  justify-content: space-between;
}

.footer-links ul,
.top-courses ul,
.blogs ul {
  list-style: none;
  padding: 0;
}

.blogs ul {
  list-style: none;
  padding: 0;
}

.blogs li {
  display: flex;
  align-items: center; /* Align items vertically */
  margin-bottom: 15px;
}

.blogs li img.blog-thumbnail {
  width: 100px; /* Thumbnail width */
  height: 90px; /* Thumbnail height */
  margin-right: 10px; /* Space between image and text */
  object-fit: cover; /* Maintain aspect ratio */
}

.blogs a {
  text-decoration: none;
  color: black;
  font-size: 1.1em;
  display: flex;
  align-items: center; /* Ensures the text is vertically centered */
  height: 90px; /* Match the image height */
  line-height: 1.5em; /* Optional for text spacing */
}

.footer-links h4,
.top-courses h4,
.blogs h4 {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #f39c12; /* Heading color */
}

.footer-links ul li,
.top-courses ul li,
.blogs ul li {
  margin-bottom: 5px;
}

.footer-links ul li a,
.top-courses ul li a,
.blogs ul li a {
  color: black;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover,
.top-courses ul li a:hover,
.blogs ul li a:hover {
  color: #f39c12; /* Hover color */
}

.social-media {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.social-icon {
  color: #f39c12;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #f39c12; /* Example hover color */
}

.footer-right {
  text-align: left;
}
/* 
.blogs {
    margin-top: 20px;
} */

/* Responsive Layout */
@media (max-width: 776px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .social-media {
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .no {
    display: none;
  }
}

/* Info Section */
.info-section {
  display: flex;
  justify-content: center;
  gap: 50px;
  background-color: rgba(0, 0, 0, 0.7); /* Darker background for contrast */
  padding: 30px 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
}

.info-box {
  color: white;
}

.info-box h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.info-link {
  color: #f39c12;
  text-decoration: none;
  font-weight: bold;
}

.info-link:hover {
  text-decoration: underline;
}

/* General Styles for Slider */
.courses {
  padding: 50px 0;
  text-align: center;
}

.courses h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.course-card {
  flex: 0 0 250px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  overflow: hidden;
  scroll-snap-align: start;
}

.course-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.course-card h3 {
  font-size: 1.2rem;
  margin: 10px;
}

.course-card p {
  margin: 10px;
  color: #7f8c8d;
}

.course-card .btn {
  display: block;
  text-align: center;
  margin: 10px;
  padding: 10px 20px;
  background-color: #f39c12;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.course-card .btn:hover {
  background-color: #0056b3;
}

/* General Styles for Grid Layout */
.courses-page body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.courses-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.courses-page .courses {
  text-align: center;
  padding: 40px 0;
}

.courses-page .courses h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.courses-page .course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.courses-page .course-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
}

.courses-page .course-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.courses-page .course-card h3 {
  font-size: 1.5rem;
  margin: 15px 0;
}

.courses-page .course-card p {
  color: #555;
  margin: 10px 0;
}

.courses-page .course-card .btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 30px;
  font-size: 12px;
  background-color: #f39c12;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.courses-page .course-card .btn:hover {
  background-color: #000000;
}

.courses-page .load-more-btn {
  padding: 12px 24px;
  background-color: #f39c12;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.courses-page .load-more-btn:hover {
  background-color: #000000;
}

/* carding */

.carding {
  position: relative;
  height: 48vh;
}

@media screen and (max-width: 490px) {
  /* .carding{
        position: absolute;

    } */
  .carding .btn {
    position: relative !important;
    bottom: 0px;
    width: 92%;
  }
  .course-card {
    overflow: visible;
  }
}

.carding .btn {
  position: absolute;
  bottom: 0px;
  width: 92%;
}

.blog-page {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.blog .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.blog h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.2s ease-in-out;
}

.blog-item:hover {
  transform: scale(1.02);
}

.blog-item h3 {
  font-size: 1.5rem;
  margin: 0 0 10px;
}

.blog-item p.blog-summary {
  color: #555;
  margin: 0 0 10px;
}

.stat-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 40px; /* Adjust if necessary */
}


a {
  color: black;
}

.blog-item .view-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f39c12;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.blog-item .view-btn:hover {
  background-color: #000000;
}

/* Blog Post Page */
.blog-post-page .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.blog-content {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.blog-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.blog-content h2 {
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 15px;
  color: #555;
}

.blog-content h3 {
  font-size: 1.75rem;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #666;
}

.blog-content h4 {
  font-size: 1.5rem;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #777;
}

.blog-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.blog-content ul li {
  margin-bottom: 10px;
}

.blog-content blockquote {
  background-color: #f5f5f5;
  border-left: 5px solid #007bff;
  padding: 10px 20px;
  margin: 20px 0;
  font-style: italic;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  max-width: 800px;
  width: 100%;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .blog-list {
    flex-direction: column;
  }
}

/* Features Section */
.features {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.feature-list {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.feature-item {
  flex: 1;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature-item i {
  font-size: 2rem;
  color: #f39c12;
  margin-bottom: 10px;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
  padding: 50px 0;
  background-color: #ecf0f1;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.testimonial-card {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  color: #f39c12;
  font-size: 1rem;
}

.clients-section {
  padding: 50px 0;
  text-align: center;
  background-color: #f8f9fa;
}

.clients-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.clients-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.client-item {
  width: 160px;
  height: 160px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.client-item img {
  max-width: 100%;
  max-height: 60%;
  object-fit: contain;
}

.client-item p {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

/* Inquiry Form Section */
.inquiry {
  padding: 50px 0;
  text-align: center;
  background-color: #f39c12; /* Light background color for the section */
}

.inquiry h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.inquiry .container {
  background-color: white; /* Form background color */
  padding: 30px;
  border-radius: 15px; /* Rounded corners for the form container */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for a modern look */
  max-width: 600px;
  margin: 0 auto;
}

.inquiry form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inquiry input,
.inquiry textarea {
  padding: 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px; /* Rounded corners for inputs and textarea */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Slight shadow for depth */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.inquiry input:focus,
.inquiry textarea:focus {
  border-color: #f39c12; /* Focus border color */
  box-shadow: 0 4px 8px rgba(243, 156, 18, 0.2); /* Focus shadow effect */
  outline: none; /* Remove default outline */
}

.inquiry button {
  padding: 15px;
  font-size: 1rem;
  background-color: #f39c12;
  color: white;
  border: none;
  border-radius: 8px; /* Rounded corners for the button */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Button shadow */
}

.inquiry button:hover {
  background-color: #e67e22;
  transform: translateY(-2px); /* Slight lift effect on hover */
}

.inquiry button:active {
  transform: translateY(0); /* Return to normal on click */
}

/* inquiry bubble */

.inquiry-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #f39c12;
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 1000;
}

.inquiry-bubble:hover {
  background-color: #d35400;
  transform: scale(1.1);
}

.social-media {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}

.social-media3 li {
  display: inline;
  margin-right: 10px;
}

.social-media3 {
  color: #f39c12; /* Initial color */
  font-size: 1.5rem; /* Size of the icons */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s; /* Smooth color transition on hover */
}

.social-media .social-icon {
  color: black;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.social-media .social-icon:hover {
  color: #f39c12;
}

/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.popup-content h2 {
  margin-top: 0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}

.close-btn:hover {
  color: #f39c12;
}

.popup input,
.popup textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.popup textarea {
  resize: vertical;
  height: 150px;
}

.popup .btn {
  background-color: #f39c12;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.popup .btn:hover {
  background-color: #e67e22;
}

nav.open {
  display: block;
}

/* Hide hamburger menu on larger screens */
@media (min-width: 1024px) {
  /* Adjust the width as needed */
  .hamburger {
    display: none; /* Hide hamburger menu on desktop */
  }
}
/* Add FontAwesome or another icon library if using icons */

  /* For larger screens, display the input by default */
  @media (max-width: 768px) {
    #search-input {
      width: 0;
      opacity: 0;
      transition: width 0.5s ease, opacity 0.5s ease; /* Adjust duration as needed */
      padding: 0;
      border: none;
      overflow: hidden; /* Prevent content overflow during transition */
    }
  }


  
  /* When active, these properties will change */
  #search-input.active {
    display: block;
    width: 150px; /* Adjust as needed */
    opacity: 1;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
    background-color: transparent;
    transition: width 0.3s ease-in-out;
  }
  



/* Responsive Styles */
@media screen and (max-width: 1150px) {
  /* Hide navigation on mobile */
  nav {
    display: none;
    width: 100%;
    background-color: #f8f8f8;
    position: absolute;
    top: 60px; /* Adjust based on header height */
    left: 0;
    z-index: 999;
    padding: 20px 0;
  }

  


  .hero .overlay {
    background-color: rgba(
      230,
      126,
      34,
      0.5
    ); /* Adjust opacity or color if needed */
    padding: 20px; /* Adjust padding for smaller screens */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* Ensure column layout on mobile */
  }

  .overlay > .container {
    position: absolute;
    bottom: 50%;
  }

  .hero .main-text {
    margin-bottom: 20px; /* Add some space between text and button */
  }

  .hero .main-text h1,
  .hero .main-text h2 {
    font-size: 2em; /* Adjust font sizes for mobile */
    text-align: center; /* Center-align text for better mobile display */
    margin: 0; /* Remove any default margins */
  }

  .hero-buttons .btn {
    padding: 10px 15px; /* Adjust button padding for mobile */
    font-size: 1em; /* Adjust button text size for mobile */
    margin-bottom: 20px; /* Add margin to prevent overlap with below section */
  }
  .info-section {
    margin-top: 0; /* Reset top margin if needed */
  }

  /* need to hide search bar */

  .main-text h1 {
    font-size: 34px; /* Smaller font size for mobile */
  }

  .main-text h2 {
    font-size: 34px; /* Smaller font size for mobile */
  }

  .hero-buttons .btn {
    padding: 8px 16px; /* Adjust button size */
  }

  /* Show hamburger menu on mobile */
  .hamburger {
    display: block;
    margin: 37px;
  }

  .slider {
    flex-direction: column;
    gap: 10px;
  }

  /* 
.courses-page .course-grid {
    grid-template-columns: 1fr;
} */

  /* Navigation */
  nav {
    display: none;
    width: 100%;
    background-color: #f8f8f8;
    position: absolute;
    top: 60px; /* Adjust based on header height */
    left: 0;
    z-index: 999;
    padding: 10px 0;
  }

  nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 5px 0;
  }
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
  }

  .slider {
    flex-direction: row;
  }

  .feature-list {
    flex-direction: column;
  }

  .vision,
  .mission {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 500px) {
  .slider {
    flex-direction: column;
    max-width: 100%;
  }
}

@media screen and (max-width: 512px) {
  .contact-info div {
    width: 48%;
  }
}

@media screen and (max-width: 600px) {
  .stat-container {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-around; /* Evenly spaces the stats */
    padding: 0;
  }

  .stat-number {
    font-size: 24px; /* Make the font smaller for mobile */
  }

  .stat-text {
    font-size: 12px; /* Smaller text to fit */
  }
}

/* For very small screens */
@media screen and (max-width: 450px) {
  .stat-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 10px; /* Adjust padding if needed */
  }

  .stat-number {
    font-size:30px;
  }

  .stat-text {
    font-size: 15px;
  }
}

@media screen and (max-width: 470px) {
  .cta-button {
    padding: 3px 10px;
  }
  .contact-info {
    flex-direction: column;
  }
  .contact-info div {
    width: 85%;
  }

  .info-box p {
    font-size: 1rem;
  }
  .footer-left {
    width: 80vw;
    margin-bottom: 0px;
  }

  .footer-middle {
    top: 39px;
    margin-bottom: 30px;
  }
  .services-list li {
    font-size: 25px;
    /* border: 1px solid; */
    display: flex;
    justify-content: space-between;
  }
  .view-details-button {
    font-size: 23px !important;
  }
}

.banner-image {
  display: none;
}
