/* ===============================
   RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #2a2a2a;
  background: #ffffff;
  line-height: 1.7;
}

/* ===============================
   GLOBAL UTILITIES
================================ */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   BUTTONS
================================ */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn.small {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

.btn.red {
  background: #b11226;
  color: #fff;
}

.btn.red:hover {
  background: #8f0e1e;
}

.btn.green {
  background: #25d366;
  color: #fff;
}

.btn.green:hover {
  background: #1ebe5d;
}

.btn.outline {
  border: 1px solid #b11226;
  color: #b11226;
  background: transparent;
}

.btn.outline:hover {
  background: #b11226;
  color: #fff;
}

/* ===============================
   TOP CONTACT BAR
================================ */
.top-bar {
  background: #0d1b2a;
  color: #fff;
  font-size: 0.8rem;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: #fff;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===============================
   HEADER & NAV
================================ */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

.logo a {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d1b2a;
}

/* NAV */
.main-nav ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0d1b2a;
  padding: 0.4rem 0;
}

/* ===============================
   DROPDOWNS (CSS ONLY)
================================ */
.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: " ▾";
  font-size: 0.7rem;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown li a {
  display: block;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: #333;
}

.dropdown li a:hover {
  background: #f7f7f7;
  color: #b11226;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===============================
   PAGE CONTENT
================================ */
.page-content {
  padding: 3rem 0;
}

.page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #0d1b2a;
}

.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 2rem 0 1rem;
  color: #0d1b2a;
}

.page-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ===============================
   UNIVERSAL ENQUIRY BOX
================================ */
.enquiry-box {
  background: #0d1b2a;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.enquiry-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.enquiry-box p {
  margin-bottom: 1.5rem;
}

.enquiry-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===============================
   FOOTER
================================ */
.site-footer {
  background: #0b1522;
  color: #cfcfcf;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.site-footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer li {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}

/* ===============================
   WHATSAPP FLOAT
================================ */
.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  background: #25d366;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  padding: 0.7rem 1.5rem;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .main-nav ul {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-flex {
    justify-content: center;
    text-align: center;
  }
}
/* ===============================
   ENQUIRY FORM PATCH
================================ */
.enquiry-form {
  max-width: 500px;
  margin: 1.5rem auto 0;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 0.8rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-family: inherit;
}

/* ===============================
   FOOTER ICONS
================================ */
.icon-location::before { content: "📍 "; }
.icon-phone::before { content: "📞 "; }
.icon-email::before { content: "✉️ "; }

/* ===============================
   OTHER SERVICES ICON LIST
================================ */
.service-icons li::before {
  content: "› ";
  color: #b11226;
}

/* ===============================
   LINKEDIN ICON
================================ */
.linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #0a66c2;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  margin-top: 0.5rem;
}

/* ===============================
   WHATSAPP SHRINK EFFECT
================================ */
.whatsapp-float {
  overflow: hidden;
}

.whatsapp-float:hover {
  padding: 0.7rem 1.5rem;
}
/* ===== FOOTER OG FIX ===== */

.footer-og {
  align-items: flex-start;
}

.footer-contact .fc-item {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.footer-contact .location::before {
  content: "📍";
  position: absolute;
  left: 0;
}

.footer-contact .phone::before {
  content: "📞";
  position: absolute;
  left: 0;
}

.footer-contact .email::before {
  content: "✉️";
  position: absolute;
  left: 0;
}

.footer-links li,
.service-icons li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
}

.footer-links li::before,
.service-icons li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #b11226;
}

/* LinkedIn */
.linkedin-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  background: #0a66c2;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  margin-left: 6px;
}

/* ===== WHATSAPP FORCE FIX ===== */
.whatsapp-float {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
/* ===============================
   ENQUIRY POPUP (INDEX ONLY)
================================ */
#enquiry-toggle {
  display: none;
}

.enquiry-float-btn {
  position: fixed;
  right: -42px;
  top: 50%;
  transform: rotate(-90deg);
  background: #b11226;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 1000;
  border-radius: 4px 4px 0 0;
}

.enquiry-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #0d1b2a;
  color: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 420px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2000;
}

#enquiry-toggle:checked ~ .enquiry-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.enquiry-popup h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

.enquiry-popup input,
.enquiry-popup textarea {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 0.8rem;
  border-radius: 4px;
  border: none;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  cursor: pointer;
  font-size: 1.2rem;
}
/* ===============================
   SITE LOGO IMAGE
================================ */
.site-logo {
  height: 48px;          /* desktop */
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .site-logo {
    height: 40px;        /* mobile */
  }
}
/* ===============================
   SERVICE PAGE SIDE IMAGE LAYOUT
================================ */

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
}

.service-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-content h1 {
  margin-bottom: 0.5rem;
}

.service-content .btn {
  margin-bottom: 1rem;
}

.service-list {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
}

.service-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-image img {
    max-width: 100%;
  }
}
/* ===============================
   SERVICE PAGE LAYOUT (FIX)
================================ */

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.breadcrumb a {
  color: #0d1b2a;
}

/* Two-column layout */
.service-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

/* Image */
.service-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Content */
.service-content h1 {
  margin-bottom: 0.8rem;
}

.service-content h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.service-intro {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Lists */
.service-list,
.service-points {
  padding-left: 1.1rem;
  margin-bottom: 1.2rem;
}

.service-list li,
.service-points li {
  list-style: disc;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

/* Buttons */
.service-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ===============================
   RESPONSIVE FIX
================================ */
@media (max-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-image {
    order: -1;
  }
}
/* ===============================
   MEGA DROPDOWN FIX (IPR SERVICES)
================================ */

/* Make dropdown wider */
.main-nav .dropdown {
  min-width: 720px;
  padding: 1rem 1.2rem;
}

/* Multi-column layout */
.main-nav .dropdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem 1.5rem;
}

/* Dropdown links */
.main-nav .dropdown li a {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  white-space: normal;
}

/* Remove hover background stretch issue */
.main-nav .dropdown li a:hover {
  background: transparent;
  color: #b11226;
}

/* Ensure it aligns under menu item */
.has-dropdown {
  position: relative;
}

.has-dropdown .dropdown {
  left: 0;
  top: 100%;
}

/* Mobile fallback */
@media (max-width: 900px) {
  .main-nav .dropdown {
    min-width: 100%;
    grid-template-columns: 1fr;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #222;
  line-height: 1.6;
}

/* COMMON */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.center {
  text-align: center;
}

/* TOP BAR */
.top-bar {
  background: #0b1c2d;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 55px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}
/* ===============================
   INDEX PAGE FIXES ONLY
================================ */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  transform: translateX(-240px);
}

.hero-tag {
  display: inline-block;
  color: #cfa85c;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
}

/* INTRO */
.intro {
  padding: 4rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-image img {
  width: 100%;
  border-radius: 6px;
}

/* SERVICES */
.services {
  padding: 4rem 0;
  background: #f7f7f7;
}

.services .center {
  text-align: center;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  border-radius: 4px;
  font-weight: 500;
}

/* WHY US */
.why-us {
  position: relative;
  padding: 4rem 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.why-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.why-list li {
  margin-bottom: 1rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 5rem 0;
  background: #f9f9f9;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #b11226;
  text-transform: uppercase;
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin: 0.5rem 0;
}

.section-head p {
  max-width: 600px;
  margin: auto;
  font-size: 0.95rem;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 6px;
  text-align: left;
  transition: all 0.35s ease;
  border: 1px solid #eee;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #b11226;
}

.service-icon {
  font-size: 2rem;
  color: #b11226;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #0d1b2a;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
}

/* ================= INFO BLOCKS ================= */
.info-blocks {
  padding: 4rem 0;
  background: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.info-card {
  border: 1px solid #eee;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  background: #fafafa;
}

.info-card:hover {
  background: #0d1b2a;
  color: #fff;
  transform: translateY(-8px);
}

.info-card:hover h3,
.info-card:hover p {
  color: #fff;
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}
/* ================= WHY CHOOSE OUR FIRM ================= */
.why-choose {
  background: linear-gradient(
      rgba(13, 27, 42, 0.92),
      rgba(13, 27, 42, 0.92)
    ),
    url('../assets/images/why-bg.jpg') center/cover no-repeat;
  padding: 5rem 0;
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-content .section-tag {
  color: #c9a24d;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.why-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin: 0.8rem 0 2rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem 1.4rem;
  border-left: 3px solid #b11226;
  transition: all 0.3s ease;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(6px);
}

.why-icon {
  font-size: 1.4rem;
  color: #b11226;
  margin-top: 0.2rem;
}

.why-item h4 {
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
  color: #fff;
}

.why-item p {
  font-size: 0.9rem;
  color: #d0d0d0;
}

.why-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    display: none;
  }
}
/* ===== ABOUT PAGE HERO ===== */
.page-hero {
  position: relative;
  min-height: 55vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-left: 10%;
  color: #fff;
  max-width: 800px;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin: 0;
}

.page-subtitle {
  display: block;
  color: #ff1e00;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* ===== ABOUT CONTENT ===== */
.about-content {
  padding: 70px 0;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .page-hero-content {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .page-hero-content h1 {
    font-size: 2.2rem;
  }
}
.page-hero-overlay {
  background: rgba(0,0,0,0.75);
}

.page-hero-content h1 {
  color: #c9a24d;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
/* =========================================================
   UNIVERSAL SERVICE PAGE LAYOUT (FINAL – DO NOT CHANGE)
   Used by: Patent, Trademark, Copyright, Design, GI, etc.
   ========================================================= */

.page-content {
  padding: 60px 0;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 30px;
  color: #777;
}

.breadcrumb a {
  color: #b11226;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ---------- Main Layout ---------- */
.service-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 50px;
  align-items: flex-start;
}

/* ---------- Image Section ---------- */
.service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ---------- Content Section ---------- */
.service-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  margin-bottom: 15px;
}

.service-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

.service-content h3 {
  margin-top: 35px;
  margin-bottom: 12px;
  font-size: 20px;
  color: #0b1c2d;
}

/* ---------- Lists ---------- */
.service-list,
.service-points {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.service-list li,
.service-points li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.service-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #b11226;
  font-weight: bold;
}

.service-points li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #0b1c2d;
  font-weight: bold;
}

/* ---------- CTA Buttons ---------- */
.service-actions {
  margin-top: 35px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ---------- Responsive (FINAL) ---------- */
@media (max-width: 992px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-content h1 {
    font-size: 30px;
  }
}
/* ===============================
   TOP BAR – GLOBAL FIX (FINAL)
   =============================== */

.top-bar {
  background: linear-gradient(90deg, #0b1f33, #102b46);
  color: #e5eaf0;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar a {
  color: #e5eaf0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar a:hover {
  color: #ff4d4d;
}

/* Flex alignment */
.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Left emails */
.top-flex > div:first-child {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
}

/* Right actions */
.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-actions span {
  opacity: 0.85;
  font-weight: 500;
}

/* Buttons */
.top-actions .btn {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1;
}

/* Red CTA */
.top-actions .btn.red {
  background: #c4161c;
  border: 1px solid #c4161c;
  color: #fff;
}

.top-actions .btn.red:hover {
  background: #a51217;
  border-color: #a51217;
}

/* Outline button */
.top-actions .btn.outline {
  background: transparent;
  border: 1px solid #c4161c;
  color: #c4161c;
}

.top-actions .btn.outline:hover {
  background: #c4161c;
  color: #fff;
}

/* ===============================
   MOBILE REFINEMENT
   =============================== */

@media (max-width: 768px) {
  .top-flex {
    justify-content: center;
    text-align: center;
  }

  .top-flex > div:first-child,
  .top-actions {
    justify-content: center;
  }

  .top-actions span {
    display: none; /* hide "Call Us:" on small screens */
  }
}
/* =========================
   OUR LEADERSHIP PAGE
========================= */

.leadership-page {
  padding: 60px 0;
}

.leadership-header {
  max-width: 800px;
  margin-bottom: 50px;
}

.leadership-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 15px;
}

.leadership-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* Remove default anchor styling */
.leader-link {
  text-decoration: none;
  color: inherit;
}

/* Card */
.leader-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
/* Fix leadership image scaling & alignment */
.leader-card img {
  width: 100%;
  height: 320px;              /* keep uniform height */
  object-fit: cover;          /* fill card cleanly */
  object-position: top center;/* align faces consistently */
  display: block;
}
.leader-card img {
  object-position: 50% 20%;
}

/* Hover effect */
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Image */
.leader-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Content */
.leader-info {
  padding: 22px;
}

.leader-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #111;
}

.leader-role {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #b10000;
  margin-bottom: 12px;
}

.leader-info p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #555;
}

/* CTA */
.leader-cta {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: #b10000;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.leader-card:hover .leader-cta {
  transform: translateX(6px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .leadership-header h1 {
    font-size: 34px;
  }

  .leader-card img {
    height: 260px;
  }
}
/* ================================
   LEADERSHIP – PROFILE PAGE
   ================================ */

.profile-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

/* IMAGE CONTAINER */
.profile-image {
  background: #f5f6f8;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* IMAGE ITSELF */
.profile-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;     /* 🔥 NO CROPPING */
  border-radius: 10px;
  display: block;
}

/* CONTENT */
.profile-content h1 {
  font-size: 34px;
  margin-bottom: 6px;
}

.profile-role {
  color: #c4161c;
  font-weight: 600;
  margin-bottom: 22px;
}

.profile-content p {
  line-height: 1.75;
  margin-bottom: 16px;
  color: #333;
}

/* LIST */
.profile-list {
  margin: 16px 0 24px;
  padding-left: 18px;
}

.profile-list li {
  margin-bottom: 8px;
}

/* CTA */
.profile-content .service-actions {
  margin-top: 28px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 900px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-image img {
    max-height: 420px;
  }
}
/* ================= CONTACT PAGE ================= */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.contact-info {
  background: #f7f7f7;
  padding: 35px;
  border-radius: 8px;
}

.contact-title {
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
}

.contact-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #c90000;
  display: block;
  margin-top: 8px;
}

.contact-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px dashed #ddd;
}

.contact-item:last-child {
  border-bottom: none;
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: #c90000;
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-item a {
  color: #333;
}

/* FORM */
.contact-form-box {
  background: #fff;
  padding: 35px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.contact-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.mobile-field {
  display: flex;
}

.mobile-field span {
  padding: 10px 12px;
  background: #eee;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 4px 0 0 4px;
}

.mobile-field input {
  border-radius: 0 4px 4px 0;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}
/* ===== ICON POLISH ===== */

.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px; /* softer than circle */
  background: #fbeaea; /* soft red background */
  color: #c90000;
  border: 1px solid rgba(201,0,0,0.25);
  font-size: 16px;
  font-weight: 600;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.contact-item:hover .ci-icon {
  background: #f5e400;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(201,0,0,0.25);
}

/* ===== LINKEDIN SPECIAL ===== */

.ci-icon.linkedin {
  background: #e8f1fb;
  color: #0a66c2;
  border-color: rgba(10,102,194,0.3);
  font-family: Arial, sans-serif;
}

.contact-item.linkedin-item:hover .ci-icon.linkedin {
  background: #0a66c2;
  color: #fff;
  box-shadow: 0 8px 18px rgba(10,102,194,0.35);
}

/* LinkedIn link emphasis */
.contact-item.linkedin-item a {
  color: #0a66c2;
  font-weight: 600;
  word-break: break-word;
}

.contact-item.linkedin-item a:hover {
  text-decoration: underline;
}

/* ===== CONTACT INFO TEXT REFINEMENT ===== */

.contact-item h4 {
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #333;
}

.contact-item p {
  font-size: 14px;
  color: #555;
}

.contact-item a {
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #c90000;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.sitemap-col h3 {
  font-size: 18px;
  margin-bottom: 12px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
}

.sitemap-list {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
}

.sitemap-list li {
  margin: 6px 0;
}

.sitemap-list li ul {
  margin-top: 6px;
  margin-left: 18px;
}

.sitemap-list a {
  text-decoration: none;
  color: #222;
}

.sitemap-list a:hover {
  color: #c00;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   GANESH JI – HOME PAGE ONLY
   =============================== */

.ganesh-home {
  position: absolute;
  top: 6px;
  left: 10px;
  z-index: 999;
}

.ganesh-home img {
  height: 48px;          /* desktop */
  width: auto;
  opacity: 0.95;
}

/* Tablet */
@media (max-width: 1024px) {
  .ganesh-home img {
    height: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ganesh-home {
    top: 4px;
    left: 6px;
  }

  .ganesh-home img {
    height: 32px;
  }
}
.ganesh-home {
  position: absolute;
  top: 6px;
  right: 10px;   /* 👈 move to right */
  left: auto;    /* 👈 disable left */
  z-index: 999;
}

/* ===============================
   UNIVERSAL MOBILE FIX – APPEND ONCE
   =============================== */

@media (max-width: 768px) {

  /* Prevent header overlapping content */
  body {
    padding-top: 135px;
  }

  /* HERO SECTION FIX */
  .hero {
    min-height: auto;
    padding: 90px 16px 110px;
    background-position: center right;
  }

  .hero-content {
    max-width: 100%;
    margin: 0;
  }

  .hero-content h1 {
    font-size: clamp(26px, 6vw, 44px);
    line-height: 1.2;
  }

  .hero-content p,
  .hero-content .tagline {
    font-size: clamp(14px, 4vw, 18px);
  }

  /* Floating buttons spacing */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    transform: none;
  }

  .enquiry-float-btn {
    top: 45%;
  }

  /* Ganesh Ji icon (top right) */
  .ganesh-home img {
    width: 26px;
    height: auto;
    opacity: 0.9;
  }

}
/* ===============================
   FORCE HERO TEXT CENTER (MOBILE ONLY)
   =============================== */

@media (max-width: 768px) {

  .hero {
    justify-content: center !important;
  }

  .hero-content {
    left: 50% !important;
    transform: translateX(-50%) !important;

    margin: 0 !important;
    padding: 0 16px;

    text-align: center;
    max-width: 92%;
  }

}

/* ===============================
   LAZY PERFORMANCE FIX (GLOBAL)
   Safe: no layout break
   =============================== */

/* 1. Prevent hero from blocking text render */
.hero {
  contain: layout paint;
  will-change: opacity;
}

/* 2. Stop huge reflows on mobile */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .hero-content {
    max-width: 92%;
    margin: 0 auto;
    padding: 0 12px;
    text-align: center;
  }
}

/* 3. Reduce font rendering delay */
* {
  text-rendering: optimizeSpeed;
}

/* 4. Reduce animation cost */
*,
*::before,
*::after {
  animation-duration: 0.01ms !important;
  animation-delay: 0s !important;
  transition-duration: 0.01ms !important;
}

/* 5. Avoid layout jumps from images */
img {
  max-width: 100%;
  height: auto;
}

/* 6. Improve scroll + paint performance */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
}

