@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Permanent+Marker&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--latin);

}

:root {
  --primary: #182c63;
  /* Deep Navy Blue */
  --secondary: #00439b;
  /* Rich Royal Blue */
  --gradient-darkblue: linear-gradient(135deg, var(--primary), var(--secondary));
  --gold: rgb(233, 179, 0);
  --third: #29abe2;
  --montserat: 'Montserrat';
  --latin: 'Anek Latin';
  --per: 'Permanent Marker';
}

body {
  margin: 0;
  width: 100vw;
  /* height: 100vh; */
  /* overflow: hidden; */

  /* Background with gradient + image */
  background: rgb(0, 8, 34);
}
.text-blue{
  color: var(--secondary);
}
.text-muted {
  color: rgb(223, 222, 222) !important;
}

.marquee {
  font-size: 50px;
  font-weight: 500;
  color: white;

}

.nav-link {
  margin: 0px 3px;
  border-bottom: 2px solid transparent;
  color: white !important;
}

.nav-link:hover {
  color: var(--gold) !important;
  border-bottom: 2px solid var(--gold);
  transition: border-bottom-width 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
}

.active {
  color: var(--gold) !important;
  border-bottom: 2px solid var(--gold);
}

/* ---------------header css start--------------- */

/* slider  */
.swiper {
  width: 100%;
  height: 460px;
  border-radius: 5px;
  overflow: hidden;
}
.swiper-button-prev{
  color: var(--primary) !important;
  width: 40px   !important;
  height: 40px !important;
  border-radius: 50%; 
  padding: 10px;
  background-color: white;
  left: 30px !important;
  opacity: .5 !important;
}
.swiper-button-next{
  color: var(--primary) !important;
  width: 40px   !important;
  height: 40px !important;
  border-radius: 50%; 
  padding: 10px;
  background-color: white;
  right: 30px !important;
  opacity: .5 !important;
}
.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

 /* ...existing code... */
 .mySwiper{
  height: 100%;

 }
.swiper-button-prev,.swiper-button-next{
  background-color: gold !important;
}
swiper-slide>div{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;      /* Set your fixed width */
  height: 200px !important;     /* Set your fixed height */
  overflow: hidden;
  background: #222;
  border-radius: 8px;
  margin: 20px 0px;
  background-color: rgb(234, 234, 234);
}

swiper-slide img {
  width: 100%;
  /* display: block;
  max-width: 100%;
  max-height: 100%;
 background-size: cover; */
  /* margin: auto; */
}
/* ...existing code... */
/* slider  */

/* Professional Marquee */
.custom-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: rgb(0, 11, 41);
    color: #fff;
    padding: 8px 0;
    font-size: 1.1rem;
    font-family: var(--montserat), sans-serif;
    border-bottom: 2px solid var(--gold);
    position: relative;
    z-index: 10;
}

.custom-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-scroll 50s linear infinite;
}

/* Pause on hover */
.custom-marquee-wrapper:hover .custom-marquee {
    animation-play-state: paused;
}

.custom-marquee span {
    display: inline-block;
    padding-left: 100vw;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


.map {
  height: 250px;
}

.navbar-bg {
  /* background-color: var(--secondary); */
  border-radius: 5px;
}

.form-box,
.map-box,
.slider,
.profile,
.reviews,
.reviewsmobile {
  background: var(--gradient-darkblue);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;

}
.review-head{
  font-size: 19px !important;
}
.card{
   background: var(--gradient-darkblue);
  padding: 10px;
  border-radius: 5px;
}

.form-box,
.map-box>h5 {
  color: white;
  font-family: var(--latin);
  font-weight: 300;
}

.map-box>h6 {
  font-size: 16px;
  font-weight: 200;
}

.form-box>form>div>button,
.bestbtn {
  background-color: white;
  padding: 8px 30px;
  border: none;
  margin-bottom: 10px;
  border-radius: 4px;
  color: var(--primary);
  font-family: var(--latin);
  font-size: 18px;
  box-shadow: inset 0px 0px 0px rgb(19, 48, 32);
  transition: .5s ease-in-out;
  margin-top: 5px;
  text-decoration: none;
}

.form-box>form>div>button:hover,
.bestbtn:hover {
  box-shadow: inset 150px 0px 0px var(--gold);
  filter: drop-shadow();
  color: var(--primary);
}

.inputfield {
  background-color: rgb(25, 34, 40);
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  border-radius: 2px;
  margin-bottom: 5px;
  border: 2px solid rgb(230, 230, 230);
  transition: all .5s;
}

.call {
  width: 5%;
  transform: rotate(-90deg);
}

.inputfield>img {
  width: 10%;
  padding: 7px;

}

.inputfield>input {
  width: 90%;
  border: none;
  background-color: transparent;
  font-size: 18px;
  color: white;
}

.inputfield>input:focus {
  outline: none;
  color: white;
}

/* ...existing code... */
.inputfield:focus-within {
  border: 2px solid var(--gold);
}

/* ...existing code... */

.card {
  background-color: var(--primary);

}

.review-card {

  background-color: var(--primary);
  padding-top: 20px;
  padding-bottom: 10px;
  border-radius: 5px;
  color: white;
  height: 200px !important;



}

.reviewsmobile {
  display: none;
}

.review-card>div>img {
  width: 100%;
  border-radius: 50%;
  /* margin-bottom: 10px; */
}

/* ---------------header css end--------------- */
.error {
  color: rgb(255, 54, 54);
  margin: 2px 0px
}

/* socail links  */
.smi {


  margin: 0;
  padding: 0;
  display: flex;
}

.smi li {
  list-style: none;
}

.smi li a {

  width: 50px;

  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 10px;
  border-radius: 50%;

  box-sizing: border-box;
  text-decoration: none;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(0deg, #ddd, #fff);
  transition: .5s;
}

.smi li a:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.smi li a .fab {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(0deg, #fff, #ddd);
  border-radius: 50%;
  line-height: calc(60px - 12px);
  font-size: 18px;
  color: #262626;
  transition: .5s;
}

.smi li:nth-child(1) a:hover .fab {
  color: #3b5998;
}

.smi li:nth-child(2) a:hover .fab {
  color: #01a532;
}

.smi li:nth-child(3) a:hover .fab {
  color: #dd4b39;
}

.smi li:nth-child(4) a:hover .fab {
  color: #00b618;
}

.smi li:nth-child(5) a:hover .fab {
  color: #e4405f;
}

/* socail links  */

.seminar-card {
  padding: 20px;
  border-radius: 5px;
  color: white;
  margin-bottom: 20px;
  border: 2px solid var(--primary);
}

.seminar-card:hover {
  background-color: var(--primary) !important;
  /* box-shadow: 0px 0px 10px gold; */
  transition: .5s ease-in-out;
}

.seminar-card-box {
  max-height: 80vh;
  overflow-y: auto;
  background-color: var(--secondary);
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.seminar-card-box::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.loginpart {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85vh;

}

.loginpart__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 70px;
  border-radius: 10px;
  background-color: var(--secondary);
}

.loginpart__container__form__input>input {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  border-radius: 5px;
  border: none;
}

.loginpart__container__form__input>input:focus {
  outline: none;

}

.loginpart__container__form__button {
  background-color: var(--primary);
  color: white;
  padding: 8px 15px;
  border: none;
  margin: 15px 0px;
}

.loginpart__container__form__button:hover {
  background-color: var(--gold);
  color: var(--primary);
  transition: .5s ease-in-out;
}

.loginpart__container__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ====================================== For Normal Desktop Responsive =========================================== */
@media only screen and (max-width: 1400px) and (min-width: 600px) {

  /* socail links  */
  .smi {


    margin: 0;
    padding: 0;
    display: none;
  }

  .smi li {
    list-style: none;
  }

  .smi li a {

    width: 50px;

    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-right: 10px;
    border-radius: 50%;

    box-sizing: border-box;
    text-decoration: none;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(0deg, #ddd, #fff);
    transition: .5s;
  }

  .smi li a:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-decoration: none;
  }

  .smi li a .fab {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(0deg, #fff, #ddd);
    border-radius: 50%;
    line-height: calc(60px - 12px);
    font-size: 15px;
    color: #262626;
    transition: .5s;
  }

  .smi li:nth-child(1) a:hover .fab {
    color: #3b5998;
  }

  .smi li:nth-child(2) a:hover .fab {
    color: #01a532;
  }

  .smi li:nth-child(3) a:hover .fab {
    color: #dd4b39;
  }

  .smi li:nth-child(4) a:hover .fab {
    color: #00b618;
  }

  .smi li:nth-child(5) a:hover .fab {
    color: #e4405f;
  }

  /* socail links  */
  .number {
    margin-bottom: 2px !important;
  }

  .navbar {
    padding: 20px 0px !important;
    
  }

  .map {
    height: 100px;
  }

  .inputfield>input {
    width: 90%;
    border: none;
    background-color: transparent;
    font-size: 14px;
    color: white;
    padding: 0px 10px;
  }

  .map-box>h6 {
    font-size: 12px;
    font-weight: 200;
  }

  .form-box>form>div>button {
    background-color: rgb(17, 31, 30);
    padding: 5px 40px;
    border: none;
    margin-bottom: 10px;
    border-radius: 4px;
    color: var(--gold);
    font-family: var(--latin);
    font-size: 16px;
    box-shadow: inset 0px 0px 0px rgb(19, 48, 32);
    transition: .5s ease-in-out;
  }

  .form-box>form>div>button:hover {
    box-shadow: inset 150px 0px 0px var(--gold);
    filter: drop-shadow();
    color: var(--primary);
  }

  .inputfield {
    background-color: var(--primary);
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    border-radius: 2px;
    margin-bottom: 5px;
  }

  .call {
    width: 3%;
    transform: rotate(-90deg);
  }

  .inputfield>img {
    width: 10%;
    padding: 7px 10px;

  }

  .form-box,
  .map-box,
  .slider,
  .profile,
  .reviews,
  .reviewsmobile {
    background-color: var(--secondary);
    padding: 13px;
    border-radius: 5px;
    margin-bottom: 10px;

  }

  .marquee {
    font-size: 16px;
    font-weight: 300;
    color: white;

  }
}

/* ====================================== For Mobile Responsive =========================================== */
@media only screen and (max-width: 600px) {
  body {
    overflow-y: auto;
    width: 100vw;
  }

  /* header{
    height: auto;
    padding: 10px 20px;
  } */

  .reviewsmobile {
    display: block;
  }

  .mobile-profile {
    text-align: center;
  }

  .navbar {
    padding: 0 !important;
  }

  .reviews-box{
    display: none;
}
}

/* ====================================== For Mobile Responsive =========================================== */