html * {
  font-family: "Gotham A", "Gotham B", sans-serif !important;
}

.poppins-thin {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 900;
  font-style: italic;
}
body {
  /* background-color: #6495ed; */
  background: linear-gradient(to right, #0a1128, #1e2a78);

  margin: 0;
  overflow-x: hidden;
}
#contact p {
  color: white;
}

.contact-details h2 {
  color: #ffffff;
}

.content1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* Align items at the top of the container */
}

.contact-details {
  flex: 1;
  /* Take up remaining space */
  /* Adjust as needed for spacing between sections */
}

.contact-details p {
  margin-left: 20px;
}

.contact-details h2 {
  margin-left: 20px;
}

.content1 .contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-wrap: nowrap; /* Ensure elements stay in one row */
}

.contact-details {
  flex: 1;
  padding: 20px;
}

.map-container {
  flex: 1;
  text-align: right;
  margin-left: 250px;
  margin-top: 20px;
}

.map-container iframe {
  width: 600px;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .content1 .contact-container {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center items */
    text-align: center;
  }

  .contact-details {
    width: 100%;
    padding: 10px;
    text-align: left; /* Keep address left-aligned */
    padding-left: 20px; /* Add space on the left */
  }

  .contact-details h2 {
    margin-left: 10px; /* Add some left spacing */
    text-align: left; /* Ensure text stays left-aligned */
    margin-top: 90px;
  }
  .contact-details p {
    margin-left: 10px; /* Add some left spacing */
    text-align: left; /* Ensure text stays left-aligned */
  }

  .map-container {
    width: 100%;
    margin-left: 0; /* Remove extra margin */
    margin-top: 20px;
    text-align: center; /* Center the map */
  }

  .map-container iframe {
    width: 90%; /* Make the map responsive */
    max-width: 350px; /* Prevent it from getting too large */
    height: 300px;
  }
}

#about {
  display: block;
}

/* Hide other sections initially */

.logo {
  position: relative;
  margin-left: 20px;
  bottom: 150px;
}

/* Styles for desktop view */
@media only screen and (min-width: 741px) {
  .logo {
    font-size: 24px;
    /* Adjust font size for desktop view */
  }
}

/* Styles for mobile view */
@media only screen and (max-width: 740px) {
  .logo {
    font-size: 18px;
    bottom: 10px;
    /* Adjust font size for mobile view */
  }
}

a {
  text-decoration: none;
}

#header {
  background-color: white;
  background-size: cover;
  text-align: center;
  /* background-position: center; */
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-image 0.5s ease-in-out;
  background-image: url("../../images/courseicon/contact.png");
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5); /* black with 50% transparency */
  position: relative; /* creates stacking context */
  z-index: 2000; /* higher than carousel's context */
}
@media (max-width: 600px) {
  #header {
    height: 200px;
    background-position: center;
    /* background-size: cover; */
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  #header {
    height: 300px;
  }
}

@media (min-width: 1025px) {
  #header {
    height: 550px;
  }
}

#header {
  background-size: cover;
  padding-right: 30px;
}

#header img {
  width: 120px;
  height: 80px;
  margin-top: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav.nav-link {
  position: fixed;
  top: 0;
  left: 140px;
  width: 100%;
  background-color: black; /* dark semi-transparent background */
  z-index: 1000;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* optional shadow for depth */
}

nav ul li {
  display: inline-block;
  margin-right: 45px;
  margin-top: 0px;
  position: relative;
}

nav a {
  text-decoration: none;
  color: #f8f8f8;
  font-weight: bold;
  margin-left: 20px;
}
/* Styles for mobile view */
@media (max-width: 767px) {
  nav a {
    color: #000000; /* Change this to the color you want for mobile view */
  }
  nav.nav-link {
    bottom: 230px;

    background-color: transparent;
    box-shadow: none; /* No shadow for the mobile view */
  }
}

/* .navbar-color.active,
.navbar-color:hover {
  background: #00bfcc;
  transition: 0.3s ease;
} */

#homecontent {
  display: block;
}

.menu-line {
  height: 3px;
  width: 20px;
  background-color: #ffffff;
  margin-bottom: 3px;
}

.menu {
  cursor: pointer;
  display: none;
}

@media all and (max-width: 900px) {
  .menu {
    display: block;
    margin-bottom: 160px;
    /* margin-left: 30px; */
  }

  ul.list {
    list-style-type: none;
    position: fixed;
    top: 105px;
    flex-direction: column;
    right: 0;
    background: #f8f8f8;
    transform: translateX(100%);
    transition: all 0.5s;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
  }

  nav ul li {
    display: block;
    padding: 20px;
  }

  nav ul li {
    display: block;
    padding: 20px;
  }
}

@media all and (max-width: 740px) {
  ul {
    flex-direction: column;
  }

  .logo {
    align-self: flex-start;
    margin: 10px 0px 0px 20px;
  }

  .showmenu {
    display: block;
  }

  /* by jeeva */

  .menu {
    display: block;
  }
}
/* Logo stays fixed at top-left */
.fixed-logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2002;
  background-color: black; /* optional */
  padding: 2px 15px;
}

.fixed-logo img {
  height: 60px;
  width: auto;
}
/* Mobile View - override for smaller screens */
@media screen and (max-width: 767px) {
  .fixed-logo {
    position: absolute; /* Remove fixed positioning */
    background-color: transparent; /* Remove black background */

    text-align: center; /* Optional: center the logo */
  }

  .fixed-logo img {
    height: 50px; /* Optional: smaller logo for mobile */
  }
}
/* by jeeva */

.display {
  transform: translateX(0%) !important;
}

@media all and (max-width: 300px) {
  .logo {
    align-self: center;
    /* Center the logo within its container */
    margin: 10px 0;
    /* Adjust margin for spacing */
    max-width: 100%;
    /* Ensure the logo doesn't exceed the width of its container */
  }
}

/* Style for the text */
h5 {
  margin: 5px 0;
}
.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 4px 20px; /* Added more padding for a spacious look */
  background-color: #222;
  color: #fff;
  height: 190px;
}

.footer-section {
  flex: 1;
  margin: 20px;
  min-width: 200px; /* Prevents sections from becoming too narrow */
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 20px; /* Slightly bigger for prominence */
  font-weight: bold;
  border-bottom: 2px solid #444;
  padding-bottom: 10px;
}

.footer-section p,
.footer-section ul,
.footer-section a {
  color: #bbb;
  text-decoration: none;
  margin: 10px 0; /* More spacing for clarity */
  font-size: 16px; /* Improved readability */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px; /* Increased gap for clarity */
}

.social-icon {
  display: inline-block;
  width: 40px; /* Larger icon size */
  height: 40px;
  border-radius: 50%; /* Rounded icons */
  background-color: #333; /* Add background to icons */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease; /* Transition for hover effect */
}

.social-icon:hover {
  background-color: #555; /* Darker background on hover */
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: #bbb;
  transition: fill 0.3s ease;
}

.social-icon svg:hover {
  fill: #fff;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background-color: #222;
  color: #bbb;
  font-size: 14px;
}
/* Mobile View Adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column; /* Stack sections vertically */
    padding: 20px 10px; /* Adjust padding for smaller screens */
    height: auto; /* Allow height to adjust automatically */
  }

  .footer-section {
    margin: 10px 0; /* Reduce margin between sections */
    min-width: 100%; /* Ensure sections take full width */
    text-align: center; /* Center-align content for better appearance */
  }

  .footer-section h3 {
    font-size: 18px; /* Slightly smaller heading font size */
    border-bottom: 1px solid #444; /* Thinner border for compactness */
    padding-bottom: 5px; /* Adjust padding for balance */
  }

  .footer-section p,
  .footer-section ul,
  .footer-section a {
    font-size: 14px; /* Smaller font size for readability */
    margin: 5px 0; /* Reduce spacing */
  }

  .social-icons {
    justify-content: center; /* Center-align social icons */
    gap: 10px; /* Reduce gap between icons */
  }

  .social-icon {
    width: 30px; /* Smaller icon size */
    height: 30px;
  }

  .footer-bottom {
    font-size: 12px; /* Smaller text for footer bottom */
    padding: 10px 0; /* Adjust padding */
  }
}
.footerdetails {
  color: white;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dim background */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 600px; /* Adjust modal width */
  max-height: 90vh; /* Limits height to viewport */
  overflow: hidden;
  border-radius: 8px;
  padding: 15px;
}

/* Ensure iframe fills modal and scrolls */
#formFrame {
  width: 100%;
  height: 80vh; /* Use viewport height for better scrolling */
  border: none;
  overflow: hidden;
}

/* Prevent background scrolling when modal is open */
.modal-open {
  overflow: hidden;
}

.close {
  font-size: 24px;
  cursor: pointer;
  float: right;
}
/* General Button Styling */
.form-btn {
  background: linear-gradient(
    90deg,
    #ff7e5f,
    #feb47b
  ); /* Gradient background */
  color: white; /* Text color */
  font-size: 16px; /* Font size */
  font-weight: bold;
  padding: 12px 24px; /* Padding */
  border: none; /* No border */
  border-radius: 25px; /* Rounded corners */
  cursor: pointer; /* Pointer on hover */
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  text-transform: uppercase; /* Uppercase text */
  letter-spacing: 1px;
}

/* Button Hover Effect */
.form-btn:hover {
  background: linear-gradient(90deg, #feb47b, #ff7e5f);
  transform: scale(1.05); /* Slightly increase size */
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

/* Button Click Effect */
.form-btn:active {
  transform: scale(0.98); /* Slightly reduce size */
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

.enquire-now-btn {
  position: absolute;
  top: 450px;
  right: 30px;
  z-index: 10;
}
@media (max-width: 767px) {
  .enquire-now-btn {
    position: absolute;
    top: 15px; /* Adjust to fit inside mobile header */
    right: 20px;
    transform: translateY(0); /* Reset if any translation applied */
  }

  #header {
    position: relative; /* Ensure positioning works inside header */
  }
  .form-btn {
    padding: 4px 4px;
    margin-right: 60px;
    margin-top: 1px;
  }
}
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.logo,
nav {
  position: relative;
  z-index: 2; /* Ensures these are on top of particles */
}
#container {
  position: relative;
  z-index: 2;
}

canvas.particles-js-canvas-el {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* Dark transparent overlay */
  z-index: 1; /* In front of particles, behind content */
  pointer-events: none; /* Let mouse pass through */
}
#scroll-line {
  position: fixed;
  top: 95px;
  left: 0;
  height: 4px;
  background-color: #d04b3f; /* or your accent color */
  width: 0%;
  z-index: 9999;
  transition: width 0.2s ease-out;
}
@media screen and (max-width: 767px) {
  #scroll-line {
    position: relative; /* Remove fixed */
    top: 100px;
    width: 100%; /* Optional: set full width if you want a static line */
    height: 3px; /* Optional: slightly thinner */
    z-index: 1; /* Lower z-index so it doesn't overlay UI */
  }
}

@media screen and (max-width: 767px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px; /* let content inside determine height */
    z-index: 3000;
    background-color: white; /* visible background for clarity */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }

  .fixed-logo {
    position: static;
    background-color: transparent;
    padding: 0 10px;
    margin-bottom: 70px;
  }

  .fixed-logo img {
    height: 50px;
  }

  .enquire-now-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    transform: none;
    z-index: 2001;
  }

  #scroll-line {
    display: none;
  }

  /* Push content down to avoid overlap with fixed header */
  body {
    padding-top: 100px;
  }
}
