/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

/* Live Wallpaper */
.live-wallpaper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.live-wallpaper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
} 



/* Navigation Bar */



nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #1e3a8a, #2563eb);
  padding: 20px 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 65px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle div {
  width: 30px;
  height: 4px;
  background-color: white;
  margin: 5px 0;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: lime;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: lime;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links li a:hover::after {
  width: 100%;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1e40af;
  list-style: none;
  padding: 15px 0;
  margin: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.dropdown li a {
  color: white;
  padding: 10px 20px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.dropdown li a:hover {
  color: lime;
}

.nav-links li:hover .dropdown {
  display: block;
}

.admission-btn {
  background-color: limegreen;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.admission-btn:hover {
  background-color: black;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  nav {
      justify-content: space-around;
      align-items: center;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 100;
    padding-bottom: 10px;
    margin-top: 20px;
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .dropdown {
    position: static;
    width: 100%;
    transform: none;
  }

  .dropdown li {
    text-align: center;
  }

  .admission-btn {
    margin: 10px auto;
    width: 50%;
    margin-right: 42px;
    font-size: 12px;
  }
  
}





/* Navbar Ends Here */



/* Mobile Menu Icon */
#menu-icon {
  color: white;
  font-size: 2rem;
  display: none;
  cursor: pointer;
}

/* Counter Section Styling */
.counter-section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  text-align: center;
  gap: 2rem;
}

.counter-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 230px;
  margin: 1rem;
  padding: 2.5rem;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.counter-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.counter-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.counter-box:hover .counter-icon {
  transform: rotate(10deg);
}

/* Counter and Text Styling */
.counter-box h2 {
  font-size: 3rem;
  color: #007bff;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.counter-box p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
  margin-top: 0.5rem;
}

.counter-box:hover h2 {
  color: #28a745;
}

/* Mobile-Friendly Design */
@media (max-width: 768px) {
  .counter-box {
    flex: 1 1 100%;
    margin: 1rem 0;
  }

  .counter-icon {
    font-size: 2.5rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 2rem;
}

.hero .content {
  margin-top: 8rem;
  z-index: 2;
  max-width: 800px;
}


.hero h2 {
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #00b4d8;

}
.content .edu{
  text-shadow: white 0px 0px 20px;
  color:white;
}

.content .edu span{
  font-size: 70px;
}

@media (max-width: 768px) {
  .content .edu span{
    font-size: 50px;
  }
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: #007bff;
}
.hero-button {
  background-color: white; /* Green background */
  color: black; /* White text */
  font-size: 16px; /* Font size */
  font-weight: 600; /* Slightly bolder text */
  padding: 12px 30px; /* Padding for size */
  border-radius: 50px; /* Rounded corners */
  border: none; /* Remove default border */
  text-transform: uppercase; /* Uppercase text for emphasis */
  cursor: pointer; /* Pointer cursor on hover */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  display: inline-block; /* Make it behave like a button */
}

i.fab.fa-whatsapp {
  color: #25D366; /* WhatsApp's original green color */
  font-size: 24px; /* Adjust the size of the icon */
  transition: color 0.3s ease; /* Smooth transition effect */
}
.hero-button:hover {
  color: white;
  background-color: #12d73d; /* Darker green on hover */
  transform: translateY(-5px); /* Slight lift effect on hover */
}


i.fab.fa-whatsapp:hover {
  color: white !important; /* Force color change */
}








.hero-button:focus {
  outline: none; /* Remove outline */
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5); /* Add focus outline */
}

.hero-button:active {
  transform: translateY(2px); /* Slight push down effect when clicked */
}



.cta-button:hover {
  background-color: white;
  color: #28a745;
}
.experience-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #f0f0f0;
  position: relative;
}
/* Hero phone responsiveness */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }

  .hero .live-wallpaper {
    height: 100%; /* Ensures it matches the hero height */
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .live-wallpaper video {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .content {
    position: relative;
    z-index: 1;
    padding: 10px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .content h2, 
  .content h1 {
    font-size: 1.5rem;
  }

  .hero-button {
    font-size: 0.9rem;
    padding: 8px 12px;
    margin-top: 10px;
    max-width: 80%;
  }
}


/* 3D Image Styling */

/* Experience Section */
.experience-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  background-color: #f7f8fa;
}

/* 3D Image Container */
/* Experience Section */
.experience-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  background-color: #f7f8fa;
}

/* 3D Image Container */
.three-d-image-container {
  perspective: 1000px;
  position: relative;
}
.counter {
  transition: color 0.3s ease-in-out; /* Optional: Add a smooth transition for text color */
}


/* 3D Images */
.three-d-images {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card Styling */
.card {
  position: relative;
  width: 250px;
  height: 350px;
  /* transform: rotateX(15deg) rotateZ(5deg); */
  transform-style: preserve-3d;
  border-radius: 16px;
  box-shadow: 1px 1px 0 1px #f9f9fb, -1px 0 28px 0 rgba(34, 33, 81, 0.01),
    28px 28px 28px 0 rgba(34, 33, 81, 0.25);
  overflow: hidden;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

/* Hover Effect */
.card:hover {
  /* transform: translate3d(0px, -16px, 0px) rotateX(15deg) rotateZ(5deg); */
  box-shadow: 1px 1px 0 1px #f9f9fb, -1px 0 28px 0 rgba(34, 33, 81, 0.01),
    54px 54px 28px -10px rgba(34, 33, 81, 0.15);
}

/* Card Image */
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Text Overlay */
.text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.card:hover .text-overlay {
  transform: translateY(0);
}

.text-overlay h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
}

.text-overlay p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

/* Main Overlay Text */
.overlay-text {
  margin-top: 2rem;
  text-align: center;
}

.overlay-text h2 {
  font-size: 2rem;
  color: #222151;
  font-weight: bold;
}

.highlight {
  color: #f39c12;
  font-weight: bold;
}

/* process section  */
.process-section {
  padding: 50px 20px;
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #007bff;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #007bff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-step {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-step.left {
  left: 0;
  text-align: right;
}

.timeline-step.right {
  left: 50%;
  text-align: left;
}

.timeline-step .content {
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.timeline-step.left .content {
  margin-left: auto;
}

.timeline-step.right .content {
  margin-right: auto;
}

.timeline-step::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #007bff;
  top: 10px;
  z-index: 1;
}

.timeline-step.left::before {
  right: -10px;
}

.timeline-step.right::before {
  left: -10px;
}

.timeline-step.active .content {
  opacity: 1;
  transform: translateY(0);
}

.icon {
  font-size: 32px;
  color: #007bff;
  margin-bottom: 10px;
}

.process-description {
  font-size: 16px;
  color: #333;
}

@media screen and (max-width: 768px) {
  .timeline-step {
    width: 100%;
    text-align: center;
  }

  .timeline-step.left,
  .timeline-step.right {
    left: 0;
  }

  .timeline-step.right {
    left: 21px;
  }

  .timeline-step::before {
    top: -10px;
    left: 50%;
    margin-left: -10px;
  }

  .timeline::after {
    background-color: transparent;
    }

    .timeline-step::before {
      
      background-color: transparent;
     
    }
    .timeline-step i{
      display: flex;
      justify-content: center;
    }
    .timeline-step h4{
      display: flex;
      justify-content: center;
      text-align: center;
      font-size: 20px;
    }
    .timeline-step p{
      display: flex;
      justify-content: center;
      text-align: center;
      font-size: 18px;
    }
    
    .live-wallpaper video {
      width: 100%;
      height: 100%;
      object-fit: fill;
    }
    
}

/* Contact CTA  */
.cta-section {
  background: linear-gradient(135deg, #ff6f61, #ffcc80); /* Gradient background */
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  margin: 30px 20px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ffffff;
  color: #ff6f61;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  background-color: #ff7043;
  color: #ffffff;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  .cta-subtitle {
    font-size: 1rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

/* About Us Section */
.about-us {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #f4f4f4;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-heading {
  font-size: 2rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-paragraph {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

@keyframes moveText {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #f4f4f4;
}

/* Flexbox Container for Left and Right Content */
.content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

/* Image Styling (left side) */
.image-container {
  flex: 1;
  padding-right: 2rem;
  text-align: center;
}

.about-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* About Us Styling (right side) */
.about-us {
  flex: 1.5;
  padding-left: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  color: #333;
  font-family: "Roboto", sans-serif;
  text-align: left;
  line-height: 1.8;
  animation: fadeIn 1.2s ease-in-out;
}

/* Fade-In Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Heading Styling */
.about-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  position: relative;
}

/* Underline Effect for the Heading */
.about-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 2px;
  background-color: #007bff;
  border-radius: 5px;
  transition: width 0.4s ease;
}

.about-heading:hover::after {
  width: 100%;
}

/* Paragraph Styling */
.about-paragraph {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  text-align: justify;
  transition: color 0.3s ease;
}

.about-paragraph:hover {
  color: #007bff;
}

.form-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease;
}
.form-input:focus {
  border-color: #4caf50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

/* Play Button Styling */
.play-button {
  position: relative;
  cursor: pointer;
  z-index: 2;
}
.wave-animation .wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: emit-wave 2s infinite;
}
.wave:nth-child(1) {
  animation-delay: 0s;
}
.wave:nth-child(2) {
  animation-delay: 0.5s;
}
.wave:nth-child(3) {
  animation-delay: 1s;
}
@keyframes emit-wave {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1rem;
  }
  .dropdown-menu {
    position: static;

    backdrop-filter: blur(15px);
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    padding: 0;
  }

  .dropdown-menu li {
    padding: 0.4rem;
    backdrop-filter: blur(15px);
    color: white;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu li:hover {
    background-color: rgba(40, 142, 40, 0.9);
    color: white;
  }

  .counter-section {
    flex-direction: column;
    gap: 1.5rem;
  }

  .counter-box {
    width: 80%;
    margin: 1rem 0;
  }

  .counter-box h2 {
    font-size: 2.5rem;
  }

  .counter-icon {
    width: 60px;
    height: 60px;
  }
  .experience-image {
    width: 200px; /* Adjust image size for mobile */
  }

  .experience-text h2 {
    font-size: 1.5rem; /* Adjust text size for mobile */
  }

  .about-us {
    width: 90%;
  }
}

/* Overview Section */

.overview-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
}

.overview-label {
  display: inline-block;
  padding: 5px 15px;
  background-color: #ecebff;
  color: #8a58ff;
  font-size: 14px;
  border-radius: 15px;
  margin-bottom: 10px;
}
.overview-title {
  font-size: 28px;
  font-weight: bold;
  color: #000;
}

.overview-title .highlight {
  color: #4e84d5;
  text-decoration: underline;
}

/* Tabs Container */
.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Tabs Styling */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab {
  background: rgb(48, 18, 74);
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s, color 0.3s;
}

.tab:hover {
  background: #4f93dc;
  color: #fff;
}

.tab.active {
  background: #007bff;
  color: #fff;
}

/* Section Content Styling */
.sections {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

.section-detail {
  display: none;
}

.section-detail.active {
  display: block;
}

.tab-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tab-image {
  width: 45%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tab-description {
  width: 50%;
  text-align: justify;
  padding: 0 20px;
  transition: color 0.3s;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

/* Hover Effect for Description */
.tab-description:hover {
  color: #4facfe;
}



/* 3dcard  */
/* Keyframes for seamless scrolling */
@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Scroll halfway to ensure smoothness */
  }
}

/* Carousel animation */
.animate-scroll-carousel {
  display: flex;
  animation: scroll-carousel 20s linear infinite; /* Faster scroll */
}

/* Wrapping class to hide overflow */
.overflow-hidden {
  overflow: hidden;
  width: 100%;
}

/* Card Styling */
.card {
  flex-shrink: 0;
  width: 200px;
  margin-right: 20px; /* Add spacing */
}


/* college cards */

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.image-overlay {
  position: relative;
}

.image-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-overlay:hover::after {
  opacity: 1;
}
/* Responsive Design */



@media (max-width: 768px) {
  .tab-content {
    flex-direction: column;
    align-items: center;
  }

  .tab-image {
    width: 100%;
    margin-bottom: 20px;
  }

  .tab-description {
    width: 100%;
    padding: 0;
  }
  
}

/* college scoll */
.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 20px;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  width: fit-content;
}

.carousel img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.highlight {
  color: #007bff;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  z-index: 1;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.arrow:hover {
  background-color: #0056b3;
}

 /* Chat Button */
 .chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
}

.chat-button:hover {
  background-color: #0056b3;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  height: 450px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.chat-header {
  background-color: #007bff;
  color: #fff;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h4 {
  margin: 0;
  font-size: 16px;
}

.chat-close {
  cursor: pointer;
  font-size: 18px;
}

.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  font-family: Arial, sans-serif;
}

.chat-body p {
  margin: 5px 0;
}

.chat-input {
  display: flex;
  border-top: 1px solid #ddd;
  padding: 10px;
}

.chat-input input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.chat-input button {
  margin-left: 10px;
  padding: 8px 12px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.chat-input button:hover {
  background-color: #0056b3;
}

/* FAQ Suggestions */
.faq-suggestions {
  margin: 10px 0;
}

.faq-suggestions button {
  background-color: #e9ecef;
  color: #333;
  border: none;
  border-radius: 5px;
  padding: 8px 10px;
  margin: 5px 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
}

.faq-suggestions button:hover {
  background-color: #d6d8db;
}


/* get touch section */

.contact-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.contact-header {
  font-size: 2.5em;
  font-weight: bold;
  color: #004d40;
  margin-bottom: 40px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.touch-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  justify-items: center;
  align-items: center;
}

.touch {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  padding: 25px 20px;
  text-align: center;
  width: 100%;
  max-width: 450px;
  height: 230px; /* Reduced height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.touch:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.touch-icon img {
  width: 60px; /* Adjusted size for icons */
  height: 60px;
  margin-bottom: 15px;
}
#call-icon{
  height: 80px;
  width: 80px;
}
#working-hour{
  height: 80px;
  width: 80px;
  margin: 0;
}

#contact-number{
  display: flex;
}

#contact-number i{
  font-size: 2rem;
  margin-right: 10px;
  color: #1e40af;
}

#contact-number p{
  font-weight: 550;
}



.touch-title {
  font-size: 1.6em;
  font-weight: bold;
  color: #00796b;
  margin-bottom: 10px;
}

.touch-content {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .touch-wrapper {
      grid-template-columns: 1fr;
      gap: 15px;
      margin: 2vh;
  }

  .touch {
    height: 270px;
  }
}



/* footer */

/* footer */


.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #00ccff;
}

.footer-column p,
.footer-column a {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
}

.footer-column .contact-details {
  margin-bottom: 20px;
}

.footer-column .contact-details p {
  margin: 5px 0;
}

.footer-column .social-icons {
  display: flex;
  gap: 10px;
}

.footer-column .social-icons a {
  color: #fff;
  font-size: 16px;
  display: inline-block;
  text-decoration: none;

}
.footer-column .social-icons a i{
  transition: transform 0.3s ease, color 0.3s ease;

}

.footer-column .social-icons a:hover i{
  transform: scale(1.2); /* Zoom effect on hover */
    color: #0056b3; /* Darker hover color */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form input[type="submit"] {
  background-color: #00ccff;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.contact-form input[type="submit"]:hover {
  background-color: #008fbf;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    margin: 20px 0;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 12px;
  }

  .contact-form input[type="submit"] {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 20px;
  }

  .footer-column h3 {
    font-size: 16px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 8px;
    font-size: 12px;
  }

  .contact-form input[type="submit"] {
    font-size: 14px;
  }
}

#viewallcourses{
  margin-right: 195px;
}

@media screen and (max-width: 768px) {
  
  #viewallcourses{
    margin-right: 0;
    margin-left: 30px;
  }
  #courses1{
    margin-left: 15px;
  }

}