/* ========== CSS RESET & BASE STYLES ========== */
/* Remove default margins/padding and set box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========== FONT DEFINITIONS ========== */
@font-face {
  font-family: 'Nohemi';
  src: url('../fonts/nohemi/Nohemi-Regular.woff') format('woff'),
       url('../fonts/nohemi/Nohemi-Regular.otf') format('opentype'),
       url('../fonts/nohemi/Nohemi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nohemi';
  src: url('../fonts/nohemi/Nohemi-Bold.woff') format('woff'),
       url('../fonts/nohemi/Nohemi-Bold.otf') format('opentype'),
       url('../fonts/nohemi/Nohemi-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('../fonts/nexa/NexaLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('../fonts/nexa/NexaRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('../fonts/nexa/NexaBold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('../fonts/nexa/NexaHeavy.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nexa';
  src: url('../fonts/nexa/NexaExtraLight.ttf') format('truetype');
  font-weight: 200; 
  font-style: normal;
  font-display: swap;
}
/* ========== END FONT DEFINITIONS ========== */

/* ========== COLOR VARIABLES ========== */
:root {
  --body-text:#333;
  --primary-blue: #004B70;
  --primary-darker: #0073AB;
  --light-blue: #4684A3;
  --text-light-blue: #d2e1e8;
  --text-muted: #6c757d;
  --gray-bg: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --grey: #949494;
  --dark-blue: #004B70;
  --dark-blue-hover: #003B59;
  --dark-blue-active: #002A40;
  --dark-blue-disabled: #004B700D;
}
/* ========== END COLOR VARIABLES ========== */
/* preloader */
#preloader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background-color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

/* Animation style */
#preloader img {
	width: 30px;
	animation: bounce 1.2s infinite ease-in-out;
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}
}
/* ========== BASE STYLES ========== */
body {
  font-family: 'Nexa', sans-serif;
  color: var(--body-text);
  overflow-x: hidden;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Nohemi', sans-serif;
}
.text-color-body{
 color: var(--body-text);
}
.text-primary{
  color: var(--primary-blue) !important;
}

.text-light-blue {
  color: var(--light-blue) !important;
}

.bg-primary{
  background-color: var(--primary-blue) !important;
}

.bg-light-blue {
  background-color: var(--light-blue) !important;
}
.wp-block-heading{
	color: var(--primary-blue) !important;
}
/* ========== END BASE STYLES ========== */

/* ========== LAYOUT COMPONENTS ========== */
/* Header & Navigation */
.header-section {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.navbar-brand img {
  max-height: 60px;
  transition: max-height 0.3s ease-in-out;
}

.header-section.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

.header-section.sticky .navbar-brand img {
  max-height: 40px;
}

.navbar-expand-lg {
  padding-top: 8px;
  padding-bottom: 8px;
  transition: padding 0.3s ease-in-out;
}

.header-section.sticky .navbar-expand-lg {
  padding-top: 2px;
  padding-bottom: 2px;
}
.navbar-nav .nav-link{
  border-bottom: 3px solid transparent;
  transition: color 0.3s ease-in-out, border-bottom 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-blue);
  border-bottom: 3px solid var(--primary-blue);
}
/* Animation */
.animate-dropdown {
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out ;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 200px;
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  visibility: hidden; 
  padding: 0;
}
.animate-dropdown a{
  transition: background-color  0.3s ease-in-out, color 0.3s ease-in-out ;
  padding: 1rem;
  color: var(--grey);
  font-weight: 700;
}
.animate-dropdown a:hover{
  background-color: var(--light-blue);
  color: var(--white);
}
.navbar-toggler{
border: none;
}
.navbar-toggler:focus {
  box-shadow: #000;
}
/* On hover */
.nav-item.dropdown:hover .animate-dropdown {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

/* Fullscreen Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-inner {
  padding: 2rem;
  position: relative;
}

.mobile-nav li {
  margin-bottom: 1.5rem;
}

.mobile-nav a {
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--body-text);
  padding: 1rem;
}
.mobile-nav a:hover{
  color: var(--dark-blue-active);
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--dark-blue);
}
.header-section.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* ========== END LAYOUT COMPONENTS ========== */

/* ========== BUTTON STYLES ========== */
.btn-darker {
  background-color: var(--dark-blue);
  color: rgb(255 255 255 / 80%);
  box-shadow: 0 0 0 0.25rem rgba(0, 75, 112, 0.5);
  font-weight: 300;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: background-color 0.6s ease-in-out, box-shadow 0.6s ease-in-out, color 0.6s ease-in-out;
}

.btn-darker:hover {
  background-color: var(--dark-blue-hover);
  color: var(--white);
  box-shadow: 0 0 0 0.3rem rgba(0, 75, 112, 0.5);
}

.btn-darker:focus,
.btn-darker.focus {
  background-color: var(--dark-blue-hover);
  box-shadow: 0 0 0 0.25rem rgba(0, 75, 112, 0.5);
  outline: none;
}

.btn-darker:active,
.btn-darker.active {
  background-color: var(--dark-blue-active);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-darker:disabled,
.btn-darker.disabled {
  background-color: var(--dark-blue-disabled);
  color: #e0e0e0;
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
}

.custom-button-blue {
  background-color: var(--light-blue);
  border-color: var(--gray-bg);
  transition: background-color 0.6s ease, border-color 0.6s ease, transform 0.6s ease;
  border-radius: 10px; 
  white-space: nowrap;
  color: rgb(255 255 255 / 80%);
  font-weight: 300;
}

.custom-button-blue:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.custom-button-outline {
  border-color: var(--white);
  border-width: 2px;
  color: var(--white);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-button-outline:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
}

.btn-outline-grey {
  background: transparent;
  color: var(--primary-blue);
  box-shadow: 0 0 0 0.25rem rgb(0 0 0 / 10%);
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.btn-outline-grey:hover {
  background: var(--light-blue); 
  color: var(--white);
  box-shadow: 0 0 0 0.25rem #004B70;
}

.bg-blue-gradient {
  background: linear-gradient(0deg, #004B70, #004B70),
              linear-gradient(120.63deg, #004B70 31.41%, #0073AB 92.42%, #0090D6 115.82%);
}
/* ========== END BUTTON STYLES ========== */

/* ========== HERO SECTION ========== */
.hero-section {
  height: 100vh;
  border-radius: 20px 20px 0 0;
  background-color: rgb(0 75 112 / 50%);
  margin-left: 15px;
  margin-right: 15px;
}
.hero-section .badge{
  position: absolute;
  right: 15px; 
  max-height: 70px;
}
@media (max-width: 991.98px) {
.hero-section .badge{
  bottom:30px;
}
}
@media (min-width: 992px) {
  .hero-section .badge{
   bottom:100px;    
  }
}
.video-background video {
  object-fit: cover;
  border-radius: 20px;
}

.hero-image-overlay {
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 1;
  font-weight: 400;
}

.hero-content p {
  font-size: 1.25rem;
  max-width: 300px;
  color: #fff;  
}

.rotating-headlines {
  position: relative;
  overflow: hidden;
}

.headline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  text-align: left;
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 400;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.headline.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}

.hero-card-carousel-container {
  position: absolute; 
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%); 
  z-index: 3;
  width: 100%;
  max-width: 540px;
}
.hero-card-carousel {
  background: rgb(255 255 255 / 20%);
  padding: 15px 20px;
  border-radius: 15px;  
  max-width: 540px;
  border: 1px solid rgb(255 255 255 / 80%);
 
}
.hero-card-slider-wrapper {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.hero-card-slider {
  display: flex;
  transition: transform 0.6s ease;
  height: 100%;
}

.hero-card-slide {
  flex: 0 0 100%;
  height: 100%;
  padding-right: 10px;
}

.hero-card-carousel img {
  width: 86px;
}

.hero-card-indicators .dot {
  height: 4px;
  width: 40px;
  margin: 0 5px;
  background-color: #ffffff80;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-card-indicators .dot.active {
  background-color: #ffffff;
}

.learn-more-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.learn-more-link:hover {
  color: var(--primary-blue) !important;
}

/* Curved Divider Between Sections */
.hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  overflow: hidden;
  line-height: 0;
  display: block;
}
/* ========== END HERO SECTION ========== */





/* ========== ABOUT PAGE STYLES ========== */
.hero-section-inner {
  height: 60vh;
  border-radius: 20px 20px 0 0;
  background-color: rgba(0, 0, 0, 0.2);
  margin-left: 15px;
  margin-right: 15px;
}

.inner-hero {
  height: 100%;
  position: relative;
}

.inner-hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.4);
}

.hero-image {
  object-fit: cover;
  height: 100%;
}

.hero-image:hover,
.hero-image:focus {
  outline: none;
  border: none;
}

.hero-content {
  z-index: 2;
}

.hero-divider {
  z-index: 3;
  pointer-events: none;
}



/* ========== END ABOUT PAGE STYLES ========== */





/* ========== BLOG PAGE STYLES ========== */
.blog-card {
  position: relative;
}

.blog-card .date {
  position: absolute;
  right: 10%;
  bottom: 0;
  background: url('../images/blog/why-section-bottom.png') no-repeat center;
  background-size: contain;
  aspect-ratio: 130 / 27;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0); /* Slight upward adjustment if needed */
  width: 130px;
  color: var(--body-text);
  text-decoration: none;
}

.blog-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.blog-card .blog-title {
  font-family: 'Nexa', sans-serif;
  color: var(--body-text);
  text-decoration: none;
}


/* ========== END BLOG PAGES ========== */


/* ========== FOOTER ========== */
.footer-section {
  background-color: var(--light-blue);
  color: var(--white);
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.footer-section::before {
  position: absolute;
  content: '';
  display: block;
  aspect-ratio: 1926 / 46;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
  background: url(../images/home/footer-top.png) no-repeat;
  line-height: 0;
  margin-top: 3px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 300;
}

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

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.footer-section .social-icons a {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-section .social-icons a:hover {
  color: var(--white);
}

.footer-section .form-control {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-color: rgba(255,255,255,0.2);
  background-color: transparent;
  color: var(--white);
}

.footer-section .form-control::placeholder {
  color: rgba(255,255,255,0.6);
}

.footer-section .form-control:focus {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--primary-blue);
  box-shadow: none;
}

.footer-section .input-group .btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.footer-section hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-icons img {
  height: 60px;
}
/* ========== END FOOTER ========== */

/* ========== UTILITY CLASSES ========== */
/* Add any utility classes here if needed */
/* ========== END UTILITY CLASSES ========== */

/* ========== MEDIA QUERIES ========== */
/* Add responsive styles here if needed */
/* ========== END MEDIA QUERIES ========== */