* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* -------- Header Top -------- */

.haeder_container {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;          /* ensure full width from left */
    right: 0;         /* ensure full width from right */
    margin: 0;
    padding: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: -webkit-sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #ddd;

  /* 👇 ye line edit ki */
  padding: 15px 20px;   /* pehle 20px 30px tha, ab kam kiya */
}

/* ---------------------- Logo ---------------------- */
.logo img {
  width: 60px;
  height: auto;
  vertical-align: middle;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

/* Logo text */
.logo {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  color: #0b3c88;
}

.logo span {
  color: #ef3b2d;
  margin-right: 6px;
}

/* Right menu */
.top-menu {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.top-menu a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.phone {
  font-size: 14px;
  color: #333;
}

select {
  padding: 4px;
  font-size: 13px;
}


/* ----------------join Call Button---------------- */
.tooltip {
  position: relative;
  display: inline-block;
}

.join-call-btn {
  background-color: #007bff;
  color: white;
  padding: 12px 28px;
  font-size: 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.join-call-btn:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Tooltip text below button */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #393232;
  color: #fff;
  text-align: center;
  padding: 8px;
  border-radius: 20px;
  position: absolute;
  top: 125%; /* Show below button */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* ✅ Mobile responsive adjustment */
@media (max-width: 600px) {
  .join-call-btn {
    padding: 8px 18px;   /* smaller padding */
    font-size: 14px;     /* smaller text */
    border-radius: 15px;
  }

  .tooltip .tooltiptext {
    width: 160px;
    font-size: 12px;
    padding: 6px;
  }

  /* Disable hover effect on mobile */
  .tooltip:hover .tooltiptext {
    visibility: hidden;
    opacity: 0;
    background-color: #393232;
  }
}

/* -------- Blue Strip -------- */
/* ✅ Default (Desktop View) */
.blue-strip {
  background: #3f5fbf;
  padding: 8px 40px;
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.blue-strip a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.blue-strip a::after {
  content: " ▼";
  font-size: 10px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Mega menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  color: #333;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  width: 900px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

nav ul li:hover .mega-menu {
  display: grid;
}

.mega-column h4 {
  margin: 0 0 10px;
  font-size: 15px;
  color: #0b2a53;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

.mega-column a {
  display: block;
  padding: 5px 0;
  color: #444;
  text-decoration: none;
  font-size: 14px;
}

.mega-column a:hover {
  color: #0b2a53;
}

/* ✅ Mobile Responsive (max-width: 768px) */
@media (max-width: 768px) {
  .blue-strip {
    padding: 10px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 10px;
    /* background: #2c4aad; */
    border-radius: 6px;
    width: 100%;
  }

  /* Mega menu ko stack kar dena */
  .mega-menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    box-shadow: none;
  }

  nav ul li:hover .mega-menu {
    display: block;
  }

  .mega-column h4 {
    font-size: 14px;
  }

  .mega-column a {
    font-size: 13px;
    padding: 5px 0;
  }
}



/* -----------------------------------------------------card------------------------------------------ */


/* logo */

.card .logo1 img {
  width: 20px;
  height: auto;
  align-items: center;
}
.logo1 {
  display: flex;
  align-items: center;
  font-size: 20px;
  /* font-weight: bold; */
  color: white;
}

.logo1 span {
  color: #ef3b2d;
  margin-right: 6px;
  text-align: center;
}


/* card */
body {
  font-family: 'Poppins', sans-serif;
  background: #eef2f7;
  padding: 30px;
  margin-top: 100px;
}


.card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 1100px;
  margin: auto;
  margin-top: 20px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.left {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg,#6a11cb,#2575fc);
  color: #fff;
}

.left img {
  width: 170px;
  height: 200px;
  /* border-radius: 0%; */
  margin: 10px;
  border: 1px solid #fff;
  margin-bottom: 10px;
  margin-top: 10px;
}

.middle {
  flex: 2;
  padding: 25px 20px;
}

.middle h2 {
  font-size: 22px;
  color: #222;
  margin-bottom: 8px;
}

.stars {
  color: #f5a623;
  font-size: 16px;
  margin-left: 5px;
}

.reviews {
  font-size: 13px;
  color: #777;
  margin-left: 10px;
}

.subtitle, .location, .info, .available {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

.tags button {
  border: none;
  background: #2575fc;
  color: #fff;
  padding: 6px 14px;
  margin-right: 10px;
  margin-top: 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.tags button:hover {
  background: #6a11cb;
}

.highlight {
  color: #ff5722;
  font-weight: bold;
}

.right {
  flex: 1.5;
  padding: 25px 20px;
  border-left: 1px solid #eee;
}

.right ul {
  list-style: none;
  padding: 0;
}

.right li {
  margin: 8px 0;
  font-size: 14px;
}

.last-session {
  color: #ff5722;
  font-size: 13px;
  margin: 15px 0;
}

.book {
  display: block;
  color: #fff;
  background: #28a745;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 15px;
  transition: 0.3s;
}

.book:hover {
  background: #218838;
}

.actions {
  display: flex;
  gap: 10px;
}

.actions button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.actions .callback {
  background: #17a2b8;
}

.actions .callback:hover {
  background: #138496;
}

.actions .message {
  background: #6f42c1;
}

.actions .message:hover {
  background: #563d7c;
}

/* Responsive */
@media(max-width: 900px){
  .card { flex-direction: column; }
  .right { border-left: none; border-top: 1px solid #eee; }
}
