/* root start */
:root {
  /* 🔤 Font */
  --font-primary: 'Poppins', sans-serif;

  /* 🎨 Shiv Ji Color Palette */
  --color-neel: #0f172a;
  /* Neelkanth Blue */
  --color-himalaya: #1e293b;
  /* Slate Blue */
  --color-bhagwa: #f97316;
  /* Bhagwa Orange */
  --color-bhagwa-dark: #ea580c;

  --color-white: #ffffff;
  --color-light: #f8fafc;
  --color-border: #cbd5e1;
  --color-muted: #94a3b8;
  --color-text: #1e293b;

  /* 🌈 Gradients */
  --gradient-shiv: linear-gradient(90deg, var(--color-neel), var(--color-himalaya));

  /* 🔠 Font Sizes */
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-md: 15px;
  --fs-lg: 18px;
  --fs-xl: 20px;
  --fs-xxl: 24px;

  /* 🏷️ Heading Sizes */
  --h1: 36px;
  --h2: 30px;
  --h3: 24px;
  --h4: 20px;
  --h5: 18px;

  /* 📏 Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 15px;
  --space-lg: 25px;
  --space-xl: 40px;

  /* 🔘 Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;

  /* 🌫️ Shadow */
  --shadow-soft: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-bhagwa: 0 6px 16px rgba(249, 115, 22, 0.35);

  /* ⏱️ Transition */
  --transition-fast: 0.3s ease;
}

/* root end */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* 🔔 Top Bar */

.topbar {
  background: linear-gradient(90deg, #7f1d1d, #1e293b);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  transition: var(--transition-fast);
}

.topbar-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 15px;
  flex-wrap: wrap;
}

/* LEFT */

.top-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone {
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.phone a {
  color: white;
  text-decoration: none;
}


/* BLINK EFFECT */

.blink {
  animation: blinkAnim 2s infinite;
}

@keyframes blinkAnim {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

.divider {
  color: var(--color-muted);
}

/* CENTER */

.top-center {
  display: flex;
  gap: 8px;
}

.top-center a {
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition-fast);
}

.top-center a:hover {
  color: var(--color-bhagwa);
}

/* RIGHT */

.top-right {
  display: flex;
  align-items: center;
  gap: 25px;
  /* email aur social icons ke beech gap */
}

/* EMAIL */

.email {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SOCIAL */

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  transition: var(--transition-fast);
  text-decoration: none;
}

/* PREMIUM HOVER EFFECT */

.social-icons a:hover {
  background: var(--color-bhagwa);
  transform: translateY(-3px) scale(1.08);
  box-shadow: var(--shadow-bhagwa);
}

/* MOBILE */
/* MOBILE me TOPBAR HIDE */

@media(max-width:768px) {

  .topbar {
    display: none;
  }

}

@media(max-width:900px) {

  .topbar-container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .top-right {
    flex-direction: column;
    gap: 10px;
  }

  .email {
    font-size: 12px;
  }

}

/* top bar end */


/* NAVBAR css start */

.navbar {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
}

/* LOGO */

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-bhagwa);
}

.logo-text small {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--color-text);
}

/* MENU */

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  font-size: var(--fs-md);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--color-bhagwa);
}

/* RIGHT */

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ENQUIRY BUTTON */

.enquiry-btn {
  background: var(--color-bhagwa);
  padding: 8px 18px;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  transition: var(--transition-fast);
}

.enquiry-btn:hover {
  background: var(--color-bhagwa-dark);
}

/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  transition: .3s;
}

/* ANNOUNCEMENT BAR */

.announcement {
  background: #ff5b5b;
  color: #fff;
  width: 100%;
  overflow: hidden;
  position: sticky;
  top: 75px;
  z-index: 998;
}

.scroll-wrapper {
  display: flex;
  width: max-content;
  animation: scrollText 20s linear infinite;
}

.scroll-text {
  display: flex;
  gap: 60px;
  padding: 8px 0;
}

.scroll-text span {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.announcement {
  background: #ff5b5b;
  color: #fff;
  overflow: hidden;
  width: 100%;
}

.scroll-wrapper {
  display: flex;
  width: max-content;
  animation: scrollText 20s linear infinite;
}

.scroll-text {
  display: flex;
  gap: 60px;
  padding: 8px 20px;
}

.scroll-text span {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* MOBILE DRAWER */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 200px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: .4s;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
  right: 0;
}

/* MOBILE HEADER */

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px 20px;
  border-bottom: 1px solid #eee;
}


/* MOBILE LOGO */
.mobile-logo h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  color: var(--color-bhagwa);
  letter-spacing: 1px;
}

.mobile-logo span {
  display: block;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #333;
}

.mobile-logo p {
  font-size: 13px;
  color: #6b7c93;
  margin-top: 10px;
  line-height: 1.5;
}

/* CLOSE BUTTON */

.close-menu {
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE LINKS */

.mobile-links {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  gap: 6px;
}

.mobile-links a {
  padding: 12px 20px;
  text-decoration: none;
  font-size: 15px;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border-radius: 12px;
  margin: 3px 15px;
  transition: .3s;
}

.mobile-links a i {
  color: var(--color-bhagwa);
}

.mobile-links a:hover {
  background: #fff7ed;
  transform: translateX(4px);
}

/* ENQUIRY BUTTON */

.mobile-enquiry-btn {
  margin: 20px;
  padding: 14px;
  text-align: center;
  background: var(--color-bhagwa);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: .3s;
}

.mobile-enquiry-btn:hover {
  background: var(--color-bhagwa-dark);
}

/* CONTACT */

.mobile-contact {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #555;
}

.mobile-contact p {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* QUICK CONNECT */

.mobile-contact {

  margin-top: 20px;
  padding: 20px;
  border-top: 1px dashed var(--color-border);
}

.mobile-contact h4 {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--color-muted);
  margin-bottom: 15px;

}


/* CONTACT ITEM */

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--color-text);
  font-weight: bold;
}

.contact-item i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bhagwa);

}


/* SOCIAL ICONS */

.mobile-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  text-decoration: none;
}

.mobile-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-text);
  transition: var(--transition-fast);
  text-decoration: none;
}

.mobile-social a:hover {
  background: var(--color-bhagwa);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* RESPONSIVE */

@media(max-width:900px) {

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .enquiry-btn {
    display: none;
  }

  .announcement {
    top: 70px;
  }

  .scroll-text {
    gap: 40px;
  }

  .scroll-text span {
    font-size: 17px;
  }

  .scroll-wrapper {
    animation: scrollText 25s linear infinite;
  }

}

@media(max-width:480px) {

  .mobile-menu {
    width: 100%;
  }

  .mobile-links a {
    font-size: 14px;
    padding: 11px 18px;
  }

}

/* navbar css end */

/* hero section start */

.hero {
  background:
    linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)),
    url("../images/banner.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 90px 0;
  color: var(--color-white);
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LEFT CONTENT */

.hero-left {
  max-width: 650px;
}

.hero-left h1 {
  font-size: var(--h1);
  font-weight: 700;
  line-height: 1.3;
}

.typing-text {
  color: var(--color-bhagwa);
}

.hero-left p {
  margin-top: 20px;
  font-size: var(--fs-lg);
  color: var(--color-muted);
  line-height: 1.7;
}

/* BUTTONS */

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--color-bhagwa);
  color: white;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  background: var(--color-bhagwa-dark);
  box-shadow: var(--shadow-bhagwa);
}

.btn-secondary {
  border: 1px solid var(--color-border);
  padding: 12px 26px;
  border-radius: var(--radius-md);
  color: white;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .hero {
    padding: 70px 0;
  }

  .hero-left {
    text-align: center;
    margin: auto;
  }

  .hero-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

}

@media (max-width: 600px) {

  .hero-left h1 {
    font-size: 28px;
  }

  .hero-left p {
    font-size: 15px;
  }

  .hero-buttons a {
    padding: 10px 20px;
    font-size: 14px;
  }

}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* container */

.hero-visual {
  position: relative;
  width: 420px;
  height: 420px;
}

/* main big image */

.hero-main-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* floating cards */

.hero-float {
  position: absolute;
  width: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  animation: floatCard 6s ease-in-out infinite;
  transition: var(--transition-fast);
}

.hero-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* top card */

.hero-float-top {
  top: -40px;
  left: -40px;
}

/* bottom card */

.hero-float-bottom {
  bottom: -40px;
  right: -40px;
}

/* floating animation */

@keyframes floatCard {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }

}

/* hover effect */

.hero-float:hover {
  transform: scale(1.05);
}

@media(max-width:900px) {

  .hero-visual {
    width: 340px;
    height: 340px;
  }

  .hero-float {
    width: 140px;
  }

  .hero-float-top {
    top: -25px;
    left: -25px;
  }

  .hero-float-bottom {
    bottom: -25px;
    right: -25px;
  }

}

@media(max-width:500px) {

  .hero-visual {
    width: 280px;
    height: 280px;
  }

  .hero-float {
    width: 110px;
  }

  .hero-float-top {
    top: -20px;
    left: -15px;
  }

  .hero-float-bottom {
    bottom: -20px;
    right: -15px;
  }

}

.hero-visual {
  position: relative;
  width: 420px;
  height: 420px;
  margin: auto;
}

/* floating images */

.hero-float {
  position: absolute;
  width: 140px;
  height: 100px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: 1s;
}

.hero-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* positions */

.pos1 {
  top: -30px;
  left: -30px;
}

.pos2 {
  top: -30px;
  right: -30px;
}

.pos3 {
  bottom: -30px;
  left: -30px;
}

.pos4 {
  bottom: -30px;
  right: -30px;
}

@media(max-width:600px) {

  .hero-visual {
    width: 300px;
    height: 300px;
  }

  .hero-float {
    width: 90px;
    height: 70px;
  }

  .pos1 {
    top: -20px;
    left: -10px;
  }

  .pos2 {
    top: -20px;
    right: -10px;
  }

  .pos3 {
    bottom: -20px;
    left: -10px;
  }

  .pos4 {
    bottom: -20px;
    right: -10px;
  }

}

@media (max-width:900px) {

  .hero-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

}

/* hero section end */

/* ABOUT COMPANY SECTION */

.about-company {
  padding: 90px 0;
}

.about-company-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */

.about-company-image {
  flex: 1;
}

.about-company-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* CONTENT */

.about-company-content {
  flex: 1;
}

.about-company-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-company-content p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* FEATURES */

.about-company-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.about-company-feature {
  background: #f1f5f9;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
}

/* RESPONSIVE */

@media(max-width:900px) {

  .about-company-container {
    flex-direction: column;
    text-align: center;
  }

  .about-company-features {
    grid-template-columns: 1fr;
  }

}

/* about company css end */

/* footer css start */
.footer {
  background: var(--color-neel);
  color: var(--color-white);
  font-family: var(--font-primary);
  padding: var(--space-xl) var(--space-lg);
}

.footer-logo-img {
  width: 120px;
  /* adjust as needed */
  height: auto;
  margin-bottom: var(--space-sm);
}


.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Section Styling */
.footer-section h1,
.footer-section h4,
.footer-section h5 {
  margin-bottom: var(--space-sm);
}

.footer-logo h1 {
  font-size: var(--h1);
  background: var(--gradient-shiv);
  -webkit-text-fill-color: transparent;
}

.footer-logo .footer-brand-text {
  font-size: var(--fs-md);
  color: var(--color-light);
  max-width: 320px;
}

.footer-links ul,
.footer-policies ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-policies li {
  margin-bottom: var(--space-xs);
}

.footer-links a,
.footer-policies a {
  text-decoration: none;
  color: var(--color-light);
  transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-policies a:hover {
  color: var(--color-bhagwa);
}

/* Contact + Social */
.footer-contact p {
  font-size: var(--fs-md);
  margin-bottom: var(--space-xs);
}

.footer-social h5 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-md);
}

.social-icons {
  display: flex;
  gap: var(--space-sm);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  padding: 5px;
  transition: var(--transition-fast);
}

.social-icon img {
  width: 20px;
  height: 20px;
  filter: invert(17%) sepia(96%) saturate(6581%) hue-rotate(11deg) brightness(100%) contrast(100%);
}

.social-icon:hover {
  background: var(--color-bhagwa);
}

.footer-bottom {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: var(--space-md);
  }
}


/* Map Section */
.footer-map {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-map-img {
  width: 100%;
  max-width: 350px;
  /* adjust max width */
  height: auto;
  border-radius: var(--radius-md);
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer-logo {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-map-img {
    max-width: 100%;
  }
}

/* Featured Section */
.featured-agencies {
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-light);
  text-align: center;
  font-family: var(--font-primary);
}

.section-title {
  font-size: var(--h2);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.agency-name a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.agency-name a:hover {
  color: #ff7a00;
}


/* Grid Layout */
.agencies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 cards per row on desktop */
  gap: var(--space-lg);
}

/* Agency Card */
.agency-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  cursor: pointer;
}

/* Hover effect */
.agency-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-bhagwa);
}

/* Agency Image */
.agency-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Agency Name */
.agency-name {
  font-size: var(--fs-lg);
  margin: var(--space-sm) 0;
  color: var(--color-text);
}

/* Icons Container */
.agency-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  /* bigger gap between icons */
  margin-bottom: var(--space-md);
}

/* Icon Styling */
.agency-icons .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-neel);
  color: var(--color-white);
  font-size: 18px;
  transition: all 0.3s ease;
}

.agency-icons .icon:hover {
  background: var(--color-bhagwa);
  transform: scale(1.2);
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .agencies-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 cards per row on tablet */
  }
}

@media (max-width: 768px) {
  .agencies-grid {
    grid-template-columns: 1fr;
    /* 1 card per row on mobile */
  }

  .agency-img {
    height: 140px;
  }
}


/* content css start */
.divine-section {
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-light);
  font-family: var(--font-primary);
}

.divine-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

/* Image */
.divine-image img {
  max-width: 500px;
  width: 500px;
  height: 350px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Content */
.divine-content h2 {
  font-size: var(--h2);
  color: var(--color-neel);
}

.subtitle {
  color: var(--color-bhagwa);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.divine-content p {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.features-list p {
  margin-bottom: 8px;
  font-size: var(--fs-md);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 6px;
}


/* CTA Buttons */
.divine-cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.divine-cta a {
  padding: 10px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-call {
  background: var(--color-bhagwa);
  color: #fff;
}

.btn-web {
  background: var(--color-neel);
  color: #fff;
}

.btn-call:hover,
.btn-web:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-bhagwa);
}

/* Animations */
.fade-left {
  opacity: 0;
  transform: translateX(-60px);
}

.fade-right {
  opacity: 0;
  transform: translateX(60px);
}

.show {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.9s ease;
}

/* Mobile */
@media (max-width: 768px) {
  .divine-container {
    flex-direction: column;
    text-align: center;
  }

  .divine-image img {
    max-width: 100%;
  }

  .divine-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* about adhi kailash */
.location-section {
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-white);
  font-family: var(--font-primary);
}

.location-container {
  max-width: 900px;
  margin: auto;
}

.location-text h2 {
  font-size: var(--h2);
  color: var(--color-neel);
  margin-bottom: var(--space-md);
}

.location-text p {
  font-size: var(--fs-md);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

/* Highlight line */
.location-text .highlight {
  color: var(--color-bhagwa);
  font-weight: 600;
}

/* Animation */
.animate-text {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.animate-text.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .location-text h2 {
    font-size: 24px;
  }

  .location-text p {
    font-size: 14px;
  }
}


/* review section */

.review-combo-section {
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-light);
  font-family: var(--font-primary);
}

.review-combo-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: var(--space-xl);
  align-items: stretch;
}

/* Shared Box Style */
.google-review-box,
.slider-review-box {
  flex: 1;
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

/* Google Box */
.google-icon {
  width: 60px;
  margin-bottom: var(--space-sm);
}

.google-review-btn {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 10px 22px;
  background: var(--color-bhagwa);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition-fast);
}

.google-review-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-bhagwa);
}

/* Slider */
.review-slide {
  display: none;
  animation: fadeSlide 0.6s ease;
}

.review-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-combo-section {
  margin: 80px 0;
}

.review-slide span {
  font-size: var(--fs-sm);
  color: var(--color-bhagwa);
  font-weight: 600;
}

/* Animation */
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
}

.show {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s ease;
}

/* Mobile */
@media (max-width: 768px) {
  .review-combo-container {
    flex-direction: column;
  }
}

/* faq section css */
.faq-section {
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-light);
  font-family: var(--font-primary);
}

.section-title {
  text-align: center;
  font-size: var(--h2);
  color: var(--color-neel);
  margin-bottom: var(--space-lg);
}

/* FAQ container */
.faq-container {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* FAQ Item */
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Question */
.faq-question {
  padding: var(--space-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--color-neel);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--space-md);
  background: var(--color-light);
  font-size: var(--fs-md);
  color: var(--color-text);
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

/* Active Answer */
.faq-item.active .faq-answer {
  max-height: 200px;
  /* adjust if longer answer */
  padding: var(--space-sm) var(--space-md);
}

/* Toggle symbol */
.faq-toggle {
  font-size: var(--fs-xl);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Scroll animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
    gap: var(--space-sm);
  }
}

/* top area of adhi kailash css */
.attractions-section {
  padding: var(--space-xl) 0;
  background: var(--color-light);
  font-family: var(--font-primary);
}

.section-title {
  text-align: center;
  font-size: var(--h2);
  color: var(--color-neel);
  margin-bottom: var(--space-xl);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Grid */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

/* Card */
.attraction-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 240px;
}


.attraction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(15, 23, 42, 0.3),
      rgba(15, 23, 42, 0.9));
  color: var(--color-white);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--transition-fast);
}

.overlay h3 {
  font-size: var(--h4);
  margin-bottom: var(--space-sm);
}

.overlay p {
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--color-light);
}

.read-more {
  margin-top: var(--space-sm);
  color: var(--color-bhagwa);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover {
  color: var(--color-bhagwa-dark);
}

/* Hover Effects */
.attraction-card:hover img {
  transform: scale(1.08);
}

.attraction-card:hover .overlay {
  opacity: 1;
}

/* Mobile touch support */
@media (max-width: 768px) {
  .overlay {
    opacity: 1;
    background: linear-gradient(180deg,
        rgba(15, 23, 42, 0.4),
        rgba(15, 23, 42, 0.95));
  }
}

/* Detail Section */
.detail-section {
  background: var(--color-light);
  font-family: var(--font-primary);
}

/* Banner */
.detail-banner {
  position: relative;
  height: 70vh;
  min-height: 320px;
  overflow: hidden;
}

.detail-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Banner Overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 23, 42, 0.3),
      rgba(15, 23, 42, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  padding: 20px;
}

.banner-overlay h1 {
  font-size: var(--h1);
  margin-bottom: 10px;
}

.banner-overlay p {
  font-size: var(--fs-lg);
  color: var(--color-light);
}

/* Content */
.detail-content {
  max-width: 900px;
  margin: auto;
  padding: var(--space-xl) var(--space-md);
}

.detail-content p {
  font-size: var(--fs-lg);
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

/* 🔥 Animation (SAFE VERSION) */
.animate {
  opacity: 1;
  /* 👈 default visible */
  transform: none;
}

/* Animation only when JS active */
.js-animate .animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.js-animate .animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .detail-banner {
    height: 45vh;
  }

  .banner-overlay h1 {
    font-size: 26px;
  }

  .detail-content p {
    font-size: 16px;
  }
}


/* about css */
.yatra-rates {
  background: #f8fafc;
  padding: 60px 15px;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 34px;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #475569;
  margin-bottom: 40px;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.rate-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.rate-card:hover {
  transform: translateY(-6px);
}

.rate-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1e293b;
}

.rate-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rate-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 15px;
  color: #334155;
}

.rate-card ul li span {
  font-weight: 600;
  color: #0f766e;
}

.custom-text {
  font-size: 15px;
  color: #475569;
}

.highlights {
  background: linear-gradient(135deg, #0f766e, #0d9488);
  color: #ffffff;
}

.highlights h3,
.highlights p {
  color: #ffffff;
}

.contact-box {
  margin-top: 50px;
  background: #0f172a;
  color: #ffffff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
}

.contact-box h4 {
  margin-bottom: 10px;
  font-size: 20px;
}

.contact-box p {
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .rate-card h3 {
    font-size: 18px;
  }

  .rate-card ul li {
    font-size: 14px;
  }
}

/* about css start */
.about-page {
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.page-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 40px;
  text-align: center;
}

/* blocks */

.about-block {
  margin-bottom: 50px;
}

.about-block h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0f172a;
}

.about-block p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 10px;
}

/* two column */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* features */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.feature-card {
  padding: 25px;
  border-radius: 14px;
  background: #f8fafc;
  transition: 0.3s;
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
  color: #f97316;
  font-size: 18px;
  margin-bottom: 10px;
}

/* commitment */

.commitment-list {
  padding-left: 20px;
  margin-bottom: 15px;
}

.commitment-list li {
  margin-bottom: 6px;
  color: #334155;
}

/* vision */

.vision-list {
  padding-left: 20px;
}

.vision-list li {
  margin-bottom: 6px;
}

/* disclaimer */

.disclaimer {
  background: #1e293b;
  color: white;
  padding: 35px;
  border-radius: 16px;
  margin-bottom: 50px;
}

.disclaimer h2 {
  margin-bottom: 15px;
  color: #f97316;
}

/* responsive */

@media(max-width:900px) {

  .page-title {
    font-size: 30px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

}

@media(max-width:500px) {

  .about-block h2 {
    font-size: 24px;
  }

  .page-title {
    font-size: 26px;
  }

}

/* about css end */


/* ================== MAP ================== */
.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ================== HEADING ================== */
.contact-heading {
  text-align: center;
  padding: 60px 20px 40px;
}

.contact-heading h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #222;
}

.contact-heading p {
  max-width: 750px;
  margin: auto;
  font-size: 16px;
  color: #555;
}

/* ================== CONTACT SECTION ================== */
.contact-section {
  padding: 60px 20px;
  background: #f7f7f7;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form,
.contact-info {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.contact-form h3,
.contact-info h3 {
  margin-bottom: 25px;
  font-size: 22px;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form textarea {
  min-height: 130px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: #ff7a00;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e56c00;
}

/* INFO */
.contact-info p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info i {
  color: #ff7a00;
  margin-right: 8px;
}

.contact-info a {
  color: #ff7a00;
  text-decoration: none;
}

/* ================== RESPONSIVE ================== */
@media(max-width:768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-heading h2 {
    font-size: 28px;
  }

  .contact-map iframe {
    height: 300px;
  }
}

/* ===== HERO ===== */
.blog-hero {
  background: url('https://tinyurl.com/4bc9ners') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.blog-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.blog-hero p {
  font-size: 16px;
  opacity: 0.9;
}

/* ===== LAYOUT ===== */
.blog-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 40px;
}

/* ===== BLOG CARD ===== */
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.blog-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.blog-content a {
  display: inline-block;
  margin-top: 15px;
  color: #ff7a00;
  text-decoration: none;
  font-weight: 600;
}

/* ===== SIDEBAR ===== */
.sidebar {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sidebar h3 {
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin-bottom: 12px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #555;
}

.sidebar ul li a:hover {
  color: #ff7a00;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .blog-container {
    grid-template-columns: 1fr;
  }

  .blog-hero h1 {
    font-size: 32px;
  }
}

/* agency css start */
.offers-section {
  padding: 50px 20px;
  color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 32px;
  color: #f4c430;
}

/* agency css */

.offer-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.offer-menu li {
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 30px;
  background: #122c3d;
  transition: 0.3s;
}

.offer-menu li.active,
.offer-menu li:hover {
  background: #f4c430;
  color: #000;
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  /* pehle 25px tha */
}

.offer-card {
  background: #306486;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  display: none;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offer-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.offer-card h3 {
  padding: 15px;
  color: #f4c430;
}

.offer-card p {
  padding: 0 15px 20px;
  font-size: 14px;
}

.offer-readmore {
  display: block;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #f4c430;
  /* yellow gold */
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.offer-readmore:hover {
  color: #ffd84d;
  /* lighter gold */
  transform: translateY(-2px);
  text-decoration: none;
}

/* enquiry form css */
.enquiry-section {
  padding: 60px 20px;
  background: #f9fafc;
  display: flex;
  justify-content: center;
}

.enquiry-container {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.enquiry-container h2 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.terms {
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.terms {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 15px;
}

.terms input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.submit-btn:hover {
  background: #1ebe5d;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .enquiry-container {
    padding: 20px;
  }
}


span a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}


/* essential content css start */
.yatra-guide {
  padding: 60px 20px;
  background: #f9fafb;
  font-family: 'Poppins', sans-serif;
}

.guide-container {
  max-width: 1000px;
  margin: auto;
}

.yatra-guide h1 {
  font-size: 34px;
  margin-bottom: 15px;
}

.intro {
  margin-bottom: 30px;
  line-height: 1.7;
}

.toc a {
  position: relative;
  text-decoration: none;
  color: #0f172a;
  transition: 0.3s;
}

.toc a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -2px;
  background: #2563eb;
  transition: 0.3s;
}

.toc a:hover {
  color: #2563eb;
}

.toc a:hover::after {
  width: 100%;
}

.toc {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.toc ul {
  padding-left: 18px;
}

.toc li {
  margin-bottom: 6px;
}

.toc a {
  text-decoration: none;
  color: #0f172a;
}

.guide-content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 24px;
}

.guide-content p {
  line-height: 1.7;
}

.guide-content ul {
  padding-left: 20px;
}

.guide-content li {
  margin-bottom: 8px;
}


/* MOBILE */
@media(max-width:768px) {

  .yatra-guide h1 {
    font-size: 26px;
  }

  .guide-content h2 {
    font-size: 20px;
  }

}




.akfaq-section{
padding:60px 20px;
background:#f8fafc;
font-family:'Poppins',sans-serif;
}

.akfaq-container{
max-width:900px;
margin:auto;
}

.akfaq-title{
text-align:center;
font-size:32px;
margin-bottom:40px;
}

.akfaq-card{
background:#ffffff;
border-radius:8px;
margin-bottom:15px;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
overflow:hidden;
}

.akfaq-btn{
width:100%;
padding:18px 20px;
border:none;
background:none;
font-size:18px;
font-weight:600;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
}

.akfaq-content{
max-height:0;
overflow:hidden;
transition:0.4s;
padding:0 20px;
}

.akfaq-card.active .akfaq-content{
max-height:200px;
padding:15px 20px;
}