/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  margin: 0;
}


:root {
  --primary: #1e88e5;     /* Main Blue */
  --dark-blue: #0d3c78;   /* Top bar */
  --light-blue: #42a5f5;  /* Hover / gradient */
  --accent: #f4c430;      /* Yellow highlight */
  --white: #ffffff;
  --text: #333333;
}

/* TOP BAR */
.top-bar {
    background: var(--dark-blue);
  color: var(--white);
  font-size: 14px;
  padding-bottom: 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 15px;
}

/* DESKTOP */
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

/* RIGHT SIDE */
.top-bar .right {
  display: flex;
  gap: 15px;
}

/* 🔥 MOBILE PERFECT FIX */
@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: row;
    align-items: center;
    text-align: center;
  }

  .top-bar .right {
    flex-direction: column;
    gap: 2px;
    margin-top: 5px;
  }
}






/* NAVBAR */
/* NAVBAR */
/* NAVBAR */
/* NAVBAR */
/* NAVBAR */
/* NAVBAR */
/* NAVBAR (OVERLAY ON HERO) */
/* NAVBAR (OVERLAY ON HERO) */
/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 100;
}
.overlay.active { opacity: 1; visibility: visible; }

/* ===== NAVBAR ===== */
.navbar {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1000;
 background: rgb(255 255 255 / 34%);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 80px; }
.logo span { font-size: 18px; font-weight: 600; }

/* DESKTOP NAV */
.nav-links ul { display: flex; gap: 25px; list-style: none; margin: 0; padding: 0; }
.nav-links ul li { position: relative; }
.nav-links a { text-decoration: none; color: white; font-weight: 800; display: flex; align-items: center; gap: 4px; }

/* HOVER EFFECT */
.nav-links a:hover {
  color: var(--primary-blue);
}
/* DESKTOP DROPDOWN */
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: 10px;
  min-width: 180px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 999;
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
.dropdown:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a { display: block; padding: 10px 15px; font-weight: 500; font-size: 14px;  color: #444; }
.submenu li a:hover { background: #f5f5f5; color: #000; }

/* Arrow */
.arrow { display: inline-flex; align-items: center; transition: transform 0.3s ease; }
.arrow svg { width: 13px; height: 13px; }

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.menu-toggle span {
  display: block; width: 23px; height: 2.5px; background: #ffffff;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== MOBILE DRAWER ===== */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -105%;
  width: 78%;
  max-width: 300px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  border-radius: 14px 0 0 14px;
  box-shadow: -6px 0 28px rgba(0,0,0,0.15);
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
  padding: 22px 18px;
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }

/* Drawer header */
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f0;
}
.drawer-title { font-size: 15px; font-weight: 700; color: #1a1a1a; }
.drawer-close {
  width: 32px; height: 32px; border-radius: 8px; background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; color: #555; border: none; font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.drawer-close:hover { background: #ffe5e5; color: #e53935; }

/* Drawer list */
.drawer-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.drawer-nav li > a {
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; color: #222; font-weight: 600; font-size: 14.5px;
  padding: 11px 12px; border-radius: 10px; transition: background 0.18s, color 0.18s;
}
.drawer-nav li > a:hover { background: #f0faf5; }

/* Drawer accordion */
.drawer-submenu {
  list-style: none; max-height: 0; overflow: hidden;
  background: #f6f6f6; border-radius: 10px; margin: 3px 0 4px 0;
  transition: max-height 0.32s ease;
}
.drawer-dropdown.open > .drawer-submenu { max-height: 250px; }
.drawer-submenu li a {
  display: block; padding: 9px 16px; font-size: 13.5px;
  font-weight: 500; color: #444; text-decoration: none; border-radius: 8px;
  transition: background 0.18s;
}
.drawer-submenu li a:hover { background: #ebebeb; }
.drawer-dropdown.open > a .arrow { transform: rotate(180deg); }

/* Drawer contact */
.drawer-contact { margin-top: 24px; padding-top: 18px; border-top: 1px solid #f0f0f0; }
.drawer-contact p { font-size: 12.5px; color: #888; line-height: 2; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .mobile-drawer { display: flex; }
  .navbar{top: 55px;}
}







/* HERO */
.hero {
  position: relative;
  /* height: 100vh; */
  height: 90vh;
  width: 100%;
  overflow: hidden;
}

/* BACKGROUND */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-bg img,
.hero-bg video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-bg img.active,
.hero-bg video.active {
  opacity: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.114);
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-btn {
  background: #f4c430;
  padding: 12px 25px;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }
}







/* RATING SECTION */
.rating-section {
  background: #eaf4fb;  /* light blue */
  padding: 20px 0;
  margin-top: 10px;
}

.rating-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

/* BOX */
.rating-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON */
.rating-box i {
  font-size: 30px;
  color: #1e88e5; /* primary blue */
}

/* TEXT */
.rating-box h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: #333;
}

.rating-box p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* STAR ICON (optional) */
.rating-box h4::before {
  content: "★ ";
  color: #f4c430; /* yellow */
}

/* MOBILE */
/* MOBILE FIX - SAME ROW */
@media (max-width: 768px) {
  .rating-container {
    flex-direction: row;   /* ❗ column hata diya */
    justify-content: space-between;
    gap: 5px;
  }

  .rating-box {
    flex-direction: column;  /* icon upar, text neeche */
    gap: 5px;
    flex: 1; /* equal width */
  }

  .rating-box i {
    font-size: 22px;
  }

  .rating-box h4 {
    font-size: 14px;
  }

  .rating-box p {
    font-size: 12px;
  }
}




/* ================= CATEGORIES SECTION ================= */
/* ================= CATEGORIES SECTION START ================= */

.categories-section {
  padding: 50px 20px; /* ❗ left-right breathing space */
  text-align: center;
}

/* ================= HEADING ================= */
.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #f4c430; /* yellow */
  display: block;
  margin: 10px auto;
}

/* ================= SCROLL AREA ================= */
.categories-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;

  /* ❗ spacing fix */
  padding: 10px 20px 10px 20px;

  /* ❗ hint effect (right side peek) */
  padding-right: 60px;

  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px; /* smooth start */
}

/* HIDE SCROLLBAR */
.categories-scroll::-webkit-scrollbar {
  display: none;
}

/* ================= CARD ================= */
.category-card {
  min-width: 200px;   /* desktop size thoda bada */
  flex-shrink: 0;
  text-decoration: none;
  color: #333;
  scroll-snap-align: start;

  transition: 0.3s;
}

/* IMAGE BOX */
.category-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 15px;
  border: 4px solid #e0e0e0;
  transition: 0.3s;
}

/* TEXT */
.category-card p {
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
}

/* HOVER EFFECT */
.category-card:hover img {
  transform: scale(1.05);
  border-color: #1e88e5; /* blue */
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .categories-section {
    padding: 40px 10px; /* tighter spacing */
  }

  .categories-scroll {
    gap: 12px;

    /* ❗ mobile hint effect stronger */
    padding-left: 10px;
    padding-right: 40px;
  }

  .category-card {
    min-width: 140px; /* smaller cards */
  }

  .category-card img {
    height: 120px;
  }

  .section-title {
    font-size: 22px;
  }
}

/* ================= CATEGORIES SECTION END ================= */



/* ================= PACKAGES SECTION ================= */
/* ================= PACKAGES SECTION START ================= */

.packages-section {
  padding: 40px 30px;
  background: #f5f8fc; /* ❗ light blue bg */
}

/* ================= HEADER ================= */
.packages-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.packages-header h2 {
  font-size: 32px;
  margin: 0;
  color: #0d3c78; /* ❗ dark blue */
}

.packages-header p {
  font-size: 14px;
  color: #666;
}

/* VIEW ALL BUTTON */
.view-all-btn {
  background: #1e88e5;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.view-all-btn:hover {
  background: #0d3c78;
}

/* ================= SCROLL ================= */

.packages-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 20px 10px 5px;
  padding-right: 60px;

  scroll-snap-type: x mandatory;
}

/* HIDE SCROLLBAR */
.packages-scroll::-webkit-scrollbar {
  display: none;
}

/* ================= CARD ================= */

.package-card {
  min-width: 320px;
  flex-shrink: 0;
  text-decoration: none;
  color: #333;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;

  scroll-snap-align: start;
}

.package-card:hover {
  transform: translateY(-5px);
}

/* ================= IMAGE ================= */

.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* DAYS BADGE */
.days {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #f4c430; /* ❗ yellow */
  color: #000;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ================= CONTENT ================= */

.card-content {
  padding: 25px 15px 15px;
  text-align: center;
}

.card-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0d3c78;
}

/* PRICE */
.price {
  font-size: 14px;
  margin-bottom: 10px;
}

.price .old {
  text-decoration: line-through;
  color: #999;
  margin-right: 5px;
}

/* ================= BUTTONS ================= */

.btns {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.btn {
  flex: 1;
  padding: 8px;
  font-size: 13px;
  border-radius: 5px;
  text-align: center;
  transition: 0.3s;
}

/* VIEW BUTTON */
.view {
  background: #f4c430; /* ❗ yellow */
  color: #000;
}

.view:hover {
  background: #e0ad1f;
}

/* ENQUIRE BUTTON */
.enquire {
  background: #1e88e5;
  color: #fff;
}

.enquire:hover {
  background: #0d3c78;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .packages-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .package-card {
    min-width: 88%;
  }

  .packages-scroll {
    padding-left: 10px;
    padding-right: 40px;
    gap: 12px;
  }

}

/* ================= PACKAGES SECTION END ================= */



/* ================= WHY SECTION ================= */

.why-section {
  padding: 60px 20px;
  background: #f5f8fc; /* light blue bg */
  text-align: center;
}

/* TITLE */
.why-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #0d3c78; /* dark blue */
}

/* GRID */
.why-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-5px);
}

/* ICON */
.why-card i {
  font-size: 35px;
  color: #1e88e5; /* primary blue */
  margin-bottom: 10px;
}

/* TITLE */
.why-card h3 {
  font-size: 18px;
  color: #0d3c78;
  margin-bottom: 10px;
}

/* TEXT */
.why-card p {
  font-size: 14px;
  color: #666;
}

/* DECORATIVE CURVE EFFECT */
.why-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: #f4c430; /* yellow */
  border-radius: 50%;
  bottom: -40px;
  right: -40px;
  opacity: 0.1;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .why-container {
    grid-template-columns: 1fr; /* stack */
  }

  .why-card {
    text-align: center;
  }

}







/* ================= GALLERY SECTION ================= */

.gallery-section {
  padding: 20px 30px;
  text-align: center;
  background: #f5f8fc;
}

/* TITLE */
.gallery-title {
  font-size: 30px;
  color: #0d3c78;
}

.gallery-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

/* WRAPPER */
.gallery-wrapper {
  position: relative;
}

/* SCROLL AREA */
.gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 40px;
  scroll-behavior: smooth;
}

/* HIDE SCROLLBAR */
.gallery-scroll::-webkit-scrollbar {
  display: none;
}

/* CARD */
.gallery-card {
  min-width: 280px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}

/* IMAGE */
.gallery-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.3s;
}

/* HOVER */
.gallery-card:hover img {
  transform: scale(1.05);
}

/* LOCATION TAG */
.location {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 12px;
}

/* BUTTONS */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1e88e5;
  border: none;
  color: #fff;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.gallery-btn.left {
  left: 0;
}

.gallery-btn.right {
  right: 0;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .gallery-card {
    min-width: 85%; /* full view */
  }

  .gallery-scroll {
    padding-left: 10px;
    padding-right: 40px; /* hint */
  }

  /* .gallery-card img {
    height: 250px;
  } */

}






/* ================= FOOTER ================= */

.footer {
  background: #0d3c78; /* dark blue */
  color: #fff;
  padding-top: 50px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 20px;
}

/* TEXT */
.footer p {
  font-size: 14px;
  line-height: 1.6;
}

/* HEADINGS */
.footer h3,
.footer h4 {
  margin-bottom: 15px;
}

/* LINKS */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #f4c430; /* yellow */
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: #1e88e5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #f4c430;
  color: #000;
}

/* GALLERY */
.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.footer-gallery img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  background: #082a57;
  font-size: 13px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

}






/* form pop up section css srart by rajesh */

/* Popup Overlay */
.popup-overlayl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup Container */
.popup-containerl {
    background-color: #0D3C78;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Close Button (X) */
.popup-closel {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

/* Trigger Button */
/* .trigger-button {
    background-color: #c7a135;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin: 20px auto;
    display: block;
    transition: background 0.3s ease;
}
.trigger-button:hover {
    background-color: #a88629;
} */

/* Container */
.containerdrpul {
    width: 100%;
    /*padding: 0 20px;*/
}

/* Border color change on focus */
#mobilepul:focus {
    outline: 2px solid #48a32c;
}

/* Red outline when input is invalid */
#mobilepul.invalid {
    outline: 2px solid red;
}

/* Form Section */
.form_sectiondrpul {
    background-color: #0D3C78;
    /*padding: 20px;*/
    border-radius: 20px 0 20px 0;
}

.bookdrpul {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    text-align: center;
}

.form-groupdrpul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.form-groupdrpul label {
    color: white;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.form-groupdrpul input,
.form-groupdrpul select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    outline: none;
}

.form-groupdrpul div {
    flex: 1;
    min-width: 250px;
}

/* Submit Button */
.btndrpul {
    margin-top: 15px;
    background-color: #f4c430;
    color: white;
    padding: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: background 0.3s ease;
}
.btndrpul:hover {
    background-color: #f4c430;
}

/* Custom Alert Box */
.custom-alertdrpul {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: white;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    width: 250px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    border-left: 4px solid red;
}

.alert-contentdrpul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.alert-contentdrpul button {
    background-color: blue;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
}
.alert-contentdrpul button:hover {
    background-color: darkblue;
}

/* Responsive */
@media (max-width: 600px) {
    .popup-containerl {
        padding: 20px;
    }

    .form-groupdrpul {
        flex-direction: column;
    }

    .form-groupdrpul div {
        min-width: 100%;
    }

    .btndrpul {
        width: 100%;
    }

    /* .trigger-button {
        width: 90%;
    } */
}



/* Arithmetic Captcha Style */
/* Captcha one-row layout style */
.captcha-inline-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    background-color: #0D3C78;
    padding: 8px 12px;
    border-radius: 8px;
}

.captcha-inline-wrapper span {
    color: white;
    font-size: 16px;
    white-space: nowrap;
}

#captchaAnswerpul {
    flex: 1;
    padding: 8px 10px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    outline: none;
}

/* Responsive: stack on mobile */
@media (max-width: 600px) {
    .captcha-inline-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-inline-wrapper span {
        margin-bottom: 5px;
    }

    #captchaAnswerpul {
        width: 100%;
    }
}










/* form pop up css end by rajesh */





/* non popup form css start */
/* Default border color */
/* Border color change on focus */
#mobile:focus {
    outline: 2px solid #48a32c; /* Green outline on focus */
}

/* Red outline when input is invalid */
#mobile.invalid {
    outline: 2px solid red; /* Red outline on invalid input */
}




.form_section{
background:#f5f5f7;
padding:40px 20px;
}

.consultation-wrapper{
display:flex;
max-width:1100px;
margin:auto;
border-radius:20px;
overflow:hidden;
}

/* LEFT SIDE FORM */

.consultation-left{
flex:2;
background:#f5f5f7;
padding:40px;
background-image:radial-gradient(#d9d9df 2px,transparent 2px);
background-size:25px 25px;
}

.form_section h2{
font-size:30px;
color:#3f4b6b;
margin-bottom:5px;
}

.doctor-text{
color:#3f4b6b;
margin-bottom:20px;
font-size: 20px;
font-weight: 700;
}

.form-group{
display:flex;
flex-direction:column;
gap:25px;
}

.form-group label{
font-weight:600;
}

.form-group input{
width:100%;
padding:14px;
border:none;
border-radius:10px;
background:#e6e6ea;
font-size:16px;
}

.form-name{
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 600;
}

.captcha-number{
    font-size: 15px;
    font-weight: 10px;
}







/* captcha */

.captcha-inline-wrapperad{
display:flex;
gap:10px;
align-items:center;
}

#captchaAnswerpulad{
flex:1;
padding:10px;
border-radius:6px;
border:none;
}

/* button */

.btn{
margin-top:10px;
background:#f4c430;
color:white;
padding:12px 24px;
border:none;
border-radius:6px;
font-size:14px;
cursor:pointer;
width:120px;
}

/* RIGHT SIDE HELP */

.consultation-right{
flex:1;
background:#f4c430;
display:flex;
align-items:center;
justify-content:center;
padding:30px;
}

.help-box{
display:flex;
align-items:center;
gap:20px;
color:white;
}

.phone-circle{
width:70px;
height:70px;
background:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:#2f3338;
}

.help-text p{
margin:0;
font-weight:600;
}

.help-text h3{
margin:5px 0 0;
font-size:22px;
}

/* MOBILE */

@media(max-width:768px){

.consultation-wrapper{
flex-direction:column;
}

.consultation-left{
padding:25px;
}

.consultation-right{
padding:20px;
justify-content:flex-start;
}

.help-box{
width:100%;
}

}






/* non popup form css end */




/* social */




.floating-social{
position:fixed;
right:-5px;
top:50%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:12px;
z-index:999;
}

.floating-social a{
width:48px;
height:48px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:#333;
text-decoration:none;
box-shadow:0 6px 15px rgba(0,0,0,0.15);
transition:all .3s ease;
}

.floating-social a:hover{
transform:scale(1.1);
color:#fff;
}

.fb:hover{
background:#1877f2;
}

.insta:hover{
background:#e1306c;
}

.yt:hover{
background:#ff0000;
}










