@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: rgb(73, 113, 213);
  --light-color: rgb(234, 233, 233);
  --dark-color: #333;
  --accent-color: rgb(1, 100, 1);

  --text-light: rgb(225, 235, 243);
  --text-dark: #333;

  --card-bg: rgba(255, 255, 255, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.22);

  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.10);
  --shadow-md: 0 20px 45px rgba(0, 0, 0, 0.15);

  --radius-md: 15px;
  --radius-lg: 22px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-speed: 0.3s;
  --transition-pro: 0.6s var(--ease-out);
}

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

html, body {
  height: auto !important;
  overflow-y: auto !important;
}

body {
  max-width: 2000px !important;
  margin: 0 auto !important;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

/* Reduced motion safety */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------------------------------------------------
   Premium Micro-Animations
--------------------------------------------------- */
@keyframes floatSoft {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.floating-soft { animation: floatSoft 6.5s var(--ease-out) infinite; }

@keyframes floatBounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.floating-bounce { animation: floatBounce 5.8s var(--ease-out) infinite; }

.hover-lift { transition: transform var(--transition-pro), box-shadow var(--transition-pro); }
.hover-lift:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

/* Reveal (kept) */
.reveal {
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.9s var(--ease-out);
}
.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}

/* ---------------------------------------------------
   Glassmorphism
--------------------------------------------------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  transition: transform var(--transition-pro), box-shadow var(--transition-pro);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(31, 38, 135, 0.22);
}

/* Premium media glass frame */
.media-glass {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 70px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.media-glass:before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.35), rgba(255,255,255,0) 55%);
  transform: rotate(18deg);
  pointer-events: none;
}

/* ---------------------------------------------------
   Background Media
--------------------------------------------------- */
.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  object-fit: cover;
}

/* ---------------------------------------------------
   Navigation (NORMAL overlay on Hero Video)
   - Clean, slim navbar
   - Video remains visible
--------------------------------------------------- */
.navigation {
  position: relative;
  z-index: 100;
  background: transparent;
  box-shadow: none;
}

/* navbar overlays hero, but stays transparent */
.navigation .navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;

  /* Slim + normal */
  padding: 14px 0;

  /* remove big glass/opacity */
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Logo normal size */
#nav-img {
  width: 135px;
  height: auto;
  display: block;
  transition: transform var(--transition-pro);
}
#nav-img:hover { transform: scale(1.03); }

.navbar-nav { gap: 18px; }

/* Clean links (no chunky pills) */
.nav-link {
  font-size: 18px !important;
  color: rgba(255,255,255,0.92) !important;
  padding: 8px 10px !important;
  border-radius: 10px;
  background: transparent !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
  transition: transform var(--transition-pro), color var(--transition-pro);
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 2px;
  left: 50%;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  transition: width var(--transition-pro);
}

.nav-link:hover {
  color: #fff !important;
  transform: translateY(-1px);
}
.nav-link:hover:after { width: 60%; }

/* Active should NOT create a heavy pill */
.nav-link.active {
  background: transparent !important;
  color: #fff !important;
}
.nav-link.active:after { width: 60%; }

/* Toggler visible on video */
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.35) !important;
  box-shadow: none !important;
}
.navbar-toggler-icon { filter: invert(1); }

/* Mobile menu: ONLY collapse panel becomes glass */
.navbar-collapse { z-index: 250; }

@media (max-width: 768px) {
  .navigation .navbar { padding: 12px 0; }
  #nav-img { width: 120px; }

  .navbar-collapse {
    margin-top: 10px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
  }

  .navbar-nav { gap: 6px; }
  .nav-link { font-size: 16px !important; padding: 10px 12px !important; }
}

/* ---------------------------------------------------
   Hero / Preview (Video starts at top behind navbar)
--------------------------------------------------- */
.preview {
  position: relative;
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0;
  padding: 0;

  /* keep hero content clear of navbar */
  padding-top: 90px;
}

/* Video fills hero only */
.background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; /* IMPORTANT: full visibility */
  filter: brightness(0.88) contrast(1.08);
  z-index: 1;
}

/* Light overlay (not foggy) */
.preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.06), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.10) 45%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
}

/* Perfectly centered hero content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 860px;
  width: min(92%, 860px);
  padding: 2.6rem 2.0rem;
  border-radius: var(--radius-lg);
  margin: 0 auto;
}

/* Hero type */
.hero-content h1 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.40);
}

.hero-content p {
  font-size: 1.18rem;
  margin-bottom: 1.6rem;
  opacity: 0.96;
  text-shadow: 0 2px 14px rgba(0,0,0,0.40);
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: rgba(73,113,213,0.95);
  color: #fff;
  font-size: 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform var(--transition-pro), box-shadow var(--transition-pro), filter var(--transition-pro);
  border: 1px solid rgba(255,255,255,0.22);
  font-weight: 600;
  letter-spacing: 1px;
}
.hero-btn:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  filter: brightness(1.05);
}

/* Typed cursor */
.typed-cursor {
  color: white;
  font-size: 1.1rem;
  opacity: 1;
  animation: typedjsBlink 0.7s infinite;
}
@keyframes typedjsBlink { 50% { opacity: 0; } }

/* Mobile hero */
@media (max-width: 768px) {
  .preview {
    min-height: 70vh;
    padding-top: 80px;
  }
  .hero-content {
    width: 94%;
    padding: 1.4rem 1.1rem;
  }
  .hero-content h1 { font-size: 2.1rem; }
  .hero-content p { font-size: 1rem; }
}

/* ---------------------------------------------------
   About
--------------------------------------------------- */
.about {
  display: flex;
  gap: 100px;
  padding-bottom: 80px;
  padding-top: 86px;
  width: 72%;
  margin: 0 auto;
  position: relative;
}

.about-text h2 {
  margin-bottom: 20px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}
.about-text h2:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
}

.about-pic img {
  width: 490px;
  height: 330px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-pro), box-shadow var(--transition-pro);
}
.about-pic img:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-button {
  padding: 12px 24px;
  border-radius: 10px;
  color: white;
  text-align: center;
  background-color: var(--accent-color);
  margin-top: 10px;
  margin-bottom: 50px;
  font-size: 18px;
  width: 170px;
  font-weight: 600;
  transition: transform var(--transition-pro), box-shadow var(--transition-pro), filter var(--transition-pro);
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
.about-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(1,100,1,0.28);
  filter: brightness(1.05);
}

/* ---------------------------------------------------
   Director section (upgraded glass)
--------------------------------------------------- */
.mb-6 {
  height: 0;
  margin-top: -20px;
  margin-bottom: 50px;
}

#director-img {
  width: 14rem;
  overflow: hidden;
}

#director-img .card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.12);
  transition: transform var(--transition-pro), box-shadow var(--transition-pro);
}

#director-img .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 85px rgba(0,0,0,0.16);
}

.director-img { width: 100%; height: auto; transition: transform var(--transition-pro); }
.director-img:hover { transform: scale(1.05); }

.director-details {
  text-align: center;
  margin-top: -50px;
  margin-bottom: 20px;
}
.director-name {
  font-size: 1.1rem;
  font-weight: bold;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 1px;
}
.director-title {
  font-size: 1rem;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
}

/* ---------------------------------------------------
   Team heading underline
--------------------------------------------------- */
/* .team { padding: 50px 0; }
.team h3 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
.team h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
} */

/* =========================================================
   FIX: "Word From Managing Director" centered + Director card
   Paste at the VERY BOTTOM of shedags.css
========================================================= */

/* 1) Center the section title properly */
.team {
  padding: 50px 0;
  text-align: center; /* THIS is what actually centers the inline-block h3 */
}

.team h3 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  margin: 0 auto 30px;
  position: relative;
  display: inline-block; /* keep underline width tight to text */
}

/* underline stays centered */
.team h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;           /* slightly longer looks better */
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* 2) Make the director card wider + image bigger */
#director-img {
  width: 100% !important;     /* override the earlier "14rem" */
  max-width: 380px;           /* control the card width on large screens */
  margin-left: auto;
  margin-right: auto;
}

/* keep the glass frame nice */
#director-img .media-glass {
  padding: 16px;
  border-radius: var(--radius-lg);
}

/* 3) Enlarge image without distortion */
#director-img .director-img {
  width: 100%;
  height: 360px;              /* BIGGER IMAGE */
  object-fit: cover;          /* no stretching */
  object-position: center;
  border-radius: 18px;
  display: block;
}

/* 4) Ensure name + title never overlap the image or each other */
#director-img .card-body {
  padding: 14px 12px 10px !important;
}

#director-img .director-details {
  margin-top: 10px;           /* creates space from the image */
  margin-bottom: 6px;
  text-align: center;
}

#director-img .director-name {
  margin: 0 0 6px 0;
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
}

#director-img .director-title {
  display: block;             /* forces it under the name */
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  opacity: 0.85;
}

/* 5) Responsive: keep it clean on small screens */
@media (max-width: 576px) {
  #director-img {
    max-width: 320px;
  }
  #director-img .director-img {
    height: 300px;
  }
}


/* ---------------------------------------------------
   Stats
--------------------------------------------------- */
.stats-section {
  background: linear-gradient(135deg, rgba(73, 113, 213, 0.05) 0%, rgba(73, 113, 213, 0.15) 100%);
  padding: 80px 0;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}
.stats-section:before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(73, 113, 213, 0.1) 0%, rgba(0,0,0,0) 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.stat-item {
  text-align: center;
  padding: 20px;
  transition: transform var(--transition-pro);
}
.stat-item:hover { transform: translateY(-6px); }

.stat-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.stat-item h4 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Rajdhani", sans-serif;
  color: var(--primary-color);
}
.stat-item p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0;
}

/* ---------------------------------------------------
   Latest News / Customers
--------------------------------------------------- */
.latest-news {
  position: relative;
  background-color: #f8f9fa;
  overflow: hidden;
}
.latest-news:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(73, 113, 213, 0.1) 0%, rgba(0,0,0,0) 70%);
  top: -100px;
  left: -100px;
  border-radius: 50%;
}
.latest-news:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(73, 113, 213, 0.1) 0%, rgba(0,0,0,0) 70%);
  bottom: -100px;
  right: -100px;
  border-radius: 50%;
}

.latest-news h2 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  margin-bottom: 30px !important;
}
.latest-news h2:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.latest-news-item { margin: 15px; }

.latest-news-item .bg-light {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-pro), box-shadow var(--transition-pro);
}
.latest-news-item .bg-light:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.img-zoomin { transition: transform var(--transition-pro); }
.img-zoomin:hover { transform: scale(1.08); }

/* Subtle float for customers */
.latest-news-item { animation: floatSoft 8s var(--ease-out) infinite; }
.latest-news-item:nth-child(2n) { animation-duration: 9.5s; }
.latest-news-item:nth-child(3n) { animation-duration: 10.5s; }

/* ---------------------------------------------------
   Services page (Expertise)
--------------------------------------------------- */
.services {
  padding: 70px 0px;
  background-color: rgb(245, 245, 245);
  margin-top: 50px;
}

.services-wrapper {
  width: 78%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.page-title-block {
  margin: 10px 0 35px;
  text-align: left;
}
.page-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 2.2rem;
  color: #1f2a44;
  margin-bottom: 6px;
}
.page-subtitle {
  color: rgba(0,0,0,0.62);
  font-size: 1rem;
  max-width: 780px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  margin-bottom: 55px;
  align-items: center;
  justify-content: space-between;
}

.services-text { width: 60%; }
.service-image { width: 35%; }

.services h2 {
  text-align: left;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 28px;
}

/* Single images premium */
.service-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-pro), box-shadow var(--transition-pro);
}

/* If you wrap single image with .media-glass -> even better */
.service-image .media-glass img {
  height: 360px;
  border-radius: calc(var(--radius-lg) - 8px);
  box-shadow: none;
}
.service-image img:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

/* Swiper */
.service-list .imagey { cursor: grab; }

/* Swiper glass frame */
.service-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 22px 70px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px;
}

.service-img-wrapper img {
  border-radius: calc(var(--radius-lg) - 8px);
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-pro), filter var(--transition-pro);
}

.service-img-wrapper:hover img {
  transform: scale(1.03);
  filter: contrast(1.05) saturate(1.05);
}

.swiper-pagination-bullet {
  opacity: 0.55;
  transform: scale(0.9);
  transition: transform var(--transition-pro), opacity var(--transition-pro);
}
.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.15);
}

/* ---------------------------------------------------
   Operations page add-ons
--------------------------------------------------- */
.ops-hero {
  width: min(1100px, 92%);
  margin: 42px auto 10px;
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.ops-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  color: #1f2a44;
  margin-bottom: 6px;
}
.ops-subtitle { color: rgba(0,0,0,0.62); margin: 0; }

/* ---------------------------------------------------
   Contact Page
--------------------------------------------------- */
.page-header {
  background-image: linear-gradient(135deg, rgba(73, 113, 213, 0.85) 0%, rgba(0, 0, 0, 0.70) 100%);
  padding: 100px 0 70px;
  margin-bottom: 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: min(1400px, 96%);
  margin-left: auto;
  margin-right: auto;
}
.page-header h1 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.page-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.map-section {
  padding: 30px 20px 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.map-section h2 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.map-section h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  background-color: var(--primary-color);
  height: 4px;
  width: 80px;
  border-radius: 2px;
}

.iframe-container {
  margin-bottom: 60px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.iframe-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.contact-info-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

.contact-info-card {
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  transition: transform var(--transition-pro), box-shadow var(--transition-pro);
  margin-bottom: 30px;
}
.contact-info-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }

.contact-info-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(73, 113, 213, 0.3);
}

.contact-info-card h4 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.contact-info-card p { font-size: 1rem; line-height: 1.6; color: var(--text-dark); margin-bottom: 5px; }

#contact-form {
  background: linear-gradient(135deg, rgba(73, 113, 213, 0.05) 0%, rgba(73, 113, 213, 0.15) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#contact-form h2 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
#contact-form h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.contact-form-container { max-width: 800px; margin: 0 auto; padding: 40px; border-radius: var(--radius-lg); }
.form-group { margin-bottom: 25px; }

.form-control {
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(73, 113, 213, 0.18);
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 15px;
  font-size: 1rem;
  transition: box-shadow var(--transition-pro), transform var(--transition-pro), border-color var(--transition-pro);
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(73, 113, 213, 0.18);
}
textarea.form-control { height: auto; min-height: 150px; }

.submit-btn {
  display: block;
  width: 200px;
  padding: 12px 25px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto;
  cursor: pointer;
  transition: transform var(--transition-pro), box-shadow var(--transition-pro), filter var(--transition-pro);
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 1px;
}
.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(73, 113, 213, 0.30);
  filter: brightness(1.05);
}

/* ---------------------------------------------------
   Footer
--------------------------------------------------- */
.footerr {
  background-size: 100%;
  padding: 40px 30px 20px 30px;
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
}
.footerr:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right top, rgba(255,255,255,0.12) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}

.footerr ul { padding-left: 0rem; }

.container2 { max-width: 1250px; margin: auto; }

.roww { display: flex; flex-wrap: wrap; justify-content: space-between; }

.footer-col { width: 25%; }

.footer-col h4 {
  font-size: 18px;
  color: white;
  text-transform: capitalize;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 1px;
}

.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -10px;
  background-color: white;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li { color: #bbbbbb; margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all var(--transition-pro);
  position: relative;
  padding-left: 0;
}
.footer-col ul li a:hover { color: #ffffff; padding-left: 8px; }

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: transform var(--transition-pro), background var(--transition-pro), color var(--transition-pro);
}
.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
  transform: translateY(-6px);
}
.footer-col p { color: #bbbbbb; font-size: 16px; line-height: 1.6; }

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.12);
  padding: 15px 0 5px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-bottom p {
  color: #e9eef8;
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* ---------------------------------------------------
   Preloader
--------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #ffffff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid var(--primary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Back to top */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 30px;
  bottom: 30px;
  z-index: 996;
  background: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all var(--transition-pro);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 24px rgba(73, 113, 213, 0.35);
}
.back-to-top i { font-size: 24px; line-height: 0; }
.back-to-top:hover {
  background: rgba(73, 113, 213, 0.92);
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(73, 113, 213, 0.40);
}
.back-to-top.active { visibility: visible; opacity: 1; }

/* ---------------------------------------------------
   Responsive
--------------------------------------------------- */
@media (max-width: 1550px) {
  .about { width: 80%; }
  .about-pic img { width: 400px; height: 280px; }
  #director-img { width: 12rem; }
  .mb-6 { margin-top: -30px; margin-bottom: 40px; }
}

@media (max-width: 1250px) {
  .about { width: 90%; gap: 50px; }
}

@media (max-width: 1000px) {
  .about { flex-direction: column; gap: 50px; text-align: center; }
  .about-text h2:after { left: 50%; transform: translateX(-50%); }
  .about-pic { margin: 0 auto; order: -1; }
  .about-pic img { width: 100%; max-width: 450px; height: auto; }

  .services-wrapper { width: 90%; }
  .services-container { flex-direction: column-reverse; }
  .services-text { width: 100%; }
  .service-image { width: 100%; }
  .service-image img { height: unset; }
}

@media (max-width: 768px) {
  .footer-col { width: 50%; margin-bottom: 30px; }

  .page-header { padding: 80px 0 50px; }
  .page-header h1 { font-size: 2.3rem; }
  .iframe-container iframe { height: 380px; }
}

@media (max-width: 576px) {
  .footer-col { width: 100%; }
  .page-header { padding: 60px 0 40px; }
  .page-header h1 { font-size: 1.9rem; }
  .iframe-container iframe { height: 300px; }
  .contact-info-card .icon { width: 60px; height: 60px; font-size: 1.5rem; }
  .submit-btn { width: 100%; }
}

/* ---------------------------------------------------
   INNER PAGES NAVBAR THEME (whitish/greenish/bluish)
   Apply by adding: <body class="page-inner">
--------------------------------------------------- */
body.page-inner .navigation .navbar {
  position: sticky !important;
  top: 0;
  padding: 12px 0 !important;

  background: linear-gradient(
    90deg,
    rgba(235, 250, 242, 0.97) 0%,
    rgba(224, 246, 255, 0.97) 45%,
    rgba(230, 240, 255, 0.97) 100%
  ) !important;

  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.page-inner .nav-link {
  color: rgba(15, 23, 42, 0.85) !important;
  text-shadow: none !important;
}
body.page-inner .nav-link:after {
  background: rgba(73, 113, 213, 0.9);
}
body.page-inner .nav-link:hover { color: rgba(15,23,42,1) !important; }
body.page-inner .nav-link.active {
  background: rgba(73, 113, 213, 0.10) !important;
  border: 1px solid rgba(73, 113, 213, 0.14);
}
body.page-inner .navbar-toggler { border: 1px solid rgba(15, 23, 42, 0.22) !important; }
body.page-inner .navbar-toggler-icon { filter: none !important; }

@media (max-width: 768px) {
  body.page-inner .navbar-collapse {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.06);
  }
}

/* ---------------------------------------------------
   Services page (Expertise) - SIDE BY SIDE ON LARGE SCREENS
--------------------------------------------------- */
.services {
  padding: 70px 0px;
  background-color: rgb(245, 245, 245);
  margin-top: 50px;
}

.services-wrapper {
  width: 78%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.page-title-block { margin: 10px 0 35px; text-align: left; }
.page-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 2.2rem;
  color: #1f2a44;
  margin-bottom: 6px;
}
.page-subtitle {
  color: rgba(0,0,0,0.62);
  font-size: 1rem;
  max-width: 780px;
}

/* Two-column layout that stays side-by-side on large screens */
.services-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 48px;
  margin-bottom: 55px;
  align-items: stretch;
  justify-content: space-between;
}

.services-text {
  width: 58%;
  height: 100%;
}

.service-image {
  width: 42%;
  display: flex;
  align-items: stretch;
}

/* Make image/swiper fill and look bigger */
.service-img-wrapper,
.media-glass {
  width: 100%;
  height: 100%;
}

.service-img-wrapper img,
.service-image img {
  width: 100%;
  height: 420px;              /* BIGGER */
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-pro), filter var(--transition-pro), box-shadow var(--transition-pro);
}

.service-img-wrapper:hover img {
  transform: scale(1.03);
  filter: contrast(1.05) saturate(1.05);
}

/* Swiper glass frame */
.service-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 22px 70px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px;
}

.service-img-wrapper img {
  border-radius: calc(var(--radius-lg) - 8px);
  height: 420px;
}

/* pagination nicer */
.swiper-pagination-bullet {
  opacity: 0.55;
  transform: scale(0.9);
  transition: transform var(--transition-pro), opacity var(--transition-pro);
}
.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.15);
}

/* Stack on smaller screens */
@media (max-width: 1000px) {
  .services-wrapper { width: 90%; }
  .services-container {
    flex-direction: column-reverse;
    flex-wrap: wrap;
    gap: 26px;
  }
  .services-text { width: 100%; }
  .service-image { width: 100%; }
  .service-img-wrapper img,
  .service-image img { height: 320px; }
}

/* ---------------------------------------------------
   Operations page add-ons
--------------------------------------------------- */
.ops-hero {
  width: min(1100px, 92%);
  margin: 42px auto 10px;
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.ops-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  color: #1f2a44;
  margin-bottom: 6px;
}
.ops-subtitle { color: rgba(0,0,0,0.62); margin: 0; }

/* Bigger operations images */
.ops-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}
.ops-grid-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}


