:root {
  --header-height: 72px;
  --header-bg: rgba(255, 255, 255, 0.7);
  --feature-cycle: 3.6s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: rgb(0, 35, 77, 1) !important;
}

body {
  background-color: #ae9b93;
  background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.11) 1px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 2px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0 2px,
      transparent 2px 10px
    );
  background-size: 14px 14px, 100% 100%, 10px 10px;
  background-blend-mode: overlay, normal, overlay;
  padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-container {
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 10000;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding: 0 6%;
  background: var(--header-bg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

#fixed-header-nav {
  margin: 0 auto;  
}

li a button {
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  list-style: 0;
}

.logo {
  cursor: pointer;
  width: 48x;
  height: 45px;
  object-fit: contain;
  background-color: rgb(0, 35, 77, 1) !important;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.channel-partner-text {
  font-size: 8px;
  color: #666;
  font-weight: 200;
  line-height: 1;
  margin-left: 2px;
  letter-spacing: 0.3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links li {
  display: inline-block;
}

.nav__links li a {
  display: inline-block;
  transition: 0.15s ease, transform 0.12s ease;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav__links li a:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  transform: translateY(-2px);
}

button {
  background-color: #ffffff4d !important;
  border: none;
  padding: 10px;
  color: #642e11 !important;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.hero-card {
  position: absolute;
  top: 100px;
  right: 20px;
  transform: none;
  width: min(30%, 400px);
  height: 600px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  z-index: 20;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.hero-card,
.hero-card * {
  color: white !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-card__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.hero-card__tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(90deg, #ff8a5b 0%, #642e11 100%) !important;
  margin-bottom: 6px;
  margin-top: 6px;
  padding: 8px;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  letter-spacing: 0.4px;
}

.hero-card__title {
  margin: 0 0 6px 0;
  font-size: 20px;
  line-height: 1.05;
  color: #fff;
}

.hero-card__sub {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.hero-card__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
}

.hero-card__list li {
  margin: 6px 0;
}

.hero-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 10px;
  color: black;
  font-size: 13px;
}

@keyframes rp-blink {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.15;
    transform: translateY(-2px);
  }
}

.hero-card__features span {
  background: rgba(0, 0, 0, 0.35) !important;
  color: white !important;
  padding: 10px 10px;
  text-align: center;
  font-size: medium;
  border-radius: 8px;
  animation: rp-blink 1.6s ease-in-out infinite;
}

.hero-card__features span:nth-child(1) {
  animation-delay: 0s;
}

.hero-card__features span:nth-child(2) {
  animation-delay: 0.13s;
}

.hero-card__features span:nth-child(3) {
  animation-delay: 0.26s;
}

.hero-card__features span:nth-child(4) {
  animation-delay: 0.39s;
}

.hero-card__note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
}

.hero-card__right {
  width: 100%;
  flex: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-card__price-label {
  font-size: 13px;
  color: black;
}

.hero-card__price {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff !important;
  background: linear-gradient(90deg, #ff8a5b 0%, #642e11 100%) !important;
  padding: 8px 10px;
  border-radius: 8px;
  margin-top: 6px;
  box-shadow: 0 6px 14px rgba(100, 46, 17, 0.18);
}

.enquire-btn-con {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.enquire-btn {
  margin-top: 6px;
  width: 150px;
  background: #ff8a5b;
  color: white!important;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: medium;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(100, 46, 17, 0.14);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.enquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(100, 46, 17, 0.18);
}

.hero-card--dark {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.28));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#main-image-con {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  overflow: hidden;
}

#main-image-con img {
  width: 100%;
  height: 100%;
  object-fit: cover;                  
  object-position: center center; 
}

#contact-us {
  background: #642e11;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: box-shadow 0.12s ease, transform 0.12s ease;
}

#contact-us:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(100, 46, 17, 0.18);
}

.whatsapp-fab {
  position: fixed;
  background: transparent !important;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.whatsapp-fab__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 50%;
  background: linear-gradient(180deg, #06b257, #059e4a);
  box-shadow: 0 10px 28px rgba(2, 10, 30, 0.28);
  text-decoration: none;
  color: white;
  position: relative;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.whatsapp-tooltip {
  position: absolute;
  right: 30px;
  bottom: 50%;
  transform: translateY(50%) translateX(6px);
  background: #25d366 !important;
  color: #ffffff !important;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.whatsapp-fab .whatsapp-tooltip {
  opacity: 1 ;
  visibility: visible;
  transform: translateY(50%) translateX(0) !important;
}

.whatsapp-fab__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11,36,64,0.18);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 1200px) {
  header {
    padding: 0 4%;
  }
  .hero-card {
    display: none;
  }
  .channel-partner-text {
    font-size: 6px;
  }
}

@media (max-width: 900px) {
  header {
    padding: 0 6%;
    --header-height: 64px;
  }

  .channel-partner-text {
    font-size: 6px;
  }
  .nav__links li a {
    padding: 4px 6px;
    font-size: 8px;
  }

  #fixed-header-nav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }

  #contact-us {
    font-weight: 100;
    font-size: xx-small;
  }

  .hero-card {
    display: none;
  }

  #fixed-header-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }
}

@media (max-width: 520px) {
  header {
    padding: 0 12px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .channel-partner-text {
    font-size: 6px;
  }
  .nav__links {
    gap: 6px;
  }

  .whatsapp-fab__link {
    width: 44px;
    height: 44px;
  }
  .whatsapp-tooltip {
    right: 62px;
    font-size: 12px;
    padding: 6px 8px;
  }
  .hero-card {
    display: none;
  }
}

.call-fab {
  position: fixed;
  bottom: 70px;    
  right: 22px;
  z-index: 1100;
}

.call-fab__link {
  pointer-events: auto;
  display: inline-flex;
  width: auto;
  height: auto;
  border-radius: 50%;
  background: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(11, 36, 64, 0.18);
  text-decoration: none;
  position: relative;
}

.call-icon {
  width: 20px;
  height: 20px;
  fill: #ffffff; 
}

.call-tooltip {
  position: absolute;
  right: calc(100% + 14px);   
  top: 50%;
  transform: translateY(-50%) translateY(2px);
  background: #0b69ff;        
  color: #ffffff !important;
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(11,36,64,0.12);
  opacity: 1;
  visibility: visible;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 1200;
  pointer-events: none;
}

.call-fab__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11,36,64,0.18);
}

@media (max-width: 768px) {
.call-fab {
    bottom: 70px !important;
}

.call-icon{
  width: 20px;
}
  
.call-fab__link{
  width: 40px;
  height: 40px;
}
}

.lead-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center; 
  padding: 0;
}

.lead-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  outline: none;
  transition: none !important;
}

.lead-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.lead-icon:hover,
.lead-icon:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

#left-lead-form {
  position: absolute;            
  top: 100px;                    
  left: 20px;                   
  width: min(30%, 200px);        
  min-width: 280px;
  height: 360px;
  padding: 16px;

  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.03)
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);

  z-index: 20;                
  
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#left-lead-form h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #00234d;
  margin-bottom: 10px;
}

#left-lead-form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
}

#left-lead-form button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
}

.lead-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;          
  margin-top: 18px;   
}

#left-lead-form {
  display: none;
}

body.show-lead #left-lead-form {
  display: block;
}

#left-lead-form input {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #000 !important;
}

#left-lead-form h3,
#left-lead-form label,
#left-lead-form span {
  color: black !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

#left-lead-form button {
  background: linear-gradient(90deg, #ff8a5b, #642e11);
  color: black !important;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
}

@media (max-width: 768px) {

  html, body {
    overflow-x: hidden;
  }

  #section-1 {
    margin: 0;
    padding: 0 ;
  }

  #main-image-con {
    height: auto;
    margin-top:  -8px ;
    padding-top:  0;
  }

  #main-image-con img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }
  
  body.show-lead #left-lead-form {
    position: fixed;
    top: 65px ;
    left: 50%;
    transform: translateX(-50%);

    width: 75% ;
    max-width: 260px;
    padding: 8px;

    border-radius: 10px;
    z-index: 9999 ;

    max-height: 200px !important;
    overflow-y: auto !important;   
  }

  body.show-lead #left-lead-form h3 {
    font-size: 13px;
    margin-bottom: 4px ;
  }

  body.show-lead #left-lead-form input {
    padding: 6px;       
    font-size: 12px;
    margin-bottom: 6px;
  }

  body.show-lead #left-lead-form button {
    padding: 8px;
    font-size: 13px;
    margin-bottom: 6px;
  }

  body.show-lead .lead-icons {
    margin-top: 6px;
    gap: 6px ;
  }

  body.show-lead .lead-icon {
    width: 26px;
    height: 26px ;
  }

  .line {
  width: 100%;
  text-align: center;
  margin: 40px 0;
  position: relative;
  font-size: 22px;
  color: #6c5f54;   
  letter-spacing: 8px;
}

.line::before,
.line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #8a827c; 
}

.line::before {
  left: 0;
}

.line::after {
  right: 0;
}
}

@media (max-width: 520px) {
  header {
    padding: 0 12px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .channel-partner-text {
    font-size: 6px;
  }
  .nav__links {
    gap: 6px;
  }

  .whatsapp-fab__link {
    width: 44px;
    height: 44px;
  }
  .whatsapp-tooltip {
    right: 62px;
    font-size: 12px;
    padding: 6px 8px;
  }
  .hero-card {
    display: none;
  }

  #left-lead-form {
    width: calc(100% - 24px) !important;
    margin: 12px auto !important;
    padding: 12px !important;
  }
}

#left-lead-form {
  display: block;
}
 
.text-box{
  width: 65%;
  position: absolute;
  top: 67%;
  left: 34%;
  transform: translate(-50%, -50%);
}

.text-box h1{
  font-size: 22px;
  color: white;
  text-shadow: 0px 1px 6px hwb(80 98% 1%);
}













