@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Be+Vietnam+Pro: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&family=Eagle+Lake&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Italianno&family=Monda:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&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&family=Quattrocento:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Urbanist:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
html body {
  overflow-x: hidden;
  font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif;
} /* CSS Root Variables */
:root {
  --primary-color: #4361ee;
  --secondary-color: #3f37c9;
  --accent-color: #1b63cf;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --success-color: #4cc9f0;
  --warning-color: #f72585;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --header-bg: #ffffff;
  --header-top-bg: #f8f9fa;
  --text-dark: #333333;
  --text-light: #777777;
}
:root {
  --primary: #2c3e50;
  --primary-dark: #1a252f;
  --secondary: #3498db;
  --accent: #e74c3c;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
} /*  Prevent content scroll while loading */
body.loading {
  overflow: hidden;
} /* ================= LOADER WRAPPER ================= */
.loader-wrapper {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
} /* Hidden state */
.loader-wrapper.hide {
  opacity: 0;
  visibility: hidden;
} /* ================= LOADER ================= */
.loader {
  width: 40px;
  height: 40px;
  color: #1f3e72;
  background: conic-gradient(
      from -45deg at top 20px left 50%,
      transparent,
      currentColor 1deg 90deg,
      transparent 91deg
    ),
    conic-gradient(
      from 45deg at right 20px top 50%,
      transparent,
      currentColor 1deg 90deg,
      transparent 91deg
    ),
    conic-gradient(
      from 135deg at bottom 20px left 50%,
      transparent,
      currentColor 1deg 90deg,
      transparent 91deg
    ),
    conic-gradient(
      from -135deg at left 20px top 50%,
      transparent,
      currentColor 1deg 90deg,
      transparent 91deg
    );
  animation: l4 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}
@keyframes l4 {
  50% {
    width: 60px;
    height: 60px;
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
} /* Demo content */
.page-content {
  min-height: 200vh;
  padding: 40px;
} /*  header space */
.header-spacer {
  height: 120px;
}
@media (max-width: 992px) {
  .header-spacer {
    height: 90px;
  }
}
@media (max-width: 768px) {
  .header-spacer {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .header-spacer {
    height: 50px;
  }
} /* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} /* body { line-height: 1.6; color: var(--text-dark); background-color: #ffffff; } */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
p {
  position: relative; /* font-family: 'Manrope', sans-serif; */
  color: #333333;
  font-weight: 400;
  margin: 0 0 20px 0;
  transition: all 500ms ease;
} /* top bar starts*/
.topbar {
  background: linear-gradient(135deg, var(--ink-700), var(--ink-900));
  color: white;
  padding: 12px 0;
  font-size: 0.9rem;
}
.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-item > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-item i {
  color: var(--accent);
  font-size: 1rem;
}
.contact-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-item a:hover {
  color: var(--accent);
} /* Header Lower Styles */
.header-lower {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.outer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.outer-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 0;
}
.logo-box {
  display: flex;
  align-items: center;
  margin: 0;
}
.logo-box a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary);
}
.logo-box img {
  height: 90px;
  margin-right: 15px;
}
.brand__text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink-700);
} /* Menu Styles */
.menu-area {
  display: flex;
  align-items: center;
}
.main-menu ul {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.main-menu li {
  position: relative;
  margin: 0 15px;
}
.main-menu a {
  text-decoration: none;
  color: var(--ink-700);
  font-weight: 600;
  font-size: 18px;
  padding: 8px 0;
  transition: color 0.3s ease;
  position: relative;
}
.main-menu a:hover {
  color: var(--accent);
}
.main-menu a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}
.main-menu a:hover:after {
  width: 100%;
} /* Contact Button */
.btn-container {
  margin-left: 20px;
}
.main-menu a {
  padding: -1px 20px;
}
.appointment-btn {
  background: var(--ink-700);
  color: #fff;
  appearance: none;
  border: 1px solid transparent;
  padding: 6px 13px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 2;
  cursor: pointer;
  transition: 0.18s ease-in-out;
  box-shadow: none;
  text-decoration: none;
  display: inline-flex;
  color: white !important;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  backdrop-filter: saturate(120%) blur(2px);
}
.main-menu a:after .appointment-btn {
  display: none;
}
.main-menu a:hover:after .appointment-btn {
  display: none;
}
.appointment-btn:hover {
  color: white !important;
  background: var(--accent) !important;
} /* Mobile Navigation Toggler */
.mobile-nav-toggler {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}
.mobile-nav-toggler .icon-bar {
  width: 25px;
  height: 3px;
  background-color: var(--ink-700);
  margin: 3px 0;
  transition: 0.3s;
} /* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  transition: right 0.3s ease;
  padding: 80px 20px 20px;
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu ul {
  list-style: none;
  gap: 5px;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
  display: grid;
}
.mobile-menu li {
  margin-bottom: 15px;
}
.mobile-menu a {
  padding: 1px 15px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.mobile-menu a:hover {
  color: var(--secondary);
}
.mobile-menu .appointment-btn {
  display: block;
  text-align: center;
  margin-top: 20px;
}
.leadish{
        color: #3c3c3c;
    font-weight: 700;
    margin-bottom: 16px;
}
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
} /* Responsive Styles */
@media (max-width: 991px) {
  .contact-info {
    justify-content: end;
    gap: 10px;
    padding: 3px;
  }
  .contact-item i {
    font-size: 20px;
  }
  .hide-on-mobile {
    display: none !important;
  }
  .main-menu {
    display: none;
  }
  .mobile-nav-toggler {
    display: flex;
  }
  .btn-container {
    display: none;
  }
}
@media (max-width: 768px) {
  .contact-item {
    gap: 10px;
    text-align: center;
  }
  .hide-on-mobile {
    display: none !important;
  }
  .brand__text {
    font-size: 0.9rem;
  }
  .logo-box img {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .topbar {
    font-size: 0.8rem;
  }
  .contact-item a span {
    font-size: 1rem;
    display: none;
    gap: 10px;
  }
  .mobile-menu {
    width: 280px;
  }
}
* Creative Mobile Top Bar */ .mobile-topbar {
  display: none;
  background: linear-gradient(135deg, var(--ink-700), var(--ink-900));
  padding: 15px 20px;
  position: relative;
}
.mobile-topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.mobile-contact-toggle {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(211, 84, 60, 0.3);
}
.mobile-contact-toggle:hover {
  transform: scale(1.1);
  background: #e04a1a;
}
.mobile-contact-toggle i {
  font-size: 1.2rem;
}
.mobile-contact-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--ink-900);
  padding: 20px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-contact-item:last-child {
  border-bottom: none;
}
.mobile-contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}
.mobile-contact-item a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}
.mobile-contact-item a:hover {
  color: var(--accent);
}
.mobile-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
}
.mobile-logo span {
  color: var(--accent);
} /* Floating Action Button for Mobile */
.fab-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--accent);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(211, 84, 60, 0.4);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 6px 20px rgba(211, 84, 60, 0.4);
  }
  50% {
    box-shadow: 0 6px 30px rgba(211, 84, 60, 0.7);
  }
  100% {
    box-shadow: 0 6px 20px rgba(211, 84, 60, 0.4);
  }
}
.fab-contact:hover {
  transform: scale(1.1);
  background: #e04a1a;
}
.fab-contact i {
  font-size: 1.5rem;
} /* Enhanced Responsive Styles */
@media (max-width: 991px) {
  .topbar span {
    display: none;
  }
  .topbar i {
    background: white;
    height: 30px;
    width: 30px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .mobile-topbar {
    display: block;
  }
  .contact-info {
    justify-content: center;
    gap: 10px;
    padding: 3px;
  }
  .contact-item i {
    font-size: 15px;
  }
  .hide-on-mobile {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .contact-item {
    gap: 10px;
    text-align: center;
  }
  .hide-on-mobile {
    display: none !important;
  }
  .fab-contact {
    display: flex;
  }
  .mobile-contact-dropdown {
    padding: 15px;
  }
  .mobile-contact-item {
    padding: 10px 0;
  }
}
@media (max-width: 480px) {
  .topbar {
    font-size: 0.8rem;
  }
  .contact-item a span {
    font-size: 1rem;
    display: none;
    gap: 10px;
  }
  .mobile-topbar {
    padding: 12px 15px;
  }
  .mobile-logo {
    font-size: 1.1rem;
  }
  .fab-contact {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .fab-contact i {
    font-size: 1.3rem;
  }
  .mobile-contact-dropdown {
    padding: 12px;
  }
  .mobile-contact-item {
    gap: 12px;
    padding: 8px 0;
  }
  .mobile-contact-item i {
    font-size: 1.1rem;
  }
  .mobile-contact-item a {
    font-size: 0.9rem;
  }
} /* Banner Section */
.banner-section {
  position: relative;
  height: 100vh; /* Add this - crucial for proper sizing */
  min-height: 600px; /* Add minimum height */
  overflow: hidden;
}
.banner-carousel {
  height: 100%;
}
.banner-carousel .slide-item {
  /* position: relative; */
  padding: 101px 0px 120px 0px;
}
.banner-carousel .slide-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  top: 0px;
  right: 0px;
  opacity: 0.4;
  z-index: 1;
}
.banner-carousel .slide-item .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1);
  transition: all 8000ms linear;
}
.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}
.banner-carousel .content-box {
  position: relative;
  text-align: center;
  z-index: 5;
  margin-top: 100px;
}
.banner-carousel .content-box .special-text {
  position: relative;
  display: block;
  font-size: 280px;
  line-height: 80px;
  font-family: "Monda", sans-serif;
  font-weight: 700;
  min-height: 200px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0;
}
.text h5 {
  margin-bottom: 0% !important;
}
.banner-carousel .content-box h2 {
  position: relative;
  display: block;
  font-size: 70px;
  line-height: 110px;
  font-weight: 1000;
  color: #fff;
  opacity: 1;
  transform: translateY(10px);
  transition: all 1000ms ease;
}
.banner-carousel .content-box h2 span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.banner-carousel .content-box h2 span:before {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 2px;
  z-index: -1;
}
.banner-carousel .content-box p {
  position: relative;
  display: block;
  font-size: 19px;
  line-height: 29px;
  font-weight: 700;
  color: #d6d6d6;
  margin-bottom: 40px;
  opacity: 1;
  transform: translateY(10px);
  transition: all 1000ms ease;
}
.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: "Monda", sans-serif;
  text-align: center;
  padding: 19px 30px;
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
  border: none;
  cursor: pointer;
}
.theme-btn.btn-one {
  background: var(--ink-700);
  color: #fff;
}
.theme-btn.btn-one:hover {
  background-color: var(--accent);
  color: #fff;
}
.theme-btn span {
  position: relative;
  padding-right: 40px;
}
.theme-btn span:before {
  position: absolute;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  top: -1px;
  right: 0px;
  transition: all 500ms ease;
}
.theme-btn.btn-one span:before {
  color: #fff;
  background: var(--accent);
}
.banner-carousel .content-box .theme-btn span:before {
  background: var(--accent);
}
.text-box {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 2;
}
.text-1,
.text-2 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
} /* Owl Carousel Navigation */
.banner-carousel .owl-nav {
  position: absolute;
  left: 0px;
  right: 0px;
  max-width: 704px;
  width: 100%;
  margin: 0 auto;
  bottom: 50px;
  text-align: right;
  z-index: 10;
}
.banner-carousel .owl-nav button {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  background: transparent;
  transition: all 500ms ease;
  cursor: pointer;
}
.banner-carousel .owl-nav button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.banner-carousel .owl-nav button.owl-prev {
  margin-right: 20px;
} /* Slide States */
.slide-item {
  display: none;
}
.slide-item.active {
  display: block;
}
.slide-item.active .content-box h2,
.slide-item.active .content-box p {
  opacity: 1;
  transform: translateY(0);
} /* Slide Progress Bar */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 10;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background-color: #fff;
  transition: width 0.1s linear;
} /* Slide Controls */
.slide-controls {
  position: absolute;
  bottom: 120px;
  right: 50px;
  z-index: 10;
  display: flex;
  gap: 10px;
}
.control-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: all 500ms ease;
  border: none;
  cursor: pointer;
}
.control-btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
} /* Slide Counter */
.slide-counter {
  position: absolute;
  bottom: 130px;
  left: 50px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  z-index: 10;
} /* Animation for special text */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animation_text_word {
  animation: fadeIn 1s ease-out;
} /* Responsive Styles */
@media (max-width: 1200px) {
  .banner-carousel .content-box {
    margin-left: 100px;
  }
  .banner-carousel .content-box .special-text {
    font-size: 200px;
    line-height: 150px;
    min-height: 150px;
    margin-bottom: 50px;
  }
  .banner-carousel .content-box h2 {
    font-size: 70px;
    line-height: 80px;
  }
}
@media (max-width: 991px) {
  .banner-carousel .content-box {
    margin-left: 50px;
  }
  .banner-carousel .content-box .special-text {
    font-size: 150px;
    line-height: 120px;
    min-height: 120px;
    margin-bottom: 40px;
  }
  .banner-carousel .content-box h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .banner-carousel .content-box p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 768px) {
  .banner-carousel .content-box {
    margin-left: 20px;
    text-align: center;
  }
  .banner-carousel .content-box .special-text {
    font-size: 100px;
    line-height: 80px;
    min-height: 80px;
    margin-bottom: 30px;
  }
  .banner-carousel .content-box h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .banner-carousel .content-box p {
    font-size: 14px;
    line-height: 24px;
  }
  .text-box {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  .text-1,
  .text-2 {
    margin-bottom: 10px;
  }
  .banner-carousel .owl-nav {
    text-align: center;
    bottom: 80px;
  }
  .slide-controls {
    bottom: 80px;
    right: 20px;
  }
  .slide-counter {
    bottom: 90px;
    left: 20px;
  }
}
@media (max-width: 480px) {
  .banner-carousel .slide-item {
    padding: 80px 0px 100px 0px;
  }
  .banner-carousel .content-box .special-text {
    font-size: 70px;
    line-height: 60px;
    min-height: 60px;
    margin-bottom: 20px;
  }
  .banner-carousel .content-box h2 {
    font-size: 30px;
    line-height: 30px;
  }
  .theme-btn {
    padding: 15px 25px;
    font-size: 12px;
  }
} /* about us starts */ /* Colors and tokens */
:root {
  --accent: #d3543c; /* orange */
  --ink-900: #0a223d; /* deep navy */
  --ink-700: #1f3e72; /* blue title */
  --ink-600: #222222; /* body text */
  --muted: #7a8699; /* subtle */
  --white: #fff;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12); /* --gap-lg: 40px; */
} /* Section spacing */
.about-block {
  padding: 60px 0;
} /* Two-column layout */
.about-block .row {
  display: flex; /* 2 columns side-by-side */
  align-items: flex-start; /* align headings on top */
  justify-content: space-between;
  gap: var(--gap-lg);
  flex-wrap: wrap; /* stack on small screens */
} /* guides: flex row + gap + wrap [web:12][web:59] */
.about-block .col {
  flex: 1 1 480px;
  min-width: 320px;
} /* equal columns [web:171] */ /* Left column */
.about-title h5 {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 15px 0;
  letter-spacing: 0.3px;
}
.about-title h2 {
  color: var(--ink-700);
  line-height: 1.25;
  margin: 0 0 16px 0;
  font-weight: 800;
}
.line-below {
  position: relative;
  display: inline-block;
}
.line-below::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid;
  background: var(--accent);
}
.about-block p {
  color: var(--ink-600);
  line-height: 1.8;
  margin: 0 0 12px 0;
  text-align: justify;
} /* text rhythm + justify [web:4] */ /* Checklist bullets with small orange circle */
.about-block .about-info {
  list-style: none;
  padding: 0;
  margin: 20px 0 20px;
}
.about-block .about-info li + li {
  margin-top: 10px;
}
.about-block .about-info-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-block .about-info-title span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
} /* small circular icon container [web:176][web:179] */
.about-block .about-info-title h5 {
  margin: 0;
  font-size: 16px;
  color: var(--ink-900);
  font-weight: 700;
} /* CTA button (outline, fills on hover) */
.footer-btn {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}
.footer-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
} /* outline-to-fill hover [web:220][web:223] */ /* Right column image and stat card */
.about-block .about-right {
  position: relative;
}
.about-block .about-right-thumb {
  overflow: hidden;
}
.about-block .about-right-thumb .aboutusimg {
  width: 135%;
  height: 160%;
  max-height: 520px;
  object-fit: cover;
} /* contained crop and equal height feel [web:171] */
.about-block .about-right-content {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  color: var(--ink-900);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.about-block .about-right-content h1 {
  margin: 0;
  color: var(--accent);
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}
.about-block .about-right-content h1 span {
  color: var(--accent);
}
.about-block .about-right-content h5 {
  margin: 6px 0 4px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.about-block .about-right-content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--ink-900);
  font-weight: 800;
} /* Utilities used in your markup */
.mb-20 {
  margin-bottom: 20px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.section-subtitle1 .section-title1 {
  text-align: center;
} /* Responsive tweaks */
@media (max-width: 992px) {
  .about-block .row {
    gap: 24px;
  }
  .about-block .about-right-content {
    top: 14px;
    left: 14px;
    padding: 14px 16px;
  }
  .about-block .about-right-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .about-block {
    padding: 40px 0;
  }
  .about-block .about-title h2 {
    font-size: 28px;
  }
  .about-block .about-right-content h1 {
    font-size: 34px;
  }
  .about-block .about-right-thumb .aboutusimg {
    max-height: 380px;
  }
} /* about us ends  */ /* vision starts */
.vm-container .pp {
  padding: 15px 310px;
  font-size: 16px;
  font-weight: 400;
}
.vm-container .about-title {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 8px 0;
  text-align: center;
  letter-spacing: 0.3px;
}
.vision-mission-glass {
  background: var(--ink-700);
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
} /* Light gradient orbs for depth */
.vision-mission-glass::before,
.vision-mission-glass::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
.vision-mission-glass::before {
  top: -100px;
  left: -100px;
}
.vision-mission-glass::after {
  bottom: -100px;
  right: -100px;
} /* Title */ /* Layout */
.vm-container {
  position: relative;
  z-index: 1;
}
.vm-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
} /* === Glass Cards === */
.vm-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  padding: 40px 30px;
  width: 380px;
  transition: all 0.4s ease;
  position: relative;
  text-align: center;
}
.vm-card:hover::before {
  opacity: 1;
}
.vm-card:hover {
  transform: translateY(-10px);
} /* === Icon === */
.vm-icon-wrap {
  width: 70px;
  height: 70px;
  background: #1f3e72;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.vm-card:hover .vm-icon-wrap {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 0 35px rgba(201, 201, 201, 0.8);
} /* === Text === */
.vm-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}
.vm-card p {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  line-height: 1.8;
}
.vm-container .pp {
  color: #fff;
} /* Responsive */
@media (max-width: 992px) {
  .vm-container .pp {
    padding: 15px 80px;
    font-size: 15px;
  }
} /* Mobile screens (max-width: 768px) */
@media (max-width: 768px) {
  .vm-container .pp {
    padding: 10px 40px;
    font-size: 14px;
  }
} /* Small mobile screens (max-width: 480px) */
@media (max-width: 480px) {
  .vm-container .pp {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .vm-card {
    width: 90%;
  }
} /* vision ends */ /* why choose us starts */
.counter-card .bi {
  font-size: 25px;
} /* Section background: subtle dotted grid */
.why-choose-us {
  background-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.06) 1px,
    transparent 1px
  );
  background-size: 14px 14px;
} /* Image Collage Layout */
.image-collage {
  position: relative;
  height: 125%;
  margin: 0 0 70px 0;
}
.main-image {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}
.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.main-image:hover img {
  transform: scale(1.05);
}
.floating-image {
  position: absolute;
  bottom: 30px;
  right: 301px;
  width: 48%;
  height: 158px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
  z-index: 3;
}
.floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.floating-image:hover img {
  transform: scale(1.08);
} /* Left counters */
.why-choose-us .counter-card {
  display: flex;
  margin-top: 5px;
  align-items: center;
}
.why-choose-us .counterup {
  color: #6c757d !important;
  font-weight: 800;
  margin-top: 6px;
}
.why-choose-us .counter-icon {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: #1f3e72;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex: 0 0 95px;
}
.why-choose-us .counter-value {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.1;
  margin: 0;
}
.why-choose-us .counter-label {
  display: block;
  color: #6c757d;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 2px;
} /* Right side typography and bullets */
.why-choose-us h2 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.why-choose-us .py-5 {
  padding-top: 0% !important;
}
.why-choose-us p.leadish {
  color: #3c3c3c;
  font-weight: 700;
  margin-bottom: 16px;
}
.stylish-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.stylish-bullets li {
  position: relative;
  padding-left: 36px;
  color: var(--ink-600);
  margin-bottom: 12px;
}
.stylish-bullets li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 0.95rem;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
} /* Buttons */
.why-choose-us .btn-primary {
  background-color: #1f3e72;
  border-color: #1f3e72;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
} /* Grid spacing to mirror layout */
.why-choose-us .row.g-4 {
  --bs-gutter-x: 8rem;
  --bs-gutter-y: 10.5rem;
}
.counter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
} /* Responsive tweaks */
@media (max-width: 991.98px) {
  .why-choose-us {
    background-size: 12px 12px;
  }
  .why-choose-us .counter-value {
    font-size: 1.5rem;
  }
  .why-choose-us .col-md-6 {
    margin-top: 20px !important;
  } /* Responsive image layout */
  .image-collage {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .main-image,
  .floating-image {
    position: static;
    width: 100%;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .image-collage {
    height: auto;
  }
  .main-image,
  .floating-image {
    height: 180px;
  }
  .why-choose-us .counter-icon {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
  }
} /* why choose us ends  */ /* products slider starts */
:root {
  --primary-color: #1f3e72;
  --secondary-color: #ff5e2e;
  --card-bg: #ffffff;
  --text-dark: #2d3748;
  --text-light: #333333;
  --border-color: #e2e8f0;
} /* body { background-color: #f8fafc; color: var(--text-dark); overflow-x: hidden; } */
.products-slider {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.12) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  overflow: hidden;
} /* Carousel Container */
.carousel-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 600px;
  z-index: 10;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  display: flex;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.swiper-slide-active {
  transform: scale(1);
  z-index: 2;
}
.swiper-slide-next,
.swiper-slide-prev {
  transform: scale(0.9);
  opacity: 0.7;
  z-index: 1;
} /* Card Content Section */
.card-content {
  padding: 50px;
  background: var(--card-bg);
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: all 0.5s ease;
}
.card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--secondary-color);
}
.card-content::-webkit-scrollbar {
  width: 6px;
}
.card-content::-webkit-scrollbar-track {
  background: transparent;
}
.card-content::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
.about-title {
  margin-bottom: 20px;
}
.line-below {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.line-below::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
}
.card-title {
  font-size: 35px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
  position: relative;
  display: flex;
  gap: 30px;
  overflow: hidden;
}
.card-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
} /* Features List */
.features-list {
  margin-bottom: 30px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.5;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
}
.swiper-slide-active .feature-item {
  opacity: 1;
  transform: translateX(0);
}
.swiper-slide-active .feature-item:nth-child(1) {
  transition-delay: 0.2s;
}
.swiper-slide-active .feature-item:nth-child(2) {
  transition-delay: 0.4s;
}
.swiper-slide-active .feature-item:nth-child(3) {
  transition-delay: 0.6s;
}
.feature-icon {
  color: var(--secondary-color);
  margin-right: 12px;
  font-size: 14px;
  margin-top: 5px;
  flex-shrink: 0;
} /* Description */
.card-description {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.swiper-slide-active .card-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
} /* CTA Button */
.theme-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  width: fit-content;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.swiper-slide-active .theme-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}
.theme-btn:hover {
  background-color: #e04a1a;
  color: white;
}
.card-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}
.card-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  border-radius: 0 0 0 100px;
  opacity: 1;
}
.card-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 110px;
  height: 120px;
  background: var(--primary-color);
  border-radius: 0 100px 0 0;
  opacity: 1;
}
.card-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  min-height: 100%;
  min-width: 70%;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  transition: all 0.5s ease;
  transform: scale(0.9);
  opacity: 0;
}
.swiper-slide-active .card-image {
  transform: scale(1);
  opacity: 1;
} /* Navigation Controls */
.carousel-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 20;
}
.nav-button {
  width: 50px;
  height: 50px;
  border: 2px solid white;
  background: transparent;
  color: white;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.nav-button:hover {
  background: white;
  color: var(--primary-color);
  transform: scale(1.05);
} /* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 12px;
  z-index: 20;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator.active {
  background: var(--secondary-color);
  width: 30px;
  border-radius: 6px;
}
.indicator:hover {
  background: white;
} /* Card Counter */
.card-counter {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  z-index: 20;
  display: flex;
  align-items: center;
}
.current-card {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 24px;
  margin-right: 5px;
}
.total-cards {
  font-size: 16px;
  opacity: 0.7;
}
.counter-divider {
  margin: 0 8px;
  opacity: 0.5;
} /* Responsive Design */
@media (max-width: 1024px) {
  .card-content {
    padding: 40px;
  }
  .card-title {
    font-size: 36px;
  }
  .feature-item {
    font-size: 14px;
  }
  .carousel-container {
    height: 550px;
  }
}
@media (max-width: 768px) {
  .products-section {
    padding: 20px 15px;
  }
  .carousel-container {
    height: auto;
    min-height: 500px;
  }
  .swiper-slide {
    flex-direction: column;
  }
  .card-content {
    padding: 30px 20px;
    height: 50%;
  }
  .card-image-wrapper {
    height: 50%;
    padding: 20px;
  }
  .card-title {
    font-size: 28px;
  }
  .carousel-controls,
  .carousel-indicators,
  .card-counter {
    display: none;
  }
} /* Animation for card entrance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  animation: fadeInUp 0.8s ease forwards;
} /* product slider ends */ /* Solutions section starts */
* {
  box-sizing: border-box;
} /* body { font-family: Inter, system-ui, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: #f7f8fb; } */
.srv-title1 {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 8px 0;
  letter-spacing: 0.3px;
}
.services {
  padding: 50px 20px;
}
.srv-title {
  color: var(--ink-700);
  font-size: 36px;
  line-height: 1.25;
  margin: 0 0 16px 0;
  font-weight: 800;
}
.srv-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}
.srv-card {
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--ink-700), var(--ink-900));
  border: 1px solid rgba(0, 0, 0, 0.205);
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(16, 31, 60, 0.06);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s;
  isolation: isolate;
}
.srv-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(122, 123, 124, 0.25);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(16, 31, 60, 0.08);
}
.srv-card:hover::after {
  opacity: 1;
} /* Circular stage */
.srv-circle {
  width: 100%;
  aspect-ratio: 2;
  margin: 0 auto 6px;
  position: relative;
  display: grid;
  place-items: center;
  background: conic-gradient(from 180deg at 50% 50%, #fff, #f4f7fb);
  box-shadow: 0 0 0 10px #fff inset, 0 0 0 2px var(--ring),
    0 10px 24px rgba(16, 31, 60, 0.08);
  overflow: hidden;
} /* Background image blur/parallax */
.srv-bg {
  position: absolute;
  width: 112%;
  height: 112%;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.05) brightness(0.98);
  transform: scale(1.04);
  transition: transform 0.6s ease, filter 0.6s ease;
} /* Center icon */
.srv-icon {
  width: 42%;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
  z-index: 1;
} /* Text */
.srv-name {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin: 10px 0 8px;
  letter-spacing: 0.3px;
}
.srv-desc {
  color: #fff;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s;
}
.srv-link:hover {
  background: rgba(30, 107, 255, 0.08);
} /* POP-IN variant (icon pops bigger on hover) */
.srv-card.pop-in:hover .srv-icon {
  transform: scale(1.18);
}
.srv-card.pop-in:hover .srv-bg {
  transform: scale(1.08) rotate(0.6deg);
} /* POP-OUT variant (icon disappears on hover) */
.srv-card.pop-out .srv-icon {
  opacity: 1;
  transform: scale(1);
}
.srv-card.pop-out:hover .srv-icon {
  opacity: 0;
  transform: scale(0.6);
}
.srv-card.pop-out:hover .srv-bg {
  transform: scale(1.1) rotate(1deg);
  filter: grayscale(0%);
} /* Responsive */
@media (max-width: 980px) {
  .srv-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}
@media (max-width: 620px) {
  .srv-grid {
    grid-template-columns: 1fr;
  }
} /* Solutions section ends */ /* call to action starts */
:root {
  --hero-height: 72vh;
  --max-w: 1100px;
  --primary: #0a66ff;
  --primary-hover: #0957da;
  --text: #ffffff;
  --text-dim: #e8e8e8;
  --outline: rgba(255, 255, 255, 0.28);
  --overlay: rgba(0, 0, 0, 0.38);
  --overlay-strong: rgba(0, 0, 0, 0.18);
  --radius: 10px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
} /* Page reset */ /* * { box-sizing: border-box; } */ /* html, body { height: 100%; } */ /* Hero wrapper */
.hero {
  position: relative;
  height: var(--hero-height);
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
} /* Background media: video or image fallback */
.hero video,
.hero .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: translateZ(0); /* trigger GPU */
} /* Optional split look with two sources */
.hero .split-mask {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: -2;
  pointer-events: none;
}
.hero .left,
.hero .right {
  position: relative;
  overflow: hidden;
}
.hero .left video,
.hero .right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
} /* Dark overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--overlay), var(--overlay)),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.35),
      transparent 35%,
      transparent 65%,
      rgba(0, 0, 0, 0.35)
    );
  z-index: -1;
} /* Content container */
.content {
  width: 100%;
  max-width: var(--max-w);
  padding-inline: 24px;
  text-align: center;
}
.headline {
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.18;
  letter-spacing: 0.2px;
  font-weight: 600;
  margin: 0 0 28px;
  text-wrap: balance;
  color: var(--text);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.sub {
  max-width: 850px;
  margin: 0 auto 28px;
  font-size: clamp(15px, 2.1vw, 18px);
  color: var(--text-dim);
}
.cta-row {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  appearance: none;
  border: 1px solid transparent;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: 0.18s ease-in-out;
  box-shadow: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  backdrop-filter: saturate(120%) blur(2px);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: var(--outline);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
} /* Small helper for keyboard focus */
.btn:focus-visible {
  outline: 3px solid rgba(10, 102, 255, 0.6);
  outline-offset: 2px;
} /* Mobile */
@media (max-width: 640px) {
  .cta-row {
    gap: 10px;
  }
  .btn {
    width: 100%;
    min-width: auto;
    padding: 13px 16px;
  }
} /* Optional floating badges or captions on corners */
.badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
} /* call to action ends  */ /* footer starts */
.machino-footer {
  background: linear-gradient(135deg, var(--ink-700), var(--ink-900));
  color: #fff;
  padding: 40px 30px 0 30px;
  height: auto;
}
.address-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.address-item i {
  color: #ff4d4d;
  font-size: 14px;
  margin-top: 3px; /* aligns icon with text */
  flex-shrink: 0; /* prevents icon from shrinking */
}
.address-item span {
  line-height: 1.6;
  font-size: 14px;
}
.footer-container {
  display: grid;
  float: inline-end;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  column-gap: 2rem;
  row-gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 0 90px;
}
.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}
.footer-about {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
}
.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
}
.footer-contact li,
.footer-links li {
  list-style: none;
  margin-bottom: 15px;
}
.footer-contact i,
.footer-links i,
.contact-info2 i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 14px;
}
.address-text {
  display: block;
  margin-left: 20px; /* align with text after icon */
  line-height: 1.6;
}
.footer-contact a,
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-contact a:hover,
.footer-links a:hover {
  color: var(--accent);
}
.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.692);
  margin: 32px auto;
  width: 100%;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 30px 30px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}
.footer-bottom span {
  color: var(--accent);
}
.bottom-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
  transition: color 0.3s;
}
.bottom-links a:hover {
  color: var(--accent);
} /* Reset list padding */
.footer-col ul {
  padding-left: 0 !important;
} /* Align logo if your design needs it */
.machino-footer .footer-logo {
  margin-left: -15px;
} /* Responsive adjustments */
@media (max-width: 992px) {
  .footer-container {
    column-gap: 1.5rem;
    row-gap: 1rem;
  }
}
@media (max-width: 769px) {
  .address-item {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    column-gap: 1rem;
    row-gap: 1rem;
    padding: 0 16px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 16px;
  }
  .footer-links i,
  .footer-contact i {
    display: none; /* hide icons on small screens to reduce wraps */
  }
  .bottom-links a {
    margin-left: 12px;
    font-size: 13px;
  }
}
@media (min-width: 1400px) {
  .footer-container {
    column-gap: 2.5rem;
  }
} /* footer ends */ /* inner contact us  starts*/
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5% 8% 0 8%;
  align-items: center;
}
.contact-info2 h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--ink-700);
}
.contact-info2 p {
  margin-bottom: 0.8rem;
}
.contact-info2 a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}
.form-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 2rem;
}
.form-card h3 {
  margin-bottom: 1rem;
  color: var(--ink-700);
}
.form-card input,
.form-card textarea,
.form-card button {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
}
.form-card button {
  background: var(--ink-700);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}
.form-card button:hover {
  background: var(--ink-700);
}
.map-section {
  padding: 5% 0 0 0%;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.map iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow);
} /* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1024px) {
  .contact-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 8% 5%;
  }
  .contact-info2 {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .form-card {
    width: 100%;
    margin: 0 auto;
  }
  .map-section {
    padding: 5%;
    margin-bottom: 0% !important;
  }
  .map iframe {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .header-lower {
    height: auto;
  }
  header h1 {
    font-size: 1.2rem;
  }
  nav a {
    margin-left: 1rem;
    font-size: 0.9rem;
  }
  .contact-info2 h2 {
    font-size: 1.6rem;
  }
  .form-card {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .contact-hero {
    padding: 30% 8px 0 8px;
  }
  .form-card input,
  .form-card textarea,
  .form-card button {
    font-size: 0.9rem;
  }
  .map iframe {
    height: 250px;
  }
} /* contact us inner ends  */
.card-section3 {
  padding: 60px 0;
}
.section-header .d-flex {
  justify-content: space-between;
  margin-bottom: 30px;
} /* products inner page starts */
.infrastructure-section .pp {
  padding: 15px 175px;
  font-size: 16px;
  font-weight: 400;
}
.breadcrumbs-custom .container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem; /* reduce padding for row alignment */
  justify-content: space-between;
  gap: 2rem; /* space between title and breadcrumbs */
} /* Title block stays on left */
.breadcrumbs-custom-title {
  margin: 0;
  line-height: 1.15;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  white-space: nowrap; /* keep on one line; remove if long titles */
} /* Breadcrumbs list on the right in one line */
.breadcrumbs-custom-path {
  display: flex;
  flex-wrap: nowrap; /* same line */
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumbs-custom-path li {
  display: inline-flex;
  align-items: center;
}
.breadcrumbs-custom-path li + li::before {
  content: "›";
  margin: 0 0.5rem;
  opacity: 0.7;
}
.breadcrumbs-custom-path a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.breadcrumbs-custom-path a:hover {
  color: #00a6ff;
}
.breadcrumbs-custom.box-transform-wrap {
  position: relative;
  width: 100%;
  margin: 0 0 45px 0;
  min-height: 60vh; /* adjust as needed */
  display: flex;
  align-items: center; /* center row vertically */
  overflow: hidden;
}
.box-transform {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.breadcrumbs-custom.box-transform-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(0 0 0 / 23%), rgba(0, 0, 0, 0.377));
  z-index: 2;
} /* On small screens, stack title above breadcrumbs */
@media (max-width: 640px) {
  .breadcrumbs-custom .container {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
  }
  .breadcrumbs-custom-title {
    white-space: normal; /* allow wrapping on small screens */
  }
  .breadcrumbs-custom-path {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.products33 {
  margin-top: 10%;
}
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
} /* Card styling */
.card {
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink-700), var(--ink-900));
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 330px;
}
.card img {
  width: 100%;
  height: 340px !important;
  border-bottom: 2px solid var(--accent);
  height: fit-content;
  padding: 1px;
  border-radius: 15px;
  min-height: 80%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card h3 {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 8px 0;
} /* Hover effects */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.card:hover img {
  transform: scale(1.05);
}
.imgborder {
  border-radius: 5px;
} /* products inner ends */ /* solution inner starts */
.services-section {
  padding: 10px 0;
  max-width: 1200px;
  margin: 0 auto;
} /* 2-column layout: left tabs, right content */
.services-layout {
  display: flex;
  gap: 24px;
} /* LEFT: vertical tabs */
.services-tabs {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 220px;
  max-width: 240px;
  gap: 10px;
} /* RIGHT: content area */
.services-content {
  flex: 1;
} /* Cards hidden by default */
.service-card {
  display: none;
  gap: 24px;
}
.service-card.active {
  display: flex;
} /* Images inside cards */
.service-image img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
} /* Responsive: tabs on top for mobile */
@media (max-width: 768px) {
  .services-layout {
    flex-direction: column;
  }
  .services-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
    max-width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }
  .service-tab {
    padding: 10px 20px;
    font-weight: 600;
  }
  .service-card.active {
    flex-direction: column;
  }
  .service-image img {
    max-width: 70%;
    margin-top: 15px;
  }
} /* Additional styling for titles, paragraphs */
.card-title.ss {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--ink-600);
}
.pp {
  font-size: 16px;
  margin-bottom: 24px;
  color: #2e2d2d;
} /* Large tablets / small laptops */
@media (max-width: 1199px) {
  .infrastructure-section .pp {
    padding: 15px 120px;
  }
} /* Tablets */
@media (max-width: 991px) {
  .infrastructure-section .pp {
    padding: 15px 60px;
    font-size: 15px;
  }
} /* Mobiles */
@media (max-width: 576px) {
  .infrastructure-section .pp {
    padding: 12px 20px;
    font-size: 14px;
  }
}
.service-content h2.service-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}
.service-content p.service-description {
  font-size: 16px;
  margin-bottom: 16px;
  color: #444;
}
.components-title,
.highlights-title {
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-list {
  list-style: none;
  padding-left: 0;
}
.feature-item2 {
  margin-bottom: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #333;
}
.feature-icon {
  margin-right: 8px;
  color: var(--primary-color);
  font-weight: bold;
}
.components-text {
  font-size: 14px;
  color: #2e2d2d;
}
.services-section {
  padding: 0px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-title {
  font-size: 36px;
  color: var(--ink-600);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 8%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent);
}
.services-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.services-tabs {
  top: 20px;
  align-self: flex-start;
  background: rgb(219, 219, 219);
  padding: 30px;
  min-width: 270px;
  max-width: 260px;
}
.service-tab {
  padding: 12px 24px;
  border-bottom: 1px solid grey;
  font-weight: 600;
  color: var(--ink-700);
  cursor: pointer;
  transition: all 0.3s ease;
}
.services-tabs {
  border-radius: 10px;
}
.service-tab:hover {
  color: var(--accent);
}
.service-tab.active {
  color: var(--accent);
}
.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.5s ease;
  padding: 20px;
}
.service-card.active {
  display: flex;
}
@media (min-width: 769px) {
  .services-tabs {
    position: sticky;
    top: 155px;
    z-index: 10;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-content {
  flex: 1;
  padding: 0 40px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-image {
  min-height: 400px;
  width: 315px;
  overflow: hidden;
  position: relative;
}
.service-image img {
  width: 100%;
  height: 53%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-image img {
  transform: scale(1.05);
}
.service-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
}
.service-description {
  color: var(--ink-600);
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.7;
}
.components-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.components-text {
  color: var(--ink-600);
  font-size: 16px;
  line-height: 1.6;
  background-color: rgba(31, 62, 114, 0.05);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}
.highlights-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.feature-list {
  list-style: none;
  padding: 0;
  flex: 1;
}
.feature-list.right {
  text-align: right;
}
.feature-list.right .feature-item2 {
  justify-content: flex-end;
}
.feature-item2 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--ink-600);
  line-height: 1.6;
}
.feature-icon {
  color: var(--secondary-color);
  margin-right: 12px;
  font-size: 14px;
  margin-top: 6px;
  flex-shrink: 0;
}
.highlights-section {
  margin: 25px 0;
}
.highlights-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-item2 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--ink-600);
  line-height: 1.6;
}
.feature-icon {
  color: var(--secondary-color);
  margin-right: 12px;
  font-size: 14px;
  margin-top: 6px;
  flex-shrink: 0;
}
.cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: fit-content;
  margin-top: 20px;
}
.cta-button:hover {
  background-color: #e04a1a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 94, 46, 0.3);
} /* Responsive Design */
@media (max-width: 991px) {
  .service-card {
    flex-direction: column;
  }
  .service-image {
    min-height: max-content;
  }
  .services-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
  }
  .service-content {
    padding: 30px;
  }
  .service-title {
    font-size: 24px;
  }
  .section-title {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .service-content {
    padding: 25px;
  }
  .service-title {
    font-size: 22px;
  }
  .components-text {
    padding: 15px;
  }
} /* body { background-color: #f8f9fa; color: var(--ink-600); line-height: 1.6; } */
.gnosh-expertise {
  padding: 80px 0 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.gnosh-expertise-header {
  text-align: center;
  margin-bottom: 60px;
}
.gnosh-expertise-title {
  font-size: 36px;
  color: var(--ink-700);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.gnosh-expertise-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 22%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent);
}
.gnosh-expertise-subtitle {
  color: var(--muted);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}
.gnosh-expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.gnosh-expertise-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.gnosh-expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.gnosh-card-header {
  padding: 25px 25px 15px;
  background: linear-gradient(135deg, var(--ink-700), var(--ink-900));
  color: var(--white);
  position: relative;
}
.gnosh-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.gnosh-card-icon i {
  font-size: 24px;
  color: var(--white);
}
.gnosh-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.gnosh-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.gnosh-card-description {
  color: var(--ink-600);
  margin-bottom: 20px;
  flex-grow: 1;
}
.gnosh-feature-icon {
  color: var(--accent);
  margin-right: 12px;
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}
.gnosh-expertise-highlight {
  background: linear-gradient(135deg, var(--ink-700), var(--ink-900));
  color: var(--white);
  padding: 40px 0px;
  border-radius: var(--radius);
  margin-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gnosh-highlight-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.gnosh-highlight-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.gnosh-highlight-text {
  font-size: 1rem;
  color: #fff;
  line-height: 1.7;
  opacity: 0.9;
} /* Responsive Design */
@media (max-width: 768px) {
  .gnosh-expertise-grid {
    grid-template-columns: 1fr;
  }
  .gnosh-expertise-title {
    font-size: 30px;
  }
  .gnosh-expertise {
    padding: 60px 20px;
  }
  .gnosh-expertise-highlight {
    padding: 40px 25px;
  }
}
@media (max-width: 480px) {
  .gnosh-expertise-grid {
    grid-template-columns: 1fr;
  }
  .gnosh-card-content {
    padding: 20px;
  }
  .gnosh-expertise-title {
    font-size: 26px;
  }
} /* infrastructure inner page starts */
.infrastructure-hero {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-700) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}
.infrastructure-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.infrastructure-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}
.machine-section {
  padding: 0px 40px;
}
.section-title {
  color: var(--ink-700);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  position: relative;
  text-align: center;
}
.section-title:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent);
} /* Creative Machine Layout */
.machine-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.machine-layout:hover {
  transform: translateY(-5px);
}
.machine-layout.reverse {
  flex-direction: row-reverse;
}
.machine-visual {
  flex: 1;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.machine-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.machine-layout:hover .machine-visual img {
  transform: scale(1.05);
}
.machine-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 34, 61, 0.8));
  color: var(--white);
  padding: 30px 25px;
}
.machine-badge {
  background: var(--accent);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 10px;
}
.machine-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}
.machine-specs {
  flex: 1;
  padding: 30px;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.specs-table th {
  background-color: rgba(31, 62, 114, 0.08);
  color: var(--ink-700);
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--accent);
  font-size: 16px;
}
.specs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 16px;
}
.specs-table tr:hover {
  background-color: rgba(31, 62, 114, 0.03);
}
.specs-table tr:last-child td {
  border-bottom: none;
}
.spec-group {
  margin-bottom: 25px;
}
.spec-group h4 {
  color: var(--ink-700);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
} /* Facilities Grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.facility-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 25px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
}
.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.facility-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--ink-700), var(--ink-900));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.facility-icon i {
  font-size: 28px;
  color: var(--white);
}
.facility-card h3 {
  color: var(--ink-700);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.facility-card p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}
.quality-badge {
  background: linear-gradient(135deg, var(--ink-700), var(--ink-900));
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  margin: 60px 0 60px 0;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.quality-badge:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
}
.quality-badge h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.quality-badge p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
} /* Responsive Design */
@media (max-width: 992px) {
  .machine-layout {
    flex-direction: column;
  }
  .machine-layout.reverse {
    flex-direction: column;
  }
  .machine-visual {
    min-height: 300px;
    width: 100%;
  }
  .infrastructure-hero h1 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .infrastructure-hero {
    padding: 60px 0 40px;
  }
  .machine-section {
    padding: 60px 0;
  }
  .specs-table {
    font-size: 0.85rem;
  }
  .specs-table th,
  .specs-table td {
    padding: 10px 12px;
  }
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  .quality-badge {
    padding: 50px 20px;
  }
  .quality-badge h2 {
    font-size: 2rem;
  }
}
@media (min-width: 480px) {
  .machine-specs {
    padding: 20px;
  }
  .specs-table {
    display: block;
    overflow-x: auto;
    padding: 10px;
  }
} /* infrastructure inner page ends */ /* Active Navigation Styles */
.navigation .menu-item.active a,
.mobile-menu .menu-item.active a {
  color: var(--accent) !important;
  font-weight: 700;
  position: relative;
}
.navigation .menu-item.active a::after,
.mobile-menu .menu-item.active a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
} /* Desktop navigation specific */
.navigation .menu-item.active a {
  transform: translateY(-1px);
} /* Mobile navigation specific */
.mobile-menu .menu-item.active a {
  background: rgba(0, 123, 255, 0.1);
  border-radius: 8px;
  padding: 10px 15px;
  margin: 5px 0;
} /* index page image, added by me  */
.image-gallery .thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: 0.3s;
} /* Active border */
.image-gallery .thumb.active {
  border-color: #007bff;
} /* Mobile responsive adjustments */
@media (max-width: 576px) {
  .image-gallery .thumb {
    width: 60px;
    height: 60px;
  }
  .thumbnail-row {
    flex-wrap: wrap;
    gap: 0.75rem !important;
  }
}
@media (min-width: 991px) and (max-width: 1200px) {
  .image-gallery .thumb {
    width: 65px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: 0.3s;
  }
}
