:root {
  --primary-color: #0560b8;
  --primary-hover: #044b90;
  --bg-light: #f1f7fd;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --topbar-bg: #032d57;
  /* Deep rich dark shade matching primary blue */
  --white: #ffffff;
  --border-light: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(5, 96, 184, 0.1);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & layout */
.site-header {
  width: 100%;
  position: relative;
  z-index: 1000;
}

.container-fluid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Topbar Styling (Dark Theme) */
.topbar {
  background-color: var(--topbar-bg);
  color: #dbeafe;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-item i {
  color: #60a5fa;
  font-size: 1rem;
}

.topbar-item.emergency {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.topbar-item.emergency i {
  color: #f87171;
}

.topbar-icon {
  color: #dbeafe;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.topbar-icon:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Fix 1: Make the outer header sticky */
.site-header {
  width: 100%;
  position: sticky;
  top: -43px;
  /* Hides the topbar when it reaches top, sticking only the navbar */
  z-index: 1000;
}

/* Remove sticky from main-navbar */
.main-navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand/Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-mark {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-text {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-color);
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background-color: var(--bg-light);
}

/* Dropdown Containers & Menus */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-simple-menu {
  width: 240px;
}

.nav-simple-menu a,
.nav-mega-list a {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0.8rem;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-simple-menu a span,
.nav-mega-list a span {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-simple-menu a small,
.nav-mega-list a small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.nav-simple-menu a:hover,
.nav-mega-list a:hover {
  background: var(--bg-light);
}

.nav-simple-menu a:hover span,
.nav-mega-list a:hover span {
  color: var(--primary-color);
}

/* Mega Menu */
.nav-mega-menu {
  width: 520px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 1.25rem;
}

.nav-mega-intro {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
}

.nav-mega-intro strong {
  display: block;
  font-size: 0.85rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-mega-tags {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.nav-mega-tags a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  transition: var(--transition);
}

.nav-mega-tags a:hover {
  color: var(--primary-color);
}

.nav-mega-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dropdown-all {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border-light);
  color: var(--primary-color) !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}

/* Header Contact Button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-contact-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(5, 96, 184, 0.25);
  transition: var(--transition);
}

.header-contact-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 16px rgba(5, 96, 184, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
}

/* Mobile Overlay & Sidebar */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar-header {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
}

.mobile-logo img {
  max-height: 40px;
}

.mobile-logo span {
  font-weight: 700;
  color: var(--primary-color);
}

.sidebar-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}

.mobile-menu {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu>a,
.mobile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.8rem 1rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  border: none;
  background: none;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
}

.mobile-menu>a:hover,
.mobile-dropdown-btn:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.mobile-dropdown-content {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  margin-top: 0.25rem;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: flex;
}

.mobile-dropdown.active .mobile-dropdown-btn span:last-child {
  transform: rotate(180deg);
}

.mobile-dropdown-content a {
  padding: 0.6rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.mobile-dropdown-content a.view-all {
  color: var(--primary-color);
  font-weight: 600;
}

.mobile-contact {
  padding: 1.25rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-light);
}

.mobile-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Responsive Rules */
@media (max-width: 991px) {
  .topbar-left .topbar-item:not(:first-child) {
    display: none;
  }

  .main-nav,
  .header-contact-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mega-menu {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

/* Hero Section Container with Fixed Background */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 20px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;

}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #032d57e3 0%, rgba(12, 38, 54, 0) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

/* Left Content & Slider Styles */
.hero-left {
  min-width: 0;
  /* Prevents grid breakout from carousel */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-slide-content h1 {
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-slide-content h1 span,
.hero-slide-content h1 highlight {
  color: #2bb6a8;
}

.hero-slide-content p {
  font-size: 16px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-primary {
  background-color: #2bb6a8;
  color: #fff;
}

.hero-btn-primary:hover {
  background-color: #23988c;
}

.hero-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hero-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.hero-stat h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.hero-stat p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

/* Right Fixed Form Styles */
.appointment-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 16px;
}

.card-subtitle {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 4px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.card-meta {
  font-size: 11px;
  color: #ffffff !important;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-form .form-group {
  margin-bottom: 5px !important;
}

.hero-form label {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  color: #e2e8f0;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: #64748b;
}

.hero-submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #2bb6a8;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.hero-submit-btn:hover {
  background-color: #23988c;
}

.call-us {
  text-align: center;
  font-size: 12px;
  margin-top: 12px;
  color: #94a3b8;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}




.hero-slide-content {
  color: #fff;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}


.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-stat {
  background: rgba(255, 255, 255, .12);
  padding: 18px;
  border-radius: 15px;
  backdrop-filter: blur(15px);
  text-align: center;
}

.hero-stat h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 5px;
}

.hero-stat p {
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

.appointment-card {

  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}



.card-title {
  font-size: 30px;
  margin-bottom: 10px;
}



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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.hero-submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: #0560B8;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.call-us {
  margin-top: 20px;
  text-align: center;
}

.owl-dots {

  text-align: left !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
}

.owl-theme .owl-dots .owl-dot.active span {
  width: 35px;
  border-radius: 20px;
  background: #fff;
}

@media(max-width:991px) {

  .hero-section {
    padding: 120px 0 70px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide-content h1 {
    font-size: 38px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

}


.about-section {
  padding: 70px 0;
  background: #def1ff;
  background: linear-gradient(180deg, rgba(222, 241, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}


.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.about-images {
  position: relative;
}

.image-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.image-card img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.experience-card {
  position: absolute;
  right: -10px;
  bottom: 40px;

  display: flex;
  gap: 15px;
  align-items: center;

  background: #0B5E95;
  color: #fff;

  padding: 22px 28px;

  border-radius: 18px;

  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.exp-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 22px;
}

.experience-card h4 {
  margin: 0;
  font-size: 24px;
}

.experience-card p {
  margin: 5px 0 0;
  opacity: .9;
}

.section-tag {
  color: #1DA4B8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-content {
  width: 100%;
}

.about-content h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 15px 0 25px;
  font-weight: 800;
  color: #004477;
}

.about-content>p {
  color: #65748b;
  line-height: 1.9;
  margin-bottom: 35px;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.feature-box {
  display: flex;
  gap: 18px;
}

.feature-box .icon {
  min-width: 56px;
  height: 56px;

  border-radius: 16px;

  background: #e8f7fa;
  color: #0B5E95;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 26px;
}

.feature-box h5 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #1c2b44;
}

.feature-box p {
  margin: 0;
  color: #6b7b90;
  line-height: 1.7;
}

.about-buttons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.btn-primary {
  background: #0B5E95;
  color: #fff;
  padding: 16px 34px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid #0B5E95;
  color: #0B5E95;
  padding: 16px 34px;
  border-radius: 12px;
  font-weight: 600;
}

@media(max-width:991px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -40px;
    margin-left: auto;
    width: max-content;
  }

  .about-content h2 {
    font-size: 34px;
  }

}




.why-robotic {

  padding: 70px 0;
  background: #ffffff;


}

.container {
  width: 100%;
  max-width: 1330px;
  margin: auto;

}

/*==========================*/

.section-title {

  text-align: center;
  max-width: 900px;
  margin: auto 70px;
  margin: auto;

}

.subtitle {

  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 24px;
  border-radius: 40px;
  background: #ffffff;
  border: 1px solid #0560B8;
  color: #044b90;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;

}

.section-title h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  margin: 10px 0 0px;
  color: var(--primary-color);

}


.section-title p {

  font-size: 16px;
  color: #6A7890;
  line-height: 1.8;

}

/*=====================*/

.why-grid {

  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 25px;
  margin-top: 70px;

}

/*=====================*/

.image-card {

  position: relative;
  overflow: hidden;
  border-radius: 35px;
  height: 640px;

}

.image-card img {

  width: 100%;
  height: 100%;
  object-fit: cover;


}


.image-overlay {

  position: absolute;
  inset: 0;

  background: linear-gradient(180deg,
      rgba(0, 0, 0, .05),
      rgba(0, 0, 0, .75));

}

.image-content {

  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 10px;
  color: #fff;
  z-index: 2;

}

.icon-box {

  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #0560B8, #0D84FF);

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  font-size: 30px;
  margin-bottom: 25px;

  animation: float 4s infinite;

}

.image-content h3 {

  font-size: 29px;
  margin-top: 10px;
  font-weight: 700;
  color: white;

}

.image-content p {
  font-size: 17px;

}

.badge {

  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  margin-top: 0px;
  background: rgba(255, 255, 255, .12);

  backdrop-filter: blur(18px);

  border-radius: 18px;

}

/*======================*/

.content-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;

}

.wide-card {

  grid-column: span 2;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 25px;

  background: #fff;

  border-radius: 28px;

  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;

  transition: .4s;

  position: relative;

  overflow: hidden;

}

.small-card {

  padding: 30px;

  background: #fff;

  border-radius: 28px;

  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;

  transition: .4s;

  position: relative;

  overflow: hidden;

}

.bottom {

  display: flex;
  gap: 15px;
  align-items: center;

}

/*======================*/

.small-icon {

  width: 58px;
  height: 58px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf6ff;
  color: var(--primary);
  font-size: 24px;

  margin-bottom: 25px;

  transition: .4s;

}

.wide-card span {

  font-size: 13px;
  font-weight: 500;
  color: var(--orange);

}

.wide-card h3 {

  font-size: 24px;
  margin-top: 10px;
  font-weight: 700;
  color: var(--primary-color);

}

.small-card h4,
.bottom h4 {
  font-weight: 700;
  font-size: 24px;
  color: var(--primary-color);

}

.small-card p,
.bottom p,
.wide-card p {

  font-size: 16px;

  color: #66748d;

}

/*======================*/

.wide-card::before,
.small-card::before {

  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(90deg,
      transparent,
      rgba(5, 96, 184, .08),
      transparent);

  transition: .8s;

}

.wide-card:hover::before,
.small-card:hover::before {

  left: 100%;

}

.wide-card:hover,
.small-card:hover {

  transform: translateY(-12px);

  box-shadow: 0 30px 70px rgba(5, 96, 184, .15);

  border-color: #0560B8;

}

.small-card:hover .small-icon,
.bottom:hover .small-icon {

  background: #0560B8;

  color: #fff;

  transform: rotate(12deg) scale(1.1);

}

/*=====================*/

@keyframes float {

  0%,
  100% {

    transform: translateY(0);

  }

  50% {

    transform: translateY(-10px);

  }

}

/*=====================*/

@media(max-width:1100px) {

  .why-grid {

    grid-template-columns: 1fr;

  }

  .image-card {

    height: 550px;

  }

  .section-title h2 {

    font-size: 42px;

  }

}

@media(max-width:768px) {

  .content-grid {

    grid-template-columns: 1fr;

  }

  .wide-card {

    grid-column: span 1;

    flex-direction: column;
    align-items: flex-start;

  }

  .section-title h2 {

    font-size: 34px;

  }

  .image-content h3 {

    font-size: 30px;

  }

  .small-card,
  .wide-card {

    padding: 30px;

  }

}

.home-service-section {
  position: relative;
  padding: 70px 0;
  background: url('/uploads/banners/1784551323-banner-6a5e179b0fc827.33538095.png') center center/cover no-repeat;
  overflow: hidden;
  z-index: 1;
}

.home-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #032d57e3 0%, rgba(3, 62, 99, 0.826) 100%);
  z-index: 1;
}

.home-service-section .container {
  position: relative;
  z-index: 2;
}



.home-service-head {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
  align-items: end;
}

.home-service-head h2 {
  font-size: 44px;
  font-weight: 700;
  color: #0A4DA2;
  margin-top: 10px;
}

.home-service-head p {
  max-width: 550px;
  color: #667085;
  line-height: 1.8;
}

.ab-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: #EAF2FF;
  color: #0A4DA2;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 70px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: #fff;
  border: 1px solid #D7E6FF;
  border-radius: 22px;
  transition: .4s;
  text-decoration: none;
  overflow: hidden;
  min-height: 330px;
}




.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #EEF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: .4s;
}

.service-icon i {
  font-size: 30px;
  color: #0560B8;
  transition: .4s;
}

.service-card h3 {
  font-size: 26px;
  line-height: 1.2;
  color: #0A4DA2;
  font-weight: 700;
  margin-bottom: 18px;
  transition: .35s;
}

.service-card p {
  color: #5E6470;
  line-height: 1.4;
  font-size: 16px;
  transition: .35s;
}

.service-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0560B8;
  font-weight: 700;
  font-size: 17px;
  transition: .35s;
}

.service-btn i {
  transition: .35s;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: #0560B8;
  box-shadow: 0 30px 70px rgba(5, 96, 184, .18);
}



.service-card:hover .service-icon i {
  color: #004477;
}

.service-card:hover .service-btn i {
  transform: translateX(8px);
}

@media(max-width:1200px) {

  .home-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media(max-width:991px) {

  .home-service-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:576px) {

  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 28px;
  }

  .home-service-head h2 {
    font-size: 34px;
  }

  .service-card h3 {
    font-size: 28px;
  }

}



/*==========================
    WHY CHOOSE US
==========================*/

.home-achievement-section {
  padding: 70px 0;
  background: #F6FAFF;
  position: relative;
  overflow: hidden;
}

.home-achievement-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(5, 96, 184, .08), transparent 70%);
  top: -180px;
  left: -150px;
}

.home-achievement-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(5, 96, 184, .06), transparent 70%);
  bottom: -150px;
  right: -120px;
}

.home-achievement-wrap {
  position: relative;
  z-index: 2;
}

.home-achievement-grid {
  display: grid;
  grid-template-columns: 1.5fr .75fr .75fr;
  gap: 28px;
  align-items: start;
}

.home-achievement-head {
  background: #fff;
  padding: 50px;
  border-radius: 24px;
  border: 1px solid #DDEBFF;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
  height: 100%;
}

.home-achievement-head span {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 40px;
  background: #EAF3FF;
  color: #0560B8;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.home-achievement-head h2 {
  font-size: 42px;
  line-height: 1.2;
  color: #083C8A;
  font-weight: 700;
  margin-bottom: 22px;
}

.home-achievement-head p {
  color: #667085;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 35px;
}

.achievement-features {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.achievement-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: #F7FBFF;
  border: 1px solid #D8E7FF;
  border-radius: 16px;
  transition: .35s;
}

.achievement-feature i {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0560B8;
  color: #fff;
  border-radius: 12px;
  font-size: 22px;
}

.achievement-feature p {
  margin: 0;
  color: #0B4A9E;
  font-weight: 600;
  line-height: 1.4;
}

.achievement-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(5, 96, 184, .15);
}

/*==========================
    Cards
==========================*/

.home-achievement-card {
  background: #fff;
  border: 1px solid #DCE8FB;
  border-radius: 22px;
  padding: 38px 30px;
  text-align: center;
  margin-bottom: 25px;
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.home-achievement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0560B8, #2D8CFF);
  opacity: 0;
  transition: .4s;
}

.home-achievement-card>* {
  position: relative;
  z-index: 2;
}

.home-achievement-card i {
  width: 72px;
  height: 72px;
  margin: auto auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EDF4FF;
  color: #0560B8;
  border-radius: 18px;
  font-size: 34px;
  transition: .35s;
}

.home-achievement-card strong {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #083C8A;
  margin-bottom: 12px;
  transition: .35s;
}

.home-achievement-card p {
  margin: 0;
  color: #667085;
  font-size: 17px;
  transition: .35s;
}

.home-achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(5, 96, 184, .18);
  border-color: #0560B8;
}

.home-achievement-card:hover::before {
  opacity: 1;
}

.home-achievement-card:hover i {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  color: #fff;
}

.home-achievement-card:hover strong,
.home-achievement-card:hover p {
  color: #fff;
}

/*==========================
    Responsive
==========================*/

@media(max-width:1200px) {

  .home-achievement-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-achievement-head {
    grid-column: 1/-1;
  }

}

@media(max-width:768px) {

  .home-achievement-grid {
    grid-template-columns: 1fr;
  }

  .home-achievement-head {
    padding: 35px;
  }

  .home-achievement-head h2 {
    font-size: 34px;
  }

  .achievement-features {
    flex-direction: column;
  }

  .home-achievement-card {
    margin-bottom: 20px;
  }

}



/*==================================
    TESTIMONIAL SECTION
==================================*/

.home-review-section {
  padding: 70px 0;
  background: #F5F9FF;
  position: relative;
  overflow: hidden;
}

.home-review-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(5, 96, 184, .08), transparent 70%);
  top: -180px;
  left: -120px;
}

.home-review-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(5, 96, 184, .06), transparent 70%);
  bottom: -180px;
  right: -120px;
}

.home-review-wrap {
  position: relative;
  z-index: 2;
  padding: 0 30px;
}

.home-review-head {
  text-align: center;
  margin-bottom: 70px;
}

.home-review-head span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #EAF3FF;
  color: #0560B8;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.home-review-head h2 {
  font-size: 46px;
  font-weight: 700;
  color: #083C8A;
}

.home-review-head h2 span {
  background: none;
  color: #0560B8;
  padding: 0;
}

/*==================================
CARD
==================================*/

.home-review-card {
  background: #fff;
  border: 1px solid #DCE8FB;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: .4s;
  overflow: hidden;
  min-height: 360px;
}





/*==================================
QUOTE ICON
==================================*/

.home-review-quote {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #EDF5FF;
  color: #0560B8;
  font-size: 34px;
  margin-bottom: 28px;
  transition: .35s;
}



/*==================================
TEXT
==================================*/

.blockquote {
  font-size: 17px;
  line-height: 1.9;
  color: #5F6B7A;
  margin-bottom: 30px;
  transition: .35s;
}


/*==================================
STARS
==================================*/

.home-review-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 30px;
}

.home-review-stars i {
  color: #D6D6D6;
  font-size: 20px;
}

.home-review-stars .is-active {
  color: #FDBB2D;
}

/*==================================
AUTHOR
==================================*/

.home-review-author {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-review-author img {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #EDF5FF;
}

.home-review-author strong {
  display: block;
  font-size: 20px;
  color: #083C8A;
  margin-bottom: 6px;
  transition: .35s;
}

.home-review-author span {
  color: #667085;
  transition: .35s;
}


/*==================================
OWL DOTS
==================================*/

.home-review-carousel {
  margin-top: 70px !important;
}

.home-review-carousel .owl-dots {
  margin-top: 5px !important;
  text-align: center;
}

.home-review-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #C8D8F5;
  transition: .35s;
}

.home-review-carousel .owl-dot.active span {
  width: 34px;
  border-radius: 30px;
  background: #0560B8;
}

/*==================================
NAVIGATION
==================================*/

.home-review-carousel .owl-nav {
  margin-top: 35px;
  text-align: center;
}

.home-review-carousel .owl-nav button {
  width: 55px;
  height: 55px;
  border-radius: 50% !important;
  background: #fff !important;
  color: #0560B8 !important;
  border: 1px solid #D8E8FF !important;
  margin: 0 8px;
  transition: .35s;
  font-size: 22px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.home-review-carousel .owl-nav button:hover {
  background: #0560B8 !important;
  color: #fff !important;
  transform: translateY(-4px);
}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px) {

  .home-review-head h2 {
    font-size: 38px;
  }

  .home-review-card {
    padding: 32px;
  }

}

@media(max-width:576px) {

  .home-review-section {
    padding: 30px 0;
  }

  .home-review-wrap {
    padding: 0 15px;
  }

  .home-review-head h2 {
    font-size: 30px;
  }

  .home-review-card {
    min-height: auto;
    padding: 28px;
  }

  .home-review-author img {
    width: 60px;
    height: 60px;
  }

  .home-review-author strong {
    font-size: 18px;
  }

}




.infrastructure-section {
  width: 100%;
  padding: 70px 0;
  background: #F5F9FF;
}

.infrastructure-section>.container {
  max-width: 1320px;
  padding-right: 24px;
  padding-left: 24px;
}

.infrastructure-section .section-header {
  text-align: center;
  margin-bottom: 34px;
}

.infrastructure-section .section-title {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 12px;
  letter-spacing: 0;
}

.infrastructure-section .underline {
  width: 72px;
  height: 3px;
  background-color: #0957BD;
  border-radius: 2px;
  margin: 0 auto;
}

/* Bento Grid */
.infrastructure-section .bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-top: 70px;
}

.infrastructure-section .card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  border: 1px solid #E8EEF5;
  min-height: 238px;
}

.infrastructure-section .card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  color: #0957BD;
  flex-shrink: 0;
}

.infrastructure-section .card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.infrastructure-section .card-title {
  font-size: clamp(21px, 1.6vw, 25px);
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
  letter-spacing: 0;
  line-height: 1.25;
}

.infrastructure-section .card-desc {
  font-size: 15px;
  font-weight: 400;
  color: #4B5563;
  line-height: 1.55;
  margin: 0;
}

/* Custom Adjustments for Grid */
.infrastructure-section .card-davinci {
  grid-column: span 6;
  position: relative;
  justify-content: space-between;
  min-height: 330px;
}

.infrastructure-section .card-davinci .card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.infrastructure-section .certified-badge {
  background-color: #DCE6FF;
  color: #243B68;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.infrastructure-section .stats-container {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #E5E7EB;
}

.infrastructure-section .stat-box {
  flex: 1;
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
}

.infrastructure-section .stat-number {
  font-size: 18px;
  font-weight: 600;
  color: #0B5ED7;
  margin-bottom: 4px;
}

.infrastructure-section .stat-label {
  font-size: 10px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 0.5px;
}

.infrastructure-section .card-vision,
.infrastructure-section .card-console {
  grid-column: span 3;
  justify-content: flex-end;
}

.infrastructure-section .card-vision .card-icon,
.infrastructure-section .card-console .card-icon,
.infrastructure-section .card-blue .card-icon,
.infrastructure-section .card-imaging .card-icon {
  margin-bottom: auto;
}

/* Blue Highlight Card */
.infrastructure-section .card-blue {
  grid-column: span 3;
  background-color: #0560B8;
  color: #FFFFFF;
  justify-content: flex-end;
}

.infrastructure-section .card-blue .card-icon {
  color: #FFFFFF;
}

.infrastructure-section .card-blue .card-title {
  color: #FFFFFF;
}

.infrastructure-section .card-blue .card-desc {
  color: #E0E7FF;
}

.infrastructure-section .card-imaging {
  grid-column: span 3;
}

.infrastructure-section .card-ai {
  grid-column: span 6;
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  min-height: 238px;
}

.infrastructure-section .card-ai-content {
  flex: 1;
}

.infrastructure-section .card-ai-image {
  width: min(36%, 220px);
  height: 136px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #CBD5E1;
}

.infrastructure-section .card-ai-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Icon specific colors override */
.infrastructure-section .icon-teal {
  color: #0D9488;
}

/* Responsive Grid */
@media (max-width: 1024px) {

  .infrastructure-section .card-davinci,
  .infrastructure-section .card-vision,
  .infrastructure-section .card-console,
  .infrastructure-section .card-blue,
  .infrastructure-section .card-imaging,
  .infrastructure-section .card-ai {
    grid-column: span 6;
  }

  .infrastructure-section .card-davinci {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .infrastructure-section {
    padding: 30px 0;
  }

  .infrastructure-section .bento-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 18px;
  }

  .infrastructure-section .card-davinci,
  .infrastructure-section .card-vision,
  .infrastructure-section .card-console,
  .infrastructure-section .card-blue,
  .infrastructure-section .card-imaging,
  .infrastructure-section .card-ai {
    grid-column: span 1;
    min-height: 220px;
    padding: 24px;
  }

  .infrastructure-section .stats-container {
    flex-direction: column;
  }

  .infrastructure-section .card-ai {
    flex-direction: column;
    align-items: flex-start;
  }

  .infrastructure-section .card-ai-image {
    width: 100%;
    height: 180px;
  }
}




.robotic-advantage {
  padding: 60px 0;
  background: #fff;
}



.robotic-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* LEFT */

.section-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #EAF7FC;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.section-icon svg {
  width: 26px;
  height: 26px;
  fill: #0560B8;
}

.sub-title {
  color: #28A4A2;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.main-title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  color: #15263A;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.description {
  color: #6D7B8C;
  font-size: 16px;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 28px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.tags span {
  background: #EAF8FB;
  color: #0560B8;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  transition: .3s ease;
}

.tags span:hover {
  background: #0560B8;
  color: #fff;
  transform: translateY(-2px);
}

.robot-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 2px solid #D8E2EC;
  border-radius: 10px;
  text-decoration: none;
  color: #15263A;
  font-size: 15px;
  font-weight: 600;
  transition: .3s ease;
}

.robot-btn:hover {
  background: #0560B8;
  border-color: #0560B8;
  color: #fff;
  transform: translateY(-2px);
}

.robot-btn svg {
  width: 18px;
  height: 18px;
}

/* RIGHT */

.compare-card {
  background: #F5F8FC;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  transition: .3s ease;
}

.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(5, 96, 184, .08);
}

.compare-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #15263A;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 16px;
  border-bottom: 2px solid #DFE8F2;
  color: #15263A;
}

.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #E7EEF5;
  font-size: 14px;
  color: #6D7B8C;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  color: #15263A;
  font-weight: 600;
}

.robotic {
  color: #0560B8 !important;
  font-weight: 700;
}

/* Responsive */

@media(max-width:1100px) {

  .robotic-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .main-title {
    font-size: 32px;
  }

}

@media(max-width:768px) {

  .robotic-advantage {
    padding: 30px 0;
  }

  .main-title {
    font-size: 28px;
  }

  .description {
    font-size: 15px;
  }

  .compare-card {
    padding: 20px;
  }

  .compare-title {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .compare-table th,
  .compare-table td {
    font-size: 13px;
    padding: 10px 8px;
  }

  .tags span {
    font-size: 12px;
    padding: 6px 12px;
  }

  .robot-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

}



.home-achievement-section {
  position: relative;
  padding: 70px 0;
  background: url('/uploads/banners/1784551323-banner-6a5e179b0fc827.33538095.png') center center/cover no-repeat;
  overflow: hidden;
  z-index: 1;
}

.home-achievement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #032d57e3 0%, rgba(3, 62, 99, 0.826) 100%);
  z-index: 1;
}

.home-achievement-section .container {
  position: relative;
  z-index: 2;
}


/* ==========================================================================
   FAQ Section Layout
   ========================================================================== */

.faq-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Two-column layout for desktop */
@media (min-width: 992px) {
  .faq-layout {
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
  }

  /* Keep left content visible while scrolling FAQs */
  .faq-sticky {
    position: sticky;
    top: 100px;
  }
}

/* Left Content Header Styling */
.faq-sticky .section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0284c7;
  /* Brand primary */
  margin-bottom: 12px;
}

.faq-sticky h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 16px;
}

.faq-sticky p {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* ==========================================================================
   Custom Accordion Styling
   ========================================================================== */

.custom-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.custom-faq .accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px !important;
  background-color: #f8fafc;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.custom-faq .accordion-item:hover {
  border-color: #cbd5e1;
}

/* Active card highlight */
.custom-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
  background-color: #ffffff;
  border-color: #38bdf8;
  box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.08);
}

/* Accordion Header / Button */
.custom-faq .accordion-header {
  margin: 0;
}

.custom-faq .accordion-button {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  background-color: transparent;
  padding: 20px 24px;
  border: none;
  box-shadow: none !important;
  gap: 16px;
  transition: color 0.2s ease;
}

.custom-faq .accordion-button:not(.collapsed) {
  color: #0284c7;
  background-color: transparent;
}

/* Custom indicator icon animation using Bootstrap's default icon slot */
.custom-faq .accordion-button::after {
  width: 1.25rem;
  height: 1.25rem;
  background-size: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accordion Body */
.custom-faq .accordion-body {
  padding: 0 24px 20px 24px;
  font-size: 0.975rem;
  line-height: 1.65;
  color: #475569;
}

.custom-faq .accordion-body p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
  .faq-section {
    padding: 30px 0;
  }

  .faq-sticky h2 {
    font-size: 1.75rem;
  }

  .custom-faq .accordion-button {
    padding: 16px 18px;
    font-size: 0.975rem;
  }

  .custom-faq .accordion-body {
    padding: 0 18px 16px 18px;
    font-size: 0.9rem;
  }
}


.contact-page-wrapper {

  padding: 70px 0px;
}

/* ==========================================
   Section 1: Contact Cards
   ========================================== */
.contact-cards-section {
  text-align: center;
  padding: 70px 0px;
}

.section-header {
  margin-bottom: 40px;
}

.sub-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #2dd4bf;
  text-transform: uppercase;
}

.main-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 6px;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  align-items: center;
}

/* Individual Card Styling */
.contact-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 180px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

/* Featured WhatsApp Card */
.contact-card.active-card {
  border-color: #f1f5f9;
  box-shadow: 0 15px 30px -5px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.icon-box {
  width: 44px;
  height: 44px;
  background-color: #e0f2fe;
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.contact-card .value {
  font-size: 0.875rem;
  font-weight: 600;
  word-break: break-all;
}

.primary-link {
  color: #0f2b48;
}

.accent-link {
  color: #0284c7;
}

.muted-text {
  color: #64748b;
  font-weight: 400 !important;
  font-size: 0.8rem !important;
}

.text-small {
  font-size: 0.8rem !important;
}

/* ==========================================
   Section 2: Gradient CTA Banner
   ========================================== */
.consultation-cta-banner {
  background: linear-gradient(135deg, #0a2540 0%, #173b52 50%, #1e7078 100%);
  border-radius: 20px;
  padding: 60px 30px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cta-content {
  max-width: 680px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* CTA Buttons */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  min-width: 120px;
}

.btn-filled {
  background-color: #2aa399;
  color: #ffffff;
  border: 1px solid #2aa399;
}

.btn-filled:hover {
  background-color: #228b82;
  border-color: #228b82;
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   Responsive Adjustments
   ========================================== */
@media (max-width: 768px) {

  .main-heading,
  .cta-content h2 {
    font-size: 1.75rem;
  }

  .consultation-cta-banner {
    padding: 40px 20px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Site Footer Layout
   ========================================================================== */

.site-footer {
  background-color: #0f172a;
  /* Dark sleek slate background */
  color: #94a3b8;
  padding-top: 70px;
  padding-bottom: 30px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Footer Brand & About Section */
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  display: inline-block;
  text-decoration: none;
}

.footer-brand img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-brand h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.footer-about p {
  color: #94a3b8;
  margin: 0;
  max-width: 380px;
}

/* Footer Contact List */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
}

.footer-contact-item i {
  font-size: 1.2rem;
  color: #38bdf8;
  /* Accent color */
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item a:hover {
  color: #38bdf8;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  background-color: #38bdf8;
  color: #0f172a;
  border-color: #38bdf8;
  transform: translateY(-2px);
}

/* Footer Navigation Link Columns */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

/* ==========================================================================
   Footer Bottom Section
   ========================================================================== */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.875rem;
  color: #64748b;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }

  .footer-about {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .site-footer {
    padding-top: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-about {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .topbar{
    padding: 10px;
  }
  .site-header {
        top: -50px;

  }

 .topbar-left .topbar-item{
  display: none;
 }
 .hero-section{
  padding: 50px 0px;
 }
.about-section{
  padding: 30px 0px;
}
.home-service-section{
  padding: 30px 0px;
}
.why-robotic{
   padding: 30px 0px;
}
.home-achievement-section{
  padding: 30px 0px;
}
.contact-page-wrapper{
  padding: 30px 0px;
}
.contact-cards-section{
    padding: 30px 0px;
}
.contact-grid{
  padding: 20px;
}
    .consultation-cta-banner {
width: 95%;
margin: auto;

}
}