:root{
  --royal:#003B8E;
  --gold:#F2B705;
  --muted:#6B7280;
  --bg:#F5F7FA;
  --white:#fff;
  --card-shadow: 0 8px 24px rgba(2,6,23,0.06);
  --radius:10px;
  --container:1200px;
}

/* Reset */
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Times New Roman',ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial;
     background:var(--bg); color:#0f172a; line-height:1.5;font-size: 18px;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;height:auto;display:block;}
.container{max-width:var(--container);margin:0 auto;padding:0 20px;}
ul{list-style:none;}
button{cursor:pointer;}

/* Header */
.site-header{
  background:var(--white);
  border-bottom:1px solid #e6e9ef;
  position:sticky;
  top:0;
  z-index:100;
  padding:12px 0;
  transition: background 0.3s ease;
}
.site-header:hover{background:var(--royal);}
.site-header:hover .main-nav a,.site-header:hover .logo{color:var(--white);}
.header-inner{display:flex;align-items:center;gap:20px;}
.logo{font-weight:800;font-size:22px;color:var(--royal);}
.main-nav{display:flex;gap:15px;margin-left:24px;}
.main-nav a{padding:8px 12px;color:#0f172a;border-radius:8px;transition:0.3s;}
.main-nav a:hover{background:var(--royal);color:#fff;}
.header-actions{margin-left:auto;display:flex;gap:10px;align-items:center;}
.search{padding:8px 12px;border-radius:8px;border:1px solid #e6e9ef;min-width:180px;}
.mobile-menu-toggle{display:none;}
.mobile-nav{display:none;flex-direction:column;gap:10px;background:var(--white);padding:12px;position:absolute;top:60px;left:0;right:0;box-shadow:0 4px 12px rgba(0,0,0,0.08);}
.mobile-nav.open{display:flex;}

.btn{cursor:pointer;border:0;padding:10px 14px;border-radius:8px;font-weight:600}
.btn-primary{background:var(--royal);color:var(--white)}
.btn-ghost{background:transparent;border:1px solid #e6e9ef}
.btn-outline{background:transparent;border:1px solid #e6e9ef;padding:8px 10px}

/* HERO */
.hero{position:relative;overflow:hidden;background:linear-gradient(180deg,#fff,#f4f9ff);}
.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px;align-items:center;padding:40px 0;}
.hero-left h1{font-size:32px;color:var(--royal);margin-bottom:16px;}
.lead,.sub{color:var(--muted);margin-bottom:12px;}
.hero-ctas{display:flex;gap:12px;margin-bottom:20px;}
.hero-ctas a{padding:10px 18px;border-radius:8px;font-weight:600;transition:0.3s;}
.btn-primary{background:var(--royal);color:#fff;}
.btn-ghost{border:1px solid #e6e9ef;background:transparent;}
.hero-right img{border-radius:12px;}


/* Cards & grids */
.section{padding:48px 0}
.section-dark{background:#fff}
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.card{background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--card-shadow)}
.card img{width:100%;height:180px;object-fit:cover}
.card .card-body{padding:14px}
.card .muted{color:var(--muted);font-size:14px;margin-top:6px}
.card .meta{margin-top:8px;font-weight:700;color:var(--royal)}
.book-now{margin-top:12px;padding:8px 12px}

/* products grid */
.products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.product-card{display:flex;flex-direction:column;min-height:320px}
.product-card img{height:220px;object-fit:cover}
.product-card .body{padding:12px;display:flex;flex-direction:column;gap:8px;flex:1}

/* CTA */
.cta{padding:36px 0;background:linear-gradient(90deg,#e9f0ff,white)}
.cta-inner{display:flex;justify-content:space-between;align-items:center;gap:20px}

/* Blog cards */
.blog-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}

/* Cart panel */
.cart-panel{position:fixed;right:0;top:0;width:380px;height:100vh;background:var(--white);box-shadow:-12px 0 30px rgba(2,6,23,0.08);padding:16px;transform:translateX(100%);transition:transform .28s ease;z-index:60;display:flex;flex-direction:column}
.cart-panel.open{transform:translateX(0)}
.cart-items{flex:1;overflow:auto; margin-top:8px}
.cart-item{display:flex;gap:10px;padding:8px;border-bottom:1px solid #f2f4f7}
.cart-item img{width:64px;height:64px;object-fit:cover;border-radius:8px}
.cart-total{font-weight:800;margin-top:12px}
.btn-clear{background:transparent;border:0;font-size:20px}

/* Modal */
.modal{position:fixed;inset:0;display:none;place-items:center;background:rgba(2,6,23,0.45);z-index:80}
.modal.open{display:grid}
.modal-inner{background:var(--white);width:90%;max-width:900px;border-radius:12px;padding:18px;position:relative}
.modal-close{position:absolute;right:12px;top:8px}

/* Footer */

/* Responsive */
@media (max-width:1100px){
  .cards{grid-template-columns:repeat(2,1fr)}
  .blog-cards{grid-template-columns:repeat(2,1fr)}
  .products-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:780px){
  .hero-grid{grid-template-columns:1fr; text-align:center}
  .main-nav{display:none}
  .header-actions{margin-left:0}
  .cards{grid-template-columns:1fr}
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .blog-cards{grid-template-columns:1fr}
  .cta-inner{flex-direction:column;align-items:flex-start}
}
@media (max-width:420px){
  .products-grid{grid-template-columns:1fr}
  .search{display:none}
}

.top-menu {
  display: flex; gap: 30px; justify-content: center;
  background: #fff; padding: 18px 10px; flex-wrap: wrap;
}
.top-menu .menu-item {
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; position: relative; text-align: center;
}
.top-menu img { width: 75px; height: 75px; border-radius: 8px; margin-bottom: 6px; }
.top-menu span { font-size: 15px; font-weight: 600; }

.dropdown-list {
  display: none; position: absolute; top: 110%; left: 50%;
  transform: translateX(-50%); background: #fff; box-shadow: 0 5px 12px rgba(0,0,0,0.15);
  padding: 12px; border-radius: 8px; min-width: 180px; z-index: 100;
}
.dropdown-list a { display: block; padding: 8px; color: #000; text-decoration: none; }
.dropdown-list a:hover { background: #eee; border-radius: 6px; }
.menu-item:hover .dropdown-list { display: block; }

/* HERO */
.hero { position: relative; overflow: hidden; }
.slider { display: flex; transition: 0.7s; }
.slide {
  min-width: 100%; height: 430px; display: flex; align-items: center;
  background-size: contain; background-position: left; background-repeat: no-repeat;
}
.slide-text { margin-left: auto; width: 45%; padding-right: 50px; color: #fffd44; }
.slide-text h1 { font-size: 34px; font-weight: 900; margin-bottom: 6px; }
.slide-text h2 { font-size: 24px; font-weight: 600; margin-bottom: 12px; color: #fff; }
.slide-text p { font-size: 17px; color: #fff; }
.btn-yellow {
  background: #ffea00; border: none; padding: 12px 26px; cursor: pointer;
  font-weight: 800; font-size: 18px; margin-top: 18px;
}

/* Arrows */
.arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 40px; padding: 10px; cursor: pointer; color: #fff;
}
.left { left: 10px; }
.right { right: 10px; }

@media (max-width: 880px) {
  .slide-text { width: 90%; margin: auto; text-align: center; }
  .slide { background-size: 300px; background-position: top; padding-top: 200px; }
}

.slide {
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:  linear-gradient(90deg, #6b0000, #a30000); /* light lavender like sample */
  padding: 30px;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1350px;
  width: 100%;
}

.slide-img {
  width: 45%;
  max-height: 420px;
  object-fit: contain;  /* crucial for proper fitting */
}

.slide-text {
  width: 55%;
  text-align: left;
}

.slide-text h1 {
  font-size: 38px;
  font-weight: 700;
  color: #ffd500;   /* yellow heading */
  margin-bottom: 15px;
}

.slide-text h3 {
  margin: 15px 0;
  font-size: 22px;
  font-weight: 600;
  color: #ffd500;   /* yellow heading */
}

.slide-text p {
  font-size: 20px;
  color: #ffffff;   /* white text */
  margin: 6px 0;
}


.btn-yellow {
  background: #d70000;
  padding: 12px 30px;
  border-radius: 6px;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 880px) {
  .slide-text {
    position: static;
    width: 90%;
    margin: auto;
    text-align: center;
    transform: none;
  }
  .slide {
    background-size: 260px;
    background-position: top;
    padding-top: 240px;
  }
}


/* ================= HERO SECTION ================= */
.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px 20px;
}

.hero-left h1 {
  font-size: 42px;
  font-weight: 700;
  color: #2a1a50;
  margin-bottom: 18px;
}

.hero-left .lead {
  font-size: 20px;
  color: #4a3c67;
  margin-bottom: 15px;
}

.hero-left .sub {
  font-size: 18px;
  color: #5a5275;
  margin-bottom: 25px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  margin: 20px 0 25px;
}

.hero-ctas .btn-primary {
  background: #a30000;
  padding: 12px 28px;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.hero-ctas .btn-ghost {
  background: transparent;
  border: 2px solid #a30000;
  padding: 11px 26px;
  color: #a30000;
  border-radius: 6px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.hero-ctas a:hover {
  opacity: 0.85;
}

.trust-list {
  margin-top: 15px;
  list-style: none;
  padding: 0;
}

.trust-list li {
  font-size: 17px;
  color: #2a1a50;
  padding-left: 20px;
  margin-bottom: 6px;
  position: relative;
}

.trust-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #a30000;
  font-weight: bold;
}

.hero-right img {
  width: 480px;
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.25);
}


/* ================= EXTRA INFO PARAGRAPHS ================= */
.extra-info p {
  margin-top: 16px;
  font-size: 18px;
  color: #3a3156;
  line-height: 1.62;
}


/* ================= FORM SECTION ================= */
#service-form {
  background: #fff;
  padding: 40px;
  margin-top: 50px;
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.15);
}

#service-form h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2a1a50;
  margin-bottom: 10px;
}

#service-form p {
  margin-bottom: 30px;
  color: #4d4168;
  font-size: 18px;
}

#service-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#service-form input,
#service-form select,
#service-form textarea {
  border: 2px solid #c8bfdc;
  outline: none;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 17px;
  transition: 0.2s;
}

#service-form input:focus,
#service-form select:focus,
#service-form textarea:focus {
  border-color: #a30000;
  box-shadow: 0 0 8px rgba(163, 0, 0, 0.25);
}

#service-form button.btn-primary {
  background: #a30000;
  padding: 14px;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  width: 220px;
}

#service-form button.btn-primary:hover {
  opacity: 0.9;
}

#service-form .btn-ghost {
  background: transparent;
  border: 2px solid #a30000;
  padding: 10px 24px;
  border-radius: 6px;
  color: #a30000;
  font-size: 17px;
  cursor: pointer;
  margin-top: 15px;
}

#service-form .btn-ghost:hover {
  background: #a30000;
  color: #fff;
}

.horoscope-section {
  width: 100%;
  padding: 25px 0 15px;
  background: #ffffff;
  text-align: center;
}

.horoscope-title {
  font-size: 22px;
  margin-bottom: 22px;
  color: #444;
  font-weight: 600;
}

.horoscope-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: 0 25px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.horoscope-grid::-webkit-scrollbar {
  display: none; /* hides scrollbar for cleaner look */
}

.horoscope-grid .sign {
  flex: 0 0 auto;
  text-decoration: none;
  color: #444;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: .3s ease;
}

.horoscope-grid .sign img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  display: block;
  margin: 0 auto 6px;
  transition: transform .35s;
}

.horoscope-grid .sign:hover img {
  transform: scale(1.09);
}

.horoscope-grid .sign:hover {
  color: #b21807;
}


/* PRASNA SECTION */
.prasna-section {
  padding: 80px 0;
  background: #fff8ef;
}

.prasna-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.prasna-text {
  flex: 1.1;
}

.prasna-text h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #8b3a12;
}

.prasna-text p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.prasna-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.prasna-points li {
  font-size: 17px;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.prasna-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #c05a22;
}

/* Right stacked images */
/* Right stacked images */
.prasna-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Make images full sharp + neat + no crop */
.prasna-images img {
  width: 100%;
  height: auto;         /* allows full natural height with no cropping */
  object-fit: contain;  /* shows full image neatly */
  border-radius: 0;     /* sharp edges */
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}


/* Button */
.prasna-btn {
  font-size: 19px;
  padding: 14px 34px;
  border-radius: 8px;
  transition: 0.3s;
}

.prasna-btn:hover {
  background: #a24215;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 960px) {
  .prasna-wrap {
    flex-direction: column;
    text-align: center;
  }
  .prasna-images img {
    height: 210px;
  }
}


.promo-strip {
  display: block;
  width: 100%;
  background: #b30000; /* deep red */
  color: #fff;
  padding: 10px 0;
  overflow: hidden;      /* important to hide overflow */
  text-align: center;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-text 12s linear infinite;
  letter-spacing: 0.4px;
}

.promo-strip:hover .scrolling-text {
  animation-play-state: paused; /* pause on hover */
}

@keyframes scroll-text {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}


/* Hide mobile nav by default */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  position: absolute;
  top: 64px; /* height of header */
  right: 0;
  left: 0;
  padding: 12px 20px;
  border-top: 1px solid #e6e9ef;
  z-index: 50;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Show when open */
.mobile-nav.open {
  display: flex;
}

/* Hide desktop nav on mobile */
@media (max-width:780px){
  .main-nav {display: none;}
  .mobile-menu-toggle {display: inline-block;}
}

/* Hide hamburger on desktop */
@media (min-width:781px){
  .mobile-menu-toggle {display: none;}
}


/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #f5f7fa;
}

.slider-container {
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  flex-wrap: nowrap;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.slide-img {
  width: 350px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.slide-text {
  color: #fff;
  max-width: 600px;
}

.slide-text h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.slide-text h2 {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 8px;
}

.slide-text p, .slide-text h3 {
  font-size: 14px;
  margin-bottom: 6px;
}

.btn-yellow {
  background: var(--gold);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
}

/* Slider Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  cursor: pointer;
  color: #fff;
  z-index: 10;
}

.arrow.left { left: 16px; }
.arrow.right { right: 16px; }

/* ===== HERO GRID ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 20px;
}

.hero-left h1 {
  font-size: 32px;
  color: var(--royal);
  margin-bottom: 16px;
}

.lead {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 12px;
}

.sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-right img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
}

/* Trust List */
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  color: var(--muted);
}

/* ===== MOBILE ===== */
@media (max-width: 780px) {

  .slide-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .slide-text h1 { font-size: 24px; }
  .slide-text h2 { font-size: 18px; }
  .slide-text p, .slide-text h3 { font-size: 14px; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .hero-left h1 { font-size: 24px; }
  .lead, .sub { font-size: 14px; }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-right img { margin-top: 20px; }

  .arrow { font-size: 28px; }
}

@media (max-width: 420px) {
  .slide-text h1 { font-size: 20px; }
  .slide-text h2 { font-size: 16px; }
  .slide-text p, .slide-text h3 { font-size: 12px; }

  .hero-left h1 { font-size: 20px; }
  .lead, .sub { font-size: 12px; }
}


.profile-dropdown {
    position: relative;
    display: inline-block;
}

.profile-icon {
    width: 40px;
    height: 40px;
    background: #0a2c82;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Standard */
}

.dropdown-menu {
    position: absolute;
    top: 50px; /* below icon */
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    min-width: 140px;
    display: none; /* hidden by default */
    z-index: 200;
}

.dropdown-menu li {
    padding: 8px 16px;
}

.dropdown-menu li a,
.dropdown-menu li button {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.dropdown-menu li a:hover,
.dropdown-menu li button:hover {
    background: #f4f8ff;
}


@media(max-width: 768px) {
    .card { font-size: 14px; }
    button { font-size: 14px; padding: 10px; }
}


#blog {
  background: #f9f9f9;
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

#blog h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.3rem;
  font-weight: 700;
  color: #1b2653;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-body {
  padding: 20px;
}

.blog-body h3 {
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-body p {
  color: #666;
  font-size: 0.95rem;
}

.blog-body .btn-read {
  display: inline-block;
  margin-top: 12px;
  color: #1b2653;
  font-weight: 600;
  border: 1px solid #1b2653;
  padding: 8px 16px;
  border-radius: 6px;
  transition: 0.3s;
}

.blog-body .btn-read:hover {
  background: #1b2653;
  color: #fff;
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: #fff;
  max-width: 700px;
  width: 100%;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content h3 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #1b2653;
}

.modal-content p {
  line-height: 1.8;
  color: #444;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 1.4rem;
  cursor: pointer;
  color: #333;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}

.consult-section {
  background: linear-gradient(135deg, #fff7ed, #fde68a, #fecaca);
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
}

.consult-container {
  width: 90%;
  max-width: 1050px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.consult-text {
  flex: 1;
}

.consult-text h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #92400e;
}

.consult-text p {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 25px;
}

.consult-btn {
  text-decoration: none;
  display: inline-block;
  background: #ff6b00;
  padding: 12px 30px;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
}

.consult-btn:hover {
  background: #d35400;
  transform: scale(1.05);
}
.consult-image {
  flex: 1;
  text-align: right;
}

.consult-image img {
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.consult-bg {
  background: url("../images/contact.webp") center/cover fixed;
  min-height: 100vh;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ✨ Glass Card */
.consult-card {
  max-width: 680px;
  text-align: center;
  padding: 45px;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  color: rgb(207, 81, 81);
}

/* ℹ Heading and text */
.consult-card h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.consult-card p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* 📦 Info Box */
.info-box {
  border: 1px solid rgba(1, 28, 90, 0.6);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.12);
}

.info-box p {
  margin: 8px 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .consult-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .consult-image img {
    max-width: 100%;
  }
  .consult-card {
    padding: 30px;
  }
}
/* Search box */
.search {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.search-results {
    position: absolute;
    top: 42px;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    background:#014e01;
    border-radius: 8px;
    border: 1px solid #ddd;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.search-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    cursor: pointer;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}

.search-item:hover {
    background: #014e01;
}

.search-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.search-info {
    flex: 1;
}

.search-title {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
}

.search-price {
    margin: 3px 0;
    color: #dbdfe8;
    font-weight: bold;
}

.search-actions {
    display: flex;
    gap: 5px;
}

.btn-small {
    padding: 4px 8px;
    font-size: 13px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background: #0a2c82;
    color: #fff;
}

.btn-small:hover {
    background: #103aa1;
}



.slide-text h1 {
  font-size: 35px;   /* Increase main title */
  font-weight: bold;
}

.slide-text h2 {
  font-size: 32px;   /* Subtitle */
}

.slide-text p {
  font-size: 18px;   /* Paragraph text */
}

.slide-text h3 {
  font-size: 25px;   /* Date/time */
}

.slide-text .btn {
  font-size: 20px;   /* Button text */
}



/* MAIN CONTAINER */
.shree-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 50px 20px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #02186a, #1a1c24);
}


/* ICON + TEXT BOX (HORIZONTAL LAYOUT) */
.shree-icons .icon-box {
    display: flex;
    align-items: center;
    gap: 15px; /* spacing between image and text */
    background: rgba(255,255,255,0.1); /* Optional soft background */
    padding: 15px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* IMAGE */
.shree-icons .icon-box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #03056b;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.25);
}

/* TEXT */
.shree-icons .icon-box p {
    font-size: 18px;
    font-weight: 600;
    color: #ffff;
    margin: 0;

    /* readability on any background */
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}






.about-shree {
  width: 90%;
  margin: 50px auto;
  padding: 40px;
  background: #f7f9ff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  font-family: 'Times New Roman', serif;
}

.section-title {
  font-size: 38px;
  color: #202e78;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-content {
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.about-content.short {
  max-height: 160px;
 
}

.about-shree h3 {
  font-size: 26px;
  margin-top: 30px;
  color: #0a2c82;
}

.about-shree p {
  font-size: 20px;
  color: #444;
  line-height: 1.8;
}

.read-btn {
  display: block;
  margin: 25px auto 0;
  background: #0a2c82;
  color: #fff;
  padding: 12px 26px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
}

.read-btn:hover {
  background: #122d99;
}


/* HEADER */
.site-header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* SEARCH */
.search {
  border: none;
  outline: none;
  padding: 8px 10px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px #ccc;
}

.search:focus {
  box-shadow: inset 0 0 0 2px #007bff;
}

/* PROFILE */
.profile-icon {
  width: 36px;
  height: 36px;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.profile-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 45px;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

/* PANELS */
.side-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #fff;
  padding: 20px;
  transition: right .3s ease;
  z-index: 2000;
}

.side-panel.open {
  right: 0;
}

.cart-total {
  font-weight: bold;
  margin: 15px 0;
}

/* MOBILE */
.mobile-search-btn {
  display: none;
}

@media (max-width: 768px) {
  .search-wrapper {
    display: none;
  }

  .mobile-search-btn {
    display: inline-flex;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ============================== */
/* MOBILE VIEW – FIX CROPPING */
/* ============================== */
@media (max-width: 768px) {

  /* remove any fixed heights */
  .hero,
  .slider-container,
  .slider,
  .slide {
    height: auto !important;
    min-height: auto !important;
  }

  /* ensure only one slide visible */
  .slider-container {
    overflow: hidden;
  }

  .slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 20px 15px 70px;
    display: flex;
    justify-content: center;
  }

  /* stack content */
  .slide-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 15px;
    width: 100%;
  }

  /* 🔥 IMAGE – NEVER CROP */
  .slide-img {
    width: 100% !important;
    max-width: 260px;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
  }

  /* text safety */
  .slide-text {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    overflow: visible;
  }

  .slide-text h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .slide-text h2 {
    font-size: 16px;
  }

  .slide-text p,
  .slide-text h3 {
    font-size: 14px;
    line-height: 1.6;
  }

  .btn.btn-yellow {
    font-size: 14px;
    padding: 10px 18px;
  }

  /* arrows moved down */
  .arrow {
    top: auto !important;
    bottom: 10px;
    font-size: 24px;
  }
}


/* =============================== */
/* FORCE CTA BUTTON VISIBILITY */
/* =============================== */

.slide .btn,
.slide a.btn,
.slide-text .btn {
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  position: relative !important;
  z-index: 9999 !important;
  background-color: #0a2c82 !important; /* yellow */
  color: #ffffff !important;
  padding: 12px 24px !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  border: none !important;
}

/* Hover */
.slide .btn:hover {
  background-color: #e0b300 !important;
  color: #ffffff !important;
}

/* OPTIONAL: Royal Blue variant */
.slide .btn-blue {
  background-color: #1f3b70 !important;
}

.slide .btn-blue:hover {
  background-color: #162b52 !important;
}


/* ================================= */
/* FORCE BUTTON VISIBILITY – PRODUCTS */
/* ================================= */

#products .btn,
#products a.btn,
#products button,
#products .product-card .btn {
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  position: relative !important;
  z-index: 9999 !important;

  background-color: #0a2c82 !important;   /* yellow */
  color: #ffffff !important;
  padding: 12px 22px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  border: none !important;
}

/* Hover */
#products .btn:hover {
  background-color: #e0b300 !important;
  color: #ffffff !important;
}

/* OPTIONAL: Royal Blue version */
#products .btn-blue {
  background-color: #1f3b70 !important;
}

#products .btn-blue:hover {
  background-color: #162b52 !important;
}


/* Default button styles */
.btn, .btn-outline, .btn-ghost, .mobile-menu-toggle {
    transition: all 0.3s ease;
}

/* Scrolled header: text and borders white */
header.scrolled .btn,
header.scrolled .btn-outline,
header.scrolled .btn-ghost,
header.scrolled .mobile-menu-toggle {
    color: #fff !important;
    border-color: #fff !important;
    background-color: transparent !important; /* keep transparent for outline/ghost */
}

/* Hover effect when scrolled */
header.scrolled .btn:hover,
header.scrolled .btn-outline:hover,
header.scrolled .btn-ghost:hover,
header.scrolled .mobile-menu-toggle:hover {
    color: #fff !important; /* stay white */
    background-color: rgba(255,255,255,0.1) !important; /* subtle hover effect */
}

/* Ensure button text stays black on hover */
.btn,
.btn-outline,
.btn-ghost,
.mobile-menu-toggle {
    color: #000 !important; /* normal text color */
}

/* Disable hover color change */
.btn:hover,
.btn-outline:hover,
.btn-ghost:hover,
.mobile-menu-toggle:hover {
    color: #000 !important; /* stay black on hover */
    background-color: inherit !important; /* no hover background */
}

