/* header */
html {
  scroll-behavior: smooth;
}
body { margin: 0; 
font-family: 'Inter';
 overflow-x: hidden; 
 overflow-y: auto;
}

.header {
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content:space-around;
  padding: 0 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background: transparent;
  transition: all 0.3s ease;
  width:100%;   
  /*background: linear-gradient(to bottom, #e4e9ef94, rgba(0, 0, 0, 0.25));*/
  background: rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid #5d5a5a;
}
.header-gray {
  background-color: #a3a2a1;
}

.container-header {
  width: 85%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-bottom: none;
}

/* Logo */
.logo-header {
  font-size: 22px;
  font-weight: bold;
  width:176px;
}
.logo-header:hover {
  transform: scale(1.1);
  transition: 0.4s ease;
}
.logo-header img{width:180px;}
.home-icon, .calender-icon{
      width: 46px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content:left;
    font-size: 18px;
    color: #1e3a8a;
}
/* Center Menu (Desktop) */
.navbar {
  display: flex;
  gap: 30px;
  padding: 20px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.nav-link-color {
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

/* underline */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #1d4ed8;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

/* hover animation */
.nav-link:hover::after {
  transform: scaleX(1);
}

/* Right Side */
.actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.getin {
  padding: 8px 18px;
  border: none;
  background: #007bff;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
/* Mobile Menu */
.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}


.content {
  padding: 50px;
  background: #f4f4f4;
  /*background-image: url("../images/4.JPG");
  background-position: center;*/
}
/* Button */
.btn-touch {
 width: 100%;
    padding: 10px 23px;
    background: linear-gradient(90deg, #172554, #1d4ed8);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 400;

}

/* Hover effect to make it feel interactive */
.btn-touch:hover {
  background-color: #0d38a5; /* Slightly darker blue on hover */
  transform: translateY(-2px);
}
.btn-touch-contact{
  width: 27%;
    padding: 10px 23px;
    background: linear-gradient(90deg, #172554, #1d4ed8);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 400;
}
.btn-touch-contact:hover {
  background-color: #0d38a5; /* Slightly darker blue on hover */
  transform: translateY(-2px);
}
.video-container {
  width: 100%;
  height: 70vh; /* Full screen height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.livesmarter{position:absolute; top:138px; width:95%; text-align:center; }
.livesmarter .fontsize{font-size:72px; font-weight: 100;}
.livesmarter .fontsize2{font-size:65px; color:#4c9dff; font-weight: 100;}
.livesmarter .nfontsize{color:#f2f2f2; font-size:24px; padding-top:14px;}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* This prevents stretching */
  z-index: -1; /* Puts video behind the text */
}

/* Optional: Dark overlay to make text more readable */
.video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* 40% black overlay */
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}
/* Search area */
.search-container {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  width:60%;
  padding-right:5px;
  padding-right:12px;
  margin:0 auto;
  margin-top:45px;
}

.field {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  border-left: 1px solid #e0e0e0;
  flex: 1;
}

.field:last-child {
  border-right: none;
}

.icon {
  margin-right: 8px;
  font-size: 18px;
}

select,
input[type="date"] {
  border: none;
  outline: none;
  font-size: 16px;
  padding-left:5px;
  width: 100%;
  cursor: pointer;
  background: transparent;
  -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
}
.down-arrow{color:#1e3a8a; padding-left:30px;}

.search-btn {
  background: linear-gradient(90deg, #172554, #1d4ed8);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 12px 12px 12px 12px;
}

.search-btn:hover {
  opacity: 0.9;
}

#getin{display:none}
.outergap{width: 100%;
  padding-right: 2%;
  padding-left: 2%;
  margin-right: auto;
  margin-left: auto;}
/* Responsive stsrt*/
@media (max-width: 768px) {
  .header {
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content:space-around;
  padding: 10px 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background: transparent;
  transition: all 0.3s ease;
  width:100%;   
  background: linear-gradient(to bottom, #6c757d, rgba(0, 0, 0, 0.45));
  border-bottom: 1px solid #5d5a5a;
  border-radius: 30px 30px 0px 0px;
}
.container-header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 .navbar {
    position: fixed;
    top: 70px;
    left: 0;
    transform: none;
    width: 90%;
    margin-left:5%;
    flex-direction: column;
    background: #fff;
    display: none;
    border:1px solid #c3c3c3;
    border-radius: 20px;
    animation: moveDown 0.5s ease-out;
  }
  @keyframes moveDown {
  from {
    transform: translateY(-50px); /* start from top */
    opacity: 0;
  }
  to {
    transform: translateY(0); /* normal position */
    opacity: 1;
  }
}

  .navbar a {
    padding: 1px 2px;
	text-align:center;
  color:#000000!important;
  }

  .navbar.active {
    display: flex;
    align-items: baseline;
  }
#getin{display:block;}
#getin-desk{display:none;}
  .hamburger {
    display: block;
  }
  .content {
	  width:100%;
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    margin-top:18%;
}
.livesmarter .fontsize {
    font-size: 32px!important;
}
.livesmarter .fontsize2 {
    font-size: 33px!important;
}
.livesmarter .nfontsize {
    color: #f2f2f2;
    font-size: 16px!important;
    padding-top: 14px;
}
.search-container {
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-top:30px;
  display:grid;
  width:92%;
  margin-left:4%;
}
.livesmarter {
    position: absolute;
    top:16%;
    left: 2%!important;
	right: 2%!important;
    text-align: center;
}
.search-btn{border-radius: 12px 12px 12px 12px;}


.btn-touch {
  background: linear-gradient(135deg, #1e63e9, #0a4bc4);
    color: #fff;
    border: none;
    padding: 12px 97px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}
.search-btn {
    background: linear-gradient(135deg, #1e63e9, #0a4bc4);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    margin-left:4%;
    margin-bottom: 17px;
  }
.btn-touch-contact{
  width: 45%;
}







}
/* Responsive end */