@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem !important;
}
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}



:root {
  --primary: #0a3f40;
  --primary-light: #0e5254;
  --primary-dark: #062728;
  --secondary: #ebc686;
  --secondary-light: #f5deb8;
  --secondary-dark: #c9a05a;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --bg-light: #faf8f4;
  --bg-cream: #f5f0e8;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
font-family: Poppins;
    font-weight: 600;
    letter-spacing: -3px;
}

/* ── NAV ── */
.navbar.scrolled .logo {
    width:120px;
    transition: all 0.4s ease;
}
.navbar {
     background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
  padding: 0.5rem 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(235,198,134,0.15);
  transition: all 0.5s ease-in-out;
}
.navbar.scrolled {
      height: 82px;
  padding: 0.6rem 0;
  background: rgba(10,63,64,1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.18);
}
.navbar.scrolled .navbar-brand span {  font-size: 25px;}
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary) !important;
  letter-spacing: 0.5px;
  line-height: 1.1;
      display: flex;
    justify-content: center;
    align-items: center;
}
.navbar-brand span {     display: block;
    font-size:30px;
    font-family: 'Poppins';
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0;
     padding: 7px 0 0 7px;}
.nav-link {
  color: rgba(255,255,255,0.82) !important;
    font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 0.4rem 1rem !important;
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--secondary) !important; }
.nav-link:hover::after { transform: scaleX(1); }
.btn-nav {
  background: var(--secondary);
  color: var(--primary-dark) !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 1.3rem !important;
  border-radius: 2px;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}
.btn-nav:hover { background: var(--secondary-dark); transform: translateY(-1px); }
.navbar-toggler { border: 1px solid rgba(235,198,134,0.4); }
.navbar-toggler-icon { filter: invert(1); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  
}
.hero-accent {
  position: absolute;
  right: -60px;
  top: 10%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(235,198,134,0.12);
  border-radius: 50%;
  animation: rotateSlow 30s linear infinite;
}
.hero-accent::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(235,198,134,0.07);
  border-radius: 50%;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards ease;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards ease;
}
.hero h1 em {
  font-style: italic;
  color: var(--secondary);
}
.hero-desc {
  font-size: 1.05rem;
  color: #fff;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards ease;
}
.hero-cta {
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards ease;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary-custom {
  background: var(--secondary);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 2px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary-custom:hover {
  background: var(--secondary-dark);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(235,198,134,0.25);
}
.btn-outline-custom {
    background: #0a3f40;
    color: #fff;
  font-size: 0.9rem;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-custom:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(235,198,134,0.06);
}
.hero-stats {
  position: absolute;
  bottom: 3rem;
  left: 0; right: 0;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards ease;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.3rem;
}
.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display:none;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(235,198,134,0.6), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{opacity:0.4; transform:scaleY(1)} 50%{opacity:1; transform:scaleY(0.6)} }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── SECTION COMMONS ── */
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary-dark);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-eyebrow {
     font-size: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--secondary-dark);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1rem;
    font-size: 1rem;

    font-weight: 300;
}
.section-subtitleBottom
{
      color:#faf8f4;
}
.divider-gold {
  width: 52px;
  height: 2px;
  background: var(--secondary);
  margin: 1.2rem 0 2rem;
}

/* ── ABOUT ── */
.about-section { background: var(--bg-light); padding: 7rem 0; overflow: hidden; }
.about-image-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
 
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 1.2rem 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.about-badge span { display: block; font-size: 2.4rem; font-weight: 700; line-height: 1; }
.director-card {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 1.8rem;
  border-left: 3px solid var(--secondary);
  margin-top: 2rem;
}
.director-name {     font-family: 'Poppins';
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary);}
.director-title { font-size: 1rem color: rgba(255,255,255,0.6); letter-spacing: 1px;  }
.director-desc {     font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-weight: 300;
    padding-top: 0.6rem;}

/* ── SERVICES ── */
.services-section { background: var(--white); padding: 7rem 0; }
.service-card {
  background: var(--white);
  border: 1px solid rgba(10,63,64,0.1);
  padding: 2.2rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: rgba(10,63,64,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10,63,64,0.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(235,198,134,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
  color: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--primary); color: var(--secondary); }
.service-card h4 { font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.7rem;
    letter-spacing: 0px;}
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; margin: 0; }

/* ── HOW WE WORK ── */
.process-section {
  background: var(--primary);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border: 1px solid rgba(235,198,134,0.06);
  border-radius: 50%;
}
.process-section .section-subtitle { color: rgba(255,255,255,0.55); }
.step-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.step-item:last-child { border-bottom: none; }
.step-item:hover .step-num { background: var(--secondary); color: var(--primary-dark); }
.step-num {
  width: 48px; height: 48px;
  border: 1px solid rgba(235,198,134,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
   font-size: 1.2rem;
  color: var(--secondary);
  flex-shrink: 0;
  transition: all 0.3s;
}
.step-content h5 {     font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.35rem;
    letter-spacing: 0; }
.step-content p { font-size: 0.9rem; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.65; margin: 0; }
.process-image {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.process-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  opacity: 0.6;
  filter: saturate(0.6);
  transition: all 0.6s;
}
.process-image:hover img { opacity: 0.8; filter: saturate(0.9); }
.process-img-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(10,63,64,0.88);
  backdrop-filter: blur(6px);
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--secondary);
}
.process-img-caption p { color: rgba(255, 255, 255, 0.75);
    font-size:2rem;
    margin: 0;
    font-weight: 100;
    -height: 1.6px;
    letter-spacing: -1px; }

/* ── WHY ── */
.why-section { background: var(--bg-cream); padding: 7rem 0; }
.why-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 2px;
  border-top: 3px solid transparent;
  transition: all 0.4s;
  height: 100%;
}
.why-card:hover { border-top-color: var(--secondary); box-shadow: 0 16px 40px rgba(10,63,64,0.08); transform: translateY(-4px); }
.why-icon { font-size: 1.8rem; color: var(--primary); margin-bottom: 1rem; }
.why-card h5 { font-size: 1.6rem;
    margin-bottom: 0.7rem;
    letter-spacing: -1px;
    letter-spacing: -1px;}

    .contact-card h4{
      font-size: 2.7rem;
    margin-bottom: 0.7rem;
    letter-spacing: -1px;
    letter-spacing: -1px;
    color:var(--secondary)

    }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; margin: 0; }

/* ── PROJECTS ── */
.projects-section { background: var(--white); padding: 7rem 0; }
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.project-card:hover img { transform: scale(1.07); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,39,40,0.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-tag {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0;
  font-family: 'DM Sans', sans-serif;
}
.project-title-overlay { font-size: 1.2rem; color: var(--white); font-family: 'Cormorant Garamond', serif; }
.project-label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--secondary);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--primary-dark); padding: 7rem 0; position: relative; overflow: hidden; }
.testimonials-section::after {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: rgba(235,198,134,0.04);
  position: absolute;
  top: -2rem; right: 2rem;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(235,198,134,0.1);
  padding: 2.2rem;
  position: relative;
  height: 100%;
  transition: all 0.4s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(235,198,134,0.25); }
.t-stars { color: var(--secondary); font-size: 0.8rem; margin-bottom: 1rem; letter-spacing: 2px; }
.t-quote {   font-size: 1.15rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1.5rem; font-weight: 400; font-style: italic; }
.t-author { font-size:1.2rem; color: var(--secondary); font-weight: 600; }
.t-role { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── FAQ ── */
.faq-section { background: var(--bg-light); padding: 7rem 0; }
.accordion-item {
  background: var(--white);
  border: 1px solid rgba(10,63,64,0.1) !important;
  border-radius: 0 !important;
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: all 0.3s;
}
.accordion-item:hover { border-color: rgba(10,63,64,0.2) !important; }
.accordion-button {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary) !important;
  background: var(--white) !important;
  padding: 1.3rem 1.5rem;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: var(--primary) !important;
  color: var(--white) !important;
}
.accordion-button::after { filter: invert(0.3) sepia(1) hue-rotate(150deg); }
.accordion-button:not(.collapsed)::after { filter: invert(1); }
.accordion-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; padding: 1rem 1.5rem 1.4rem; border-top: 1px solid rgba(10,63,64,0.08); }

/* ── CONTACT ── */
.contact-section { background: var(--primary); padding: 7rem 0; }
.contact-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(235,198,134,0.12); padding: 2.5rem; }
.contact-label { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--secondary); margin-bottom: 0.3rem; }
.contact-value { font-size: 1rem; color: var(--white); font-weight: 300; margin-bottom: 1.4rem; }
.contact-value a { color: var(--secondary); text-decoration: none;  font-size: 25px; color: #faf8f4;}
.contact-value a:hover { text-decoration: underline; }
.form-control, .form-select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  transition: all 0.3s;
}
.form-control::placeholder { color: rgba(255,255,255,0.35); }
.form-control:focus, .form-select:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--secondary);
  box-shadow: none;
  color: var(--white);
}
.form-select option { background: var(--primary); color: var(--white); }
.form-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; }

/* ── FOOTER ── */
footer {
  background: var(--primary-dark);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(235,198,134,0.1);
}
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--secondary); font-weight: 600; }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.3rem; letter-spacing: 2px; text-transform: uppercase; }
.footer-copy {  font-size: 14px; color: rgba(255,255,255,0.3); }
.footer-links { list-style: none; padding: 0; margin: 0;  }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: var(--secondary); }
.footer-h { font-size: 0.8rem; color: rgba(255,255,255,0.45); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 1rem; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-right: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.social-links a:hover { border-color: var(--secondary); color: var(--secondary); transform: translateY(-2px); }
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap 0.3s;
}
.map-link:hover { gap: 0.8rem; color: var(--secondary-light); }

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--secondary);
  color: var(--primary-dark);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s;
  z-index: 999;
  border-radius: 2px;
}
#backToTop.show { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--secondary-dark); transform: translateY(-2px); }
.logo
{
      width: 140px;

}

.openlink a{color:#acaba9;position:relative;display:flex;align-items:center; font-size: 14px;}
.openlink a:hover{color:#ffffff;}
.openlink a:after{content:'';position:relative;width:40px;height:40px;background:url(../images/openlogo-icon.png) no-repeat center center;background-size:100%;display: block;margin-left:10px;}


.leadership {
  padding: 80px 20px;
     background: #0a3f40;
    color: #fff;
}
 

.leader-card {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.leadership .section-title {  color: #ffffff;     line-height: 0.9;}
.leadership .section-title small {   font-weight: 200;   letter-spacing: 1px;  font-size: 29px;}
.leader-img img {
  width: 320px;
  border-radius: 16px;
  object-fit: cover;
}

.leader-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.leader-content h3 {
  font-size: 24px;
  margin: 5px 0;
}

.designation {
  color: #777;
  display: block;
  margin-bottom: 15px;
}

.leader-content p {
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

@media(max-width:800px) {
	.fixed-top {
    position: fixed;     top: 0;  width: 100%;
}
  .hero-stats { position: static; padding: 2rem 1rem 0; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 3rem; }
  .hero { min-height: auto; padding: 8rem 0 4rem; }
  .about-image-wrap img { height: 300px; }
  .process-image img { height: 300px; }
  .hero-accent { display: none; }
  .scroll-hint { display: none; }
  .navbar-brand span {
    display: block;
  font-size: 10px;}
  .hero h1 {font-size:40px;}
  .section-title br{display:none;}
  .testimonials-section {  padding: 80px 30px;}
    .contact-section {   overflow: hidden;  display: block;  }
  .why-section { padding: 7rem 20px;}
  .projects-section {  padding: 7rem 20px; }
  .contact-section {  padding: 7rem 20px; }
  .contact-card {  padding: 20px; }
  footer {  padding: 3rem 20px 1.5rem;   text-align: center;}
  .footer-copy {  margin: 0 auto; }
  .logo {    width: 110px; }
    .navbar-brand span {  font-size: 20px;    }
	   .navbar.scrolled .navbar-brand span {
    font-size: 18px;
}
	.navbar.scrolled .logo {
    width: 90px;
    transition: all 0.4s ease;
}
.leadership .about-image-wrap img {
        height: 400px;
    }
.reveal-left  {
    opacity: 1;
    transform: inherit;
}

.reveal-right  {
    opacity: 1;
    transform: inherit;
}
.reveal  {
      opacity: 1;
    transform: inherit;
}
    .fixed-top {
        margin: 0;
        padding: 0;
    }
	.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    background: #0c4042;
    padding-bottom: 20px;
}
.btn-nav {
   max-width: max-content;
    margin: 0 auto;
}
}

@media(max-width:600px) {
	footer {  padding: 3rem 20px 1.5rem;   text-align: center;}
	
    .hero-bg {
        background-image: url(../images/mobile-banner.jpg);
        background-position: 0 110px;
        background-size: 100%;
        background-color: #0c4042;
        background-repeat: no-repeat;
    }
	.contact-card h4 {
    font-size : 30px;}
	.section-title {
      font-size: 30px;
}
	.hero {
        min-height: auto;   padding: 416px 15px 4rem;  }
		  .logo {    width: 90px; }
    .navbar-brand span {  font-size: 16px;    }
	#projects .col-6 {
    flex: 0 0 auto;
    width: 100%;
}
    .section-title {
        letter-spacing: 1px;
    }
}