
html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #354556;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: #0B3A66;
  letter-spacing: 0.3px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

button,
.service-btn,
a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.icon,
.v5-arrow,
.v5-dot,
.sw-menu-btn,
.social-icons i,
svg {
  font-family: 'Inter', sans-serif !important;
  font-style: normal;
}


.page-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section,
.container,
.ast-container,
.site-content {
  max-width: 100%;
  overflow-x: hidden;
}


/* HEADER CSS */
/* RESET */
.sw-header * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", Arial, sans-serif;
}

/* TOP BAR */
.sw-topbar {
	background: linear-gradient(90deg, #0B3A66, #0051A3);
	color: #fff;
	padding: 8px 55px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}

.sw-topbar .left,
.sw-topbar .right {
	display: flex;
	align-items: center;
	gap: 28px;
}

.sw-topbar .right a svg {
	transition: .3s;
}

.sw-topbar .right a:hover svg {
	opacity: 0.75;
}

/* MAIN HEADER */
.sw-header-main {
	padding: 18px 55px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 0 0 16px 16px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}
@media (max-width: 768px) {
  .sw-header-main {
    padding: 14px 18px;
  }

  .sw-topbar {
    padding: 10px 18px;
  }
}


/* LOGO */
.sw-header-logo img {
	height: 65px;
	transition: .3s;
}

/* NAVIGATION */
.sw-nav ul {
	display: flex;
	list-style: none;
	gap: 38px;
}

.sw-nav ul li {
	position: relative;
}

.sw-nav a {
	color: #0B3A66;
	text-decoration: none;
	font-size: 17px;
	font-weight: 600;
	padding: 6px 0;
	transition: .3s ease;
}

/* UNDERLINE */
.sw-nav ul li span {
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 3px;
	background: #4EA8FF;
	border-radius: 4px;
	transition: .3s;
}

/* MOBILE MENU BUTTON */
.sw-menu-btn {
	display: none;
	font-size: 32px;
	color: #0B3A66;
	cursor: pointer;
}

/* MOBILE SIDEBAR (UPGRADED) */
.sw-mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 260px;
	max-width: 80%;
	height: 100%;
	background: #0B172A;
	padding: 40px 20px;
	transform: translateX(100%);
	transition: transform .35s ease;
	z-index: 99999;
}

.sw-mobile-nav.open {
	transform: translateX(0);
}

.sw-mobile-close {
	font-size: 40px;
	color: white;
	cursor: pointer;
	margin-bottom: 25px;
	display: block;
}

.sw-mobile-nav ul {
	list-style: none;
}

.sw-mobile-nav ul li {
	margin-bottom: 18px;
}

.sw-mobile-nav ul li a {
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	font-weight: 500;
	padding-left: 2px;
	display: block;
	transition: .3s;
}

.sw-mobile-nav ul li a:hover {
	color: #4EA8FF;
}

/* RESPONSIVE */
@media(max-width: 992px) {
	.sw-nav {
		display: none;
	}

	.sw-menu-btn {
		display: block;
	}

	/* .sw-topbar { 
    padding: 10px 20px;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  } */
	.sw-topbar {
		display: none;
	}
}

@media(max-width: 500px) {
	.sw-header-logo img {
		height: 55px;
	}
}

/* FOOTER CONTAINER */
.sw-footer {
	background: #0B172A;
	padding: 60px 20px 25px;
	color: #cfd6e3;
	font-family: 'Inter', sans-serif;
}

.sw-footer-container {
	max-width: 1250px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

/* COLUMNS */
.sw-footer-col {
	flex: 1;
	min-width: 260px;
}

/* LOGO */
.sw-footer-logo {
	width: 150px;
	margin-bottom: 18px;
}

/* ABOUT */
.sw-footer-about {
	font-size: 15px;
	line-height: 1.7;
	color: #d3d9e6;
	margin-top: 10px;
}

/* TITLES */
.sw-footer-title {
	color: #ffffff;
	margin-bottom: 14px;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.sw-footer-title.small {
	margin-top: 24px;
	font-size: 16px;
	opacity: 0.9;
}

/* LINKS */
.sw-footer-links li {
	list-style: none;
	margin-bottom: 10px;
}

.sw-footer-links a {
	color: #cbd6e3;
	text-decoration: none;
	font-size: 15px;
	transition: 0.25s;
}

.sw-footer-links a:hover {
	color: #4ea8ff;
}

/* CONTACT LIST */
.sw-footer-contact {
	list-style: none;
	padding: 0;
}

.sw-footer-contact li {
	margin-bottom: 12px;
	font-size: 15px;
	line-height: 1.6;
	display: flex;
	gap: 10px;
	color: #d3d9e6;
}

.sw-footer-contact i {
	color: #4ea8ff;
	font-size: 16px;
	margin-top: 3px;
}

/* OFFICE HOURS */
.sw-footer-hours {
	margin-top: 6px;
	font-size: 15px;
	line-height: 1.5;
}

/* BOTTOM BAR */
.sw-footer-bottom {
	text-align: center;
	margin-top: 35px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 14px;
	color: #9aa2b3;
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.sw-footer-container {
		flex-direction: column;
		text-align: center;
	}

	.sw-footer-contact li {
		display: block;
		text-align: center;
	}
}


@media (max-width: 768px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
    line-height: 1.6;
  }
}


@media (max-width: 768px) {
  .sw-header-main {
    padding: 12px 16px;
  }

  .sw-header-logo img {
    height: 48px;
  }

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

