/*===================== STYLE GLOBAL OF WEBSITE ===========================*/
:root {}

body,
html {
    scroll-behavior: smooth;
    /* background: #EAF1FF; */
    background: linear-gradient(180deg, #EAF1FF 0%, #EAF1FF 100%);
}

/*===================== HEADER OF WEBSITE ===========================*/

header {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease-in-out
}

header .navbar {
    height: 5.20vw;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8.928vw;
    gap: 1.56vw;
    
    background-color: transparent;
}
header.active .navbar {
    background-color: #284D9A;
    backdrop-filter: blur(25px);
    transition: all .5s ease-in-out;
}

header .navbar .nav-center {
    display: flex;
    align-items: center;
    gap: 1.04vw;
    /* margin-top: 1.3vw; */
}

header .navbar .nav-center .icon {
    width: 1.6vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .navbar .logo {
    width: auto;
    height: 3.333vw;
}
header .navbar .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;  
}

header .navbar .menu {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: #CCDBF9;
    border-radius: 2.6vw;
    height: 2.84vw;
    width: 33.31vw;
    gap: 1.04vw;
}

header .navbar .menu a ,
header .navbar .menu .link-single {
    color: black;
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    
    /* font-size: 0.73vw; */
    font-size: .873vw;
}

/* START CUSTOMIZE MENU */

header .navbar .menu .link-single .list-link {
    position: absolute;
    background: #EAF1FF;
    width: 18.85vw;
    padding: 0.93vw 0 0.93vw 0;
    box-shadow: 0px 4px 50px 0px #00000059;
    border-radius: var(--p-size);
    top: 3vw;
    left: -8vw;
    display: flex;
    flex-direction: column;
    z-index: -2;
    opacity: 0;
    transition: all 1s ease-in-out;
    transform: translate(0vw, -26vw);
}
header .navbar .menu .link-single.active .list-link {
    opacity: 1;
    z-index: 1;
    transform: translate(0vw, 0vw);
    transition: all 1s ease-in-out;
}
header .navbar .menu .link-single .list-link::after {
    position: absolute;
    content: "";
    top: -0.4vw;
    display: block;
    height: .81vw;
    background: #E9E11F;
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
header .navbar .menu .link-single .list-link::before {
    position: absolute;
    content: "";
    bottom: -0.4vw;
    display: block;
    height: .81vw;
    background: #E9E11F;
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
header .navbar .menu .link-single .list-link a {
    border-bottom: 1px solid #FFFFFF;
    font-family: var(--font-name);
    font-weight: 500;
    font-size: 1.1458vw;
    line-height: normal;
    text-align: center;
    color: #284D9A;
    padding: .81vw 0vw;
}
header .navbar .menu .link-single .list-link a:last-child {
    border-bottom: 0px solid #FFFFFF;
}


/* END CUSTOMIZE MENU */

header .navbar .navbar-right {
    display: flex;
    align-items: center;
    gap: 0.83vw;
    /* margin-top: 1.3vw; */
}

header .navbar .navbar-right .icon {
    height: 1.6vw;
    width: auto;
    /* margin-top: 1.3vw; */
}
header .navbar .navbar-right .icon.searchIcon {
    margin-right: 0.103vw;
}

/*===================== FOOTER OF WEBSITE ===========================*/


.footer-section {
    background-color: #214D9B;
    color: white;
    padding: 4.16vw 8.802vw 2.708vw;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.56vw;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 1.56vw;
}

.footer-contact p {
    display: flex;
    font-size: 1.3vw;
    align-items: center;
    gap: 1.25vw;
    margin-bottom: 1.25vw;
    line-height: 1.82vw;
}
.footer-contact p span {
    font-weight: 300;
    font-size: 1.3vw;
    line-height: 1.82vw;
    font-family: var(--font-name);
    width: 25.7291vw;
}

.footer-contact img {
    width: 2.5vw;
    height: auto;
    align-self: flex-start;
}

.footer-logo {
    width: auto;
    height: 6.608vw;
    margin-bottom: 0.52vw;
}
.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    margin-bottom: 0.52vw;
}

.footer-logo p {
    font-size: 0.73vw;
    margin: 1.3vw 0;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 2.6vw;
    margin-top: 3.205vw;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 1vw;
}

.footer-links h4 {
    font-size: 1.82vw;
    font-weight: 700;
    margin-bottom: 1.4vw;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.78vw;
    font-size: 1.3vw;
    font-weight: 100;
}

.footer-links ul li {
    position: relative;
    padding-left: 1.35vw;
    list-style: none;
    margin-bottom: 1.56vw;
    font-size: 1.3vw;
    font-weight: 400;
}

.footer-links ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65vw;
    width: 0.52vw;
    height: 0.52vw;
    background-color: white;
    display: inline-block;
}

.footer-socials {
    min-width: 7.81vw;
}

.footer-socials h4 {
    font-size: 1.82vw;
    font-weight: 700;
    margin-bottom: 0.78vw;
}

.social-icons a {
    width: auto;
    height: 2.5vw;
    position: relative;
    display: block;
}
.social-icons a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-right: 0.83vw;
    object-position: left;
}

.footer-bottom {
    text-align: center;
    font-size: 1.3vw;
    margin-top: 2.47vw;
    color: white;
    font-family: var(--font-name);
    font-weight: 500;
}

/*===================== CUSTOMIZE OF FLOATING ACTION BUTTON ===========================*/

.floating-menu {
    position: fixed;
    bottom: -1vw;
    right: 2.3vw;
    z-index: 1000;
  }
  
  .menu-toggle {
    background-color: #284D9A;
    border: none;
    border-radius: 50%;
    padding: 1.45vw;
    box-shadow: 0 0.3vw 0.6vw rgba(0, 0, 0, 0.5);
    cursor: pointer;
  }
  
  .menu-toggle img {
    width: 3.75vw;
    height: 3.75vw;
  }
  
  .floating-options {
    list-style: none;
    background: white;
    border-radius: 2.60vw;
    border-bottom-left-radius:7.03vw ;
    border-bottom-right-radius: 0;
    padding: 2.08vw 2.56vw;
    margin-top: 0.78vw;
    box-shadow: 0 0.52vw 1.04vw rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translate(21vw, -38vw) ;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    position: absolute;
    right: 0;
    width: 22.39vw;
  }
  
  .floating-options.show {
    opacity: 1;
    /* transform: translate(21vw, -22vw) ; */
    transform: translate(0vw, -38vw);
    pointer-events: auto;
  }
  
  
  .floating-options li a {
    display: flex;
    align-items: center;
    font-size: 1.67vw;
    font-weight: 600;
    gap: 2.34vw;
    padding: 0.65vw 0;
    cursor: pointer;
    color: #284D9A;
    border-bottom: 1px solid #eee;
  }
  .floating-options li:last-child a {
    border-bottom: none;
  }
  
  .floating-options li a img {
    width: 1.82vw;
    height: auto;
  }
        


/* ---------- MOBILE NAV MENU ---------- */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4vw 6vw;
    /* padding: 0 8.928vw; */
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    transition: background-color 0.4s ease;
}

.mobile-header.scrolled {
    background-color: transparent; 
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.15); */
}

.mobile-logo img {
    height: 12vw;
}

.mobile-menu-toggle {
    font-size: 8vw;
    font-weight: 100;
    color: #fff;
    cursor: pointer;
    z-index: 1003;
}

/* OVERLAY MENU */
.mobile-menu {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(255 255 255 / 67%);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10vw 6vw;
    transition: top 0.6s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.active {
    top: 0;
}

.no-scroll {
    overflow: hidden;
}

/* HEADER INSIDE MENU */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9vw;
}

.mobile-menu-logo {
    height: 12vw;
}

.mobile-menu-close {
    font-size: 8vw;
    font-weight: 100;
    color: #fff;
    cursor: pointer;
}

/* LIST STYLES */
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5vw;
    align-items: center;
}

.mobile-menu-list li a {
    font-size: 5vw;
    color: #F38430;
    font-weight: 500;
    text-decoration: none;
    /* padding: 2vw 0; */
    transition: color 0.3s ease;
}

.mobile-menu-list li a:hover {
    color: #E9E11F;
}

/* SUBMENU */
.mobile-submenu .mobile-submenu-list {
    display: none;
    flex-direction: column;
    gap: 5vw;
    margin-top: 5.3vw;
    transition: all .5s ease-in-out;

}

.mobile-submenu.open .mobile-submenu-list {
  display: flex;
}
.mobile-submenu.open {
    width: 100%;
    padding: 4vw 6vw;
    transition: all .5s ease-in-out;
}

.mobile-submenu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1e3c7d;
    font-size: 5vw;
    font-weight:600;
    cursor: pointer;
}
/*===================== MOBILE FOOTER STYLE ===========================*/

.mobile-footer {
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 26px 80px;
  border-radius: 0px 16px 80px 16px;
  animation: slideUp 0.8s ease;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.mobile-footer h3 {
  font-size: 18px;
  color: #284D9A;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.mobile-footer a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  font-size: 4vw;
  align-items: center;
}

.mobile-footer i {
  margin-right: 10px;
  font-size: 7vw;
  color: #284D9A;
}

/* === Emergency Call === */

.mobile-footer-contact {
  background: #284D9A;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  margin-bottom: 20px;
  animation: fadeIn 1s ease;
}
.mobile-footer-contact a {
  color: white;
  flex-direction: row;
  justify-content: center;
}
.mobile-footer-contact a i {
  color: white;
  font-size: 7vw;
  margin-right: 35px;
}
.mobile-footer-contact span {
  font-size: 5vw;
  font-weight: 600;
  margin-bottom: 2vw;
}
.mobile-footer-contact small {
  font-size: 5vw;
  font-weight: 300;
  color: #EAF1FF;
  text-align: start;
}

/* === Quick Links === */
.mobile-quick-links .link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mobile-quick-links .link-card {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  justify-content: flex-start;
  transition: background 0.3s;
}
.mobile-quick-links .link-card:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* === Info === */
.mobile-info {
  margin: 20px 0 8px 0;
  gap: 2vw;
}
.mobile-info .info-item {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.mobile-info .info-item strong {
  font-weight: 600;
  color: #284D9A;
  font-size: 5vw;
}
.mobile-info .info-item p {
  margin: 0;
 font-size: 5vw;
}

/* === Social Icons === */
.mobile-social .social-icons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.mobile-social .social-icons a {
  background: rgba(40, 77, 154, 0.15);
  padding: 10px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transition: transform 0.3s;
}
.mobile-social .social-icons a i {
  margin: 0 auto;
}
.mobile-social .social-icons a:hover {
  transform: scale(1.1);
}

/* === Legal === */
.mobile-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.mobile-legal a {
  font-size: 3.8vw;
  opacity: 0.7;
  text-decoration: underline;
  transition: all .5s ease-in-out;
}
.mobile-legal a:hover {
  color: #1e3c7d;
  transition: all .5s ease-in-out;
}

/* === Copyright === */
.mobile-copyright {
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 20px;
}

/* === Back to Top === */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #284D9A;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 12px;
  font-size: 18px;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s, background 0.3s;
}
.back-to-top:hover {
  transform: scale(1.1);
  background: #1e3c7d;
}

@keyframes fadeIn {
  0% { opacity: 0 }
  100% { opacity: 1 }
}

@media screen and (max-width: 768px) {

  .floating-menu {
    position: fixed;
    bottom: 4vw;
    right: 5.3vw;
    z-index: 1000;
  }
  .menu-toggle {
    width: 15vw;
    height: 15vw;
  }
  .menu-toggle img {
    width: 100%;
    height: 100%;
    padding: 2.5vw;
  }

  .floating-options {
    width: 66.39vw;
    gap: 3vw;
    display: flex;
    flex-direction: column;
    padding: 4vw;
  }
  .floating-options li a {
    font-size: 4.67vw;
    gap: 3.5vw;
  }
  .floating-options.show {
    transform: translate(0vw, -92vw);
  }
  .floating-options li a img {
    width: 7.82vw;
    height: auto;
  }

}