/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a2a4a;
  --primary-light: #2c4a7c;
  --accent: #c8a45e;
  --accent-hover: #b8943e;
  --text: #333;
  --text-light: #666;
  --bg: #ffffff;
  --bg-light: #f7f8fa;
  --bg-dark: #0e1a30;
  --border: #e0e0e0;
  --white: #ffffff;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.field_mark
{
	color:red;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.3;
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.2rem; font-weight: 600; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }

.section-subtitle {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 164, 94, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 12px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  /*width: 48px;
  height: 48px;*/
  width: 100px;
  height: 100px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.header.scrolled .logo-text {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--white);
}

.header.scrolled .nav-links a {
  color: var(--text);
}

.header.scrolled .nav-links a:hover {
  color: var(--primary);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.header.scrolled .menu-toggle span {
  background: var(--primary);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
 /*background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);*/
 background-image: url("../img/Banner.jpg");
 background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");*/
  background-color: #000000a8;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  /*color: rgba(255,255,255,0.8);*/
  color: white;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item h3 {
  color: var(--accent);
  font-size: 2.5rem;
  font-family: var(--font-heading);
}

.stat-item p {
  /*color: rgba(255,255,255,0.7);*/
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ===== SECTIONS ===== */
section {
  padding: 50px 0;
}

.section-light {
  background: var(--bg-light);
}

.section-dark {
  background: var(--primary);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 3rem;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--accent);
  border-radius: 8px;
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.about-feature .check {
  width: 22px;
  height: 22px;
  background: rgba(200, 164, 94, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 164, 94, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card .learn-more:hover {
  gap: 10px;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(200, 164, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
}

.why-card h4 {
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card .quote-mark {
  font-size: 4rem;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-info span {
  color: var(--text-light);
  font-size: 0.85rem;
}
/**************************/
/* Remove grid */
.testimonials-grid {
  display: none;
}

/* Swiper spacing */
.testimonialSwiper {
  padding: 60px 0;
}

/* Default slide (side cards) */
.testimonialSwiper .swiper-slide {
  transform: scale(0.8);
  opacity: 0.4;
  filter: blur(2px);
  transition: all 0.6s ease;
}

/* Active (center card) */
.testimonialSwiper .swiper-slide-active {
  transform: scale(1.05);
  opacity: 1;
  filter: blur(0);
}

/* Card upgrade */
.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  padding: 36px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: all 0.4s ease;
}
.swiper-horizontal
{
	padding: 2rem !important;
}

/* Quote */
.quote-mark {
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
}

/* Text */
.testimonial-card p {
  color: #cfd8e3;
  font-style: italic;
}

/* Avatar */
.testimonial-avatar {
  background: var(--accent);
  color: #000;
}

/* Base (far slides) */
.testimonialSwiper .swiper-slide {
  transform: scale(0.9);
  opacity: 0.5;
  filter: blur(1px); /* 👈 reduced from 2px */
  transition: all 0.5s ease;
}

/* Side slides (important) */
.testimonialSwiper .swiper-slide-prev,
.testimonialSwiper .swiper-slide-next {
  transform: scale(0.95);
  opacity: 0.75;
  filter: blur(0.3px); /* 👈 VERY subtle blur */
}

/* Center */
.testimonialSwiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  /*width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 3rem;
  overflow: hidden;*/
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    overflow: hidden;
}
.team-photo img {
    /*width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	object-position: top;*/
	width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center 15%;
}
/* hidden section */
.extra-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #555;
}

/* active state */
.team-card.active .extra-content {
  max-height: 150px;
  margin-top: 10px;
}

/* button */
.partner1-view-more-btn, .partner2-view-more-btn, .partner3-view-more-btn, .partner4-view-more-btn {
  margin-top: 12px;
  background: none;
  border: none;
  color: #c89b5e;
  font-weight: 600;
  cursor: pointer;
}

.team-info {
  padding: 24px 16px;
}

.team-info h4 {
  margin-bottom: 4px;
}

.team-info span {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
}

.team-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ===== SERVICES DETAIL ===== */
.services-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.service-detail-card {
  background: var(--white);
  padding: 36px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-detail-card h3 {
  margin-bottom: 12px;
}

.service-detail-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-detail-card ul {
  list-style: none;
}

.service-detail-card ul li {
  padding: 6px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-detail-card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 8px;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 164, 94, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  margin-bottom: 4px;
}

.contact-card p, .contact-card a {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-card a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 164, 94, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
  font-size: 2.8rem;
}

.page-banner p {
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 1rem auto 0;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb a:hover {
  color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 30px;
  /*color: rgba(255,255,255,0.7);*/
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about .logo-text {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.95rem;
  /*color: rgba(255,255,255,0.6);*/
  color: white;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  /*display: flex;*/
  text-align: center;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  /*color: rgba(255,255,255,0.4);*/
  color: white;
}

.footer-contact h4 {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #ffffff;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  /*color: #cbd5e1;*/
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}

.location-list li i {
  color: #d4a373; /* premium gold tone */
  font-size: 14px;
}

.location-list li span small {
  color: #94a3b8;
  font-size: 13px;
}

/* subtle hover effect */
.location-list li:hover {
  transform: translateX(4px);
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding: 10px 40px 10px 0;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  align-self: flex-end;
  margin-left: 50%;
  padding: 10px 0 10px 40px;
}

.timeline-dot {
  position: absolute;
  right: -8px;
  top: 24px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--bg-light);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
  right: auto;
}

.timeline-content {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.timeline-content h4 {
  color: var(--accent);
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== MAP PLACEHOLDER ===== */
.map-section {
  width: 100%;
  height: 400px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.1rem;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/*** Scroll to top **/
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;

  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.scroll-top.show {
  display: flex;
}
.progress-ring {
  position: absolute;
  transform: rotate(-90deg);
}
.progress-ring-bg {
  fill: none;
  stroke: #e6e6e6;
  stroke-width: 4;
}
.progress-ring-circle {
  fill: none;
  stroke: #1e3a5f; /* main brand color */
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 163;
  stroke-dashoffset: 163;
  transition: stroke-dashoffset 0.2s;
}
.arrow {
  position: relative;
  font-size: 18px;
  color: #1e3a5f;
  font-weight: bold;
}
.scroll-top:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}
/***Call Button in menu Bar***/
.call-btn {
  background: #c8a45e;
  color: #111;
  padding: 10px 22px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.call-btn i {
  font-size: 16px;
}

.call-btn:hover {
  background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(200, 164, 94, 0.4);
}
/****About our firm image*****/
.about-image-placeholder img
{
	width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Mission & Vision 2-col override */
.mission-vision-grid {
  grid-template-columns: 1fr 1fr !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  section { padding: 60px 0; }
  .index_maincontent{ padding: 20vh 0; }

 /* .logo-img { width: 38px; height: 38px; }*/
 .logo-img { width: 90px; height: 90px; }
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 24px;
    transition: var(--transition);
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1rem;
  }

  .nav-links .call-btn {
    justify-content: center;
    width: 100%;
    color: #111 !important;
  }

  .page-banner {
    padding: 120px 0 60px;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .hero h1 { font-size: 2.5rem; }
  .hero-stats { flex-direction: column; gap: 20px; }

  .about-preview { grid-template-columns: 1fr; gap: 30px; }
  .about-image-accent { display: none; }

  .services-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }
  .services-detail { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .map-section { aspect-ratio: 4/3; }
  .mission-vision-grid { grid-template-columns: 1fr !important; }

  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; padding-left: 50px; padding-right: 0; }
  .timeline-item:nth-child(even) { margin-left: 0; padding-left: 50px; }
  .timeline-dot { left: 12px !important; right: auto !important; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .about-features { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
}
