html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--special2) transparent;
  border-radius: 15px;
}

html::-webkit-scrollbar {
  width: 5px;
  border-radius: 15px;
}

html::-webkit-scrollbar-thumb {
  background: var(--special2);
  border-radius: 15px;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--special);
}

html::-webkit-scrollbar-track {
  background: var(--white);
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: all 0.35s ease-in-out;
}

/* Body */
body {
  width: 100%;
  font-family: var(--body-font-family);
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--secondary-color);
  background-color: var(--background-color);
  scroll-behavior: smooth;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  font-family: var(--heading-font-family);
  font-weight: bold;
}

h1 {
  font-size: 36px;
  line-height: 1.2;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

/* Links */
a {
  outline: none;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--link-hover-color);
}

/* Buttons */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  outline: none;
  display: inline-block;
  padding: 13px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: var(--white);
  background-color: var(--primary-color);
  border: none;
  border-radius: 0 15px 0 15px;
  cursor: pointer;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
  background-color: var(--button-hover-color);
}

/* A button */
.a-button {
  display: inline-block;
  padding: 13px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: var(--white);
  background-color: var(--primary-color);
  border: none;
  border-radius: 0 15px 0 15px;
  cursor: pointer;
  text-decoration: none;
  /* remove default underline */
}

.a-button:hover {
  background-color: var(--button-hover-color);
  color: var(--white);
}

/* Inverted */
.inverted {
  flex-direction: row-reverse !important;
}

/* Wave */
.wave {
  width: 100%;
  padding: 0;
  margin: 0;
  padding-top: 0px;
  margin-bottom: -15px;
}

.wave_ {
  width: 100%;
  padding: 0;
  margin: 0;
  padding-bottom: 50px;
  margin-top: -15px;
}

/* Nav Container */
.nav-container__ {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1
}

.nav-contact {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 150px;
  width: 100%;
}

.nav-contact__right a:hover,
.nav-contact__right--location span small:hover {
  color: var(--button-hover-color);
}

/* Navbar */
.nav-link {
  color: var(--secondary-color) !important;
  display: flex;
  border-radius: 15px;
  transition: all 0.5s ease-in-out !important;
  margin-right: 15px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  word-wrap: break-word;
}

.nav-link:hover {
  background: var(--hover);
}

.toggle-nav {
  display: none;
}

.nav-contact__right a {
  color: var(--white);
}

.nav-current {
  color: var(--primary-color) !important;
}

/* Drop Down Menu */
.dropdown-menu {
  border-radius: 20px;
}

/* Header */
.header {
  position: relative;
  padding: 0;
  padding-top: 250px;
  width: 100%;
  color: var(--white);
  background: linear-gradient(#00000069, #0000007a), url(/assets/images/ghssvaduvanchal.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Header Dots */
.header__dots {
  padding-top: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.header__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.header__dot.active {
  background-color: rgba(255, 255, 255, 1);
}

/* Counts */
.count-container {
  width: 100%;
  margin: 200px 0;
}

.container-count {
  padding: 50px;
}

.count-container__count {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.count-container__count i {
  font-size: 40px;
  color: var(--primary-color);
}

.count-container__count h1 {
  font-size: 50px;
}

.count-container__count p {
  font-size: 20px;
}

/* Specs */
.spec-container {
  width: 400px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px 20px 20px;
  margin: 0 20px;
  margin-bottom: 30px;
}

.spec-text {
  text-align: center;
}

.spec-icon {
  width: 65px;
  height: 65px;
  display: flex;
  font-size: 30px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-top: -35px;
}

.spec-1 {
  background: var(--warning);
}

.spec-1-icon {
  background: var(--warning);
}

.spec-2 {
  background: var(--success);
}

.spec-2-icon {
  background: var(--success);
}

.spec-3 {
  background: var(--info);
}

.spec-3-icon {
  background: var(--info);
}

/* ------Home Page End------ */

/* ------About Page Starts------ */
.header-withbox {
  padding: 0;
  padding-top: 200px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.305), rgba(0, 0, 0, 0.298)),
    url(/assets/images/bgimg.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  color: var(--white);
}

/* Header */
.header-withbox-container {
  background: var(--background-color);
  border-radius: 25px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 70px 40px;
  color: var(--secondary-color);
  flex-wrap: wrap;
}

.header-withbox-container__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-withbox-container__right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
}

.social-icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
  margin-top: 20px;
  padding-right: 100px;
}

.social-icons a {
  color: var(--white);
  padding-left: 100px;
  font-size: 25px;
}

.social-icons a:hover {
  color: var(--button-hover-color);
}

/* Contact Page */

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  background: var(--light-blue);
  color: var(--secondary-color);
  outline: none;
  padding: 12px 15px;
  border-radius: 15px;
  border: none;
  border-bottom: 3px solid var(--primary-color);
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--secondary-color);
}

.contact-boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-box {
  width: 70%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 17.5px 25px;
  border-radius: 20px;
  background: var(--light-blue);
  color: var(--secondary-color);
  font-size: 17px;
  margin-top: 10px;
}

.contact-box__icon {
  font-size: 25px;
  margin-right: 25px;
  color: var(--primary-color);
}

/* Map */
.mapouter {
  position: relative;
  text-align: right;
  width: 90%;
  height: 600px;
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 600px;
}

.gmap_iframe {
  height: 600px !important;
  border-radius: 20px !important;
}

/* Flash News */
.news-container {
  width: 90%;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 35px;
  margin-top: 10px;
  border-radius: 12.5px;
}

.news-title {
  width: 120px;
  color: var(--secondary-color);
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  white-space: nowrap;
  padding: 0 5px;
}

.news-scroll {
  border: 1px solid var(--secondary-color);
  background: none;
  background-position: center;
  color: var(--white);
  font-weight: bolder;
  flex-grow: 1;
  /* Expand to fill available space */
  white-space: nowrap;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 0 12.5px 12.5px 0;
}

.news-content {
  display: inline-block;
  margin: 0;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% {
    padding-left: 100%;
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Footer Starts Here */
.footer-container__ {
  background: var(--primary-color);
  color: var(--white);
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* .footer-container__ img{ */
/* border: 5px solid var(--white); */
/* } */

.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 50px 0px;
}

.footer a {
  color: var(--white);
}

.footer a:hover {
  color: var(--secondary-color);
}

.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 0 10px;
}

.footer-about {
  display: flex;
  flex-direction: column;
  width: 550px;
}

.footer-about div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-about h3 {
  color: var(--secondary-color);
}

.footer-about p {
  padding: 5px 10px;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-about .footer-learn {
  width: max-content;
  margin-left: 15px;
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.footer-about .footer-learn:hover {
  background-color: var(--primary-color);
}

.footer-about-b {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer-about-social {
  display: flex;
  flex-direction: row;
}

.footer-about-social a {
  margin-left: 50px;
  font-size: 20px;
}

.footer-nav {
  width: 350px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px;
}

.footer-nav-sec {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.footer-nav a {
  padding: 3px 0;
}

.footer-contact {
  width: 350px;
  display: flex;
  flex-direction: column;
}

.footer-contact h3 {
  color: var(--secondary-color);
}

.footer-contact div {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  font-size: 14px;
}

.footer-contact div i {
  font-size: 25px;
  color: var(--secondary-color);
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--secondary-color);
  padding: 0 10px;
  padding-top: 15px;
  width: 100%;
  font-size: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.footer-bottom a {
  font-size: 16px;
  background: linear-gradient(89.97deg, #67d8fa 1.84%, #67f498 102.67%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Footer Ends Here */

/* Display Section */
.display-sec {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 25px;
  padding: 50px;
  margin: 20px 30px;
  background: url(/assets/images/bgimg-blured.jpg);
  background: var(--primary-color);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.display-sec__left {
  padding: 25px;
}

.display-sec--title {
  font-size: 100px;
}

.display-sec--image {
  width: 500px;
}

.section-des {
  font-size: 100px;
}

.overview {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 20px 0px;
  background: var(--special);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.overview-container {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  align-items: start;
  padding: 10px 60px;
}

.overview--title {
  font-size: 100px;
}

.overview-boxes-heading {
  font-size: 50px;
  margin: 20px 5px;
}

.overview-containers,
.overview-box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overview-boxes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.overview-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 300px;
  margin: 20px 10px;
  padding: 10px;
  border-radius: 25px;
  background: var(--special2);
  background-position: center;
  background-size: cover;
  text-align: center;
}

.ovb-icon {
  font-size: 50px;
}

.ovb-title {
  font-size: 35px;
}

/* Messages */
.message-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 25px;
  padding: 50px;
  margin: 20px 30px;
  background: url(/assets/images/bgimg-blured.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.message--title {
  text-align: center;
  font-size: 75px;
  margin-bottom: 50px;
}

.message-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.message-sec__left--image {
  margin: 0;
  padding: 0;
  border-radius: 30px;
  box-shadow: -6px 6px 13px 10px #e2fff946;
  width: 400px;
  object-fit: cover;
  object-position: center;
}

.message-sec__right {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding: 0px 50px;
}

.message-sec__right--des {
  width: 100%;
}