:root{
  --bg: #f6fbff;
  --card: #ffffff;
  --primary: #1f74d1;
  --accent: #0fb3c6;
  --muted: #64748b;
  --dark: #0b3a66;
  --radius: 12px;
  --container: 1180px;
  --shadow-1: 0 6px 18px rgba(15,23,42,0.06);
  --shadow-2: 0 20px 45px rgba(11,116,222,0.06);
}

/* Basic reset */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--dark);
  background: linear-gradient(180deg,var(--bg), #ffffff);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}

/* Wrapper */
.wrap{
  max-width:var(--container);
  margin:28px auto;
  padding:20px;
}

/* Header */
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 18px;
  background:rgba(255,255,255,0.85);
  border-radius:14px;
  box-shadow:var(--shadow-1);
  

  position:fixed;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  width:calc(100% - 40px);
  max-width:var(--container);
  z-index:9999;
}

body.has-fixed-header .wrap{
  padding-top: 84px; /* adjust (70-100px) if needed to perfectly align */
}

/* make anchored sections scroll below the fixed header */
section, .section-title, .about-section, .services-section, .packages-section, .contact-section {
  scroll-margin-top: 92px; /* slightly larger than header height for safe spacing */
}

@media (max-width:780px){
  .main-nav.mobile-open {
    position: absolute !important;
    top: 78px !important;
    right: 20px !important;
    background: rgba(255,255,255,0.98) !important;
    padding: 12px !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(15,23,42,0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
}

.brand{display:flex;align-items:center;gap:12px}
.logo{
  display:flex;align-items:center;justify-content:center;
  width:48px;height:48px;border-radius:10px;
  background:transparent;

}
.logo img {
  width: 80px;
  height: 80px;
  cursor: pointer;
  object-fit: contain;       /* maintains original shape */
}
.brand-text .lab-name{font-weight:800;color:var(--dark)}
.brand-text .tag{font-size:12px;color:var(--muted)}

/* Nav */
.main-nav{display:flex;gap:18px;align-items:center;}
.main-nav :hover{
  background-color: blue;  /* Hover color */
  color: whitesmoke;
  padding: 4px 8px 4px 8px;
  border-radius: 5px;
  transform: scale(1.1); 
}
.main-nav a{text-decoration:none;color:var(--muted);font-weight:600}
.btn-cta{
   color: whitesmoke;        /* White Text */
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

/* Mobile nav toggle (hidden on desktop) */
.nav-toggle{
  display:none;
  background:transparent;border:0;font-size:20px;
}

/* HERO layout */
.hero{
  display:grid;
  grid-template-columns:1fr 480px;
  gap:28px;
  align-items:center;
  margin-top:20px;
}

.hero-left .pre{color:var(--muted);font-weight:600;margin-bottom:10px}
.hero-left h1{font-size:40px;margin:0 0 12px 0;line-height:1.02;color:var(--dark)}
.lead{color:var(--muted);margin:0 0 18px;font-size:17px}

/* Buttons */
.actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:18px}
.btn{padding:12px 16px;border-radius:10px;font-weight:700;text-decoration:none;display:inline-block}
.btn-primary{background:var(--primary);color:white}
.btn-primary:hover{
  background-color: deepskyblue;
  transition: 0.3sec;
}
.btn-outline{background:#fff;border:1px solid rgba(11,116,222,0.12);color:var(--dark)}
.btn-outline:hover{background: blue;
color: white;}
.btn-ghost{background:#e6eef9;color:var(--dark)}
.btn-ghost:hover{
  background-color: blue;
  color: white;
}

/* Highlights grid */
.highlights{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;margin-top:8px;
}
.badge{
  display:flex;gap:12px;align-items:center;padding:12px;border-radius:10px;background:#fff;
  box-shadow:0 6px 16px rgba(11,116,222,0.04);
}
.badge .icon{
  width:36px;height:36px;border-radius:8px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#fff;display:grid;place-items:center;font-weight:700;
}
.badge .meta .title{font-weight:700;color:var(--dark)}
.badge .meta .sub{color:var(--muted);font-size:13px}

/* Hero right image card */
.hero-right{
  background:var(--card);border-radius:18px;overflow:hidden;
  box-shadow:var(--shadow-2);display:flex;align-items:center;justify-content:center;padding:18px;
}
.hero-right img{max-width:100%;height:auto;border-radius:10px}

/* Footer */
.site-footer{margin-top:22px;color:var(--muted);font-size:14px;text-align:center}

/* ABOUT SECTION (existing styles) */
.about-section{
  margin-top:40px;
  padding:28px;
}
.section-title{
  text-align:center;
  font-size:34px;
  margin:0 0 6px 0;
  color:var(--dark);
}
.section-sub{
  text-align:center;
  color:var(--muted);
  margin:0 0 18px 0;
}

/* Card with top accent like the image */
.about-card{
  background:var(--card);
  border-radius:14px;
  padding:18px;
  box-shadow:var(--shadow-1);
  border-top:6px solid rgba(31,116,209,1); /* subtle blue top edge */
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
  margin-bottom:18px;
}
.about-image img{
  width:100%;
  height:auto;
  border-radius:10px;
  display:block;
}
.about-content h3{margin:0 0 10px 0;color:var(--dark);font-size:20px}
.about-content p{color:var(--muted);line-height:1.6}

/* Mission box */
.mission-box{
  margin-top:12px;
  background: linear-gradient(90deg,var(--primary),var(--accent));
  color:white;
  padding:12px;
  border-radius:8px;
  font-weight:600;
}

/* Why choose us */
.why-title{
  text-align:center;
  margin:12px 0 12px 0;
  font-size:20px;
  color:var(--dark);
}
.why-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:14px;
  margin-top:12px;
}
.why-card{
  background:#fff;
  padding:14px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(15,23,42,0.04);
  text-align:center;
  color:var(--dark);
  font-weight:600;
  font-size:14px;
}

/* Responsive rules for about */
@media (max-width:1000px){
  .about-card{grid-template-columns:1fr 1fr}
  .why-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:780px){
  .hero{grid-template-columns:1fr}
  .hero-right{order:-1;margin-bottom:14px}
  .main-nav{display:none}
  .nav-toggle{display:block}
  .wrap{padding:12px}
  .highlights{grid-template-columns:1fr}
  .about-card{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
}

/* ===========================
   SERVICES SECTION (new styles)
   =========================== */

.services-section{
  margin-top:40px;
  padding:22px 8px 40px 8px;
}
.services-section .section-title{margin-bottom:8px}
.services-search{
  max-width:720px;
  margin:12px auto 20px auto;
  display:block;
}
.services-search input[type="search"]{
  width:100%;
  padding:12px 16px;
  border-radius:10px;
  border:1px solid rgba(11,116,222,0.12);
  font-size:16px;
  outline:none;
  box-shadow:0 6px 16px rgba(11,116,222,0.03);
}

/* Grid of service cards */
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-top:18px;
}

/* Individual card */
.service-card{
  background:var(--card);
  border-radius:12px;
  padding:12px;
  box-shadow:0 12px 30px rgba(15,23,42,0.04);
  border-top:6px solid rgba(31,116,209,0.18);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:220px;
}
.service-head{display:flex;align-items:flex-start;gap:12px}
.service-icon{
  width:44px;height:44px;border-radius:8px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#fff;display:grid;place-items:center;font-weight:800;font-size:18px;
}
.service-card h4{margin:0;color:var(--dark);font-size:16px}
.service-sub{font-size:13px;color:var(--muted);margin-top:4px}

.service-body p{color:var(--muted);font-size:14px;margin:8px 0}

/* footer inside card (price + button) */
.service-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:8px;
}
.service-price{font-weight:800;color:var(--dark)}
.service-btn{
  background:var(--primary);
  color:#fff;
  padding:8px 12px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  box-shadow: 0 6px 18px rgba(31,116,209,0.12);
}

/* make grid responsive */
@media (max-width:1100px){
  .services-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:900px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .services-search{max-width:520px}
}
@media (max-width:600px){
  .services-grid{grid-template-columns:1fr}
  .services-section{padding:18px 6px}
  .services-search{max-width:100%}
}

/* ===========================
   Search - No results message
   =========================== */
.no-results{
  background: transparent;
}
/* === (keep all your existing styles above unchanged) === */
/* ...existing content omitted here for brevity - keep your full existing file above... */

/* ===========================
   PACKAGES SECTION (new styles)
   =========================== */

.packages-section{
  margin-top:40px;
  padding:22px 8px 40px 8px;
}
.packages-section .section-title{margin-bottom:8px}
.packages-search{
  max-width:720px;
  margin:12px auto 20px auto;
  display:block;
}
.packages-search input[type="search"]{
  width:100%;
  padding:12px 16px;
  border-radius:10px;
  border:1px solid rgba(11,116,222,0.12);
  font-size:16px;
  outline:none;
  box-shadow:0 6px 16px rgba(11,116,222,0.03);
}

/* grid for packages - 3 across like your design */
.packages-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
  margin-top:18px;
}

/* individual package card */
.package-card{
  background:var(--card);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(15,23,42,0.06);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* top blue header area */
.pkg-head{
  background: linear-gradient(90deg,var(--primary),var(--accent));
  color:#fff;
  padding:18px;
  border-bottom:6px solid rgba(255,255,255,0.06);
}
.pkg-title{font-size:20px;font-weight:800}
.pkg-sub{font-size:13px;opacity:0.95;margin-top:6px}

/* list of items */
.pkg-list{
  list-style:none;
  padding:16px 18px;
  margin:0;
  color:var(--dark);
  line-height:1.6;
}
.pkg-list li{
  margin-bottom:8px;
  position:relative;
  padding-left:22px;
}
.pkg-list li:before{
  content: '✓';
  position:absolute;
  left:0;
  top:0;
  color:var(--primary);
  font-weight:800;
}

/* footer with price and button */
.pkg-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 18px 18px;
}
.pkg-price{font-weight:900;font-size:18px;color:var(--dark)}
.pkg-btn{
  background:var(--primary);
  color:#fff;
  padding:10px 16px;
  border-radius:8px;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 8px 22px rgba(31,116,209,0.12);
}

/* Responsive */
@media (max-width:1100px){
  .packages-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:760px){
  .packages-grid{grid-template-columns:1fr}
  .packages-section{padding:18px 8px}
  .packages-search{max-width:100%}
}

/* ===========================
   CONTACT SECTION (new styles)
   =========================== */

.contact-section{
  margin-top:40px;
  padding:20px;
}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
  align-items:start;
}

/* left column */
.contact-info{
  background:var(--card);
  padding:18px;
  border-radius:12px;
  box-shadow:var(--shadow-1);
  border-top:6px solid rgba(31,116,209,0.18);
}
.contact-title{
  font-size:22px;
  margin:0 0 12px 0;
  color:var(--dark);
}
.contact-list{
  list-style:none;
  padding:0;
  margin:0 0 14px 0;
  color:var(--dark);
  line-height:1.8;
}
.contact-list li{display:flex;align-items:center;gap:10px}
.ci-icon{width:26px;height:26px;display:inline-grid;place-items:center}

/* CTAs */
.contact-ctas{display:flex;gap:12px;margin:14px 0}
.cta-call, .cta-home{
  display:inline-block;
  padding:10px 16px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 8px 18px rgba(15,23,42,0.06);
}
.cta-call{background:var(--primary);color:#fff}
.cta-home{background:#dbeffd;color:var(--dark)}

/* map */
.map-wrap{margin-top:12px;border-radius:10px;overflow:hidden}
.map-wrap img{width:100%;height:auto;display:block}

/* right column - booking form */
.booking-form-wrap{
  background:var(--card);
  padding:18px;
  border-radius:12px;
  box-shadow:var(--shadow-1);
  border-top:6px solid rgba(31,116,209,0.18);
}


/* responsive */
@media (max-width:1000px){
  .contact-grid{grid-template-columns:1fr;gap:16px}
  .contact-ctas{flex-direction:row;flex-wrap:wrap}
}

/* put this near the contact/GF styles */
.gf-wrap {
  position: relative;
}

/* overlay a white bar at bottom of the iframe to hide the Google badge */
.gf-wrap::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:46px;          /* adjust until badge is hidden */
  background: #fff;     /* match page background */
  pointer-events: none; /* allow clicks to pass through if needed (but we want clicks to still hit the iframe) */
  box-shadow: 0 -8px 20px rgba(0,0,0,0.02);
  z-index: 5;
}
/* ===== Google Form scroll container ===== */
.gf-wrap {
  max-height: 550px;      /* jitna area dikhana hai, yaha adjust kar sakti ho */
  overflow-y: auto;       /* vertical scroll enable */
  overflow-x: hidden;     /* horizontal scroll mat dikhana */
}

/* iframe ko container ke andar properly fit rakhne ke liye */
.gf-wrap iframe {
  width: 100%;            /* form full width le */
  border: 0;
  display: block;
}
