@font-face {
  font-family: 'Roboto';
  src: url('../plugins/icofont/fonts/Roboto-VariableFont_wdth\,wght.ttf') format('woff2');
  font-weight: 400;
  font-style: normal;
}


/* === BASE STYLES === */
html {
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: #6b7280;
  font-weight: 400;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 600;
  line-height: 1.3;
  color: #c90fcd;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 44px;
}

h3, .h3 {
  font-size: 1.5rem;
}

h4, .h4 {
  font-size: 1.3rem;
  line-height: 30px;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  line-height: 1.5;
}

/* === UTILITY CLASSES === */
.custom-hr {
  border: none;
  border-top: 1px solid #c90fcd;
  width: 100%;
  background: transparent;
}

.divider {
  width: 60px;
  height: 2px;
  margin-bottom: 10px;
  background: #c90fcd;
}

.text-sm {
  font-size: 14px;
}

.text-md {
  font-size: 2.25rem;
}

.text-lg {
  font-size: 3.75rem;
}

.text-color {
  color: #223a66;
}

.text-color-2 {
  color: #c90fcd;
}

.text-color-primary {
  color: #223a66;
}

.title-color {
  color: #223a66;
}

.letter-spacing {
  letter-spacing: 2px;
}

.no-spacing {
  letter-spacing: 0px;
}

.lh-35 {
  line-height: 35px;
}

/* === SPACING === */
.py-7 {
  padding: 7rem 0px;
}

.section {
  padding: 50px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-bottom {
  padding-bottom: 100px;
}

.mt-90 {
  margin-top: 90px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb--80 {
  margin-bottom: -80px;
}

/* === BACKGROUND COLORS === */
.bg-gray {
  background: #eff0f3;
}

.bg-primary {
  background: #223a66;
}

.bg-primary-dark {
  background: #152440;
}

.bg-primary-darker {
  background: #090f1a;
}

.bg-dark {
  background: #222;
}

.gray-bg {
  background: #f4f9fc;
}

.gray-bg1 {
  background: #f4f9fc;
}

.secondary-bg {
  background: #223a66;
}

/* === FORMS === */
input[type=email],
input[type=password],
input[type=text],
input[type=tel] {
  box-shadow: none;
  height: 45px;
  outline: none;
  font-size: 14px;
}

input[type=email]:focus,
input[type=password]:focus,
input[type=text]:focus,
input[type=tel]:focus {
  box-shadow: none;
  border: 1px solid #223a66;
}

.form-control {
  box-shadow: none;
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid #223a66;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid transparent;
  transition: all 0.35s ease;
}

.btn.btn-icon i {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  padding-left: 15px;
}

.btn:focus {
  outline: 0px;
  box-shadow: none;
}

.btn-main {
  background: #223a66;
  color: #fff;
  border-color: #223a66;
}

.btn-main:hover {
  background: #c90fcd;
  border-color: #c90fcd;
  color: #fff;
}

.btn-main-2 {
  background: #c90fcd;
  color: #fff;
  border-color: #c90fcd;
  margin-bottom: 20px;
}

.btn-main-2:hover {
  background: #223a66;
  color: white;
  border-color: #223a66;
}

.btn-solid-border {
  border: 2px solid #223a66;
  background: transparent;
  color: #223a66;
}

.btn-solid-border:hover {
  border: 2px solid #223a66;
  color: #fff;
  background: #223a66;
}

.btn-solid-border:hover.btn-icon i {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.btn-solid-border.btn-icon i {
  border-left: 1px solid rgba(0, 0, 0, 0.09);
}

.btn-transparent {
  background: transparent;
  color: #666;
  border-color: #6F8BA4;
}

.btn-transparent:hover {
  background: #6F8BA4;
  color: #fff;
}

.btn-white {
  background: #fff;
  border-color: #fff;
  color: #666;
}

.btn-white:hover {
  background: #223a66;
  color: #fff;
  border-color: #223a66;
}

.btn-solid-white {
  border-color: #fff;
  color: #fff;
}

.btn-solid-white:hover {
  background: #fff;
  color: #666;
}

.btn-round {
  border-radius: 0px;
}

.btn-round-full {
  border-radius: 0px;
}

.btn.active:focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
}

/* === LINKS === */
a {
  color: #666;
  text-decoration: none;
  transition: all 0.35s ease;
}

a:focus,
a:hover {
  color: #c90fcd;
  text-decoration: none;
}

a:focus {
  outline: none;
}

/* === SECTIONS === */
.section-title {
  margin-bottom: 70px;
}

.section-title h2 {
  color: #223a66;
}

.subtitle {
  color: #223a66;
  font-size: 14px;
  letter-spacing: 1px;
}

.content-title {
  font-size: 40px;
  line-height: 50px;
}

/* === OVERLAYS === */
.overlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #242424;
}

.overly-2 {
  position: relative;
}

.overly-2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* === NAVIGATION === */
.navbar-toggle .icon-bar {
  background: #223a66;
}

.navbar-brand {
  margin-top: 10px;
}

#navbarmain .nav-link {
  padding: 10px 10px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: 500;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
  color: #6b7280;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

#navbarmain .active .nav-link {
  color: #c90fcd;
  font-weight: 700;
  border-bottom: 3px solid #c90fcd;
}

#navbarmain .nav-link:hover {
  color: #c90fcd;
}

.dropdown-toggle::after {
  display: none;
}

.navigation .dropdown-menu {
  padding: 0px;
  border: 0px;
  border-top: 5px solid #c90fcd;
  background: #fff;
  border-radius: 0px;
}

.navigation .dropdown-toggle::after {
  display: none;
}

.navigation .dropleft .dropdown-menu,
.navigation .dropright .dropdown-menu {
  margin: 0;
}

.navigation .dropleft .dropdown-toggle::before,
.navigation .dropright .dropdown-toggle::after {
  font-weight: bold;
  font-size: 14px;
  border: 0;
  display: inline-block;
  font-family: IcoFont !important;
  vertical-align: 1px;
}

.navigation .dropleft .dropdown-toggle::before {
  content: "\eac9";
  margin-right: 5px;
}

.navigation .dropright .dropdown-toggle::after {
  content: "\eaca";
  margin-left: 5px;
}

.navigation .dropdown-item {
  padding: 13px 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.6;
  color: #6b7280;
  border-bottom: 1px solid #eee;
}

.navigation li:last-child .dropdown-item {
  border-bottom: 0;
}

.navigation .dropdown-submenu.active > .dropdown-toggle,
.navigation .dropdown-submenu:hover > .dropdown-item,
.navigation .dropdown-item.active,
.navigation .dropdown-item:hover {
  background: rgba(225, 36, 84, 0.05);
  color: #c90fcd;
}

.navigation button:focus {
  outline: 0;
}

/* === BANNER === */
.banner {
  position: relative;
  overflow: hidden;
  min-height: 550px;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.banner .container {
  position: relative;
  z-index: 2;
}

.banner .block {
  padding: 80px 0px 160px;
  color: #dedede;
}

.banner .block h1 {
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -1.2px;
  text-transform: capitalize;
  color: white;
}

/* === ABOUT SECTION === */
.about-img img {
  border-radius: 5px;
  box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
}

/* === FEATURES === */
.features {
  margin-top: -50px;
  padding: 10px 0;
  position: relative;
  z-index: 10;
}

.feature-item {
  flex-basis: 33.33%;
  margin: 0px 10px;
  padding: 60px 30px;
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 42, 106, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 40px 0px rgba(0, 42, 106, 0.15);
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature-icon {
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 50px;
  color: #223a66;
}

.feature-text h4 {
  color: #223a66;
  margin-bottom: 10px;
}

.feature-text p {
  font-size: 14px;
  margin: 0;
}

.feature-text span {
  font-size: 12px;
  color: #666;
}

.feature-section.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* === CONTACT FORM === */
.contact-form-wrap .form-group {
  margin-bottom: 20px;
}

.contact-form-wrap .form-group .form-control {
  height: 60px;
  border: 1px solid #EEF2F6;
  box-shadow: none;
  width: 100%;
  background: #f4f9fc;
}

.contact-form-wrap .form-group-2 {
  margin-bottom: 13px;
}

.contact-form-wrap .form-group-2 textarea {
  height: auto;
  border: 1px solid #EEF2F6;
  box-shadow: none;
  background: #f4f9fc;
  width: 100%;
}

.contact-block {
  text-align: center;
  border: 5px solid #EEF2F6;
  padding: 50px 25px;
}

.contact-block i {
  font-size: 50px;
  margin-bottom: 15px;
  display: inline-block;
  color: #c90fcd;
}

/* === SOCIAL & MISC === */
.social-icons li {
  margin: 0 6px;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
}

.read-more {
  color: #223a66;
}

.w-hours li {
  padding: 6px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* === FOOTER === */
.logo {
  font-weight: 600;
  letter-spacing: 1px;
}

.logo h3 {
  color: #223a66;
}

.logo span {
  color: #223a66;
}

.widget .divider {
  height: 3px;
}

.widget h4 {
  color: #223a66;
}

.widget-contact h6 {
  font-weight: 500;
  margin-bottom: 18px;
}

.widget-contact h6 i {
  color: #c90fcd;
}

.backtop {
  position: fixed;
  background: #c90fcd;
  z-index: 9999;
  display: inline-block;
  right: 55px;
  width: 50px;
  height: 50px;
  bottom: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.backtop:hover {
  background-color: #223a66;
}

.backtop i {
  color: #fff;
  font-size: 20px;
}

.reveal {
  transition: all 0.3s;
  cursor: pointer;
  opacity: 1;
}