@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/*
  Organization:
  1) Base / default rules (variables, reset, typography, layout, components)
  2) Page-specific blocks (no @media mixed in — use the responsive section)
  3) Responsive: max-width breakpoints from large → small, then min-width at the end
*/

/* ==========================================================================
   Variables & Root
   ========================================================================== */
:root {
  --primary-color: #0e273d;
  --secondary-color: #458faa;
  --accent-color: #f7a81b;
  --text-color: #333333;
  --text-light: #666666;
  --bg-color: #f8f9fa;
  --white: #ffffff;
  --font-family: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Reset & Common Elements
   ========================================================================== */


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--white);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

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


/* ==========================================================================
   Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* ==========================================================================
   Layout Classes
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
}



.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title span {
  display: block;
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.pt-100 {
  padding-top: 100px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: capitalize;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

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

/* ==========================================================================
   Header Components
   ========================================================================== */

/* Top Header Strip */
.top-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header-content {
  display: flex;
  justify-content: end;
  align-items: center;
}

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

.social-links-top a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.social-links-top a:hover {
  color: var(--secondary-color);
}

.social-links-top i {
  font-size: 16px;
}

.contact-info-top {
  display: flex;
  gap: 25px;
}

.contact-info-top a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: var(--transition);
}

.contact-info-top a:hover {
  color: var(--secondary-color);
}

.contact-info-top i {
  font-size: 14px;
}

/* Navigation Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

/* Main Header */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 9;
}

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

}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.logo-text span {
  color: var(--secondary-color);
}

.logo-subtext {
  display: block;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--primary-color);
  font-weight: 700;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  padding: 30px 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.nav-item.active .nav-link {
  color: var(--secondary-color);
}

.footer-links li.active a {
  color: #fff;
}

.nav-item.active .nav-link::after {
  width: 100%;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

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

/* Mega Menu (Tabbed) */
.mega-menu-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-31%) translateY(20px);
  width: 1000px;
  background-color: var(--white);
  box-shadow: var(--shadow-hover);
  border-radius: 10px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border-top: 3px solid var(--secondary-color);
  pointer-events: none;
  min-height: 410px;
  overflow: hidden;
}

.nav-item.mega-menu-trigger:hover .mega-menu-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-31%) translateY(25px);
  pointer-events: auto;
}

.mega-menu-sidebar {
  width: 320px;
  background-color: #f2fbff;
  padding: 0;
  border-right: 1px solid #e1eaf0;
  flex-shrink: 0;
  position: relative;
}

.mega-sidebar-title {
  padding: 30px 30px 15px;
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 700;
}

.mega-menu-tabs {
  display: flex;
  flex-direction: column;
}

.mega-tab {
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.tab-header {
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--text-color);
  transition: all 0.2s;
}

.mega-tab.active .tab-header,
.mega-tab:hover .tab-header {
  background-color: var(--white);
  color: var(--secondary-color);
}

.tab-header i {
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.2s;
}

.mega-tab.active .tab-header i,
.mega-tab:hover .tab-header i {
  opacity: 1;
  transform: translateX(0);
}

.mega-panel {
  display: none;
  position: absolute;
  top: 0;
  left: 320px;
  width: 680px;
  height: 100%;
  padding: 30px;
  background-color: var(--white);
  overflow-y: auto;
  z-index: 10;
  animation: fadeIn 0.3s ease;
}

.mega-tab.active .mega-panel {
  display: block;
}

.mega-panel-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.mega-panel-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mega-panel-title i {
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.mega-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.nav-item.active-dropdown i {
  rotate: 180deg;
  font-size: 0.8em;
  opacity: 1;
}

.nav-item.active-dropdown .mega-tab i {
  rotate: 90deg;
}

.nav-item.active-dropdown .mega-tab.active i {
  rotate: 180deg;
}

.mega-item {
  display: flex;
  gap: 15px;
  transition: var(--transition);
}

.mega-item:hover {
  transform: translateX(5px);
}

.mega-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(0, 102, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.mega-text .mega-title {
  font-size: 1.05rem;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-weight: 700;
}

.mega-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 0;
}

/* Mobile Toggle & Header */
.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-color);
  z-index: 1000;
  position: relative;
}

.mobile-toggle i {
  font-size: 20px;
}

.mobile-menu-header {
  display: none;
}

/* ==========================================================================
   Page Sections
   ========================================================================== */

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-color) 0%, rgba(96, 158, 184, 0.1) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

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

.hero-content .main-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: white;
}

.hero-content .main-title span {
  color: var(--secondary-color);

}

.h2-title {
  font-size: 2.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: center;
  color: white;
}

.hero-image {
  flex: 1;
  text-align: right;
  position: relative;
}

.hero-image img {
  animation: float 6s ease-in-out infinite;
  margin-left: auto;
}

.hero-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider {
  /* background: linear-gradient(135deg, var(--bg-color) 0%, rgba(96, 158, 184, 0.1) 100%); */
  position: relative;
  overflow: hidden;
}

.hero-slider .swiper-slide {
  padding: 80px 0;
  display: flex !important;
  align-items: center;
  min-height: 600px;
  max-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slider .swiper-slide:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-slider .container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 60px;
}

/* Swiper Pagination & Navigation Customization */
.hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--secondary-color);
  opacity: 0.3;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 5px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: var(--white);
  width: 45px;
  height: 45px;
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: var(--transition);
}

.hero-slider .btn-primary {
  background-color: var(--secondary-color);
}

.hero-slider:hover .swiper-button-next,
.hero-slider:hover .swiper-button-prev {
  opacity: 1;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
  font-size: 1rem;
  font-weight: 900;
}

.hero-slider .swiper-button-next {
  right: 20px;
}

.hero-slider .swiper-button-prev {
  left: 20px;
}

/* Services Section V3 */
.services-section-v3 {
  background-color: #fff;
}

.services-swiper {
  padding: 0px 0px 25px;

  margin-top: 40px;
}

.service-card-v3 {
  background: var(--white);
  border: 1px solid #eef2f6;
  border-radius: 15px;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.service-card-v3:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(27, 54, 93, 0.08);
  border-color: transparent;
}

.service-icon-v3 {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  background-color: rgba(30, 58, 138, 0.08);
  color: var(--primary-color);
}

.service-card-v3 .h3-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-card-v3 p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-link-v3 {
  font-weight: 600;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  transition: gap 0.3s ease;
}

.service-link-v3:hover {
  gap: 15px;
  color: var(--primary-color);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  transition: all 0.4s ease;
  z-index: -1;
  border-radius: 15px 15px 0 0;
}

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

.service-card:hover::before {
  height: 100%;
  border-radius: 15px;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-icon {
  color: var(--white);
}

.service-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  transition: var(--transition);
}

/* Why Choose Us Section V2 */
.why-choose-v2 {
  background-color: var(--white);
  padding: 80px 0;
}

.why-choose-v2-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.why-choose-content {
  flex: 1;
  position: sticky;
  top: 135px;

}

.why-choose-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.why-choose-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-choose-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.why-choose-image:hover img {
  transform: scale(1.05);
}

.why-choose-cards-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f4f8;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateX(10px);
  border-color: var(--secondary-color);
  box-shadow: 0 10px 25px rgba(27, 54, 93, 0.1);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.why-card-text .h3-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 700;
}

.why-card-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0;
}

/* About Us Section */
.about-section {
  background-color: var(--bg-color);
}

.about-content-wrapper {
  display: flex;
  gap: 50px;
  align-items: start;
}

.about-section .about-image {
  flex: 1;
  position: sticky;
  top: 135px;
}

.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 135px;
}

.about-text {
  flex: 1;

}

.check-list {
  margin: 20px 0;
}

.check-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: start;
  gap: 10px;
  font-weight: 500;
}

.check-list li i {
  color: var(--secondary-color);
  padding-top: 4px;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-section .btn.btn-secondary:hover {
  background-color: var(--secondary-color);
}

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

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

/* Horizontal CTA Variation (as per reference image) */
.cta-section-row {
  background-color: var(--primary-color);
  padding: 50px 0;
  color: var(--white);
}

.cta-row-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-row-content {
  flex: 1;
}

.cta-row-content h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cta-row-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.cta-row-btn {
  flex-shrink: 0;
}

/* Team Section - Modern Card Design */
.team-section {
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 120px;
  /* Space for overlapping images */
}

.team-card {
  background: linear-gradient(180deg, #3d7fb0 0%, #2b5a91 100%);
  border-radius: 20px;
  position: relative;
  padding-top: 60px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-info {
  padding: 40px 30px 30px 30px;
  color: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}

.team-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.team-position {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.team-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: center;
}

.team-info p:last-child {
  margin-bottom: 0;
}

.cta-section-row .btn-secondary:hover {
  background-color: var(--secondary-color);
}


/* Contact Us Section */
.contact-section {
  background-color: var(--bg-color);
}

.contact-layout-wrapper {
  display: flex;
  align-items: start;
  gap: 80px;
}

.contact-form-side {
  flex: 1;
  width: 100%;
  max-width: 700px;
  margin: auto;
}

.contact-form-card {
  background-color: var(--white);
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(27, 54, 93, 0.2);
  position: relative;
}

.contact-form-card button {
  font-family: var(--font-family);
  line-height: 1.6em;
}



.form-group {
  margin-bottom: 22px;
  position: relative;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid #66666633;
  background-color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  appearance: none;
  min-height: 52px;
}

.form-select-wrapper {
  position: relative;
  width: 100%;
}

.form-select-wrapper::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
  font-size: 0.8rem;
}

.contact-form-card textarea {
  height: 120px;
  max-height: 150px;
  resize: none;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(96, 158, 184, 0.2);
}

.error-msg {
  position: absolute;
  right: 0;
  top: -20px;
  width: auto;
  height: auto;
  margin: 0;
  -webkit-font-smoothing: auto;
  line-height: normal;
  font: 11px / 11px arial;
  background: #fb0101;
  padding: 5px 5px 4px;
  color: #fff;
  display: none;
}

.error-msg:after {
  border-color: #fb0101 transparent transparent;
  border-right: 6px solid transparent;
  border-style: solid;
  border-width: 6px;
  content: " ";
  height: 0;
  left: 20px;
  margin-left: -10px;
  position: absolute;
  top: 100%;
  width: 0;
}

.form-group.has-error .error-msg {
  display: block;
}

.contact-info-side {
  flex: 1;
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-30 {
  margin-bottom: 30px;
}

.contact-info-card {
  display: flex;
  align-items: start;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid #eef2f6;
  transition: var(--transition);
}

.contact-info-card:hover {
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: var(--secondary-color);
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-text .h3-info-title {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-weight: 700;
}

.info-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  background-color: var(--white);
}

.faq-container {
  max-width: 900px;
  margin: 40px auto 0;
}

.split-info-section .faq-container {
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid #f0f4f8;
  margin-bottom: 15px;
  background-color: #fbfcfe;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #eef2f6;
}

.faq-item.active {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  background-color: var(--white);
}

.faq-header {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
}

.faq-header .faq-title-main {
  font-size: 1.15rem;
  margin: 0;
  color: var(--primary-color);
  font-weight: 600;
  padding-right: 20px;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 30px;
}

.faq-item.active .faq-content {
  max-height: 500px;
  padding-bottom: 25px;
}

.faq-content p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: #11223b;
  color: var(--white);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-widget .footer-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  font-weight: 500;
}

.footer-widget .footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-widget p {
  color: #a0aabf;
}

.footer-logo {
  margin-bottom: 10px;
  display: inline-block;
}

.footer-logo .logo-text {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a0aabf;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  color: #a0aabf;
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--secondary-color);
  margin-top: 5px;
  width: 20px;
}

.footer-contact a {
  color: #a0aabf !important;
  padding: 0 !important;
  display: inline !important;
}

.footer-contact a:hover {
  color: var(--white) !important;
  transform: none !important;
}

.award-logos {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.award-logos img {
  max-height: 60px;
  background: white;
  padding: 5px;
  border-radius: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background-color: #0d1a2d;
  color: var(--white);
  font-size: 1rem;
}

.footer-bottom a {
  color: #ffff;
}

.footer-bottom a:hover {
  color: var(--secondary-color);
}

.footer-bottom p {
  color: var(--white);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.webential-link {
  display: inline-flex;
  align-items: center;
  max-height: 20px;
  gap: 7px;
  color: #fff;
}

/* Scroll To Top Button */
#scrollTop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTop:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

/* Sticky Mobile Footer */
.sticky-mobile-footer {
  display: none;
  position: fixed;
  bottom: -65px;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  transform: translateY(100%);
}

.sticky-btn {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.sticky-btn i {
  font-size: 1.1rem;
}

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

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

.sticky-btn:active {
  opacity: 0.9;
}

/* ==========================================================================
   Page Specific Components
   ========================================================================== */
.page-header {
  background: linear-gradient(rgba(27, 54, 93, 0.8), rgba(0, 0, 0, 0.7)), url('../images/banner-img-inner.webp') center/cover;
  padding: 90px 0 90px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #a0aabf;
}

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

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

.mobile-links-btn {
  display: none;
}

.map-section {
  line-height: 0.5;
}

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

.hero-banner-inner {
  min-height: 400px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0px;
  background-position: center;
  position: relative;
}

.hero-banner-inner:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.breadcrumb-area ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 25px;
}

.breadcrumb-area ul li a,
.breadcrumb-area ul li {
  color: var(--white);
}

.hero-banner-inner .hero-content .main-title {
  text-align: left;
}

.hero-banner-inner .hero-content p {
  text-align: left;
  margin-bottom: 0;
}

.split-info-accordion .faq-item {
  background-color: #fff;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Service Page Specific Components
   ========================================================================== */
.breadcrumb-area {
  position: relative;
}

.breadcrumb-area ul li {
  display: flex;
  align-items: center;
}

.breadcrumb-area a:hover {
  text-decoration: underline;
}

.step-card {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: var(--transition);
  height: 100%;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background: var(--white) !important;
  border-color: var(--secondary-color) !important;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition);
}

.step-card:hover .step-number {
  transform: scale(1.1);
  background: var(--primary-color) !important;
}

/* ==========================================================================
   About Our Story Section
   ========================================================================== */
.about-story-section {
  background-color: var(--white);
}

.about-story-wrapper {
  display: flex;
  align-items: start;
  gap: 80px;
}

.about-image-column {
  flex: 1;
  position: sticky;
  top: 135px;
}

.main-story-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content-column {
  flex: 1.2;
}

.about-content-column .section-title span {
  text-align: left;
}

.story-label-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.story-label {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
}

.story-title {
  line-height: 1.1;
  margin-bottom: 25px;
}

.story-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.feature-cards-row {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.feature-story-card {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.feature-story-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(30, 58, 138, 0.08);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.feature-story-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.feature-story-info p {
  margin-bottom: 0px;
  font-size: 18px;
}

.story-checks-list {
  margin-bottom: 40px;
}

.story-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--text-color);
}

.story-check-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* ==========================================================================
   Logo Slider Section
   ========================================================================== */
.logo-slider-section {
  background-color: #fff;
  text-align: center;
  padding-top: 40px;
}

.logo-slider-title-wrapper {
  margin-bottom: 50px;
  display: inline-block;
  position: relative;
}

.logo-slider-title {
  margin-bottom: 10px;
}

.logo-title-line {
  height: 2px;
  width: 80px;
  background-color: #eee;
  margin: 0 auto;
  position: relative;
}

.logo-title-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: var(--transition);
}

.logo-item img {
  max-height: 50px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   Working Process Section
   ========================================================================== */
.working-process-section {
  text-align: center;
  background-color: var(--bg-color);
}

.process-label-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.working-process-section .h2-title {
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.working-process-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.process-step {
  flex: 1;
  padding: 0 15px;
  position: relative;
}

.working-process-swiper .process-step:before {
  content: '';
  position: absolute;
  top: 20%;
  transform: translate(50%, 0%);
  width: 78px;
  height: 16px;
  background-image: url(../images/step-arrow.png);
  background-size: cover;
  background-position: center;
  right: 0px;
  background-repeat: no-repeat;
}

.working-process-swiper .swiper-slide:last-child .process-step:before {
  display: none;
}

.working-process-swiper.careers-process-wrapper .process-step:last-child:before {
  display: none;
}

.step-icon-wrapper {
  width: 130px;
  height: 130px;
  margin: 0 auto 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-circle {
  width: 100px;
  height: 100px;
  border: 1px solid #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  background: var(--bg-color);
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.step-circle::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid transparent;
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
  border-radius: 50%;
  transform: rotate(-135deg);
  transition: all 0.6s ease;
}

.process-step:hover .step-circle::after {
  transform: rotate(45deg);
}

.step-arrow {
  position: absolute;
  top: 50px;
  right: -10%;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
  font-size: 1.5rem;
  z-index: 0;
}

.process-step:last-child .step-arrow {
  display: none;
}

.process-info h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 700;
}

.process-info p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}


/* ==========================================================================
   Split Info Section
   ========================================================================== */
.split-info-wrapper {
  display: flex;
  gap: 80px;
  align-items: start;
}

.split-info-content .h2-title {
  margin-bottom: 25px;
}

.split-info-wrapper .left-area,
.split-info-wrapper .right-area {
  width: 50%;
}

.split-info-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.split-info-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.split-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.top-content-area-box {
  display: flex;
  align-items: start;
  gap: 60px;
  margin-bottom: 50px;
}

.how-it-service .top-content-area-box .section-title,
.how-it-service .image-area {
  margin-bottom: 0;
  width: 50%;
}

.how-it-service .image-area {
  position: sticky;
  top: 135px;
}

.how-it-service .image-area img {
  border-radius: 20px;
}

.how-it-service .services-grid .service-card .h2-title {
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1;
}

.how-it-service .services-grid .service-card P {
  margin-bottom: 0;
}

/* -------------------- Engagement Model (How it works) -------------------- */


.engagement-model .section-title {
  margin-bottom: 25px;
}

.engagement-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.engagement-card {
  background: var(--white);
  border: 1px solid rgba(14, 39, 61, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.engagement-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(69, 143, 170, 0.12), rgba(247, 168, 27, 0.06));
  opacity: 0;
  transition: var(--transition);
}

.engagement-card>* {
  position: relative;
  z-index: 1;
}

.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.engagement-card:hover::before {
  opacity: 1;
}

.engagement-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(14, 39, 61, 0.06);
  color: var(--primary-color);
  margin-bottom: 14px;
}

.engagement-icon i {
  font-size: 18px;
}

.engagement-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.engagement-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.engagement-table-wrap {
  background: var(--white);
  border: 1px solid rgba(14, 39, 61, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.engagement-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.engagement-table thead th {
  color: var(--primary-color);
  text-align: center;
  padding: 18px 12px;
  font-size: 18px;
  background: rgba(14, 39, 61, 0.06);
  font-weight: 700;
  border-right: 1px solid rgba(14, 39, 61, 0.2);
}

.engagement-table thead th:first-child {
  text-align: left;
  padding-left: 18px;
}

.engagement-table tbody td {
  padding: 18px 12px;
  border-top: 1px solid rgba(14, 39, 61, 0.2);
  border-right: 1px solid rgba(14, 39, 61, 0.2);
  text-align: center;
  color: var(--text-color);
  background: #fff;
}

.engagement-table tbody td:last-child {
  border-right: none;
}

/* .engagement-table tbody tr:nth-child(odd) td{
  background: #eef3fb;
} */
.engagement-table tbody td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--primary-color);
  padding-left: 18px;
}

/* -------------------- Comparative Analysis (How it works) -------------------- */
.analysis-model {
  background: var(--white);
}

.analysis-model .section-title {
  margin-bottom: 40px;
}

.analysis-table-wrap {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(14, 39, 61, 0.08);
}

.analysis-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
}

.analysis-table thead tr {
  background: var(--primary-color);
}

.analysis-table thead th {
  color: var(--white);
  font-weight: 700;
  text-align: center;
  padding: 20px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  vertical-align: middle;
  line-height: 1.35;
  font-size: 18px;

}

.analysis-table thead th:first-child {
  text-align: left;
  padding-left: 20px;
  border-top-left-radius: 12px;
}

.analysis-table thead th:last-child {
  border-right: none;
  border-top-right-radius: 12px;
}

.analysis-table tbody th[scope="row"] {
  text-align: left;
  font-weight: 700;
  color: var(--primary-color);
  background: #eef2ff;
  padding: 18px 18px;
  border-bottom: 1px solid rgba(14, 39, 61, 0.06);
  border-right: 1px solid rgba(14, 39, 61, 0.06);
  vertical-align: middle;
  min-width: 140px;
  font-size: 16px;
}

.analysis-table tbody td {
  text-align: center;
  color: var(--text-color);
  padding: 18px 14px;
  border-bottom: 1px solid rgba(14, 39, 61, 0.06);
  border-left: 1px solid rgba(14, 39, 61, 0.04);
  vertical-align: middle;
  line-height: 1.45;
  font-size: 14px;
}

.analysis-table tbody tr:nth-child(odd) td {
  background: var(--white);
}

.analysis-table tbody tr:nth-child(even) td {
  background: #f5f7fb;
}

.analysis-table tbody tr:last-child th,
.analysis-table tbody tr:last-child td {
  border-bottom: none;
}

/*---------------------- CMS PAGE CSS START ------------------------*/
.cmsPage span,
.cmsPage a,
.faqs .elementor-tab-content span,
.faqs .elementor-tab-content a {
  display: inline;
  text-underline-offset: 4px;
  font-size: 16px;
}

.cmsPage a:hover {
  text-decoration: none;
  color: var(--secondary-color);
}

.cmsPage p {
  font-size: 16px;
  line-height: 1.5em;
  color: var(--text-light);
}

.cmsPage h2:frist-child {
  margin-top: 0px;
}

.cmsPage p:not(:last-child),
.faqs .elementor-tab-content p:not(:last-child) {
  margin-bottom: 16px;
}

.cmsPage h1 {
  font-size: 3rem;
  line-height: 1.12em;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.cmsPage h2 {
  font-size: 1.7rem;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.cmsPage h3 {
  font-size: 1.35rem;
  line-height: 1.18em;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.cmsPage h4 {
  font-size: 1.2rem;
  line-height: 1.28em;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.cmsPage h5 {
  font-size: 1.2rem;
  line-height: 1.30em;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.cmsPage h6 {
  font-size: 1.2rem;
  line-height: 1.23em;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.cmsPage ol+h1,
.cmsPage ol+h2,
.cmsPage ol+h3,
.cmsPage ol+h4,
.cmsPage ol+h5,
.cmsPage ol+h6,
.cmsPage p+h1,
.cmsPage p+h2,
.cmsPage p+h3,
.cmsPage p+h4,
.cmsPage p+h5,
.cmsPage p+h6 {
  margin-bottom: 10px;
  margin-top: 35px;
}

.cmsPage h1+h2,
.cmsPage h2+h1,
.cmsPage h2+h3,
.cmsPage h3+h4,
.cmsPage h4+h5,
.cmsPage h5+h6 {
  margin-top: 35px;
  margin-bottom: 10px;
}

.cmsPage ul+h1,
.cmsPage ul+h2,
.cmsPage ul+h3,
.cmsPage ul+h4,
.cmsPage ul+h5,
.cmsPage ul+h6 {
  margin-top: 35px;
  margin-bottom: 10px;
}

.cmsPage h2+ul,
.cmsPage h2+ol {
  margin-top: 15px;
}

.cmsPage h2:first-child {
  margin-top: 0;
}

.cmsPage ul+p {
  margin-top: 20px;
}

.cmsPage .underline,
.underline {
  text-decoration: underline
}

.cmsPage strong {
  font-weight: 600;
  color: var(--text-light);
}

.cmsPage .italic,
.cmsPage em,
.italic,
.faqs .elementor-tab-content .italic {
  font-style: italic
}

.cmsPage a {
  text-decoration: underline;
  -moz-transition: .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  color: var(--primary-color);
}

.cmsPage ol,
.cmsPage ul {
  margin-left: 0;
  padding-left: 0;
}

.cmsPage ul li {
  display: table;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  font-size: 16px;
  padding-bottom: 0;
  color: var(--text-light);
}

.cmsPage ul li:last-child {
  margin-bottom: 0px;
}

.cmsPage ul>li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 8px;
  background-image: url(../images/cms-list-icon.svg);
  width: 15px;
  height: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
}

.cmsPage ol li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 16px;
  color: var(--text-light);
}

.cmsPage ol li:last-child {
  margin-bottom: 0px;
}

.cmsPage ol li>ol li {
  margin-bottom: 8px;
}

.cmsPage ol li>ol li:last-child {
  margin-bottom: 0px;
}

.cmsPage ol {
  margin-bottom: 15px;
  list-style: none;
  padding-left: 0;
  counter-reset: item;
}

.cmsPage ol>li:before {
  content: counter(item) '.';
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 1px;
}

.cmsPage ol li ol li ul>li {
  counter-reset: roman-counter;
}

.cmsPage ol>li ol>li:before {
  content: counters(item, ".") "";
}

.cmsPage ol li ol li ul li ol {
  margin-top: 0;
  padding-top: 10px;
  padding-left: 0px;
  position: relative;
}

.cmsPage ol li ol li ul li ol li {
  padding-left: 24px;
}

.cmsPage ol li ol li ul li ol li:before {
  counter-increment: roman-counter;
  content: counter(roman-counter, upper-roman) ". " !important;
  position: absolute;
  left: 0;
}

.cmsPage ol li strong {
  line-height: 1.62em !important;
}

.cmsPage ol>li>ul {
  counter-reset: alphalist;
}

.cmsPage ol>li>ul>li {
  padding-left: 24px;
}

.cmsPage ol>li>ul>li:before {
  counter-increment: alphalist;
  content: counter(alphalist, upper-alpha) '.';
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
}

.cmsPage ol>li>ol>li {
  padding-left: 45px;
}

.cmsPage ul>li>ul {
  counter-reset: alphalist;
}

.cmsPage ul>li>ul>li {
  padding-left: 0;
}

.cmsPage ul>li>ul>li:before {
  counter-increment: alphalist;
  content: counter(alphalist, upper-alpha) '.';
  font-weight: 400;
  position: relative;
  left: inherit;
  top: inherit;
  font-size: 18px;
  padding-right: 8px;
  background: transparent;
  color: #6DC400;
}

.cmsPage ul>li>ol>li {
  padding-left: 0;
}

.cmsPage ul>li>ol>li:nth-child(-n+9):before {
  content: counter(section) '.';
}

.cmsPage ul>li>ol>li:before {
  counter-increment: section;
  content: counter(section) '.';
  font-weight: 400;
  position: relative;
  left: inherit;
  top: inherit;
  font-size: 16px;
  padding-right: 12px;
  background: transparent;
}

.cmsPage ol li h3,
.cmsPage ul li h3 {
  font-size: 28px;
}

.cmsPage ul.bigextUL li {
  font-size: 22px;
}

.cmsPage ol:last-child,
.cmsPage ul:last-child {
  margin-bottom: 0
}

.cmsPage img.alignleft {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0
}

.cmsPage img.alignright {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
  padding: 0
}

.cmsPage img.aligncenter {
  display: block;
  margin: 10px auto
}

.cmsPage img {
  border-radius: 0px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.cmsPage ol+h4 {
  margin-top: 40px
}

.cmsPage p+ol {
  margin-top: 15px
}

.cmsPage ol+ul,
.cmsPage ul+ol,
.cmsPage ul+ul,
.cmsPage ol+ol {
  margin-top: 30px
}

.cmsPage li p+ul {
  margin-top: -10px
}

.cmsPage ul.listing li span {
  position: relative
}

.cmsPage ul.listing li>span:before {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid #363636;
  border-radius: 50%;
  position: absolute;
  left: -15px;
  top: 8px
}

.cmsPage iframe+small+h2 {
  margin-top: 67px;
}

.cmsPage p+iframe,
.cmsPage p>iframe {
  margin-top: 30px;
}

.cmsPage ol>li>p {
  margin-top: 27px;
}

.cmsPage pre {
  margin: 30px 0;
}

.cmsPage ul li>ul,
.cmsPage ol li>ol {
  margin-top: 16px;
}

.cmsPage blockquote {
  margin: 10px 0;
  background: #f3f3f3;
  padding: 15px 25px;
  border-radius: 10px;
  border-left: 4px solid #df2a2a;
}

.cmsPage blockquote>* {
  margin-bottom: 5px;
}

.cmsPage p:last-child {
  margin-bottom: 0;
}

.header-btn-group {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-btn-group .btn-secondary {
  padding: 10px 28px;
}

.nav-item.mobile-show {
  display: none;
}

/* ==========================================================================
   Careers / Get Started Page Styles
   ========================================================================== */

.careers-why-choose-wrapper {
  align-items: center;
}

.job-oprning-section .section-title {
  margin-bottom: 40px;
}

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

.careers-stats {
  display: flex;
  gap: 30px;
}

.careers-stat-num {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.careers-stat-text {
  color: var(--text-light);
  margin-bottom: 0;
}

.careers-hero-img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100%;
}

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

.careers-jobs-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 1023px) {
  .careers-jobs-wrapper {
    display: flex;
    gap: 0;
  }
}

.job-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #efefef;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: auto;
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.job-card-title-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-card-title-meta h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 0;
  font-weight: 700;
}

.job-meta {
  display: flex;
  gap: 15px;
  color: var(--text-light);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.job-meta span i {
  color: var(--primary-color);
  margin-right: 5px;
}

.job-card-apply .btn {
  background-color: transparent;
  color: var(--primary-color);
  border-radius: 30px;
  padding: 8px 25px;
  white-space: nowrap;
  border: 1px solid var(--primary-color);
}

.job-card-apply .btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.job-card-divider {
  border: 0;
  border-top: 1px solid #efefef;
  margin: 10px 0;
}

.job-card-desc {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 5px;
}

.job-card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: #458faa3d;
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 575px) {
  .job-card-header {
    flex-direction: column;
  }
}

.careers-process-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.careers-form-layout {
  max-width: 900px;
  margin: 0 auto;
  display: block;
}

.careers-form-side {
  width: 100%;
}

.careers-form-card-inner {
  padding: 50px;
}

.career-form-title {
  text-align: center;
  margin-bottom: 40px;
}

.career-form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.career-form-group {
  flex: 1;
  min-width: 280px;
  margin-bottom: 0;
}

.career-input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-family);
}

.career-select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-family);
  background: white;
  appearance: auto;
}

.career-file-input {
  width: 100%;
  padding: 12px;
  border: 1px dashed #bbb;
  border-radius: 8px;
  font-family: var(--font-family);
  background: #f9f9f9;
  color: var(--text-light);
  cursor: pointer;
}

.relative-wrap {
  position: relative;
}

.career-file-help {
  display: block;
  margin-top: 5px;
  color: #888;
}

.career-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-family);
  resize: vertical;
}

.w-full {
  width: 100%;
}

.mb-20 {
  margin-bottom: 20px;
}

.career-submit-wrap {
  text-align: center;
}

.career-submit-btn {
  padding: 15px 40px;
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .careers-form-card-inner {
    padding: 30px;
  }
}


/* ==========================================================================
   Schedule Section Component
   ========================================================================== */
.schedule-card {
  align-items: center;
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.schedule-features {
  margin-bottom: 30px;
}

.schedule-feature-item {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--primary-color);
}

.schedule-feature-item:last-child {
  margin-bottom: 0;
}

.schedule-feature-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .schedule-card {
    padding: 30px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 30px;
  }
}

@media (max-width: 767px) {
  .schedule-card {
    padding: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 100px auto 0;
    gap: 100px 0;
  }
}

.page-not-found-section h2.h2-title {
  font-size: 150px;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 800;
}

.footer-bottom-links ul {
  display: flex;
  gap: 15px;
}

.footer-bottom-content {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-content .footer-bottom-links a {
  color: #a0aabf;
}

.footer-bottom-content .footer-bottom-links a:hover {
  color: #fff;
}

.sitemap-box .sitemap-title h2 {
  display: inline;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 10px;
  font-size: 22px;
}

.sitemap-box {
  row-gap: 0;
}

.sitemap-box h2 {
  margin: 0px;
  display: inline-block;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 5px;
}

.sitemap-box ul li {
  border-left: 1px solid var(--secondary-color);
  position: relative;
  padding-bottom: 15px;
  margin: 0px !important;
  padding-left: 20px !important;
}

.sitemap-box ul {
  margin-left: 15px;
  flex-direction: column;
  margin-top: 8px;
}

.sitemap-box ul li a {
  display: inline-block;
  transition: .4s ease-in-out;
  padding: 0px;
  flex-grow: unset;
}

.sitemap-box ul li a:hover {
  padding: 0 !important;
}

.sitemap-box ul li:first-child a:before {
  top: 25px;
}

.sitemap-box ul li a:before {
  position: absolute;
  content: "";
  left: 0px;
  background: var(--secondary-color);
  height: 1px;
  width: 12px;
  top: 12px;
  opacity: 1 !important;
  margin: auto 0px;
}

.sitemap-box ul li:first-child {
  padding-top: 15px !important;
}

.sitemap-box ul li:last-child {
  border-left: 0;
  padding-bottom: 0;
}



.sitemap-box ul li:last-child:after {
  position: absolute;
  content: "";
  left: 0;
  background: var(--secondary-color);
  top: 0;
  width: 1px;
  height: 13px;
}

.sitemap-box ul li:first-child:after {
  height: 25px;
}

.sitemap-section .inner-data {
  display: flex;
  gap: 30px;
  row-gap: 60px;
  flex-wrap: wrap;
}

.sitemap-section .sitemap-box {
  width: calc(33.33% - 20px);
}

/* ==========================================================================
   Responsive — max-width (desktop-first, large → small), then min-width
   Base styles live above; only overrides belong here.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Min-width (large-screen enhancements — after max-width overrides)
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .services-swiper {
    overflow: visible;
  }

  .services-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transform: none !important;
    width: 100% !important;
  }

  .services-swiper .swiper-slide {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }

  .services-swiper .swiper-pagination {
    display: none !important;
  }

  /* Process Slider Grid Override */
  .process-swiper {
    overflow: visible;
  }

  .process-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    transform: none !important;
    width: 100% !important;
    margin-top: 40px;
  }

  .process-swiper .swiper-slide {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
  }

  .process-swiper .swiper-pagination {
    display: none !important;
  }

  .working-process-swiper {
    overflow: visible;
  }

  .working-process-swiper .swiper-wrapper {
    display: flex;
    transform: none !important;
    width: 100% !important;
    gap: 0;
  }

  .working-process-swiper .swiper-slide {
    width: 25% !important;
    height: auto !important;
    margin: 0 !important;
  }

  .working-process-swiper .swiper-pagination {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  a[href ^='tel:'] {
    pointer-events: none;
  }
}


/* Large Screens */
@media (max-width: 1365px) {
  .hero {
    padding: 100px 0;
  }

  .logo-slider-section {
    padding-top: 0 !important;
  }
}

/* Large Tablets & Small Laptops */
@media (max-width: 1199px) {
  .section {
    padding: 60px 0;
  }

  .sitemap-box .sitemap-title h2 {
    font-size: 20px;
  }

  .page-not-found-section h2.h2-title {
    font-size: 120px;
  }

  .pt-100 {
    padding-top: 70px;
  }

  .page-header {
    padding: 60px 0px;
  }

  .footer-top {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
  }

  .split-info-wrapper {
    gap: 50px;
  }

  .about-story-wrapper {
    gap: 40px;
  }

  .story-desc {
    margin-bottom: 25px;
  }

  .feature-cards-row {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }

  .header-btn-group .btn-secondary {
    width: 45px;
    height: 45px;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: center;
  }

  .header-btn-group .btn-secondary span {
    display: none;
  }
}

@media (max-width: 1100px) {
  .engagement-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .nav-menu{gap: 1.5em;}
}

/* Desktop to Tablet Transitions */
@media (max-width: 1024px) {
  .hero-content .main-title {
    font-size: 2.5rem;
  }

  .cta-section {
    padding: 60px 0px;
  }

  /* Adjust Mega Menu for Tablet Range (768px - 1024px) */
  .mega-menu-content {
    width: 95vw;
    left: 50%;
    transform: translateX(-31%) translateY(20px);
  }

  /* .nav-item.mega-menu-trigger:hover .mega-menu-content {
    transform: translateX(-50%) translateY(25px);
  } */

  .mega-panel {
    width: calc(95vw - 320px);
  }

  .hero-banner-inner {
    min-height: 330px;
  }
}

/* Tablets & Small Devices */
@media (max-width: 991px) {
  .header-btn-group {
    display: none;
  }

  .sitemap-section .sitemap-box {
    width: calc(50% - 15px);
  }

  .page-not-found-section h2.h2-title {
    font-size: 100px;
  }

  .nav-item.mobile-show {
    display: block;
  }

  .hero {
    padding: 60px 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .h2-title {
    font-size: 2rem;
  }

  .hero-banner-inner {
    min-height: inherit;
    padding: 70px 0px;
  }

  .hero-slider .swiper-slide {
    padding: 60px 0;
    min-height: 540px;
    max-height: inherit;
  }

  .hero-slider .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-slider .hero-image {
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
  }

  .hero-slider .hero-image img {
    margin: 0 auto;
  }

  .hero-slider .hero-btn {
    justify-content: center;
  }

  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    display: none;
  }

  .cta-row-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-row-content h2 {
    font-size: 2rem;
  }

  .split-info-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .split-info-content .h2-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .split-info-content,
  .split-info-image.portrait,
  .split-info-image.landscape,
  .split-info-accordion {
    grid-column: 1;
    grid-row: auto;
    padding: 0;
  }

  .split-info-image.portrait,
  .split-info-image.landscape {
    height: 350px;
  }

  .split-info-btns {
    margin-bottom: 30px;
  }

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

  .services-swiper {
    margin-top: 35px;
    padding-bottom: 0;
  }

  .services-swiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
  }

  .swiper-pagination {
    position: relative;
    margin-top: 25px;
  }

  .about-image-column {
    position: static;
  }

  .hero-slider .swiper-pagination {
    margin-top: -25px;
  }

  .contact-form-card {
    padding: 30px 20px;
    box-shadow: none;
  }

  .process-swiper {
    margin-top: 35px;
    padding-bottom: 0;
  }

  .process-swiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
  }

  .why-choose-v2-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact-layout-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .section {
    padding: 50px 0;
  }

  .why-choose-content {
    position: inherit;
  }

  .footer-top {
    grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
    gap: 40px;
  }

  /* .footer-box-2 {
    order: 3;
  }

  .footer-box-3 {
    order: 4;
  }

  .footer-box-4 {
    order: 2;
  } */

  /* Mobile Menu Toggle Logic (User requested less than 991px) */
  .mobile-menu-header {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .mega-panel-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
    z-index: 9999;
    overflow-y: auto;
    display: flex;
    gap: 0;

  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
    margin: 0;
  }

  .nav-link {
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-toggle {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
  }

  .nav-btn {
    display: none;
  }

  .mobile-close {
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1b365d;
    border-radius: 5px;
  }

  .mega-menu-content {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
    padding: 0;
    border: none;
    min-height: auto;
    flex-direction: column;
    background-color: #f8f9fa;
  }

  .nav-item.mega-menu-trigger.active-dropdown .mega-menu-content {
    display: block;
    transform: none;
  }

  .mega-menu-sidebar {
    width: 100%;
    border-right: none;
    padding: 0;
    background: none;
  }

  .mega-sidebar-title {
    display: none;
  }

  .mega-menu-tabs {
    flex-direction: column;
  }

  .tab-header {
    padding: 15px 20px;
    background: none;
  }

  .mega-tab {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .mega-tab i {
    transition: transform 0.3s ease;
  }

  .mega-tab.active .tab-header i {
    transform: rotate(90deg);
  }

  .mega-panel {
    display: none;
    position: static;
    width: 100%;
    padding: 15px 20px;
    background-color: #fff;
    height: auto;
    overflow: visible;
  }

  .mega-tab.active .mega-panel {
    display: block;
  }

  .mega-panel-header {
    display: none;
  }

  .mega-item {
    margin-bottom: 10px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mega-item:last-child {
    margin-bottom: 0;
  }

  .mega-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .mega-text .mega-title {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--primary-color);
    font-weight: 700;
  }

  .mega-text p {
    font-size: 1rem;
    display: none;
  }

  .mega-tab:hover .tab-header,
  .mega-tab.active .tab-header {
    background-color: rgba(27, 54, 93, 0.05);
    color: var(--primary-color);
  }

  .working-process-section .h2-title {
    margin-bottom: 40px;
  }

  .step-arrow {
    display: none;
  }

  .working-process-swiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
  }

  .working-process-swiper .process-step:before {
    display: none;
  }

  .about-story-wrapper {
    flex-direction: column;
    gap: 60px;
  }

  .feature-cards-row {
    flex-direction: column;
    gap: 20px;
  }

  .cmsPage h2 {
    font-size: 1.5rem;
  }

  .top-content-area-box {
    flex-direction: column;
    gap: 10px;
  }

  .how-it-service .top-content-area-box .section-title,
  .how-it-service .image-area {
    width: 100%;
  }

  .analysis-table thead th,
  .analysis-table tbody th[scope="row"] {
    font-size: 16px;
  }

  .analysis-table thead th {
    padding: 15px 14px;
  }

  .analysis-table tbody th[scope="row"] {
    white-space: nowrap;
    min-width: inherit;
  }

  .analysis-table tbody td {
    min-width: 200px;
  }

  .footer-bottom-content {
    flex-direction: column-reverse;
  }

  #scrollTop {
    bottom: 25px;
    width: 45px;
    height: 45px;
  }
}

/* Large Mobile Breakpoint */
@media (max-width: 767px) {
  .analysis-table {
    font-size: 0.88rem;
    min-width: 640px;
  }

  .sitemap-section .inner-data {
    row-gap: 40px;
  }

  .sitemap-section .sitemap-box {
    width: 100%;
  }

  .page-not-found-section h2.h2-title {
    font-size: 70px;
  }

  .analysis-table thead th,
  .analysis-table tbody th[scope="row"],
  .analysis-table tbody td {
    padding: 12px 10px;
  }

  .hero-content .main-title {
    font-size: 2.3rem;
  }

  .pt-100 {
    padding-top: 50px;
  }

  .hero-banner-inner {
    padding: 50px 0px;
  }

  .page-header {
    padding: 40px 0px;
  }

  .mobile-links-btn {
    display: flex;
    gap: 10px;
    margin-left: auto;
    margin-right: 10px;
  }

  .mobile-links-btn a {
    background: rgba(30, 58, 138, 0.08);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    justify-content: center;
  }

  .nav {
    height: 70px;
  }

  .logo-container img {
    max-height: 54px !important;
  }

  footer .logo-container img {
    max-height: 80px !important;
  }

  .top-header {
    display: none;
  }

  .footer-widget .footer-title {
    font-size: 18px;
  }

  .footer {
    padding: 40px 0px 50px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 0;
  }

  .footer-box-1 {
    /* order: 1; */
    margin-bottom: 20px;
  }

  .footer-box-4 {
    /* order: 2; */
    /* margin-bottom: 30px; */
  }

  .sticky-mobile-footer.visible {
    display: flex;
    transform: translateY(0);
    bottom: 0;
  }

  #scrollTop {
    bottom: 60px;
    right: 15px;
  }

  .footer-box-2 {
    /* order: 3; */
    border-bottom: 1px solid #fff;
  }

  .footer-box-3 {
    /* order: 4; */
    padding-top: 15px;
    border-bottom: 1px solid #fff;
  }

  .footer-box-4 {
    /* order: 4; */
    padding-top: 15px;
  }

  .footer-accordion .footer-title {
    cursor: pointer;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 0;
  }

  .faq-header {
    padding: 15px;
  }

  .footer-accordion .footer-title::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 5px;
    width: 20px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    background: transparent;
    left: unset;
  }

  .footer-accordion.active .footer-title::after {
    transform: scaleY(-1);
    top: 16px;
  }

  .footer-accordion .footer-links {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    margin: 0;
  }

  .footer-accordion.active .footer-links {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
    padding-bottom: 20px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-image {
    order: 2;
    max-width: 450px;
  }

  .btn {
    padding: 12px 17px;
  }

  .about-content-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .mobile-row-reverse .about-content-wrapper {
    flex-direction: column-reverse;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .h2-title {
    font-size: 1.6rem;
  }

  .cta-row-content h2 {
    font-size: 1.6rem;
  }

  .cta-section {
    padding: 40px 0px;
  }

  .hero-btn {
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .hero {
    padding: 50px 0;
  }

  .section {
    padding: 40px 0;
  }

  .split-info-section .split-info-wrapper {
    flex-direction: column-reverse;
  }

  .split-info-wrapper .left-area,
  .split-info-wrapper .right-area {
    width: 100%;
  }

  .split-info-wrapper .left-area {
    display: flex;
    flex-direction: column;
  }

  .split-info-wrapper .left-area .why-choose-image {
    order: -1;
    margin-bottom: 20px;
  }

  .split-info-content p {
    margin-bottom: 10px;
  }

  .split-info-content .h2-title {
    font-size: 1.6rem;
  }



  .logo-item {
    padding: 20px 0px 0px;
  }

  .cmsPage h2 {
    font-size: 1.4rem;
  }

  .cmsPage ol+h1,
  .cmsPage ol+h2,
  .cmsPage ol+h3,
  .cmsPage ol+h4,
  .cmsPage ol+h5,
  .cmsPage ol+h6,
  .cmsPage p+h1,
  .cmsPage p+h2,
  .cmsPage p+h3,
  .cmsPage p+h4,
  .cmsPage p+h5,
  .cmsPage p+h6,
  .cmsPage ul+h1,
  .cmsPage ul+h2,
  .cmsPage ul+h3,
  .cmsPage ul+h4,
  .cmsPage ul+h5,
  .cmsPage ul+h6 {
    margin-top: 25px;
  }

  .services-grid {
    gap: 20px;
  }

  .engagement-table thead th,
  .engagement-table tbody td {
    padding: 12px !important;
    font-size: 16px;
  }

  .sitemap-box .sitemap-title h2 {
    font-size: 18px;
  }

  .about-section .about-image {
    position: static;
  }
}

/* Smaller Devices */
@media (max-width: 575px) {
  .hero-content .main-title {
    font-size: 2.1rem;
  }

  .about-story-wrapper {
    gap: 80px;
  }

  .why-card {
    flex-direction: column;
    padding: 18px;
  }

  .service-card-v3 {
    padding: 20px;
  }

  .engagement-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .engagement-card {
    padding: 18px 16px;
  }
}