/* ramesh */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  font-style: normal;
}

body {
  background: url(../images/bg_blue.jpg);
  background-position: center;
  background-repeat: repeat-y;
  font-optical-sizing: auto;
  background-size: 100%;
  color: #fff;
  line-height: 1.5;
}

/* common */

/* Typography */

.fs-1 {
  font-size: 75px;
  line-height: 92px;
  font-weight: 600;
}

.fs-2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
}

.fs-3 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
}

.fs-4 {
  font-size: 32px;
  line-height: 38.4px;
  font-weight: 600;
}

.fs-5 {
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 400;
}

.fs-6 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
}

.fs-7 {
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
}

p,
span,
button,
a {
  font-size: 16px;
  line-height: 20.16px;
  font-weight: 400;
}

.small {
  font-size: 14px;
  line-height: 21px;
  font-weight: 300;
}

/* typography end */

.br-12 {
  border-radius: 12px;
}

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

li a,
li button {
  outline: none;
}

li a:focus-visible,
li button:focus-visible {
  outline: none;
}

li {
  outline: none;
}

li:focus {
  outline: none;
}

.btn-primary {
  background: #fff;
  text-decoration: none;
  color: #000;
  padding: 16px 24px 16px 24px;
  border-radius: 12px;
  display: inline-block;
  width: 260px;
  max-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.card {
  border-radius: 32px;
  padding: 40px 24px;
  color: #fff;
  background: #080b1c66;
  border: 0.5px solid;
  border-image-source: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    #cccccc 50%,
    rgba(255, 255, 255, 0.3) 100%
  );

  box-shadow: 0px -10px 40px 0px #101636 inset;
  border: 0.5px solid #cccccc25;
}

.fog1 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: -1;
}

.fog2 {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding-right: 16px;
  padding-left: 16px;
}

.py-5 {
  padding: 5%;
}

/* Breakpoints for container widths */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1250px;
  }
}

/* nav start */

/* Base styles */
.header_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  /* padding-bottom: 0; */
  position: relative;
}

.menus ul li {
  list-style: none;
}

.menus ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menus ul li a {
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  padding: 20px;
}

.ctas a,
.cta-button {
  border-top: 1px solid rgba(158, 163, 191, 0.25);
  color: #fff;
  text-transform: capitalize;
  text-decoration: none;
  background: linear-gradient(
    90deg,
    rgba(51, 70, 121, 0.3) 0%,
    rgba(16, 22, 54, 0.3) 100%
  );
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Hide mobile elements by default */
.menu-toggle,
.close-menu,
.mobile-cta,
.menu-overlay {
  display: none;
}

/* Button reset styles */
.menu-toggle,
.close-menu {
  background: none;
  border: none;
  /* padding: 10px; */
  cursor: pointer;
}

/* Mobile styles */
@media screen and (max-width: 991px) {
  /* Logo adjustments */
  .logo img {
    width: 80px;
    height: auto;
  }

  /* Show menu toggle and hide desktop CTA */
  .menu-toggle {
    display: block;
    z-index: 1000;
  }

  .desktop-only {
    display: none;
  }

  /* Overlay styles */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Menu styles */
  .menus {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    padding: 60px;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #101636;
    background: linear-gradient(
      90deg,
      rgba(51, 70, 121) top,
      rgba(16, 22, 54) bottom
    );
  }

  .menus.active {
    right: 0;
  }

  /* Close button styles */
  .close-menu {
    display: block;
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 1001;
    user-select: none;
  }

  .menus ul {
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .menus.active ul {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }

  .menus ul li {
    width: 100%;
    text-align: center;
  }

  .menus ul li a {
    display: block;
    padding: 15px;
  }

  /* Show mobile CTA */
  .mobile-cta {
    display: block;
    margin-top: 20px;
  }

  /* Mobile CTA styling */
  .mobile-cta .cta-button {
    display: inline-block;
    width: auto;
    margin-top: 20px;
  }
}
/* navbar end */
.chip {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  display: block;
  border: 1px solid #7e7e7e;
  text-align: center;
  border-radius: 20px;
  padding: 10px;
  width: max-content;
  min-width: 70px;
}
/* -------common utility end-------------- */

/* footer */

.footer {
  margin-top: 92px;
}

.footer_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1074px;
  margin: 0 auto;
  border-top: 1px solid #7e7e7e;
  border-bottom: 1px solid #7e7e7e90;
}

.footer_right {
  margin-right: 4%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact_flex {
  display: flex;
  align-items: center;
}

.contact_flex img,
.contact_flex.social p {
  margin-right: 12px;
}

.contact_flex.social p {
  color: #bfbfbf;
}

.contact_flex.social {
  padding-top: 24px;
}

.contact_flex a {
  color: #fff;
  display: block;
  font-weight: 300;
  text-decoration: none;
  line-height: 1.5;
}

.footer_cta {
  padding: 3% 0;
}

.footer_cta ul li {
  list-style: none;
  margin: 0 20px;
}

.footer_cta ul li a {
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  font-size: 14px;
}

.footer_cta ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2%;
}

.footer_cta p {
  text-align: center;
  font-size: 13px;
  font-weight: 200;
  color: #bfbfbf;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .fs-1 {
    font-size: 42px;
    line-height: 1.3;
  }

  .fs-2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .fs-3 {
    font-size: 26px;
    line-height: 1.3;
  }

  .fs-4 {
    font-size: 24px;
    line-height: 1.3;
  }

  .fs-5 {
    font-size: 20px;
    line-height: 1.3;
  }

  .fs-6 {
    font-size: 18px;
  }

  .fs-7 {
    font-size: 16px;
  }

  p,
  span,
  li {
    line-height: 1.3 !important;
  }

  .footer {
    margin-top: 72px;
  }
}

@media (max-width: 767px) {
  .flex-col-reverse {
    flex-direction: column-reverse !important;
  }

  .btn-primary {
    padding: 14px 12px 14px 12px;
    max-width: max-content;
    font-size: 14px;
  }

  .card {
    padding: 20px;
    border-radius: 16px;
  }

  /* footer */
  .footer {
    margin-top: 52px;
  }

  .footer_flex {
    flex-direction: column;
  }

  .footer_right {
    margin-right: 16px;
    gap: 12px;
    margin-bottom: 5%;
  }

  .contact_flex.social {
    padding-top: 8px;
  }

  .contact_flex.social .text,
  .contact_flex a {
    font-size: 14px !important;
  }

  .footer_cta {
    padding: 12px 0;
  }

  .footer_cta ul {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .footer_cta ul li {
    margin: 3px 10px;
  }

  .footer_cta ul li a,
  .footer_cta .copyright-text {
    font-size: 13px !important;
  }

  p,
  span,
  li {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  /* footer end */
}

@media (max-width: 460px) {
  .fs-1 {
    font-size: 32px;
  }

  p,
  span,
  li {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
}
