@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Judson:ital,wght@0,400;0,700;1,400&display=swap");

/* font-family: "Judson", serif; */




.container {
  max-width: 1820px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container2 {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.col-8 {
  width: calc(8.33% * 8);
  padding: 0 15px;
}

.col-6 {
  width: calc(8.33% * 6);
  padding: 0 15px;
}

.col-4 {
  width: calc(8.33% * 4);
  padding: 0 15px;
}


/*  ==== TOPBAR ==== */
.topbar {
  background: #0b125a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.topbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-info,
.topbar-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.topbar-social {
  gap: 15px;
}

.topbar-info-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s all ease;
}

.topbar-info-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.topbar-social-link {
  transition: 0.3s all ease;
}

.topbar-social-link:hover {
  transform: scale(1.1);
}

/* ===== Navbar==== */
.navbar {
  background-color: #F08526;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* padding: 20px 0; */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
}

.navlist {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.nav-item .active {
  width: fit-content;
  border-bottom: 2px solid var(--dark_blue);
}

.navbar-menu .navlist .active {
  width: fit-content;
  /* text-decoration: underline; */

}

.navlink {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #0b125a;
  transition: 0.3s ease;
  position: relative;
}

.navlink svg path {
  transition: 0.3s ease;
}

.navlink::before {
  position: absolute;
  content: '';
  height: 2px;
  width: 0%;
  background: #fff;
  top: 100%;
  transition: 0.3s ease;
}

.navlink:hover {
  color: #fff;
}

.navlink:hover::before {
  width: 100%;
}

.navlink:hover svg path {
  stroke: #fff;
}





.navbar-action-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.btn {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ede1f3;
  color: #0b125a;
}

.btn-primary:hover {
  color: #0b125a;
  border-color: currentColor;
}

/* ==== sign in dropdown ==== */

.navbar-btns .sign-dropdown {
  position: relative;

}

/* Button */
.dropdown-btn {
  background: #e6e1f0;
  color: #1e1b4b;
  border: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

/* Menu */
.dropdown-menu {
  position: absolute;
  top: 190px;
  right: 200px;
  background: #0b1b6f;
  border-radius: 16px;
  padding: 10px 0px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
}

/* Show dropdown */
.sign-dropdown:hover .dropdown-menu,
.sign-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Menu items */
.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #ffffff;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}

.dropdown-menu li a:hover {
  color: var(--orange);
}


.btn-secondary {
  background: #0b125a;
  color: #ede1f3;
}

.btn-secondary:hover {
  color: #0b125a;
  background: #ede1f3;
  border-color: currentColor;
}

.menu-btn {
  display: none;
  font-size: 18px;
}

.nav-item {
  position: relative;
}

.dropdown-navlist {
  right: 50%;
  transform: translateX(50%);
  top: 60px;
  position: absolute;
  background: #0B125A;
  padding: 50px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;

  /* Hide Dropdown */
  opacity: 0;
  visibility: hidden;
  transform: translateX(50%) translateY((10px));
  transition: 0.3s ease;
  z-index: 9999;
}

/* show dropdown on hover */
.nav-item:hover .dropdown-navlist {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(50%) translateY((0));
}

/* for click toggle (mobile) */
.nav-item.active .dropdown-navlist {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(50%) translateY(0);
}

.dd-navitem:not(:last-child) {
  margin-bottom: 18px;
}

.dd-navitem {
  position: relative;
}

.dd-navitem::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* right: 0; */
  height: 10px;
  width: 10px;
  background: url('../asset/HOME_PAGE/navbar/arrow-cream-orange.svg') no-repeat center;
  padding-left: 25px;
}

.dd-navlink {
  font-size: 18px;
  font-family: "Judson", serif;
  letter-spacing: 0.05em;
  color: #FFE8D2;
  white-space: nowrap;
  transition: 0.3s all ease;
}

.dd-navlink:hover {
  color: #F08526;
}

.dropdown-navlist hr {
  border-top: 1px solid rgb(255, 255, 255, 0.3);
  margin-bottom: 16px;
}


/* ==== topbar end ==== */





/* =========== about-sec ============= */

.about-sec {
  background: var(--color-bg);
}

.about-hdr {
  text-align-last: center;
  padding: 44px 0;
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  text-transform: capitalize;
  font-family: "Judson", serif;
}

.who-we-sec {
  padding: 55px 0;
}

/* =============== */
/* who-we-are-section */
/* ======================= */


.who-title {
  font-family: "Judson", serif;
  font-size: 48px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--darkblue);
  margin-bottom: 30px;
}

.para {
  font-size: 18px;
  font-weight: 400;
  color: rgb(0, 0, 0, 40%);
}

.who-img {
  max-width: 591px;
}

.who-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============= */
/* we-do-section */
/* ================== */
.wht-we-do-sec {
  padding: 55px 0;
}

.we-do-img {
  max-width: 591px;
}

.we-do-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.we-do-title {
  font-family: "Judson", serif;
  font-size: 48px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--darkblue);
  margin-bottom: 30px;
}

.wht-we-do-sec .para {
  margin-bottom: 30px;
}

.wht-we-do-sec ul {
  padding-left: 20px;
}

.wht-we-do-sec ul li {
  font-size: 18px;
  font-weight: 700;
  color: rgb(0, 0, 0, 60%);
  margin-bottom: 10px;
  line-height: 1.6;
}

.why-choose-sec {
  padding: 55px 0;
  background: var(--dark_blue);
}

.why-choose-title {
  font-family: "Judson", serif;
  font-size: 48px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 30px;
}

.why-choose-sec ul li {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.6;
}

.view-more-btn {
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  margin-top: 40px;
}

.view-more-btn:hover {
  color: var(--orange);
}

.why-choose-img {
  max-width: 799px;
}

.why-choose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-vision-sec {
  padding: 55px 0;
}

.card {
  max-width: 931px;
  display: flex;
  align-items: flex-start;
  padding: 41px 57px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #050a39;
}

.icon {
  margin-right: 40px;
}

.content>h2 {
  font-size: 48px;
  font-weight: 400;
  font-family: "Judson", serif;
  color: var(--darkblue);
  text-transform: capitalize;
  margin-bottom: 30px;
}

.content>p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgb(0, 0, 0, 40%);
}

.mission {
  margin-bottom: 55px;
}

.vision {
  margin-left: 200px;
  background: var(--orange);
}

.join-sec {
  padding: 55px 0;
  background:
    linear-gradient(rgba(245, 140, 40, 0.85), rgba(245, 140, 40, 0.85)),
    url("../asset/aboutus/join.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.join-content>h2 {
  font-size: 48px;
  font-weight: 400;
  font-family: "Judson", serif;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 30px;
}

.join-content>p {
  max-width: 742px;
  margin: 0 auto;
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}

.join-content .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 742px;
  height: 59px;
  border: 1px solid var(--white);
  border-radius: 20px;
  margin: 0 auto;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
  transition: 0.3s all ease-in;
}

.join-content .btn:hover {
  background: var(--white);
  box-shadow: 0 4px 8px 4px rgba(20, 19, 19, 0.101);
  color: var(--orange);
}

/*      =========== FOOTER ==========      */


.footer-section {
  background: #0B125A;
  color: #fff;
  padding: 40px 0;
  font-size: 14px;
}

.footer-app {
  display: flex;
  justify-content: flex-start;
  gap: 10px;

}

.footer-app .app-icon img {
  width: 22px;
  height: 22px;
  transition: 0.5s all ease-in;
}

.footer-app .app-icon img:hover {
  transform: scale(1.1);
}

.footer-icon {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 50px;
  transition: 0.5s all ease-in;
  border-bottom: 1px solid transparent;
}

.footer-icon svg {
  margin-right: 10px;
  transition: 0.5s all ease-in;


}

.footer-icon a:hover svg {
  transform: scale(1.1);
}

.footer-icon a {

  display: flex;
  color: white;
  margin-top: 10px;

}

.footer-icon a span {
  font-size: 16px;
  transition: 0.5s all ease-in;
  border-bottom: 1px solid transparent;
}

.footer-icon a:hover span {

  color: #F08526;
  border-bottom: 1px solid #F08526;
}


.contact-icon {

  width: 15px;
  height: 15px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 180px;
}



.footer-col>p {
  font-size: 24px;
  font-weight: bold;
  font-family: var(--judson);
  margin-bottom: 12px;
  color: #fff;
  cursor: pointer;
  transition: 0.5s all ease-in;
  border-bottom: 1px solid transparent;

}

.footer-col ul {

  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 18px;
  color: #ddd;
  border-bottom: 1px solid transparent;
  transition: 0.5s all ease-in;
}

.footer-col ul li a:hover {
  color: #F08526;
  border-bottom: 1px solid #F08526;

}



.footer-brand .footer-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 12px;
  object-fit: contain;
}

.footer-brand .contact {
  margin-bottom: 6px;
  color: #ddd;
}

.footer-brand .footer-social,
.footer-brand .footer-app {
  margin-top: 10px;

}

.footer-brand .footer-social span,
.footer-brand .footer-app span {
  font-size: 18px;
  margin-right: 8px;
  color: #ccc;
}

.footer-social .social-icon {
  transition: .5s all ease-in;
}

.footer-social .social-icon:hover {
  transform: scale(1.1);
}

.social-icon {
  margin-right: 8px;
  color: #fff;
  font-weight: bold;
}


.footer-bottom {
  border-top: 1px solid #2943a1;
  margin-top: 30px;
  padding-top: 14px;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  align-items: center;
  color: #ccc;
}

.footer-bottom a {
  font-size: 18px;
  color: #ccc;
  text-decoration: none;
  margin-right: 14px;
  transition: 0.5s all ease-in;
  border-bottom: 1px solid transparent;
}

.footer-bottom a:hover {
  color: #F08526;
  border-bottom: 1px solid #F08526;
}

.lower-footer {
  text-align: center;
  margin-top: 10px;
}

.lower-footer a {
  font-size: 18px;
  color: #aaa;
  transition: 0.5s all ease-in;
  border-bottom: 1px solid transparent;
}

.lower-footer a:hover {
  color: #F08526;
  border-bottom: 1px solid #F08526;
}


/* ========== FOOTER END ========== */

/* =========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================= */




/* tobbar start */
@media screen and (max-width: 1440px) {
  .navlist {
    gap: 18px;
  }

  .navbar-action-btns {
    gap: 16px;
  }

  .btn {
    padding: 13px 30px;
  }
}

/* Large devices (laptops) */
@media (max-width: 1200px) {
  nav {
    gap: 10px;
  }

  .btn {
    padding: 8px 14px;
  }
}

/* Medium devices (tablets landscape) */
@media screen and (max-width: 1024px) {
  .topbar {
    padding: 18px 0;
  }

  .topbar-info {
    gap: 12px;
  }

  .topbar-social {
    gap: 6px;
  }

  .topbar-info-link {
    font-size: 12px;
  }

  .topbar-info-link figure,
  .topbar-social-link figure {
    max-width: 12px;
  }

  .navbar {
    padding: 16px 0;
  }

  nav {
    padding: 8px 10px;
    position: relative;
  }

  .navbar-brand {
    max-width: 70px;
  }

  .navlink {
    color: #ffe8d2;
  }

  .navlink svg path {
    stroke: #ffe8d2;
  }

  .navbar-menu {
    /* display: none; */
    position: absolute;
    top: 110%;

    transform: translateX(-50%);
    /* Frost / base */
    background: rgba(11, 18, 90, 1);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    /* Depth */
    border: 1px solid rgba(255, 255, 255, 0.14);
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 0;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 999;
  }

  .navbar-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    z-index: 999;
  }

  .navlist {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .navbar-action-btns {
    gap: 12px;
  }

  .btn {
    padding: 8px 14px;
    font-size: 16px;
  }

  .menu-btn {
    font-size: 35px;
    display: block;
    /* color: #ede1f3; */
  }


  /* sign in dropdown */

  .dropdown-menu {
    top: 75px;
    right: 130px;

  }

  .dropdown-menu li a {
    padding: 10px 12px;
    font-size: 16px;
  }
}

/* Tablets */
@media (max-width: 992px) {}

/* Small tablets / large phones */
@media screen and (max-width: 768px) {
  .topbar-wrapper {
    justify-content: center;
  }

  .topbar-rgt {
    display: none;
  }



}

/* Mobile devices */
@media (max-width: 576px) {
  nav {
    padding: 4px 8px 4px 4px;
  }

  .navbar-brand {
    max-width: 55px;
  }

  .btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .menu-btn {
    font-size: 30px;
  }

  .navlink {
    font-size: 12px;
  }

  .navbar-menu {
    border-radius: 30px;
  }

  /* sign in dropdown */

  .dropdown-menu {
    top: 60px;
    right: 100px;

  }

  .dropdown-menu li a {
    font-size: 14px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .topbar {
    display: none;
  }

  .navbar-action-btns {
    gap: 8px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {

  /* sign in dropdown */
  .dropdown-menu {
    top: 60px;
    right: 110px;
  }

  .dropdown-menu li a {
    font-size: 10px;
  }
}

/* Very small phones */
@media (max-width: 320px) {}



/* ========== topbar end ========== */



/*=============================
ABOUT US MEDIA QUERIES
================================
*/

@media screen and (max-width: 1200px) {
  .who-we-sec .col-6 {
    width: 100%;
  }

  .who-we-sec .row {
    flex-wrap: wrap-reverse;
  }

  .who-img {
    margin: 0 auto;
  }

  .who-title {
    text-align: center;
  }

  .wht-we-do-sec .col-6 {
    width: 100%;
  }

  .we-do-img {
    margin: 0 auto;
  }

  .we-do-title {
    text-align: center;
  }

  .wht-we-do-sec .para {
    text-align: center;
  }

  .wht-we-do-sec ul {
    margin: 0 auto;
  }

  .why-choose-sec .col-8 {
    width: 100%;
  }

  .why-choose-sec .row {
    flex-wrap: wrap-reverse;
  }

  .why-choose-img {
    margin: 0 auto;
  }
}

@media screen and (max-width: 992px) {
  .card {
    margin: 0 auto;
    margin-top: 30px;
    max-width: 600px;
  }

  .content>h2 {
    font-size: 32px;
  }

  .join-content .btn {
    width: 500px;
  }

  .about-hdr {
    font-size: 42px;
  }
}

@media screen and (max-width: 768px) {
  .who-title {
    font-size: 32px;
    margin-top: 20px;
  }

  .para {
    font-size: 15px;
  }

  .we-do-title {
    font-size: 32px;
    margin-top: 20px;
  }

  .wht-we-do-sec ul li {
    font-size: 13px;
  }

  .wht-we-do-sec .para {
    font-size: 15px;
  }

  .join-content>h2 {
    font-size: 32px;
  }

  .card {
    max-width: 400px;
  }
}

@media screen and (max-width: 576px) {
  .wht-we-do-sec {
    padding: 40px 0;
  }

  .join-content .btn {
    width: 320px;
  }

  .about-hdr {
    font-size: 32px;
  }
}