/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

/* Global Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Instrument Sans", sans-serif;
}

html,
body{
    overflow-x: hidden;
    font-family: "Instrument Sans", sans-serif;
}

body{
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #212529;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.enquiry-box::-webkit-scrollbar{
    width: 6px;
}

.enquiry-box::-webkit-scrollbar-thumb{
    background: gray;
    border-radius: 10px;
}

/* ==============================================
/* nav style 
=================================================*/

.navbar {
  position: absolute !important;
  width: 100%;
  position: sticky;
  z-index: 999;
  margin-top:20px !important;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */

.logo {
  display: flex;
  align-items: center;
  gap: 19px;
  text-decoration: none;
}

.logo img {
  width: 250px;
  height: auto;
}



/* Menu */

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
  margin-bottom: 0px;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu .active {
  color: #ff3b3b;
}

/* Button */

.book-btn {
  background: #d71d24;
  padding: 16px 28px;
  border-radius: 8px;
  color: #fff !important;
  font-weight: 600;
}

.book-btn:hover {
  background: #b9141b;
}

/* Mobile Menu */

.menu-toggle {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* Tablet */

@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }

  .nav-menu a {
    font-size: 16px;
  }

  .book-btn {
    padding: 10px 20px;
  }
}

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

  .logo img {
  width: 210px;
  height: auto;
}
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0f1638;
    flex-direction: column;
    align-items: flex-start; /* Left align items */
    gap: 20px;
    padding: 20px 30px;
    display: none;
  }

  .navbar {
  position: absolute !important;
  width: 100%;
  position: sticky;
  z-index: 999;
  margin-top:20px !important;
}

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .book-btn {
    width: auto;
    text-align: center;
  }
}

/* ==============================================
Footer style 
=================================================*/
.footer {
  position: relative;
  background-color: #071b5a;
  background-image: url("../images/Banners/footer.webp");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 71, 0.75);
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  padding: 50px 20px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-logo img {
  width: 200px;
  border-radius: 8px;
}

.footer-logo h2 {
  font-size: 20px;
  line-height: 1.3;
}

.footer-col p {
  line-height: 1.4;
  font-size: 14px;
  text-align:justify;
}

.footer-col h3 {
  color: #ffe600;
  font-size: 28px;
  margin-bottom: 25px;
  font-family: Arial, sans-serif;
}

.footer-col ul {
  list-style: none;
  margin-left: -27px;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffe600;
}

.social-icons {
  display: flex;
  gap: 20px !important;
  margin-top: 25px;
  /* justify-content:space-evenly !important; */
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
}

/* Facebook */
.social-icons a:nth-child(1) {
  background: #1877f2;
  color: #fff;
}

/* X (Twitter) */
.social-icons a:nth-child(2) {
  background: #fff;
  color: #000;
}

/* Instagram */
.social-icons a:nth-child(3) {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: #fff;
}

/* YouTube */
.social-icons a:nth-child(4) {
  background: #ff0000;
  color: #fff;
}

/* LinkedIn */
.social-icons a:nth-child(5) {
  background: #0a66c2;
  color: #fff;
}

.contact-items {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  /* align-items:center; */
}

.contact-items i {
  color: #ffe600;
  font-size: 19px;
  min-width: 25px;
  margin-top: 4px;
}

.copyright {
  position: relative;
  z-index: 2;
  background: #d3131b;
  text-align: center;
  padding: 18px;
  font-size: 16px;
}
.copyright a{
  border: none;
    outline: none;
    text-decoration: none;
    color: white;
}

/* Tablet */

@media (max-width: 992px) {
  .footer {
    background-position: center center;
    background-size: cover;
  }
  .footer-container {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .footer {
    background-position: center top;
    background-size: cover;
  }

  .footer-overlay {
    background: rgba(7, 27, 90, 0.85);
  }
  .footer-container {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .footer-col {
    margin-bottom: -10px;
    width: 100%;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .footer-col h3 {
    font-size: 28px;
    text-align: center;
  }

  /* .footer-col p {
    text-align: center;
  } */

  .contact-items{
    align-items: center;
  }
  
  .social-icons {
    justify-content: center;
  }

  .contact-item {
    /* flex-direction: column; */
    align-items: center;
    text-align: left;
    /* gap: px; */
  }

  .copyright {
    margin-top: -31px;
    font-size: 14px;
    line-height: 1.7;
    padding: 15px;
  }
  .copyright a{
  border: none;
    outline: none;
    text-decoration: none;
    color: white;
}
}

/* Small Mobile */

@media (max-width: 480px) {
  .footer {
    background-position: center center;
    background-size: cover;
  }

  .footer-container {
    padding: 30px 15px;
  }

  .footer-logo img {
    width: 120px;
  }

  .footer-logo img {
    margin-top: -18px;
    width: 213px;
  }

  .footer-logo h2 {
    font-size: 18px;
  }

  .footer-col h3 {
    text-align: left;
    font-size: 24px;
  }

  .footer-col p {
    font-size: 14px;
  }
  .footer-col li a {
    font-size: 15px;
  }
  .contact-items i {
    /* color: #ffe600;
  font-size: 19px;
  min-width: 25px; */
    margin-top: -13px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
  }
}

/* =========================
WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-btn{
    position: fixed;
    right: 1px;
    bottom: 200px;

    width: 60px;
    height: 60px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;

    box-shadow: 0 8px 25px rgba(0,0,0,.25);

    z-index: 9999;

    text-decoration: none;

    transition: .3s ease;
}

.whatsapp-btn:hover{
    background: #1ebe57;
    transform: scale(1.08);
}


/* Tablet */
@media (max-width:991px){

    .whatsapp-btn{
        width: 65px;
        height: 65px;
        font-size: 35px;

        right: 20px;
        bottom: 20px;
    }

}

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

    .whatsapp-btn{
        width: 50px;
        height: 50px;
        font-size: 32px;

        right: 7px;
        bottom: 60px;
    }

}

/* Small Mobile */
@media (max-width:480px){

      .whatsapp-btn{
        width: 50px;
        height: 50px;
        font-size: 26px;

        right: 0px;
        bottom: 126px;
    }

}



/* ===============================
  Enquiry Now
================================= */
.enquiry-btn{
    position: fixed;
    top: 46%;
    right: 0;
    transform: translateY(-50%);
    background: #d3131b;
    color: #fff;
    padding: 18px 12px;
    border-radius: 10px 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    /* line-height: 30px; */
    letter-spacing: 3.8px;
    writing-mode: vertical-rl;
    cursor: pointer;
    z-index: 99;
}

/* ===============================
   POPUP OVERLAY
================================= */
.enquiry-popup{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 99999;
}

/* ===============================
   POPUP BOX
================================= */
.enquiry-box{
    /* width: 100%; */
    max-width: 460px;
    background: #fff;
    /* border-radius: 15px; */
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);

    /* IMPORTANT */
    max-height: 90vh;
    overflow-y: auto;
}

/* Form padding */
.enquiry-box form{
    padding: 20px;
}

/* ===============================
   TITLE
================================= */
.enquiry-box h2{
    margin: 0;
    padding: 20px;
    text-align: center;
    color: #d3131b;
    font-size: 30px;
    font-weight: 700;
    text-align:left;
}

/* ===============================
   CLOSE BUTTON
================================= */
.close-btn{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    /* background: #d3131b; */
    color: #000;
    font-size: 36px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    /* border-radius:  10px; */
}

/* ===============================
   LABELS
================================= */
.enquiry-box label{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.enquiry-box label span{
    color: red;
}

/* ===============================
   INPUTS
================================= */
.enquiry-box input,
.enquiry-box select,
.enquiry-box textarea{
    width: 100%;
    border: 1px solid #cde7ff;
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.enquiry-box textarea{
    height: 100px;
    resize: none;
}

/* ===============================
   BUTTON
================================= */
.enquiry-box button{
  /* justify-content: center;
  align-items: center;
  margin-top: -13px; */
    background:#000;
    color: #fff;
    border: none;
    padding: 10px 40px;
    border-radius: 15px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin: auto;
    box-shadow: 0 8px 20px rgba(255,123,0,.3);
}

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

    .enquiry-box{
        max-width: 100%;
        /* padding: 25px; */
    }

    .enquiry-box h2{
        font-size: 32px;
        /* margin-bottom: 20px; */
    }

    .enquiry-btn {
      padding: 17px 10px;

    }

    .close-btn{
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 30px;
    }

    .enquiry-box label{
        font-size: 16px;
    }

    .enquiry-box input,
    .enquiry-box select,
    .enquiry-box textarea{
        padding: 14px;
        font-size: 15px;
            margin-bottom: 15px;
    }

    .enquiry-box button{
        width: 100%;
        font-size: 18px;
    }

    .enquiry-popup{
      padding: 10px;
    }
}

@media(max-width:480px){

    .enquiry-box{
      margin-top: 30px;
        padding: 5px;
    }

    .enquiry-box h2{
        font-size: 24px;
        text-align:left;
    }

    .close-btn{
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 26px;
    }
}



/* ── Overlay ── */
.enq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}


.enq-field-label span {
    color: red;
}

.enq-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ── Popup box ── */
.enq-modal {
  background: #fff;
  /* border-radius: 12px; */
  /* width: 90%; */
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.enq-overlay.active .enq-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ── Scrollbar (webkit) ── */
.enq-modal::-webkit-scrollbar {
  width: 4px;
}
.enq-modal::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.enq-modal::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}

/* ── Sections ── */
.enq-modal-header {
  padding: 1.5rem 1.5rem 0;
}

.enq-modal-body {
  padding: 0 1.5rem;
}

.enq-modal-footer {
  padding: 0.75rem 1.5rem 1.5rem;
}

/* ── Close button ── */
.enq-close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: 1px solid #e0e0e0;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: #888;
  padding: 3px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.enq-close-btn:hover {
  background: #f0f0f0;
  color: #333;
}

/* ── Heading ── */
.enq-heading {
  font-size: 22px;
  font-weight: 700;
  color: #C0141C;
  margin: 0 0 1.25rem;
  letter-spacing: -0.3px;
}

/* ── Fields ── */
.enq-field-wrap {
  margin-bottom: 1rem;
}

.enq-field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}

.enq-input,
.enq-textarea,
.enq-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #222;
  outline: none;
  box-sizing: border-box;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.enq-input:focus,
.enq-textarea:focus,
.enq-select:focus {
  border-color: #C0141C;
  box-shadow: 0 0 0 3px rgba(192, 20, 28, 0.12);
}

.enq-textarea {
  resize: vertical;
  min-height: 90px;
}

/* ── Select dropdown ── */
.enq-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.enq-select option {
  color: #222;
  background: #fff;
}

.enq-select option:disabled {
  color: #aaa;
}

/* Placeholder color when default selected */
.enq-select.enq-select--placeholder {
  color: #aaa;
}

/* ── Submit button ── */
.enq-submit-btn {
  width: 100%;
  padding: 12px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.enq-submit-btn:hover {
  background: #333;
}

.enq-submit-btn:active {
  transform: scale(0.98);
}

/* ── Success state ── */
.enq-success-wrap {
  display: none;
  text-align: center;
  padding: 2rem 1.5rem;
}

.enq-success-icon {
  font-size: 52px;
  color: #16a34a;
  margin-bottom: 12px;
}

.enq-success-title {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
}

.enq-success-msg {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .enq-modal {
    width: 95%;
    border-radius: 10px;
    max-height: 92vh;
  }

  .enq-modal-header,
  .enq-modal-body,
  .enq-modal-footer {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .enq-heading {
    font-size: 18px;
  }

  .enq-input,
  .enq-textarea,
  .enq-select {
    font-size: 13px;
    padding: 9px 11px;
  }

  .enq-select {
    padding-right: 32px;
  }

  .enq-submit-btn {
    font-size: 14px;
    padding: 11px;
  }
}

@media (max-width: 360px) {
  .enq-heading {
    font-size: 16px;
  }

  .enq-field-label {
    font-size: 12px;
  }
}