/* GLOBAL FIX */
html, body {
  overflow-x: hidden;
}

/* COMMON ISSUE FIX */
* {
  max-width: 100%;
}

/* BOOTSTRAP ROW FIX */
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.container {
  max-width: 100%;
  overflow: hidden;
}
.main-header{
background:#fff;
padding:16px 0;
border-bottom:1px solid #eee;
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
}

/* LOGO */

.logo img{
height:70px;
}

/* DESKTOP MENU */

/* MENU */
.desktop-menu ul{
  display:flex;
  gap:30px;
  list-style:none;
}

.desktop-menu ul li{
  position:relative;
}

.desktop-menu ul li a{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

/* DROPDOWN */
.dropdown{
  position:absolute;
  top:100%;
  left:0;
  display:none;
  background:#fff;
  min-width:220px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  border-radius:10px;
  padding:10px 0;
}

/* 🔥 FIX (important) */
.dropdown li{
  display:block;
}

.dropdown li a{
  display:block;
  padding:10px 15px;
}

.dropdown li a:hover{
  background:#f5f5f5;
}

/* SHOW ON CLICK */
.has-dropdown.active .dropdown{
  display:block;
}

.desktop-menu a{
text-decoration:none;
color:#222; font-size:17px;
font-weight:500;
}

/* CALL BUTTON */

.call-buttons{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.call-btn{
display:inline-flex;
align-items:center;
gap:8px;
background:#1f5f8b;
color:#fff;
padding:10px 18px;
border-radius:30px;
text-decoration:none;
font-weight:500;
transition:.3s;
}

.call-btn:hover{
background:#0f3e5c;
}

/* MOBILE ICON */

.mobile-toggle{
display:none;
font-size:30px;
cursor:pointer;
}

/* MOBILE MENU */

.mobile-menu{
position:fixed;
top:0;
right:-320px;
width:320px;
height:100%;
background:#fff;
padding:40px 30px;
transition:.4s;
z-index:999;
}

.mobile-menu.active{
right:0;
}

.mobile-menu ul{
list-style:none;
padding:0;
}

.mobile-menu li{
margin:20px 0;
}

.mobile-menu a{
text-decoration:none;
font-size:18px;
color:#222;
}

/* CLOSE */

.close-menu{
font-size:22px;
margin-bottom:20px;
cursor:pointer;
}

/* OVERLAY */

.menu-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.4);
opacity:0;
visibility:hidden;
transition:.3s;
}

.menu-overlay.active{
opacity:1;
visibility:visible;
}

/* MOBILE */

@media(max-width:991px){

.desktop-menu{
display:none;
}

.call-btn{
display:none;
}

.mobile-toggle{
display:block;
}

}


/* SECTION */
.hero-section {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

/* SLIDER */
.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out, transform 8s ease;
  transform: scale(1);
}

.slide.active {
  opacity: 1;
  transform: scale(1.08);
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.3));
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 80px;
  max-width: 600px; background: rgba(0,0,0,0.6);
  color: #fff;
}

/* HEADING */
.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
}

.hero-content h1::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ffcc00;
  display: block;
  margin-top: 10px;
}

/* LOCATION */
.location {
  margin: 15px 0;
  font-size: 16px;
}

/* FEATURES */
.hero-features {
  list-style: none;
  padding: 0;
}

.hero-features li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.hero-features li::before {
 content: "✔";
  position: absolute;
  left: 0;
  color: #ffcc00;
}

/* PRICE BOX */
.price-box {
  display: flex;
  gap: 15px;
}

.bhk {
  background: #fff;
  color: #000;
  padding: 12px 18px;
  border-radius: 8px; font-weight:600;
}

.price {
  background: #ffcc00;
  color: #000;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
}

/* BUTTON */
.hero-btn {
  margin-top: 20px;
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
}

@media(max-width:768px){

  /* HERO SECTION STACK */
  .hero-section {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  /* SLIDER FIRST */
  .hero-slider {
    position: relative;
    height: 250px; /* mobile height */
  }

  .slide {
    height: 250px;
  }

  /* REMOVE OVERLAY POSITION ISSUE */
  .hero-overlay {
    display: none;
  }

  /* CONTENT BELOW SLIDER */
  .hero-content {
    position: relative;
    background: #015aac;
    color: #fff;
    padding: 20px 15px;
    text-align: left;
  }

  /* TEXT FIX */
  .hero-content h1 {
    font-size: 22px;
  }

  .hero-features li {
    font-size: 14px;
  }

  /* PRICE BOX */
  .price-box {
    flex-direction: column;
    gap: 10px;
  }

}





.about-section{
padding:80px 0;
background:#f7f8fb;
}

/* IMAGE */

.about-img{
position:relative;
padding:20px;
}

.about-img img{
width:100%;
border-radius:8px;
box-shadow:0 16px 40px rgba(0,0,0,0.15);
}

/* CONTENT */

.about-content{
text-align:left;
padding-left:40px;
}

.about-location{
font-size:16px;
color:#333;
margin-bottom:10px;
}

.about-location i{
color:#1f5f8b;
margin-right:6px;
}

.about-content h2{
font-size:36px;
font-weight:700;
margin-bottom:16px;
}

.about-content p{
font-size:16px;
color:#222;
line-height:1.7;
margin-bottom:16px;
}

/* BUTTON */

.brochure-btn{
display:inline-block;
margin-top:10px;
background:#1f5f8b;
color:#fff;
padding:12px 22px;
border-radius:6px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.brochure-btn:hover{
background:#164768;
color:#fff;
}

/* MOBILE */

@media(max-width:991px){

.about-content{
padding-left:0;
margin-top:30px;
}

.about-content h2{
font-size:28px;
}

}


.price-section {
  padding: 80px 10px;
  background: #f5f1ea;
  text-align: center;
}

.price-section h2 {
  font-size: 36px;
  margin-bottom: 5px;
}

.price-section p {
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.price-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.price-card {
  background: #fff;
  padding: 30px;
  width: 350px;
  border-radius: 12px;
  text-align: left;
  position: relative;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* TOP BORDER COLORS */
.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff7a00, #014f9a);
  border-radius: 12px 12px 0 0;
}

/* HOVER */
.price-card:hover {
  transform: translateY(-5px);
}

/* TEXT */
.price-card h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.price-card p {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.price-card h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.price-card span {
  font-size: 14px;
  color: #666;
}

/* BUTTON */
.enquire-btn {
  width: 100%;
  margin-top: 20px;
  background: #2d5c7f;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.enquire-btn:hover {
  background: #1f3f59;
}

/* RESPONSIVE */
@media(max-width:768px){
  .price-grid {
    flex-direction: column;
    align-items: center;
  }
}



/* POPUP BACKGROUND */

.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

/* FORM BOX */

.popup-form{
width:420px;
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,0.3);
animation:popup 0.3s ease;
}

/* HEADER */

.popup-header{
background:#2b5f86;
color:#fff;
padding:16px;
font-size:20px;
font-weight:600;
display:flex;
justify-content:space-between;
}

.popup-header span{
cursor:pointer;
}

/* BODY */

.popup-body{
padding:20px;
}

/* INPUT */

.input-box{
display:flex;
align-items:center;
border:1px solid #ddd;
border-radius:6px;
margin-bottom:12px;
overflow:hidden;
}

.input-box i{
background:#2b5f86;
color:#fff;
padding:12px;
}

.input-box input{
border:none;
padding:12px;
width:100%;
outline:none;
}

/* BUTTON */

.callback-btn{
width:100%;
background:#2b5f86;
color:#fff;
border:none;
padding:12px;
border-radius:6px;
margin-top:8px;
}

.call-btn{
display:block;
background:#2b5f86;
color:#fff;
text-align:center;
padding:12px;
margin-top:10px;
border-radius:6px;
text-decoration:none;
}

/* ANIMATION */

@keyframes popup{
from{
transform:scale(0.9);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}




/* SECTION */
.highlights-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f9f9f9, #f1f1f1);
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.highlights-section h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlights-section h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #ff7a00;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.highlights-section p {
  color: #777;
  margin-bottom: 50px;
}

/* GRID */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.highlight-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* TOP GRADIENT LINE */
.highlight-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #ff7a00, #014f9a);
}

/* ICON */
.highlight-box i {
  font-size: 28px;
  color: #fff;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 15px;
}

/* TEXT */
.highlight-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.highlight-box p {
  font-size: 14px;
  color: #666;
}

/* HOVER EFFECT */
.highlight-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.highlight-box:hover i {
  background: linear-gradient(135deg, #014f9a, #2b5f86);
}

/* RESPONSIVE */
@media(max-width:992px){
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlights-section h2 {
    font-size: 28px;
  }
}


#Gallery{padding-top:30px;}

/* SECTION */
.aero-amenities-section {
  padding: 80px 20px;
  background: #f7f7f7;
}

/* WRAPPER */
.aero-amenities-wrapper {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* LEFT IMAGE */
.aero-left-img {
  flex: 1;
}

.aero-left-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* RIGHT SHAPE */
.aero-right-shape {
  flex: 1;
  background: linear-gradient(135deg, #015eac, #054d89);
  border-radius: 80px 0 80px 0;
  padding: 40px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* DECOR SHAPE */
.aero-right-shape::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

/* CONTENT */
.aero-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

/* TAG */
.aero-tag {
  background: rgba(255,255,255,0.2);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 15px;
}

/* LIST */
.aero-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.aero-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.aero-list li::before {
  content: "\f26e" !important; /* check icon */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: #fff;
}

/* BUTTON */
.aero-btn {
  display: inline-block;
  background: #fff;
  color: #222;
  padding: 10px 25px;

  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.aero-btn:hover {
  background: #000;
  color: #fff;
}

/* RESPONSIVE */
@media(max-width:768px){
  .aero-amenities-wrapper {
    flex-direction: column;
  }

  .aero-right-shape {
    border-radius: 30px;
    padding: 30px;
  }
  .connect-vertical-btn{display:none !important;}
  .floating-contact{display: none !important;}
  .floor-left{margin-bottom:40px !important;}
}






#gallery1{
padding:90px 0;
background:#fff;
}



#gallery{
padding:90px 0;
background:#f4f0e9;
}

/* TITLE */

.gallery-title{
font-size:38px;
font-weight:700;
margin-bottom:10px;
}

.gallery-text{
color:#222;
}

/* CARD */

.gallery-card{
position:relative;
overflow:hidden;
border-radius:10px;
}

.gallery-card img{
width:100%;

transition:.4s;
}

/* HOVER */

.gallery-card:hover img{
transform:scale(1.1);
}

/* OVERLAY */

.gallery-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(31,95,139,0.6);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:.3s;
}

.gallery-overlay i{
color:#fff;
font-size:28px;
}

.gallery-card:hover .gallery-overlay{
opacity:1;
}








.floor-section{
padding:90px 0;
background:#f7f8fb;
}

/* LEFT */

.floor-left h2{
font-size:38px;
font-weight:700;
margin-bottom:16px;
}

.floor-left p{
color:#222;
line-height:1.7;
margin-bottom:25px;
}

.floor-btn{
background:#1f5f8b;
color:#fff;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
}

/* CARD */
.floor-card{
position:relative;
overflow:hidden;
border-radius:12px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* IMAGE BLUR */

.floor-card img{
width:100%;

}

/* OVERLAY */

.floor-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;
}

/* BUTTON */

.view-btn{
background:#fff;
padding:16px 30px;
border-radius:30px;
text-decoration:none;
font-weight:600;
color:#333;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
transition:.3s;
}

.view-btn:hover{
background:#1f5f8b;
color:#fff;
}





/* SECTION */
.aero-loc-map-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f9f9f9, #eef1f5);
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.aero-loc-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

/* MAP */
.aero-map-box {
  flex: 1;
  position: relative;
}

.aero-map-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.aero-map-box:hover img {
  transform: scale(1.05);
}

/* RIGHT CONTENT */
.aero-loc-content {
  flex: 1;
}

.aero-loc-content h2 {
  font-size: 34px;
  margin-bottom: 25px;
}

/* GRID */
.aero-loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CARD */
.aero-loc-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.aero-loc-card:hover {
  transform: translateY(-5px);
}

/* TEXT */
.aero-loc-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

/* BADGE */
.aero-loc-card span {
  background: #ff7a00;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .aero-loc-container {
    flex-direction: column;
  }

  .aero-loc-grid {
    grid-template-columns: 1fr;
  }

  .aero-loc-content h2 {
    font-size: 26px;
  }
}






.contact-section{
padding:90px 0;
background:#e9e2d8;
}

/* TITLE */

.contact-title{
font-size:32px;
font-weight:700;
letter-spacing:2px;
margin-bottom:15px;
}

.contact-text{
color:#222;
line-height:1.7;
margin-bottom:25px;
}

/* CONTACT PILLS */

/* CONTACT INFO COLUMN */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* PHONE */
.contact-phone-new {
  font-size: 22px;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 40px;
  animation: pulseNew 1.5s infinite;
}

.contact-phone-new a {
  font-size: 22px;
  font-weight: 700;
}

/* ANIMATION */
@keyframes pulseNew {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* SOCIAL BELOW */
.contact-social-new {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

/* ICON STYLE */
.contact-social-new a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}

/* FACEBOOK ORIGINAL */
.social-fb {
  background: #1877f2;
}

/* INSTAGRAM ORIGINAL */
.social-insta {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
}

/* HOVER */
.contact-social-new a:hover {
  transform: translateY(-5px) scale(1.1);
}

.contact-pill{
background:#fff;
padding:10px 20px;
border-radius:30px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
display:flex;
align-items:center;
gap:8px;
font-weight:500;
}

.contact-pill i{
color:#1f5f8b;
}

/* FORM BOX */

.contact-form-box{
background:#fff;
padding:30px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-box input[type="text"],
.contact-form-box input[type="tel"],
.contact-form-box input[type="email"]{
width:100%;
padding:12px;
border:none;
border-bottom:1px solid #ccc;
outline:none;
}
.contact-pill a{
color:inherit;
text-decoration:none;
font-weight:500;
}
/* BUTTON */

.contact-form-box button{
width:100%;
background:#fa7c1c;
color:#fff;
border:none;
padding:16px;
font-weight:600;
letter-spacing:1px;
}





.disclaimer-section{
background:#000;
color:#fff;
padding:40px 0;
}

.rera-number{
font-size:16px;
margin-bottom:20px;
}

.disclaimer-text{
max-width:900px;
margin:auto;
line-height:1.7;
font-size:16px;
color:#ccc;
}

.footer-links{
margin-top:20px;
}

.footer-links a{
color:#fff;
text-decoration:none;
margin:0 10px;
font-size:16px;
}








.floating-contact{
position:fixed;
left:20px;
bottom:36px;
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
}

.floating-contact a{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:20px;
box-shadow:0 6px 15px rgba(0,0,0,0.25);
text-decoration:none;
}

.float-call{
background:#1f5f8b;
}

.float-whatsapp{
background:#25D366;
}


/* HIDE DESKTOP */
.aero-bottom-bar {
  display: none;
}

/* MOBILE */
@media(max-width:768px){

  .aero-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }

  /* COMMON BUTTON */
  .aero-btn {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: none;
  }

  /* COLORS */
  .aero-call {
    background: #004aad;
  }

  .aero-whatsapp {
    background: #25D366;
  }

  .aero-connect {
    background: #ff7a00;
  }

  /* ICON */
  .aero-btn i {
    margin-right: 5px;
  }

}




#topBtn{
position:fixed;
right:20px;
bottom:40px;
width:45px;
height:45px;
border:none;
border-radius:50%;
background:#fa7c1c;
color:#fff;
font-size:20px;
display:none;
align-items:center;
justify-content:center;
cursor:pointer;
box-shadow:0 6px 15px rgba(0,0,0,0.25);
z-index:999;
transition:0.3s;
}

#topBtn:hover{
background:#0f3e5c;
transform:translateY(-3px);
}










/* CONNECT BUTTON */

.connect-fixed-btn{
position:fixed;
right:0;
top:45%;
transform:translateY(-50%);
background:#d19a49;
color:#fff;
padding:12px 25px;
border:none;
border-radius:30px 0 0 30px;
font-weight:600;
cursor:pointer;
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* SLIDE PANEL */

.connect-form-panel{
position:fixed;
right:-360px;
top:0;
width:360px;
height:100%;
background:#fff;
padding:25px;
box-shadow:-5px 0 25px rgba(0,0,0,0.2);
transition:0.4s;
z-index:1000;
overflow:auto;
}

.connect-form-panel.active{
right:0;
}

/* HEADER */

.connect-form-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px;
}

.connect-form-header span{
font-size:26px;
cursor:pointer;
}

/* TEXT */

.connect-form-text{
font-size:16px;
margin-bottom:20px;
color:#222;
}

/* INPUT */

.connect-form-panel input{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
}

/* BUTTON */

.connect-submit-btn{
width:100%;
background:#fa7c1c;
color:#fff;
border:none;
padding:12px;
border-radius:25px;
margin-bottom:20px;
}

/* CONTACT INFO */

.connect-contact-info p{
font-size:16px;
margin-bottom:8px;
}

.connect-vertical-btn{
position:fixed;
right:-68px;
top:75%;
transform:rotate(-90deg);
background:#fa7c1c;
color:#fff;
padding:12px 25px;
border:none;
font-weight:600;
letter-spacing:1px;
border-radius:6px 6px 0 0;
cursor:pointer;
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
transition:0.3s;
}

.connect-vertical-btn:hover{
background:#b98434;
}















.legal-section{
padding:80px 0;
background:#f7f8fb;
}

/* BOX */

.legal-box{
max-width:950px;
margin:auto;
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* MAIN TITLE */

.legal-box h1{
font-size:34px;
font-weight:700;
margin-bottom:20px;
text-align:center;
}

/* SECTION TITLE */

.legal-box h2{
margin-top:25px;
font-size:24px;
font-weight:600;
color:#1f5f8b;
}

/* SUB TITLE */

.legal-box h3{
margin-top:20px;
font-size:18px;
font-weight:600;
}

/* TEXT */

.legal-box p{
line-height:1.8;
color:#555;
margin-bottom:15px;
font-size:15px;
}






.terms-section{
padding:80px 0;
background:#f7f8fb;
}

/* BOX */

.terms-box{
max-width:950px;
margin:auto;
background:#fff;
padding:40px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* TITLE */

.terms-box h1{
font-size:34px;
font-weight:700;
margin-bottom:20px;
text-align:center;
}

/* HEADINGS */

.terms-box h3{
margin-top:25px;
font-size:20px;
font-weight:600;
color:#1f5f8b;
}

/* TEXT */

.terms-box p{
line-height:1.8;
color:#555;
margin-bottom:15px;
}

/* LIST */

.terms-box ul{
padding-left:20px;
}

.terms-box ul li{
margin-bottom:8px;
color:#555;
}








/* TOP STRIP */
/* TOP STRIP */
.sky-top-strip {
  background: linear-gradient(90deg, #014f9a, #2b5f86);
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 14px; font-weight:600;
}
/* MENU BAR */
.aero-menu-bar {
  background: #fff;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  position: relative; z-index:999;
}

/* CENTER MENU */
.aero-menu-center {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 18px 0;
}

.aero-menu-center li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
}

/* HOVER */
.aero-menu-center li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff7a00;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.aero-menu-center li a:hover::after {
  width: 100%;
}

/* TOGGLE */
.aero-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE VIEW FIX */
@media(max-width:768px){

  /* TOP MENU BACKGROUND */
  .aero-menu-bar {
    background: #014f9a; /* change color if needed */
    text-align: center;
    padding: 27px 0;
    position: relative;
  }

  /* CENTER HAMBURGER */
  .aero-menu-toggle {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    color: #fff;
    font-size: 26px;
    z-index: 999;
  }

  /* HIDE DUPLICATE HAMBURGER */
  .main-header .navbar-toggler {
    display: none !important;
  }

  /* MENU DROPDOWN */
  .aero-menu-center {
    width: 100%;
    background: #fff;
    position: absolute;
    top: 50px;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .aero-menu-center.active {
    display: flex;
  }

  .call-btn {display:none;}

}