/* Importing Google font - Fira Sans */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  position:left;
  box-sizing: border-box;
  /* font-family: 'Fira Sans', sans-serif; */
}

body {
  background: #1B1B1D;
}
.p{
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 400;
}

/* header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
 } */



/* ... existing CSS styles ... tala ko .logo img{.....} wala banzai ko logo dashboard ko lagi...........  */

.logo img {
  max-width: 100%;
  height: auto;
  position: sticky;
  margin-top:-10px;
  margin-left: 10px;
  left:40px;
  transform: translateX(-50%);
  z-index: 1000;
}
.logo {
    text-decoration: none;   /* removes underline */
    display: flex;           /* helps align image/text inside */
    align-items: center;
    padding:0%;
    margin: 0%;
}

.sign-in-up{
    /* position: sticky; */
    right: 30px;
    display: flex;
}
/* Mobile Styles */

@media only screen and (max-width: 767px) {
  /* ... existing mobile styles ... */

  .logo img {
    max-width: 80px; /* Adjust size as needed for smaller screens */
  }
}

.hero-section {
  height: 100vh;
  margin-top: 0%;
  background-image: url("images/img1.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  padding: 0 20px;
  align-items: center;
  margin-bottom: 2%;
}

.hero-section .content {
  max-width: 1280px;
  margin: 0 auto 40px;
  width: 100%;
}

.hero-section .content h1 {
  color: #fff;
  font-size: 3rem;
  max-width: 630px;
  line-height: 65px;
}

.hero-section .search-form {
  height: 48px;
  display: flex;
  max-width: 630px;
  margin-top: 30px;
}

.hero-section .search-form input {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  padding: 0 15px;
  font-size: 1rem;
  border-radius: 4px 0 0 4px;
}

.hero-section .search-form button {
  height: 100%;
  width: 60px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #1dbf73;
  color: white;
  border-radius: 0 4px 4px 0;
  transition: background 0.2s ease;
}

.hero-section .search-form button:hover {
  background: #19a463;
}

.hero-section .popular-tags {
  display: flex;
  color: #fff;
  gap: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 25px;
}

.hero-section .popular-tags .tags {
  display: flex;
  gap: 15px;
  align-items: center;
  list-style: none;
}

.hero-section .tags li a {
  text-decoration: none;
  color:#fff;
  border: 1px solid #fff;
  padding: 4px 12px;
  border-radius: 50px;
  transition: 0.2s ease;
}

.hero-section .tags li a:hover {
  color: #000;
  background: #fff;
}


/* this is for footer section only */
.footer {
  background-color: #0EA5E9;
  color: #fff;
  padding: 10px 0;
  width: 100%;
}
.contact-col{
  text-align: center;
  margin: 0 1px;
  color: black;
}
.contact-col div{
  display: flex;
  align-items: center;
  text-decoration: white;
  /* padding: 0 10px; */
  width: 100%;
}

/* these is for footer where it works or not check only */
.contact-col div {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 10px;
  gap: 10px; /* space between items */
}

/* Optional: style text/icons inside */
.contact-col div span,
.contact-col div p,
.contact-col div a {
  margin: 0;
  color: white;
  text-decoration: none;
}

/* Responsive tweak (optional if needed) */
@media (max-width: 768px) {
  .contact-col div {
    padding: 0 8px;
  }
}


/* upto this only */
/* below contact-col div .fa is not worked */
.contact-col div .fa{
  font-size: 28px;
  color: rgb(247, 152, 9);
  padding: 10px;
  margin-right: 30px;
}

.contact-col h5{
  font-weight: bold;
  font-size: 18px;
  color:white;
  text-align: left;
}
.contact-col p {
  margin: 0;              /* removes default indent/space */
  text-align: left;       /* ensure left alignment */
}

.section-heading p {
  text-transform: none;
}

@media screen and (max-width: 900px) {
  .contact-info{
    flex-direction: column;
  }
  header.show-mobile-menu::before {
    content: "";
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    backdrop-filter: blur(5px);
  }

  
  .hero-section {
    background: flex;
  }

  .hero-section .content {
    margin: 0 auto 80px;
  }

  .hero-section .content :is(h1, .search-form) {
    max-width: 100%;
  }

  .hero-section .content h1 {
    text-align: center;
    font-size: 2.5rem;
    line-height: 55px;
  }

  .hero-section .search-form {
    display: block;
    margin-top: 20px;
  }

  .hero-section .search-form input {
    border-radius: 4px;
  }
  
  .hero-section .search-form button {
    margin-top: 10px;
    border-radius: 4px;
    width: 100%;
  }

  .hero-section .popular-tags {
    display: none;
  }
}

/* Three columns side by side     below media query and other refers to the teams ko css*/
.column {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
}

/* Display the columns below each other instead of side by side on small screens */
@media screen and (max-width: 650px) {
  .column {
    width: 100%;
    display: block;
  }
}
.ptb_100 {
    padding: 100px 0;
    margin-bottom: 5%;
}
/* Add some shadows to create a card effect */

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Some left and right padding inside the container */
.container {
  padding: 0 16px;
}

/* Clear floats */
.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: grey;
}

.button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.button:hover {
  background-color: #555;
}

/* this css property is used when the login button and register buttion is clicked automatically background is blur */
body.popup-active .hero-section,
body.popup-active header,
body.popup-active .main {
  filter: blur(5px);
  transition: 0.3s;
  }
/* for navigation bar only */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}
    
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
  z-index: 10;
}

/* MENU LINKS (DESKTOP) */
.menu-links {
  display: flex;
  list-style: none;
  color: #eee;
  gap: 80px;
}

.menu-links li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: 0.3s;
  font-weight: bold;
}

.menu-links li a:hover {
  color: greenyellow;
}

/* HAMBURGER + CLOSE BUTTON */
#hamburger-btn,
#close-menu-btn {
  font-size: 32px;
  cursor: pointer;
  display: none; /* hidden on desktop */
}

/* MOBILE MENU */
@media (max-width: 768px) {

  #hamburger-btn {
    display: block;
    color: #000;
  }

  .menu-links {
    position: fixed;
    top: 0;
    right: -260px;
    width: 250px;
    height: 100vh;
    background:#0EA5E9;
    flex-direction: column;
    padding-top: 70px;
    gap: 20px;
    transition: 0.3s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  }

  .menu-links li {
    padding: 10px 20px;
  }

  #close-menu-btn {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  /* when menu is active */
  header.show-mobile-menu .menu-links {
    right: 0;
  }
}

/* upto above navigation bar */

/* this css is used to move the register and login popup using the curoser */


/* till this above code */

 /* <!-- the below css code is for student circle photo in review part --> */
.chip {
  display: inline-block;
  padding: 0 25px;
  height: 50px;
  font-size: 18px;
  line-height: 10px;
  border-radius: 25px;
  background-color: #f1f1f1;
}

.chip img {
  float: left;
  margin: 0 10px 0 -25px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.chip p {
  font-weight: normal;
  margin-top: 5px;
  font-size: 14px;
  color: #555;
}
.chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.chip {
  width: calc(50% - 10px); /* 2 per row */
  box-sizing: border-box;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 10px;
  line-height: 45px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  background-color: #9bcffa;
}
.chip-wrapper {
  padding: 10px;
  border-radius: 12px;
  /* background: #9bcffa; */
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding-right: 0px;
  /* width: 100%;
  height: 110%; */
  margin-bottom: 100px;
}
/* 
 <!-- review content section ends here --> */
 /* THIS SECTION IS USED FOR GALLERY SECTION */
* {
  box-sizing: border-box;
}
.material-symbols-outlined{
  color: #000;
}
div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

div.gallery-item {
  margin: 5px;
  border: 1px solid #ccc;
  width: calc(25% - 20px);
}

div.gallery-item:hover {
  border: 1px solid #777;
}

div.gallery-item img {
  width: 100%;
  height: auto;
}

div.gallery-item div.desc {
  padding: 15px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  div.gallery-item {
    width: calc(50% - 20px);
  }
}

@media only screen and (max-width: 480px) {
  div.gallery-item {
    width: calc(100% - 20px);
  }
}
 /* THE ABOVE CODE IS FOR GALLERY SECITON */

.review-area.bg-overlay.ptb_100 {
  background: #0EA5E9;
    position: static !important;
}



/* below the section is for footer only */
.footer {
  /* background: #111; */
  color: #fff;
  padding: 40px 20px 10px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Columns */
.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  margin: 6px 0;
  color: black;
}

/* Branch style */
.branch {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.branch i {
  color: orange;
  font-size: 18px;
  margin-top: 3px;
}

.branch h5 {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

.branch p {
  margin: 0;
  font-size: 13px;
  color: black;
}

/* Contact icons */
.footer-col i {
  color: orange;
  margin-right: 8px;
}

/* Social icons */
.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: orange;
}

.footer-col svg.svg-inline--fa {
    color: red;
}
/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 13px;
  /* color: #aaa; */
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}
.fa-phone {
  color: orange;
}

.fa-envelope {
    color: orange;
 }

.fa-clock {
  color: orange;
}
a .fa-facebook-f {
  background: #ffffff;
  color: #1877f2;
  padding: 10px;
  border-radius: 50%;
}

a .fa-line {
  background: #ffffff;
  color: #00c300;
  padding: 10px;
  border-radius: 50%;
}

a .fa-tiktok {
  background: #ffffff;
  color: #000000;
  padding: 10px;
  border-radius: 50%;
}

a .fa-microsoft {
  background: #ffffff;
  color: #f25022;
  padding: 10px;
  border-radius: 50%;
}
a .fa-whatsapp {
  background: #ffffff;
  color: #00c300;
  padding: 10px;
  border-radius: 50%;
}

/* above the content is for footer only */