@font-face {
    font-family: 'Fira Sans';
    src: url("../FiraSans/FiraSans-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Fira Sans';
    src: url("../FiraSans/FiraSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Fira Sans';
    src: url("../FiraSans/FiraSans-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Fira Sans';
    src: url("../FiraSans/FiraSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Fira Sans';
    src: url("../FiraSans/FiraSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Fira Sans';
    src: url("../FiraSans/FiraSans-Black.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

/* Default font for the entire website */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}
body{
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.5px;
}


/* ================= Navbar ================= */
.content-area-start {
  margin-top: 73px;
}
.navbar-logo img {
  width: 130px;
}
.navbar-nav{
    gap:20px;
}

.dropdown-menu-custom{
    position:relative;
}

.dropdown-menu-custom>.nav-link{
    color:#fff;
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:16px;
    font-weight:400;
    padding:15px 0;
    position:relative;
}

.nav-item.menu-item-has-children>.nav-link::after{
    content: '';
    display:inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #fff;
    transform: translateY(1px);
    transition: transform .3s ease;
}

.nav-item.menu-item-has-children:hover>.nav-link::after{
    transform: translateY(1px) rotate(180deg);
}

.dropdown-menu-custom>.nav-link:hover{
    color:#2bbcff;
}

.dropdown-menu-custom>.nav-link span{
    transition:.3s;
    font-size:18px;
}

/*
.dropdown-menu-custom:hover>.nav-link span{
    transform:rotate(45deg);
}
*/
.for_mobile_search{
  display: none;
}


/* Submenu */

.submenu{
    position:absolute;
    top:100%;
    left:0;
    min-width:180px;
    background:#fff;
    border-radius:10px;
    list-style:none;
    padding:10px 0;
    margin:0;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.3s;
    z-index:999;
}

.dropdown-menu-custom:hover>.submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.submenu li{
    border-bottom:1px solid #f3f3f3;
}

.submenu li:last-child{
    border:none;
}

.submenu li a{
    display:block;
    padding:12px 22px;
    color:#333;
    text-decoration:none;
    transition:.3s;
}

.submenu li a:hover{
    background:#f5f8fc;
    color:#0095ff;
    padding-left:28px;
}

/* Search */

.search-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.94);
    z-index:99999;
    opacity:0;
    visibility:hidden;
    transition:.4s;
}

.search-overlay.active{
    opacity:1;
    visibility:visible;
}

.search-container{
    width:80%;
    max-width:1400px;
    margin:70px auto;
}

.search-box{
    display:flex;
    align-items:center;
    border-bottom:2px solid rgba(255,255,255,.5);
    padding-bottom:8px;
}

.search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 25px;
  font-weight: 300;
}
.search-box input::placeholder{
    color:#cfcfcf;
}

.search-box button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #198bcf;
  color: #fff;
  font-size: 10px;
}
.search-box button:hover {
  background: #0b5ed7;
}
.close-search{
    position:absolute;
    top:30px;
    right:40px;
    background:none;
    border:none;
    color:#fff;
    font-size:40px;
}

.search-links{
    margin:0;
    padding:0;
    list-style:none;
}

.search-links li{
    margin-bottom:18px;
}

.search-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
}

.search-links a:hover {
/*  color: #0b5ed7;*/
  text-decoration: underline;
}

.search-card img{
    width:100%;
    border-radius:6px;
}

.search-card h5{
    color:#fff;
    margin-top:15px;
    font-size:22px;
}

.search-overlay h6{
    color:#0b5ed7;
    margin-bottom:30px;
}

/* Active State */

.navbar-search-active .navbar-nav {
    display: flex !important;
}

/* Search overlay visibility is controlled by .search-overlay.active. */

.navbar-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-left: 18px;	
}
.icon-btn.menu-btn span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  margin-bottom: 6px;
  border: none;
}
/* ================= Buttons ================= */

.contact-btn {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: .3s;
  padding: 8px 20px;
  border-radius: 7px;
  font-size: 15px;
  background: #198bcf;
  border-color: #198bcf;
}

.contact-btn:hover{
    background:#0b5ed7;
    color:#fff;
}
.scrolled {
  background: #000820;
}
.close-search svg:hover {
  stroke: #198bcf;
}
/*

.icon-btn{

    color:#fff;

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:22px;

    transition:.3s;
}

.icon-btn:hover{

    color:#0c8eff;
}
*/


/* Footer============================Start */

.premium-footer {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 20, 45, .96), rgba(0, 35, 80, .92)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1600') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 80px 0 30px;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, .25), transparent 30%), radial-gradient(circle at bottom left, rgba(14, 165, 233, .15), transparent 35%);
}

.footer-logo {
  max-width: 120px;
  filter: brightness(0) invert(1);
}

.brand-title {
  font-size: 30px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0;
}

.brand-title span {
  color: #198bcf;
}

.brand-text {
  color: #cbd5e1;
  line-height: 25px;
  max-width: 320px;
  font-size: 16px;
}

.footer-heading {
  color: #198bcf;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 24px;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 36px;
  height: 2px;
  background: #198bcf;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .3s;
}

.footer-links a::after {
  content: "›";
  color: #64748b;
  transition: .3s;
}

.footer-links a:hover {
  color: #198bcf;
  padding-left: 4px;
}

.footer-links a:hover::after {
  color: #198bcf;
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: .3s;
  background: rgba(255, 255, 255, .04);
}

.social-links a:hover {
  background: #157dbb;
  border-color: #157dbb;
  transform: translateY(-3px);
}

.newsletter-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  padding: 36px;
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}

.newsletter-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #198bcf, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
  box-shadow: 0 12px 30px rgba(37, 99, 235, .35);
}

.newsletter-card h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.newsletter-card p {
  color: #cbd5e1;
  line-height: 1.8;
}

.newsletter-card .form-control {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  height: 54px;
  border-radius: 7px !important;
    padding: 11px 20px;
}

.newsletter-card .form-control::placeholder {
  color: #94a3b8;
}

.newsletter-card .form-control:focus {
  background: rgba(255, 255, 255, .08);
  border-color: #198bcf;
  box-shadow: none;
  color: #fff;
}

.btn-subscribe {
  height: 54px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: linear-gradient(135deg, #198bcf, #0ea5e9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .3s;
}

.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(37, 99, 235, .35);
}

.contact-strip {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(12px);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #198bcf, #38bdf8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, .25);
}

.contact-item small {
  display: block;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.contact-item strong {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-bottom p {
  color: #94a3b8;
}

.bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.bottom-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: .3s;
}

.bottom-links a:hover {
  color: #38bdf8;
}

@media(max-width:991px) {
  .premium-footer {
    padding: 64px 0 24px;
  }
  .brand-title {
    font-size: 34px;
  }
  .newsletter-card h3 {
    font-size: 30px;
  }
  .contact-strip {
    padding: 22px;
  }
}

@media(max-width:575px) {
  .premium-footer {
    padding: 48px 0 20px;
  }
  .brand-title {
    font-size: 28px;
  }
  .newsletter-card {
    padding: 24px;
    border-radius: 22px;
  }
  .newsletter-card h3 {
    font-size: 26px;
  }
  .contact-item {
    align-items: center;
  }
  .bottom-links {
    justify-content: center;
  }
}

/* Footer===========================End */