 /* ==================== GLOBAL SCOPED VARIABLES (LIGHT THEME) ==================== */
:root {
  --wcs-primary-gradient: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  --wcs-accent-color: #0284c7;
  --wcs-light-bg: #f8fafc;
  --wcs-light-surface: #ffffff;
  --wcs-glass-bg: rgba(255, 255, 255, 0.85);
  --wcs-glass-border: rgba(226, 232, 240, 0.8);
  --wcs-text-dark: #0f172a;
  --wcs-text-muted: #64748b;
  --wcs-transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
    font-family: 'Inter';
    src: url('assets/css/fonts/Inter-VariableFont_opsz\,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'vighnesh';
    src: url('assets/css/fonts/static/Inter_28pt-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}




/* Base Reset & Inherent Font Setup */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--wcs-light-bg);
  color: var(--wcs-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.link-reset{
    all: unset;
    display: inline-block;
    cursor: pointer;
}

.link-reset:visited,
.link-reset:hover,
.link-reset:focus,
.link-reset:active{
    color: inherit;
    text-decoration: none;
}

.link-reset{
    text-decoration: none;
    color: inherit;
    display: inline-block;
}
.hidden{
  display: none !important;
}

.bor{
  border: 1px solid red;
}

.bg-gray_official{
    background: #f0f0f0 !important;
}

.color-black{
  color: #000000 !important;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--wcs-transition-smooth);
}

ul {
  list-style: none;
}

/* ==================== NAVBAR STYLES ==================== */
.wcs_header_root {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1320px;
  z-index: 1000;
  background: var(--wcs-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--wcs-glass-border);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s var(--wcs-transition-smooth);
}

.wcs_header_root.wcs_scrolled {
  top: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.wcs_nav_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
}

.wcs_nav_brand {
  display: flex;
  align-items: center;
}

.wcs_nav_logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* Nav Menu Items */
.wcs_nav_menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.wcs_nav_item {
  position: relative;
}

.wcs_nav_link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wcs-text-muted);
  padding: 8px 0;
  cursor: pointer;
}

.wcs_nav_link:hover,
.wcs_nav_link.wcs_active {
  color: var(--wcs-text-dark);
}

.wcs_arrow_icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--wcs-transition-smooth);
  stroke: var(--wcs-text-muted);
}

/* Rotations on Hover (Desktop) */
@media (min-width: 901px) {
  .wcs_nav_item:hover .wcs_arrow_icon {
    transform: rotate(180deg);
    stroke: var(--wcs-accent-color);
  }
}

/* Compact Dropdown Menu */
.wcs_dropdown_menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  min-width: 200px;
  background: var(--wcs-light-surface);
  border: 1px solid var(--wcs-glass-border);
  border-radius: 12px;
  padding: 12px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s var(--wcs-transition-smooth);
}

/* Hover bridge for compact dropdowns */
.wcs_dropdown_menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.wcs_dropdown_menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--wcs-text-muted);
}

.wcs_dropdown_menu a:hover {
  background: #f1f5f9;
  color: var(--wcs-accent-color);
}

@media (min-width: 901px) {
  .wcs_has_dropdown:hover .wcs_dropdown_menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(10px);
  }
}

/* Mega Menu Structure */
.wcs_mega_menu_wrapper {
  position: fixed;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1200px;
  background: var(--wcs-light-surface);
  border: 1px solid var(--wcs-glass-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s var(--wcs-transition-smooth);
}

/* Hover Bridge: Invisible hit box connecting Navbar to Mega Menu */
.wcs_mega_menu_wrapper::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
}

.wcs_header_root.wcs_scrolled .wcs_mega_menu_wrapper {
  top: 93px;
}

@media (min-width: 901px) {
  .wcs_has_mega:hover .wcs_mega_menu_wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.wcs_mega_menu_inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px 28px;
  align-items: start;
  font-family: inherit;
}

/* Individual Column Container */
.wcs_mega_column {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.3s ease, transform 0.3s ease;
}

.wcs_mega_column:hover {
  background: rgba(241, 245, 249, 0.6);
}

.wcs_mega_column:hover .wcs_mega_title {
  color: var(--wcs-accent-color, #2563eb);
  border-bottom-color: var(--wcs-accent-color, #2563eb);
}

/* Dynamic Dynamic Down Arrow SVG for Titles with Sub-lists */
.wcs_mega_column:has(.wcs_mega_list) .wcs_mega_title::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  flex-shrink: 0;
  background-color: var(--wcs-text-muted, #64748b);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Column Header Link / Main Title */
.wcs_mega_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--wcs-text-dark, #0f172a);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

/* Dynamic Dynamic Down Arrow SVG for Titles with Sub-lists */
.wcs_mega_column:has(.wcs_mega_list) .wcs_mega_title::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  flex-shrink: 0;
  background-color: var(--wcs-text-muted, #64748b);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.wcs_mega_column:hover:has(.wcs_mega_list) .wcs_mega_title::after {
  transform: rotate(180deg);
  background-color: var(--wcs-accent-color, #2563eb);
}

/* Hidden Sub-List by Default (Reveals on Hover) */
.wcs_mega_list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease,
              transform 0.3s ease,
              visibility 0.3s ease,
              margin-top 0.3s ease;
}

/* Sub-list Item Styling */
.wcs_mega_list li {
  margin-bottom: 2px;
}

.wcs_mega_list a {
  display: block;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wcs-text-muted, #475569);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.wcs_mega_list a:hover {
  color: var(--wcs-accent-color, #2563eb);
  background: rgba(37, 99, 235, 0.08);
  transform: translateX(4px);
}

/* Smooth Reveal Effect when Hovering over the Column / Title */
.wcs_mega_column:hover .wcs_mega_list {
  max-height: 350px; /* Adjust according to longest sub-list */
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
  transform: translateY(0);
}


/* Action Buttons & Hamburger */
.wcs_nav_actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wcs_btn_explore {
  padding: 10px 24px;
  background: var(--wcs-primary-gradient);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
  transition: all 0.3s var(--wcs-transition-smooth);
}

.wcs_btn_explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.35);
}

/* Mobile Wrapper inside Hamburger Panel for Explore Button */
.wcs_mobile_action_wrapper {
  display: none;
  width: 100%;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--wcs-glass-border);
}

.wcs_mobile_action_wrapper .wcs_btn_explore {
  display: block;
  text-align: center;
  width: 100%;
}

.wcs_hamburger_btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.wcs_hamburger_btn .wcs_bar {
  width: 100%;
  height: 2px;
  background-color: var(--wcs-text-dark);
  border-radius: 2px;
  transition: all 0.3s var(--wcs-transition-smooth);
}

/* Mobile Hamburger Animation */
.wcs_hamburger_btn.wcs_open .wcs_bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.wcs_hamburger_btn.wcs_open .wcs_bar:nth-child(2) {
  opacity: 0;
}
.wcs_hamburger_btn.wcs_open .wcs_bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==================== HERO STYLES ==================== */
.wcs_hero_root {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 50px 100px;
  box-sizing: border-box;
  overflow: hidden;
}

.wcs_service_banner {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f172a;
}

.wcs_service_banner_media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wcs_service_banner_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.wcs_service_banner_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.82) 0%, rgba(2, 6, 23, 0.52) 45%, rgba(2, 6, 23, 0.2) 100%);
  z-index: 2;
}

.wcs_service_banner_content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.wcs_service_banner_title {
  max-width: 600px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.wcs_hero_img_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.wcs_hero_img,
.wcs_hero_video,
.wcs_hero_img_container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.wcs_hero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(90deg, rgb(0 0 0 / 68%) 0%, rgb(248 250 252 / 0%) 60%, rgb(0 0 0 / 0%) 100%); */
  background: linear-gradient(90deg, rgb(0 0 0 / 68%) 0%, rgb(97 108 120 / 54%) 60%, rgb(0 0 0 / 0%) 100%);
}

.wcs_hero_content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  opacity: 0;
  margin-top: 100px;
  transform: translateY(30px);
  animation: wcs_fadeUp 1s var(--wcs-transition-smooth) 0.2s forwards;
}

.wcs_hero_subheading {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--wcs-accent-color);
  margin-bottom: 12px;
}

.wcs_hero_title {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--wcs-cnt-bg);
}

.wcs_hero_description {
  font-size: 1.15rem;
  color: var(--wcs-light-bg);
  margin-bottom: 36px;
  max-width: 600px;
}

.wcs_hero_btn_group {
  display: flex;
  gap: 20px;
}

.wcs_btn_primary {
  padding: 14px 32px;
  background: var(--wcs-primary-gradient);
  color: #ffffff;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  transition: all 0.3s var(--wcs-transition-smooth);
}

.wcs_btn_primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.wcs_btn_secondary {
  padding: 14px 32px;
  background: #ffffff;
  color: var(--wcs-text-dark);
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--wcs-glass-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s var(--wcs-transition-smooth);
}

.wcs_btn_secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* ==================== FOOTER STYLES ==================== */
.wcs_footer_root {
  background-color: #f1f5f9;
  border-top: 1px solid var(--wcs-glass-border);
  padding: 80px 0 30px 0;
}

.wcs_footer_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.wcs_footer_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.wcs_footer_logo {
  height: 100px;
  margin-bottom: 16px;
}

.wcs_footer_text {
  color: var(--wcs-text-muted);
  font-size: 0.95rem;
  max-width: 320px;
}

.wcs_footer_heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wcs-text-dark);
  margin-bottom: 20px;
}

.wcs_footer_links li {
  margin-bottom: 12px;
}

.wcs_footer_links a {
  color: var(--wcs-text-muted);
  font-size: 0.9rem;
}

.wcs_footer_links a:hover {
  color: var(--wcs-accent-color);
  padding-left: 4px;
}

.wcs_footer_contact_list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wcs-text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.wcs_footer_icon {
  width: 18px;
  height: 18px;
  stroke: var(--wcs-accent-color);
  flex-shrink: 0;
}

.wcs_social_group {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.wcs_social_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 1px solid var(--wcs-glass-border);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s var(--wcs-transition-smooth);
}

.wcs_social_btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--wcs-text-dark);
}

.wcs_social_btn:hover {
  background: var(--wcs-primary-gradient);
  transform: translateY(-3px);
}

.wcs_social_btn:hover svg {
  stroke: #ffffff;
}

.wcs_footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--wcs-glass-border);
  padding-top: 30px;
  font-size: 0.85rem;
  color: var(--wcs-text-muted);
}

.wcs_legal_links {
  display: flex;
  gap: 20px;
}

.wcs_legal_links a:hover {
  color: var(--wcs-text-dark);
}

/* Keyframe Animations */
@keyframes wcs_fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Laptop & Small Desktop */
@media (max-width: 1024px) {
  .wcs_hero_root {
    padding: 50px 60px;
  }
  .wcs_hero_title {
    font-size: 2.8rem;
  }
  .wcs_footer_grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Mobile & Tablet Toggle Breakpoint */
@media (max-width: 900px) {
  .wcs_header_root {
    width: calc(100% - 30px);
  }

  /* Hide header explore button and show inside panel wrapper */
  .wcs_nav_actions .wcs_btn_explore {
    display: none;
  }

  .wcs_mega_list {
    max-height: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    padding-left: 12px;
  }

  .wcs_mega_column:has(.wcs_mega_list) .wcs_mega_title::after {
    transform: rotate(0deg);
  }

  .wcs_mobile_action_wrapper {
    display: block;
  }

  .wcs_hamburger_btn {
    display: flex;
  }

  /* Slide-Out Navigation Menu for Mobile */
  .wcs_nav_menu {
    position: fixed;
    top: 80px;
    right: -190%;
    width: 300px;
    height: calc(100vh - 100px);
    background: var(--wcs-light-surface);
    border: 1px solid var(--wcs-glass-border);
    border-radius: 20px;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 12px;
    overflow-y: auto;
    transition: right 0.4s var(--wcs-transition-smooth);
    box-shadow: -10px 20px 40px rgba(0, 0, 0, 0.1);
  }

  .wcs_nav_menu.wcs_active {
    right: 0;
  }

  .wcs_nav_item {
    width: 100%;
  }

  /* Accordion Submenus for Mobile */
  .wcs_dropdown_menu,
  .wcs_mega_menu_wrapper {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    border-radius: 10px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 12px;
    margin-top: 6px;
  }

  .wcs_dropdown_menu::before,
  .wcs_mega_menu_wrapper::before {
    display: none;
  }

  .wcs_mega_menu_inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wcs_nav_item.wcs_mobile_open .wcs_dropdown_menu,
  .wcs_nav_item.wcs_mobile_open .wcs_mega_menu_wrapper {
    display: block;
  }

  .wcs_nav_item.wcs_mobile_open .wcs_arrow_icon {
    transform: rotate(180deg);
    stroke: var(--wcs-accent-color);
  }
}

/* Small Mobile Devices */
@media (max-width: 600px) {
  .wcs_hero_root {
    padding: 40px 20px;
  }

  .wcs_service_banner {
    height: 60vh;
    min-height: 60vh;
  }

  .wcs_service_banner_content {
    padding: 0 20px;
  }

  .wcs_service_banner_title {
    font-size: 2rem;
    max-width: 100%;
  }

  .wcs_hero_title {
    font-size: 2.2rem;
  }

  .wcs_hero_btn_group {
    flex-direction: column;
    gap: 12px;
  }

  .wcs_btn_primary,
  .wcs_btn_secondary {
    width: 100%;
    text-align: center;
  }

  .wcs_footer_grid {
    grid-template-columns: 1fr;
  }

  .wcs_footer_bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.first-section{
  height: 100vh;
  background: #ffffff;
}

/* ==============================about section at homepage start ===================================== */
/* ==================== FEATURED ABOUT SECTION STYLES ==================== */
.wcs_sec_root {
  background-color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.wcs_sec_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content Column */
.wcs_sec_content {
  display: flex;
  flex-direction: column;
}

.wcs_sec_badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--wcs-accent-color);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.wcs_sec_heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--wcs-text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.wcs_sec_description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--wcs-text-muted);
  margin-bottom: 32px;
}

/* Feature Highlights Grid */
.wcs_sec_features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.wcs_sec_feature_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.wcs_sec_feature_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f0fdf4;
  background: var(--wcs-light-bg);
  border: 1px solid var(--wcs-glass-border);
  border-radius: 12px;
  flex-shrink: 0;
}

.wcs_sec_feature_icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--wcs-accent-color);
}

.wcs_sec_feature_title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wcs-text-dark);
  margin-bottom: 4px;
}

.wcs_sec_feature_text {
  font-size: 0.925rem;
  color: var(--wcs-text-muted);
}

.wcs_sec_btn {
  align-self: flex-start;
  padding: 12px 30px;
  background: var(--wcs-primary-gradient);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
  transition: all 0.3s var(--wcs-transition-smooth);
}

.wcs_sec_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.35);
}

/* Right Image Column */
.wcs_sec_image_wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.wcs_sec_image_card {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--wcs-glass-border);
}

.wcs_sec_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--wcs-transition-smooth);
}

.wcs_sec_image_card:hover .wcs_sec_img {
  transform: scale(1.03);
}

.wcs_sec_image_backdrop {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(14, 165, 233, 0.08) 100%);
  border-radius: 24px;
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .wcs_sec_root {
    padding: 80px 0;
  }
  .wcs_sec_heading {
    font-size: 2.1rem;
  }
  .wcs_sec_image_card {
    height: 400px;
  }
}

@media (max-width: 900px) {
  .wcs_sec_container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  
  .wcs_sec_image_card {
    height: 350px;
  }

  .wcs_sec_image_backdrop {
    top: 12px;
    right: 0;
  }
}

@media (max-width: 600px) {
  .wcs_sec_root {
    padding: 60px 0;
  }
  .wcs_sec_heading {
    font-size: 1.8rem;
  }
  .wcs_sec_btn {
    width: 100%;
    text-align: center;
  }
  .wcs_sec_image_card {
    height: 280px;
  }
}
/* ==============================about section at homepage end ===================================== */
/* ==============================new about section at homepage end ===================================== */

/* ==================== DIGITAL ENABLEMENT SECTION STYLES ==================== */
.nxt_sec_root {
  background-color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.nxt_sec_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* Left Column Styling */
.nxt_sec_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Pill Badge */
.nxt_sec_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--wcs-accent-color, #0284c7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.nxt_sec_badge_dot {
  width: 6px;
  height: 6px;
  background-color: #2563eb;
  border-radius: 50%;
}

.nxt_sec_heading {
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--wcs-text-dark, #0f172a);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.nxt_sec_paragraph {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--wcs-text-muted, #64748b);
  margin-bottom: 20px;
  font-weight: 400;
}

/* Creative Interactive Button */
.nxt_sec_btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 34px;
  background: var(--wcs-primary-gradient, linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
  transition: all 0.35s var(--wcs-transition-smooth, ease);
  position: relative;
  overflow: hidden;
}

.nxt_sec_btn_icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.nxt_sec_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(14, 165, 233, 0.35);
}

.nxt_sec_btn:hover .nxt_sec_btn_icon {
  transform: translateX(5px);
}

/* Right Column Image & Graphic Accents */
.nxt_sec_media_wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.nxt_sec_image_card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  height: 480px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
  transition: transform 0.5s ease;
}

.nxt_sec_image_card:hover {
  transform: scale(1.02);
}

.nxt_sec_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nxt_sec_image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, rgba(15, 23, 42, 0.25) 100%);
}

/* Decorative Glow & Floating Circles */
.nxt_sec_glow_bg {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  filter: blur(40px);
}

.nxt_sec_accent_circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.nxt_circle_1 {
  width: 90px;
  height: 90px;
  background: rgba(37, 99, 235, 0.1);
  top: 20px;
  left: -10px;
}

.nxt_circle_2 {
  width: 140px;
  height: 140px;
  background: rgba(14, 165, 233, 0.12);
  bottom: 0px;
  right: -20px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .nxt_sec_root {
    padding: 80px 0;
  }
  .nxt_sec_container {
    gap: 40px;
  }
  .nxt_sec_heading {
    font-size: 2.2rem;
  }
  .nxt_sec_image_card {
    max-width: 380px;
    height: 380px;
  }
}

@media (max-width: 900px) {
  .nxt_sec_container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 24px;
  }

  .nxt_sec_content {
    align-items: flex-start;
  }

  .nxt_sec_image_card {
    max-width: 340px;
    height: 340px;
  }
}

@media (max-width: 600px) {
  .nxt_sec_root {
    padding: 60px 0;
  }
  .nxt_sec_heading {
    font-size: 1.85rem;
  }
  .nxt_sec_paragraph {
    font-size: 0.975rem;
  }
  .nxt_sec_btn {
    width: 100%;
    justify-content: center;
  }
  .nxt_sec_image_card {
    max-width: 280px;
    height: 280px;
  }
}

/* ==============================new about section at homepage end ===================================== */
/* ==============================clients logo section started ===================================== */
/* ==================== OUR CLIENTS SECTION STYLES ==================== */
.clt_sec_root {
  background-color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.clt_sec_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header Styles */
.clt_sec_header {
  text-align: center;
  margin-bottom: 50px;
}

.clt_sec_badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--wcs-accent-color, #0284c7);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.clt_sec_heading {
  font-size: 2.25rem;
  font-weight: 500; /* Font weight updated to 500 */
  color: var(--wcs-text-dark, #0f172a);
  letter-spacing: -0.02em;
}

/* Swiper Container Padding prevents hover scale clipping */
.clt_sec_swiper {
  padding: 30px 15px !important;
  overflow: visible; /* Allows hover zoom without clipping */
}

.clt_sec_swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Slide Item Card */
.clt_sec_slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.clt_sec_logo_card {
  width: 100%;
  height: 130px; /* Increased card height for better visual breathing room */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background-color: #ffffff;
  border: 1px solid var(--wcs-glass-border, rgba(226, 232, 240, 0.8));
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}

.clt_sec_logo {
  max-width: 130px;
  max-height: 55px; /* Clean, full-color rendering without filters */
  object-fit: contain;
  transition: transform 0.35s ease;
}

/* Hover Effects */
.clt_sec_logo_card:hover {
  transform: translateY(-4px) scale(1.05); /* Clean, subtle zoom */
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12);
  z-index: 10;
}

.clt_sec_logo_card:hover .clt_sec_logo {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .clt_sec_container {
    padding: 0 24px;
  }
  .clt_sec_heading {
    font-size: 1.9rem;
  }
}

@media (max-width: 600px) {
  .clt_sec_root {
    padding: 50px 0;
  }
  .clt_sec_heading {
    font-size: 1.6rem;
  }
  .clt_sec_logo_card {
    height: 100px;
    padding: 16px;
  }
}
/* ==============================clients logo section ended ===================================== */
/* ==============================service section started ===================================== */
/* ==================== SERVICES SECTION STYLES ==================== */
/* ==================== PREMIUM SERVICES SECTION STYLES ==================== */
.svc_sec_root {
  background-color: #1e293b; /* Deep slate background */
  padding: 100px 0;
  position: relative;
}

.svc_sec_container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header Styles */
.svc_sec_header {
  text-align: center;
  margin-bottom: 60px;
}

.svc_sec_badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #38bdf8;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.svc_sec_heading {
  font-size: 2.5rem;
  font-weight: 500; /* Font weight 500 */
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* 3-Column Grid Layout */
.svc_sec_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card Outer Frame */
.svc_card_item {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Hover Transformation */
.svc_card_item:hover {
  transform: translateY(-6px) scale(1.02); /* Gentle lift & subtle scale */
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
}

/* Icon / GIF Wrapper & 360 Rotation */
.svc_card_icon_box {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.svc_card_gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 360-Degree Rotation Effect on Hover */
.svc_card_item:hover .svc_card_gif {
  transform: rotate(360deg) scale(1.1);
}

/* Typography */
.svc_card_title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.svc_card_description {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: 32px;
  flex-grow: 1;
}

/* Expandable Button Effect */
.svc_card_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px 6px 6px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
  z-index: 1;
}

.svc_btn_circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* background-color: #38bdf8; */
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.svc_btn_circle svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  transition: transform 0.4s ease, stroke 0.4s ease;
}

.svc_btn_text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #0284c7;
  transition: color 0.4s ease;
  z-index: 2;
  white-space: nowrap;
}

/* Color Fill Transformation into Pill Button on Hover */
.svc_card_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px; /* Starts as circle shape behind icon */
  height: 100%;
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  border-radius: 50px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Trigger fill expansion when hovering over either the button OR the card */
.svc_card_btn:hover::before,
.svc_card_item:hover .svc_card_btn::before {
  width: 100%; /* Expands across entire button */
}

.svc_card_btn:hover .svc_btn_circle,
.svc_card_item:hover .svc_btn_circle {
  background-color: transparent;
}

.svc_card_btn:hover .svc_btn_circle svg,
.svc_card_item:hover .svc_btn_circle svg {
  transform: translateX(3px);
  stroke: #ffffff;
}

.svc_card_btn:hover .svc_btn_text,
.svc_card_item:hover .svc_btn_text {
  color: #ffffff; /* Text switches to white as background covers it */
}

/* Responsive Grid Adjustments */
@media (max-width: 1100px) {
  .svc_sec_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .svc_sec_root {
    padding: 60px 0;
  }

  .svc_sec_container {
    padding: 0 20px;
  }

  .svc_sec_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .svc_sec_heading {
    font-size: 1.85rem;
  }

  .svc_card_item {
    padding: 30px 24px;
  }
}
/* ==============================service section ended ===================================== */
/* ==============================what we do section started ===================================== */
/* ==================== WHAT WE DO SECTION STYLES ==================== */
.wwd_sec_root {
  background-color: #f8fafc;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.wwd_sec_container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header Styles */
.wwd_sec_header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.wwd_sec_badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--wcs-accent-color, #0284c7);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.wwd_sec_heading {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--wcs-text-dark, #0f172a);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.wwd_sec_subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--wcs-text-muted, #64748b);
}

/* 3 Column Grid Setup */
.wwd_sec_body_grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

.wwd_sec_col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Individual Feature Cards */
.wwd_card_item {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}

/* Interactive Card Hover Transformation */
.wwd_card_item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.12);
}

.wwd_card_icon_box {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background-color: rgba(37, 99, 235, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.35s ease;
}

.wwd_card_logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Interactive Logo Effect on Card Hover */
.wwd_card_item:hover .wwd_card_icon_box {
  background-color: rgba(37, 99, 235, 0.12);
}

.wwd_card_item:hover .wwd_card_logo {
  transform: scale(1.18) rotate(-6deg);
}

.wwd_card_title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wcs-text-dark, #0f172a);
  margin-bottom: 8px;
  line-height: 1.35;
}

.wwd_card_desc {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--wcs-text-muted, #64748b);
}

/* Center Column & Circular Orbital Ring Styling */
.wwd_sec_col_center {
  align-items: center;
  justify-content: center;
}

.wwd_center_visual_wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating Dashed Circle */
.wwd_orbital_ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px dashed #a5f3fc;
  border-radius: 50%;
  animation: wwd_spin_ring 35s linear infinite;
}

@keyframes wwd_spin_ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Ring Blue Nodes matching reference */
.wwd_ring_node {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #38bdf8;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

.node_1 { top: 6%; left: 20%; }
.node_2 { top: 6%; right: 20%; }
.node_3 { top: 48%; right: -2%; }
.node_4 { bottom: 6%; right: 20%; }
.node_5 { bottom: 6%; left: 20%; }
.node_6 { top: 48%; left: -2%; }

/* Center Image Card */
.wwd_center_img_card {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 2;
  transition: transform 0.4s ease;
}

.wwd_center_img_card:hover {
  transform: scale(1.04);
}

.wwd_center_img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
}

/* LinkedIn Follow Link */
.wwd_linkedin_link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.wwd_linkedin_link:hover {
  transform: translateY(-2px);
}

.wwd_linkedin_text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wcs-text-muted, #64748b);
}

.wwd_linkedin_icon_box {
  width: 32px;
  height: 32px;
  color: #0077b5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wwd_linkedin_icon_box svg {
  width: 28px;
  height: 28px;
}

/* Responsive Adjustments */
@media (max-width: 1180px) {
  .wwd_sec_body_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wwd_sec_col_center {
    order: -1; /* Shows image at the top on smaller screens */
  }

  .wwd_center_visual_wrapper {
    width: 320px;
    height: 320px;
  }

  .wwd_center_img_card {
    width: 230px;
    height: 230px;
  }
}

@media (max-width: 680px) {
  .wwd_sec_root {
    padding: 60px 0;
  }

  .wwd_sec_container {
    padding: 0 20px;
  }

  .wwd_sec_heading {
    font-size: 1.85rem;
  }

  .wwd_card_item {
    padding: 20px;
    gap: 14px;
  }

  .wwd_center_visual_wrapper {
    width: 280px;
    height: 280px;
  }

  .wwd_center_img_card {
    width: 200px;
    height: 200px;
    padding: 20px;
  }

  .wwd_center_img {
    max-width: 130px;
  }
}
/* ==============================what we do section ended ===================================== */
/* ==============================benefits section started ===================================== */
/* ==================== INFOGRAPHIC 7-STEP SECTION ==================== */
.bnf_inf_root {
  background-color: #f8fafc;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.bnf_inf_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Orbit Main Canvas */
.bnf_inf_orbit_wrapper {
  position: relative;
  width: 820px;
  height: 820px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Center Focal Hub */
.bnf_inf_center_hub {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 4px solid #f1f5f9;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.bnf_inf_hub_inner {
  text-align: center;
  padding: 15px;
}

.bnf_inf_dots {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 8px;
}

.bnf_inf_dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.bnf_inf_hub_subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #64748b;
  text-transform: uppercase;
  display: block;
}

.bnf_inf_hub_title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 2px;
}

/* Connecting Spoke Bridges Overlay */
.bnf_inf_connectors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bnf_inf_spoke_line {
  position: absolute;
  height: 14px;
  background-color: var(--node-color);
  transform-origin: left center;
  border-radius: 7px;
}

/* Nodes Wrapper */
.bnf_inf_nodes_container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

/* Node Container */
.bnf_inf_node_item {
  position: absolute;
  width: 170px;
  height: 170px;
  margin-top: -85px;
  margin-left: -85px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bnf_inf_node_item:hover {
  transform: scale(1.06);
  z-index: 10;
}

/* Outer Color Border Circle */
.bnf_inf_card_outer {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--node-color);
  padding: 14px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inner White Content Circle */
.bnf_inf_card_inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 10px;
  text-align: center;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.06);
}

.bnf_inf_icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  margin-bottom: 4px;
}

.bnf_inf_card_title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.bnf_inf_card_desc {
  font-size: 0.625rem;
  color: #64748b;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Numbered Step Badge on Bridge */
.bnf_inf_bridge {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 3px solid var(--node-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  z-index: 4;
}

.bnf_inf_step_num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--node-color);
}

/* ================= RESPONSIVE LAYOUT ================= */
@media (max-width: 900px) {
  .bnf_inf_orbit_wrapper {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 30px;
  }

  .bnf_inf_connectors {
    display: none;
  }

  .bnf_inf_center_hub {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }

  .bnf_inf_nodes_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
  }

  .bnf_inf_node_item {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin: 0 auto;
    width: 180px;
    height: 180px;
  }

  .bnf_inf_bridge {
    top: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 480px) {
  .bnf_inf_nodes_container {
    grid-template-columns: 1fr;
  }
  .bnf_inf_node_item {
    width: 190px;
    height: 190px;
  }
  .bnf_inf_card_title {
    font-size: 0.825rem;
  }
  .bnf_inf_card_desc {
    font-size: 0.675rem;
  }
}
/* ==============================benefits section ended ===================================== */
/* ==============================faq section started ===================================== */
/* ==================== FAQ ACCORDION STYLES ==================== */
.faq_acc_root {
  background-color: #f8fafc;
  padding: 90px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #0f172a;
}

.faq_acc_container {
  max-width: 860px;
  margin: 0 auto;
}

/* Header */
.faq_acc_header {
  text-align: center;
  margin-bottom: 50px;
}

.faq_acc_badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2563eb;
  background-color: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.faq_acc_title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.faq_acc_subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Accordion Group */
.faq_acc_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual FAQ Card */
.faq_acc_item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq_acc_item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.05);
}

.faq_acc_item.faq_acc_active {
  border-color: #bfdbfe;
  box-shadow: 0 12px 20px -4px rgba(37, 99, 235, 0.08);
}

/* Trigger Button */
.faq_acc_trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background-color 0.2s ease;
}

.faq_acc_trigger:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: -2px;
}

.faq_acc_question_wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq_acc_topic_icon {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: #f1f5f9;
  color: #475569;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq_acc_item.faq_acc_active .faq_acc_topic_icon {
  background-color: #eff6ff;
  color: #2563eb;
}

.faq_acc_question {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq_acc_item.faq_acc_active .faq_acc_question {
  color: #2563eb;
}

/* Fixed Right Side Chevron Indicator Icon */
.faq_acc_indicator_icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.faq_acc_item.faq_acc_active .faq_acc_indicator_icon {
  transform: rotate(180deg);
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

/* Smooth Height Animated Panel */
.faq_acc_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq_acc_inner {
  padding: 0 24px 24px 24px;
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}

/* Responsive Styles */
@media (max-width: 640px) {
  .faq_acc_root {
    padding: 60px 16px;
  }

  .faq_acc_title {
    font-size: 1.85rem;
  }

  .faq_acc_trigger {
    padding: 18px 16px;
  }

  .faq_acc_topic_icon {
    width: 32px;
    height: 32px;
  }

  .faq_acc_question {
    font-size: 0.975rem;
  }

  .faq_acc_inner {
    padding: 0 16px 20px 16px;
    font-size: 0.925rem;
  }

  .faq_acc_indicator_icon {
    width: 30px;
    height: 30px;
  }
}
/* ==============================faq section ended ===================================== */
/* ==============================about section what we do new section started===================================== */
/* Unique Scoped Styles for "What We Do" Section */
.wwd_v2_root {
  background-color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.wwd_v2_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header Styles */
.wwd_v2_header {
  text-align: center;
  margin-bottom: 50px;
}

.wwd_v2_heading {
  font-size: 2.5rem;
  font-weight: 500; /* Requested 500 font-weight */
  color: var(--wcs-text-dark, #0f172a);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

/* 2-Column Grid Layout */
.wwd_v2_grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Left Column Styling */
.wwd_v2_content {
  display: flex;
  flex-direction: column;
}

.wwd_v2_desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--wcs-text-muted, #64748b);
  margin-bottom: 30px;
}

/* 8-Item List in 2 Columns (4 Left, 4 Right) */
.wwd_v2_list_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}

.wwd_v2_list_item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wwd_v2_icon_box {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(14, 165, 233, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.wwd_v2_tick_icon {
  width: 14px;
  height: 14px;
  stroke: var(--wcs-accent-color, #0284c7);
}

.wwd_v2_list_text {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--wcs-text-dark, #0f172a);
  transition: color 0.3s ease;
}

/* Hover Effect on List Items */
.wwd_v2_list_item:hover .wwd_v2_icon_box {
  transform: scale(1.15);
  background: var(--wcs-primary-gradient, linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%));
}

.wwd_v2_list_item:hover .wwd_v2_tick_icon {
  stroke: #ffffff;
}

.wwd_v2_list_item:hover .wwd_v2_list_text {
  color: var(--wcs-accent-color, #0284c7);
}

/* Right Column Image & Animation Styling */
.wwd_v2_media_wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Continuous Floating Animation */
@keyframes wwd_v2_float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

.wwd_v2_image_card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--wcs-glass-border, rgba(226, 232, 240, 0.8));
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  animation: wwd_v2_float 6s ease-in-out infinite;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
}

.wwd_v2_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wwd_v2_image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, rgba(15, 23, 42, 0.2) 100%);
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

/* Image Hover Interactive Effects */
.wwd_v2_image_card:hover {
  animation-play-state: paused; /* Pauses float animation smoothly on hover */
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.2);
}

.wwd_v2_image_card:hover .wwd_v2_image {
  transform: scale(1.08) rotate(1deg); /* Gentle zoom & micro rotation */
}

.wwd_v2_image_card:hover .wwd_v2_image_overlay {
  opacity: 0.2; /* Clears overlay to reveal sharper image colors */
}

/* Decorative Background Glow Effect */
.wwd_v2_glow_backdrop {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(50px);
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .wwd_v2_root {
    padding: 80px 0;
  }
  .wwd_v2_grid {
    gap: 40px;
  }
  .wwd_v2_heading {
    font-size: 2.2rem;
  }
  .wwd_v2_image_card {
    height: 360px;
  }
}

@media (max-width: 900px) {
  .wwd_v2_grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .wwd_v2_container {
    padding: 0 24px;
  }
  .wwd_v2_image_card {
    max-width: 100%;
    height: 340px;
  }
}

@media (max-width: 600px) {
  .wwd_v2_root {
    padding: 60px 0;
  }
  .wwd_v2_heading {
    font-size: 1.85rem;
  }
  .wwd_v2_list_grid {
    grid-template-columns: 1fr; /* Stacks to single column on small screens */
    gap: 14px;
  }
  .wwd_v2_image_card {
    height: 280px;
  }
}
/* ==============================about section what we do new section started===================================== */
/* ==============================about section our values section started===================================== */
/* ==================== CENTERED MODAL PANEL & OVERLAY ==================== */
/* ==================== FANCY 2x2 CARDS SECTION ==================== */
.wcs_vmc_root {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 100px 0;
  position: relative;
}

.wcs_vmc_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.wcs_vmc_header {
  text-align: center;
  margin-bottom: 60px;
}

.wcs_vmc_badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--wcs-accent-color, #0284c7);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.wcs_vmc_main_heading {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--wcs-text-dark, #0f172a);
  letter-spacing: -0.02em;
}

/* 2x2 Grid Layout */
.wcs_vmc_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

/* Fancy Card Styling */
.wcs_vmc_card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Decorative Gradient Top Border Accent */
.wcs_vmc_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--wcs-primary-gradient, linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wcs_vmc_card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

.wcs_vmc_card:hover::before {
  opacity: 1;
}

/* Icon Container & 360 Rotation Effect */
.wcs_vmc_icon_box {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background-color: #f1f5f9;
}

.wcs_vmc_logo {
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wcs_vmc_card:hover .wcs_vmc_logo,
.wcs_vmc_card:hover .wcs_vmc_icon_box img {
  transform: rotate(360deg) scale(1.1);
}

.wcs_vmc_title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wcs-text-dark, #0f172a);
  margin-bottom: 14px;
}

.wcs_vmc_desc {
  font-size: 0.975rem;
  line-height: 1.7;
  color: var(--wcs-text-muted, #64748b);
  margin-bottom: 28px;
  flex-grow: 1;
}

/* Read More Button */
.wcs_vmc_btn_readmore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--wcs-accent-color, #0284c7);
  cursor: pointer;
  padding: 0;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.wcs_vmc_btn_readmore svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.wcs_vmc_card:hover .wcs_vmc_btn_readmore {
  color: #2563eb;
}

.wcs_vmc_card:hover .wcs_vmc_btn_readmore svg {
  transform: translateX(6px);
}

/* ==================== CENTERED MODAL PANEL & OVERLAY ==================== */
/* Overlay (Z-INDEX 11) */
.wcs_modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.wcs_modal_overlay.wcs_modal_active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Panel Design (90vh Height & 70% Width) */
.wcs_modal_panel {
  width: 70%;
  max-width: 960px;
  height: 90vh;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 48px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wcs_modal_panel.wcs_panel_active {
  display: flex;
  transform: translateY(0) scale(1);
}

/* Close Button */
.wcs_modal_close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.2rem;
  line-height: 1;
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.wcs_modal_close:hover {
  color: #0f172a;
  transform: rotate(90deg);
}

/* Header inside Panel */
.wcs_modal_header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.wcs_modal_logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wcs_modal_logo:hover {
  transform: rotate(360deg) scale(1.1);
}

/* Heading with 600 Font Weight */
.wcs_modal_heading {
  font-size: 2rem;
  font-weight: 600;
  color: #0f172a;
}

/* Scrollable Body Container */
.wcs_modal_body {
  padding-top: 24px;
  overflow-y: auto;
  flex-grow: 1;
  padding-right: 12px;
}

/* Custom Scrollbar Styling */
.wcs_modal_body::-webkit-scrollbar {
  width: 6px;
}
.wcs_modal_body::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}
.wcs_modal_body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.wcs_modal_body::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.wcs_modal_body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 20px;
}

.wcs_modal_subheading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 10px;
  margin-bottom: 8px;
}

.wcs_modal_subdesc {
  font-size: 0.975rem;
  color: #64748b;
  margin-bottom: 16px !important;
}

/* List with Tick Icon */
.wcs_modal_list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.wcs_modal_list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  padding: 10px 16px;
  border-radius: 12px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect on List Items */
.wcs_modal_list li:hover {
  transform: translateX(8px);
  background-color: #eff6ff;
  border-color: #bfdbfe;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.wcs_modal_tick {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.wcs_modal_list li:hover .wcs_modal_tick {
  background-color: #2563eb;
  color: #ffffff;
}

.wcs_modal_tick svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .wcs_modal_panel {
    width: 85%;
    padding: 36px;
  }
}

@media (max-width: 900px) {
  .wcs_vmc_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wcs_vmc_card {
    padding: 32px;
  }
}

@media (max-width: 680px) {
  .wcs_vmc_root {
    padding: 60px 0;
  }
  .wcs_vmc_container {
    padding: 0 20px;
  }
  .wcs_modal_panel {
    width: 92%;
    height: 85vh;
    padding: 24px;
    border-radius: 16px;
  }
  .wcs_modal_heading {
    font-size: 1.5rem;
  }
  .wcs_modal_body p {
    font-size: 0.95rem;
  }
}
/* Overlay (Z-INDEX 9999 to cover the 1000 z-index Navbar) */
.wcs_modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999; /* Increased to ensure it covers everything */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.wcs_modal_overlay.wcs_modal_active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Panel Design (90vh Height & 70% Width) */
.wcs_modal_panel {
  width: 70%;
  max-width: 960px;
  height: 90vh;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 48px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wcs_modal_panel.wcs_panel_active {
  display: flex;
  transform: translateY(0) scale(1);
}

/* Close Button */
.wcs_modal_close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.2rem;
  line-height: 1;
  background: transparent;
  border: none;
  color: #64748b;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.wcs_modal_close:hover {
  color: #0f172a;
  transform: rotate(90deg);
}

/* Header inside Panel - Redesigned for Center Title & Left Logo */
.wcs_modal_header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* Forces the heading to the dead center */
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
  width: 100%;
}

.wcs_modal_logo {
  position: absolute;
  left: 0;
  top: -5px; /* Adjusts vertical alignment with the text */
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wcs_modal_logo:hover {
  transform: rotate(360deg) scale(1.1);
}

/* Heading with 600 Font Weight and safety padding */
.wcs_modal_heading {
  font-size: 2rem;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
  margin: 0;
  padding: 0 70px; /* Prevents long titles from overlapping the absolute logo or close button */
}

/* Scrollable Body Container */
.wcs_modal_body {
  padding-top: 24px;
  overflow-y: auto;
  flex-grow: 1;
  padding-right: 12px;
}

/* Custom Scrollbar Styling */
.wcs_modal_body::-webkit-scrollbar {
  width: 6px;
}
.wcs_modal_body::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}
.wcs_modal_body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.wcs_modal_body::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.wcs_modal_body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 20px;
}

.wcs_modal_subheading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 10px;
  margin-bottom: 8px;
}

.wcs_modal_subdesc {
  font-size: 0.975rem;
  color: #64748b;
  margin-bottom: 16px !important;
}

/* List with Tick Icon */
.wcs_modal_list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.wcs_modal_list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  padding: 10px 16px;
  border-radius: 12px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect on List Items */
.wcs_modal_list li:hover {
  transform: translateX(8px);
  background-color: #eff6ff;
  border-color: #bfdbfe;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.wcs_modal_tick {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.wcs_modal_list li:hover .wcs_modal_tick {
  background-color: #2563eb;
  color: #ffffff;
}

.wcs_modal_tick svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .wcs_modal_panel {
    width: 85%;
    padding: 36px;
  }
}

@media (max-width: 900px) {
  .wcs_vmc_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wcs_vmc_card {
    padding: 32px;
  }
}

@media (max-width: 680px) {
  .wcs_vmc_root {
    padding: 60px 0;
  }
  .wcs_vmc_container {
    padding: 0 20px;
  }
  .wcs_modal_panel {
    width: 92%;
    height: 85vh;
    padding: 24px;
    border-radius: 16px;
  }
  .wcs_modal_heading {
    font-size: 1.5rem;
    padding: 0 40px; /* Adjusted safety padding for mobile */
  }
  .wcs_modal_logo {
    height: 38px; /* Slightly smaller logo on mobile */
  }
  .wcs_modal_body p {
    font-size: 0.95rem;
  }
}
/* ==============================about section our values section ended===================================== */
/* ==============================what we do section started===================================== */
/* ==================== WHY CHOOSE US SECTION ==================== */
.wcs_wcu_root {
  background-color: var(--wcs-light-bg, #f8fafc);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.wcs_wcu_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header Section */
.wcs_wcu_header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.wcs_wcu_badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--wcs-accent-color, #0284c7);
  background-color: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.18);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.wcs_wcu_title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--wcs-text-dark, #0f172a);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.wcs_wcu_description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--wcs-text-muted, #64748b);
}

/* Grid Layout */
.wcs_wcu_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Feature Cards Design */
.wcs_wcu_card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid var(--wcs-glass-border, rgba(226, 232, 240, 0.9));
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
              box-shadow 0.4s ease, 
              border-color 0.4s ease;
  overflow: hidden;
}

/* Top Accent Line on Hover */
.wcs_wcu_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--wcs-primary-gradient, linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%));
  transition: width 0.4s ease;
}

.wcs_wcu_card:hover::before {
  width: 100%;
}

.wcs_wcu_card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.1);
}

/* Featured 7th Card spans both columns on large screens */
.wcs_wcu_card_featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border-color: rgba(14, 165, 233, 0.3);
}

/* Icon Box Styling */
.wcs_wcu_icon_box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.wcs_wcu_icon_box svg {
  width: 26px;
  height: 26px;
  stroke: var(--wcs-accent-color, #0284c7);
  transition: stroke 0.4s ease, transform 0.4s ease;
}

.wcs_wcu_card:hover .wcs_wcu_icon_box {
  background: var(--wcs-primary-gradient, linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%));
  transform: rotate(6deg) scale(1.08);
}

.wcs_wcu_card:hover .wcs_wcu_icon_box svg {
  stroke: #ffffff;
}

/* Text Content */
.wcs_wcu_card_title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wcs-text-dark, #0f172a);
  margin-bottom: 8px;
  line-height: 1.35;
}

.wcs_wcu_card_text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--wcs-text-muted, #64748b);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .wcs_wcu_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wcs_wcu_card_featured {
    grid-column: span 1;
  }
}

@media (max-width: 680px) {
  .wcs_wcu_root {
    padding: 60px 0;
  }

  .wcs_wcu_container {
    padding: 0 20px;
  }

  .wcs_wcu_title {
    font-size: 1.85rem;
  }

  .wcs_wcu_card {
    padding: 24px;
    flex-direction: column;
    gap: 16px;
  }

  .wcs_wcu_icon_box {
    width: 48px;
    height: 48px;
  }

  .wcs_wcu_icon_box svg {
    width: 22px;
    height: 22px;
  }
}
/* ==============================what we do section ended===================================== */
/* ==============================core values section started===================================== */

/* ==============================core values section ended===================================== */


/* ==============================contact us section started===================================== */
/* ==================== CONTACT SECTION STYLES ==================== */
.cnt_sec_root {
  background-color: #ffffff;
  padding: 100px 0;
  position: relative;
}

.cnt_sec_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Column - Contact Info */
.cnt_sec_info_col {
  display: flex;
  flex-direction: column;
}

.cnt_sec_badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--wcs-accent-color, #0284c7);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.cnt_sec_heading {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--wcs-text-dark, #0f172a);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.cnt_sec_description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--wcs-text-muted, #64748b);
  margin-bottom: 40px;
}

/* Info Items List */
.cnt_sec_info_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cnt_sec_info_item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cnt_sec_icon_box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background-color: #f0f9ff;
  border: 1px solid var(--wcs-glass-border, rgba(226, 232, 240, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cnt_sec_icon_box svg {
  width: 22px;
  height: 22px;
  stroke: var(--wcs-accent-color, #0284c7);
}

.cnt_sec_info_item:hover .cnt_sec_icon_box {
  transform: translateY(-2px);
  background-color: #e0f2fe;
}

.cnt_sec_info_text {
  display: flex;
  flex-direction: column;
}

.cnt_sec_info_label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--wcs-text-muted, #64748b);
}

.cnt_sec_info_value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--wcs-text-dark, #0f172a);
  margin-top: 2px;
}

/* Right Column - Form Card */
.cnt_sec_form_card {
  background-color: #ffffff;
  border: 1px solid var(--wcs-glass-border, rgba(226, 232, 240, 0.8));
  border-radius: 24px;
  padding: 44px 38px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
}

.cnt_sec_form_title {
  font-size: 1.6rem;
  color: var(--wcs-text-dark, #0f172a);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

/* Form Layout */
.cnt_sec_form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cnt_sec_field {
  display: flex;
  flex-direction: column;
}

.cnt_sec_full_width {
  grid-column: span 2;
}

.cnt_sec_label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wcs-text-dark, #0f172a);
  margin-bottom: 8px;
}

.cnt_sec_input {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--wcs-text-dark, #0f172a);
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cnt_sec_input:focus {
  border-color: #0284c7;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

.cnt_sec_select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2064748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cnt_sec_textarea {
  resize: vertical;
  min-height: 110px;
}

/* Submit Button */
.cnt_sec_submit_btn {
  width: 100%;
  margin-top: 24px;
  padding: 14px 28px;
  background: var(--wcs-primary-gradient, linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  transition: all 0.35s var(--wcs-transition-smooth, ease);
}

.cnt_sec_btn_icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cnt_sec_submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.35);
}

.cnt_sec_submit_btn:hover .cnt_sec_btn_icon {
  transform: translateX(4px) translateY(-2px);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .cnt_sec_container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 24px;
  }

  .cnt_sec_heading {
    font-size: 2.2rem;
  }

  .cnt_sec_form_card {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .cnt_sec_root {
    padding: 60px 0;
  }

  .cnt_sec_heading {
    font-size: 1.85rem;
  }

  .cnt_sec_form_grid {
    grid-template-columns: 1fr;
  }

  .cnt_sec_full_width {
    grid-column: span 1;
  }

  .cnt_sec_info_item {
    gap: 14px;
  }

  .cnt_sec_icon_box {
    width: 44px;
    height: 44px;
  }

  .cnt_sec_info_value {
    font-size: 0.95rem;
  }
}


/* ==================== TWO COLUMN CONTACT & CARDS SECTION ==================== */
.cnt_sec_root {
  position: relative;
  padding: 80px 0;
  background-color: var(--wcs-light-bg, #f8fafc);
  font-family: inherit;
}

.cnt_sec_container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left Column (70% Width) */
.cnt_sec_left_col {
  width: 70%;
  display: flex;
  flex-direction: column;
}

.cnt_sec_header {
  margin-bottom: 40px;
}

.cnt_sec_heading {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--wcs-text-dark, #0f172a);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cnt_sec_desc {
  text-align: left;
  font-size: 1.05rem;
  color: var(--wcs-text-muted, #64748b);
  /* max-width: 650px; */
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards Grid (3 per row) */
.cnt_sec_cards_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Focus overlay/dimming effect on sibling cards */
.cnt_sec_cards_grid:hover .cnt_sec_card_item:not(:hover) {
  opacity: 0.4;
  filter: blur(1px);
  transform: scale(0.97);
}

/* Interactive Card Item */
.cnt_sec_card_item {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--wcs-glass-border, rgba(226, 232, 240, 0.8));
  border-radius: 20px;
  padding: 28px 20px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s var(--wcs-transition-smooth, cubic-bezier(0.4, 0, 0.2, 1));
  cursor: pointer;
}

.cnt_sec_card_item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
  opacity: 1 !important;
  filter: none !important;
}

/* Amoeba Blob Container for Icon */
.cnt_sec_amoeba_box {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.15) 100%);
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.cnt_sec_card_item:hover .cnt_sec_amoeba_box {
  border-radius: 58% 42% 38% 62% / 50% 60% 40% 50%;
  background: var(--wcs-primary-gradient, linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%));
}

/* Bouncy Icon Animation */
.cnt_sec_card_icon {
  width: 28px;
  height: 28px;
  stroke: var(--wcs-accent-color, #0284c7);
  transition: stroke 0.3s ease;
}

.cnt_sec_card_item:hover .cnt_sec_card_icon {
  stroke: #ffffff;
  animation: cnt_sec_bounce 0.6s ease infinite alternate;
}

@keyframes cnt_sec_bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.cnt_sec_card_title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wcs-text-dark, #0f172a);
  margin-bottom: 8px;
  line-height: 1.3;
}

.cnt_sec_card_desc {
  font-size: 0.9rem;
  color: var(--wcs-text-muted, #64748b);
  line-height: 1.55;
}

/* Right Column (30% Width - Sticky Form) */
.cnt_sec_right_col {
  width: 30%;
  position: sticky;
  top: 20px;
  z-index: 10;
}

.cnt_sec_form_card {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--wcs-glass-border, rgba(226, 232, 240, 0.8));
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.cnt_sec_form_title {
  font-size: 1.4rem;
  color: var(--wcs-text-dark, #0f172a);
  margin-bottom: 6px;
}

.cnt_sec_form_subtitle {
  font-size: 0.85rem;
  color: var(--wcs-text-muted, #64748b);
  margin-bottom: 20px;
}

.cnt_sec_form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cnt_sec_field {
  display: flex;
  flex-direction: column;
}

.cnt_sec_label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--wcs-text-dark, #0f172a);
  margin-bottom: 6px;
}

.cnt_sec_input {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--wcs-text-dark, #0f172a);
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}

.cnt_sec_input:focus {
  border-color: #0284c7;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.cnt_sec_select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2064748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.cnt_sec_textarea {
  resize: vertical;
  min-height: 80px;
}

.cnt_sec_submit_btn {
  width: 100%;
  margin-top: 8px;
  padding: 12px 20px;
  background: var(--wcs-primary-gradient, linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%));
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
}

.cnt_sec_submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.35);
}

.cnt_sec_btn_icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.cnt_sec_submit_btn:hover .cnt_sec_btn_icon {
  transform: translateX(3px) translateY(-2px);
}

/* ==================== FULLY RESPONSIVE MEDIA QUERIES ==================== */
@media (max-width: 1100px) {
  .cnt_sec_container {
    flex-direction: column;
    gap: 40px;
  }
  
  .cnt_sec_left_col,
  .cnt_sec_right_col {
    width: 100%;
  }

  /* Disable sticky positioning on smaller screens so the form stacks naturally */
  .cnt_sec_right_col {
    position: relative;
    top: 0;
  }
}

@media (max-width: 900px) {
  .cnt_sec_cards_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .cnt_sec_root {
    padding: 50px 0;
  }

  .cnt_sec_container {
    padding: 0 16px;
  }

  .cnt_sec_heading {
    font-size: 1.85rem;
  }

  .cnt_sec_cards_grid {
    grid-template-columns: 1fr;
  }
}
/* ==============================contact us section ended===================================== */
/* ==============================staffing solutions section started===================================== */

/* ==================== TAB STRIP & PANEL SECTION ==================== */
.tab_sec_root {
  padding: 80px 0;
  background-color: var(--wcs-light-bg, #f8fafc);
  color: #0f172a;
}

.tab_sec_container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Main Column: Tab Strip & Panels (68%) */
.tab_sec_main_col {
  width: 68%;
  display: flex;
  flex-direction: column;
}

/* Horizontal Segmented Tab Strip */
.tab_sec_nav_strip {
  display: flex;
  background: #ffffff;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  gap: 8px;
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.tab_sec_nav_strip::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}

.tab_sec_btn {
  flex: 1;
  white-space: nowrap;
  padding: 12px 18px;
  font-size: 0.925rem;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.tab_sec_btn:hover {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
}

.tab_sec_btn.active {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

/* Content Panel Wrapper */
.tab_sec_panels_container {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  min-height: 380px;
}

.tab_sec_panel {
  display: none; /* Controlled by jQuery */
}

.tab_sec_panel.active {
  display: block;
}

.tab_sec_badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0284c7;
  background: rgba(2, 132, 199, 0.1);
  border-radius: 50px;
  margin-bottom: 16px;
}

.tab_sec_title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.tab_sec_desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Feature Grid inside Panels */
.tab_sec_highlight_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tab_sec_feature_box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
}

.tab_sec_box_title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 6px;
}

.tab_sec_box_text {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

/* Checklist Layout */
.tab_sec_checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tab_sec_checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
}

.tab_sec_checklist li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
}

/* Stats Cards Layout */
.tab_sec_stats_row {
  display: flex;
  gap: 24px;
}

.tab_sec_stat_card {
  flex: 1;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.tab_sec_stat_number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 8px;
}

.tab_sec_stat_label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
}

/* Sticky Contact Form Column (32%) */
.tab_sec_form_col {
  width: 32%;
  position: sticky;
  top: 20px;
  z-index: 10;
}

.tab_sec_form_card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.tab_sec_form_title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.tab_sec_form_subtitle {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 20px;
}

.tab_sec_form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tab_sec_field {
  display: flex;
  flex-direction: column;
}

.tab_sec_label {
  font-size: 0.825rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.tab_sec_input {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #0f172a;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}

.tab_sec_input:focus {
  border-color: #0284c7;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.tab_sec_select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2064748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.tab_sec_textarea {
  resize: vertical;
  min-height: 80px;
}

.tab_sec_submit_btn {
  width: 100%;
  margin-top: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
  transition: all 0.3s ease;
}

.tab_sec_submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.35);
}

.tab_sec_btn_icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.tab_sec_submit_btn:hover .tab_sec_btn_icon {
  transform: translateX(4px);
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */
@media (max-width: 1100px) {
  .tab_sec_container {
    flex-direction: column;
    gap: 40px;
  }

  .tab_sec_main_col,
  .tab_sec_form_col {
    width: 100%;
  }

  .tab_sec_form_col {
    position: relative;
    top: 0;
  }
}

@media (max-width: 650px) {
  .tab_sec_root {
    padding: 50px 0;
  }

  .tab_sec_container {
    padding: 0 16px;
  }

  .tab_sec_panels_container {
    padding: 24px 20px;
  }

  .tab_sec_title {
    font-size: 1.5rem;
  }

  .tab_sec_highlight_grid,
  .tab_sec_stats_row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

/* ==============================staffing solutions section ended===================================== */
/* ==============================benefits section started===================================== */
/* ==================== TAB BENEFITS 5-COLUMN ORBITAL GRID ==================== */
/* Color Palette Variables for Circles */
:root {
  --bnf-c1: #0ea5e9;
  --bnf-c2: #3b82f6;
  --bnf-c3: #6366f1;
  --bnf-c4: #8b5cf6;
  --bnf-c5: #ec4899;
  --bnf-c6: #f43f5e;
  --bnf-c7: #10b981;
}

.bnf_tab_grid_root {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

/* 5-Column Grid Setup */
.bnf_tab_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Individual Column Alignment Rules */
.bnf_tab_col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  position: relative;
}

.bnf_col_single {
  justify-content: center;
  height: 100%;
}

.bnf_col_double {
  justify-content: space-between;
}

/* 1. Outer Parent Circle with Color */
.bnf_tab_circle_outer {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--circle-color, #0ea5e9);
  padding: 10px; /* 10px padding for parent circle */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12),
              0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  cursor: pointer;
}

/* Floating Animation & Glow on Hover */
.bnf_tab_circle_outer:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18),
              0 0 20px var(--circle-color, #0ea5e9);
  z-index: 10;
}

/* 2. Floating White Inner Circle */
.bnf_tab_circle_inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-align: center;
  /* Floating inner shadow effect */
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.06),
              0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.bnf_tab_circle_outer:hover .bnf_tab_circle_inner {
  transform: scale(0.98);
}

/* Icon & Heading Typography */
.bnf_tab_icon_box {
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bnf_tab_icon_box svg {
  width: 24px;
  height: 24px;
  stroke: var(--circle-color, #0ea5e9);
  transition: transform 0.3s ease;
}

.bnf_tab_circle_outer:hover .bnf_tab_icon_box svg {
  transform: scale(1.15) rotate(5deg);
}

.bnf_tab_heading {
  font-size: 0.725rem;
  font-weight: 500;
  line-height: 1.15;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
}

/* 4. Dotted Connecting Line Overlay */
.bnf_tab_dotted_svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bnf_tab_dotted_path {
  stroke: #cbd5e1;
  stroke-width: 2.5;
  stroke-dasharray: 6, 6;
  fill: none;
  animation: bnf_dash_anim 30s linear infinite;
}

@keyframes bnf_dash_anim {
  to {
    stroke-dashoffset: -1000;
  }
}

/* 5. Fully Responsive Styles */
@media (max-width: 1024px) {
  .bnf_tab_circle_outer {
    width: 110px;
    height: 110px;
    padding: 8px;
  }
  .bnf_tab_heading {
    font-size: 0.65rem;
  }
  .bnf_tab_icon_box {
    width: 22px;
    height: 22px;
  }
  .bnf_tab_icon_box svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .bnf_tab_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .bnf_tab_dotted_svg {
    display: none; /* Hide complex wave connectors on small mobile screens */
  }
  .bnf_tab_col {
    gap: 20px;
  }
  .bnf_tab_circle_outer {
    width: 130px;
    height: 130px;
    padding: 10px;
  }
  .bnf_tab_heading {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .bnf_tab_grid {
    grid-template-columns: 1fr;
  }
}
/* ==============================benefits section ended===================================== */
/* ==============================contact us section started===================================== */
/* ==================== CONTACT US SECTION STYLES ==================== */
:root {
  --wcs-cnt-primary: #2563eb;
  --wcs-cnt-accent: #0ea5e9;
  --wcs-cnt-dark: #0f172a;
  --wcs-cnt-muted: #64748b;
  --wcs-cnt-bg: #ffffff;
  --wcs-cnt-card-bg: rgba(255, 255, 255, 0.9);
  --wcs-cnt-border: rgba(226, 232, 240, 0.9);
  --wcs-cnt-focus: rgba(37, 99, 235, 0.25);
  --wcs-cnt-radius: 24px;
}

.wcs_cnt_root {
  background-color: var(--wcs-cnt-bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.wcs_cnt_container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: flex-start;
}

/* Info Column Styling */
.wcs_cnt_info_col {
  display: flex;
  flex-direction: column;
}

.wcs_cnt_badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--wcs-accent-color, #0284c7);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.wcs_cnt_heading {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--wcs-cnt-dark);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.wcs_cnt_desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--wcs-cnt-muted);
  margin-bottom: 40px;
}

/* Info List & Cards */
.wcs_cnt_info_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wcs_cnt_info_card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background-color: #f8fafc;
  border: 1px solid var(--wcs-cnt-border);
  border-radius: 16px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.wcs_cnt_info_card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.08);
}

.wcs_cnt_icon_wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.wcs_cnt_icon_wrapper svg {
  width: 22px;
  height: 22px;
  stroke: var(--wcs-cnt-primary);
  transition: stroke 0.3s ease;
}

.wcs_cnt_info_card:hover .wcs_cnt_icon_wrapper {
  background: var(--wcs-primary-gradient, linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%));
}

.wcs_cnt_info_card:hover .wcs_cnt_icon_wrapper svg {
  stroke: #ffffff;
}

.wcs_cnt_info_text {
  display: flex;
  flex-direction: column;
}

.wcs_cnt_label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--wcs-cnt-muted);
}

.wcs_cnt_val {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--wcs-cnt-dark);
  margin-top: 2px;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.wcs_cnt_val:hover {
  color: var(--wcs-cnt-primary);
}

/* Form Card Container */
.wcs_cnt_form_card {
  background-color: var(--wcs-cnt-card-bg);
  border: 1px solid var(--wcs-cnt-border);
  border-radius: var(--wcs-cnt-radius);
  padding: 44px 38px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.wcs_cnt_form_title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--wcs-cnt-dark);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

/* Form Layout */
.wcs_cnt_form_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.wcs_cnt_group {
  display: flex;
  flex-direction: column;
}

.wcs_cnt_full_width {
  grid-column: span 2;
}

.wcs_cnt_field_label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wcs-cnt-dark);
  margin-bottom: 8px;
}

.wcs_cnt_input,
.wcs_cnt_textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--wcs-cnt-dark);
  background-color: #f8fafc;
  border: 1px solid var(--wcs-cnt-border);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wcs_cnt_input::placeholder,
.wcs_cnt_textarea::placeholder {
  color: #94a3b8;
}

.wcs_cnt_input:focus,
.wcs_cnt_textarea:focus {
  background-color: #ffffff;
  border-color: var(--wcs-cnt-primary);
  box-shadow: 0 0 0 4px var(--wcs-cnt-focus);
}

.wcs_cnt_textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.wcs_cnt_submit_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  background: var(--wcs-primary-gradient, linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wcs_cnt_btn_icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.wcs_cnt_submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.35);
}

.wcs_cnt_submit_btn:hover .wcs_cnt_btn_icon {
  transform: translateX(4px) translateY(-2px);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .wcs_cnt_container {
    gap: 40px;
    padding: 0 24px;
  }
  .wcs_cnt_heading {
    font-size: 2.1rem;
  }
}

@media (max-width: 900px) {
  .wcs_cnt_container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .wcs_cnt_root {
    padding: 60px 0;
  }
  .wcs_cnt_form_card {
    padding: 28px 20px;
  }
  .wcs_cnt_form_grid {
    grid-template-columns: 1fr;
  }
  .wcs_cnt_full_width {
    grid-column: span 1;
  }
  .wcs_cnt_heading {
    font-size: 1.85rem;
  }
}
/* ==============================contact us section ended===================================== */

 /* Container & Grid Setup */
.zgc-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.zgc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  min-height: 400px;
  align-items: stretch;
}

/* Column Alignment Rules */
.zgc-col {
  display: flex;
  width: 100%;
}

.zgc-col-bottom {
  align-items: flex-end; /* Align circle to bottom */
}

.zgc-col-top {
  align-items: flex-start; /* Align circle to top */
}

/* Circle Base Styles */
.zgc-circle {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zgc-circle:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

/* Inner Circle Content */
.zgc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  width: 100%;
}

.zgc-icon {
  font-size: 26px;
  margin-bottom: 8px;
}

.zgc-text {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  color: #333333;
  text-transform: uppercase;
  max-width: 85%;
}

/* Color Variations matching the image */
.zgc-circle-blue {
  border: 10px solid #00a8e8;
}
.zgc-circle-blue .zgc-icon { color: #00a8e8; }

.zgc-circle-indigo {
  border: 10px solid #5850ec;
}
.zgc-circle-indigo .zgc-icon { color: #5850ec; }

.zgc-circle-royalblue {
  border: 10px solid #2563eb;
}
.zgc-circle-royalblue .zgc-icon { color: #2563eb; }

.zgc-circle-red {
  border: 10px solid #ef4444;
}
.zgc-circle-red .zgc-icon { color: #ef4444; }

.zgc-circle-purple {
  border: 10px solid #8b5cf6;
}
.zgc-circle-purple .zgc-icon { color: #8b5cf6; }

.zgc-circle-teal {
  border: 10px solid #10b981;
}
.zgc-circle-teal .zgc-icon { color: #10b981; }

.zgc-circle-pink {
  border: 10px solid #ec4899;
}
.zgc-circle-pink .zgc-icon { color: #ec4899; }

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .zgc-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns on tablets */
    row-gap: 32px;
  }
  .zgc-icon { font-size: 22px; }
  .zgc-text { font-size: 10px; }
  .zgc-circle { border-width: 8px; }
}

@media (max-width: 600px) {
  .zgc-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    row-gap: 24px;
  }
  .zgc-circle { border-width: 6px; }
}

/* Container & Grid Setup (Adjusts to parent div size) */
.rcs-section-container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.rcs-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  justify-items: center;
  align-items: center;
}

/* Base Card Style */
.rcs-card {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rcs-float-anim 4s ease-in-out infinite alternate;
}

/* Offset float timing per card */
.rcs-card:nth-child(even) {
  animation-delay: -2s;
}

/* Inner White Circle Box */
.rcs-circle-content {
  width: 180px;
  height: 180px;
  background: #ffffff;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08), 
              0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rcs-card:hover .rcs-circle-content {
  transform: scale(1.04);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

/* Icon Styles */
.rcs-icon-box {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rcs-icon-box svg {
  width: 100%;
  height: 100%;
}

.rcs-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Description Text */
.rcs-description {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #707070;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Outer Rotating Line Ring */
.rcs-rotating-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid transparent;
  box-sizing: border-box;
  z-index: 1;
  animation: rcs-rotate-anim 6s linear infinite;
}

/* Color Themes */
.rcs-theme-dark-teal .rcs-rotating-line { border-top-color: #0b5d66; border-bottom-color: #0b5d66; }
.rcs-theme-dark-teal .rcs-icon-box { color: #0b5d66; }

.rcs-theme-blue .rcs-rotating-line { border-top-color: #1e88e5; border-bottom-color: #1e88e5; }
.rcs-theme-blue .rcs-icon-box { color: #1e88e5; }

.rcs-theme-green .rcs-rotating-line { border-top-color: #43a047; border-bottom-color: #43a047; }
.rcs-theme-green .rcs-icon-box { color: #43a047; }

.rcs-theme-purple .rcs-rotating-line { border-top-color: #8e24aa; border-bottom-color: #8e24aa; }
.rcs-theme-purple .rcs-icon-box { color: #8e24aa; }

.rcs-theme-orange .rcs-rotating-line { border-top-color: #fb8c00; border-bottom-color: #fb8c00; }
.rcs-theme-orange .rcs-icon-box { color: #fb8c00; }

.rcs-theme-red .rcs-rotating-line { border-top-color: #e53935; border-bottom-color: #e53935; }
.rcs-theme-red .rcs-icon-box { color: #e53935; }

.rcs-theme-teal .rcs-rotating-line { border-top-color: #00acc1; border-bottom-color: #00acc1; }
.rcs-theme-teal .rcs-icon-box { color: #00acc1; }

.rcs-theme-pink .rcs-rotating-line { border-top-color: #d81b60; border-bottom-color: #d81b60; }
.rcs-theme-pink .rcs-icon-box { color: #d81b60; }

/* Animations */
@keyframes rcs-rotate-anim {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rcs-float-anim {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

/* Tablet (768px - 1024px): Exactly 3 circles per line */
@media (min-width: 768px) and (max-width: 1024px) {
  .rcs-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 15px;
  }
}

/* Small Tablet (577px - 767px): 2 circles per line */
@media (min-width: 577px) and (max-width: 767px) {
  .rcs-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}

/* Mobile (<= 576px) */
@media (max-width: 576px) {
  .rcs-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}



/* Container & Grid Setup */
.custom-card-section {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 50px 15px;
  box-sizing: border-box;
}

/* 3 cards per row; auto-wraps 4th card onto the next row */
.custom-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Responsive Grid Breakpoints */
@media (max-width: 992px) {
  .custom-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .custom-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Card Styling */
.custom-card-item {
  background-color: #ffffff;
  border-radius: 16px; /* Smooth rounded corners */
  border: 1px solid #eaeaea;
  padding: 5px; /* Specified 5px padding */
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.custom-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
}

/* Header Image Wrapper */
.custom-card-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  /* Top corners inherit outer parent's border-radius; bottom stays sharp */
  border-top-left-radius: 11px; 
  border-top-right-radius: 11px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card Body Layout */
.custom-card-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Pushes button footer to bottom across unequal descriptions */
}

/* Fixed Logo Dimensions */
.custom-card-logo-wrapper {
  margin-bottom: 16px;
  height: 36px;
  display: flex;
  align-items: center;
}

.custom-card-logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* Headings & Text */
.custom-card-title {
  margin: 0 0 6px 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #101828;
  line-height: 1.3;
}

.custom-card-subtitle {
  margin: 0 0 12px 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #344054;
  line-height: 1.4;
}

.custom-card-description {
  margin: 0 0 16px 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  color: #667085;
  line-height: 1.5;
}

/* Tags Layout */
.custom-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.custom-card-tag {
  background-color: #f2f4f7;
  color: #344054;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 12px;
  font-family: system-ui, -apple-system, sans-serif;
}

/* Button & Alignment */
.custom-card-footer {
  margin-top: auto; /* Locks button to card bottom */
  padding-top: 12px;
}

.custom-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: #ffffff;
  color: #003366;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  outline: none;
}

.custom-card-btn-arrow {
  transition: transform 0.25s ease-in-out;
}

.custom-card-btn:hover {
  background-color: #f8fafc;
  border-color: #003366;
  color: #002244;
}

.custom-card-btn:hover .custom-card-btn-arrow {
  transform: translateX(5px); /* Hover arrow animation */
}

/* Overlay & Modal Panel */
.custom-card-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-card-overlay.active {
  opacity: 1;
  visibility: visible;
}

.custom-card-panel {
  position: relative;
  width: 80%; /* 80% width requirement */
  height: 80vh; /* 80vh height requirement */
  background-color: #ffffff;
  border-radius: 12px;
  padding: 50px; /* Specified 50px padding */
  box-sizing: border-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.custom-card-overlay.active .custom-card-panel {
  transform: translateY(0);
}

.custom-card-panel-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  font-weight: 300;
  color: #666;
  cursor: pointer;
  line-height: 1;
  padding: 5px 10px;
  transition: color 0.2s ease;
}

.custom-card-panel-close:hover {
  color: #000;
}

/* Content Container with Isolated Scrolling */
.custom-card-panel-content {
  width: 100%;
  height: 100%;
  overflow-y: auto; /* Internal scrollbar when content exceeds height */
  box-sizing: border-box;
}

/* ==========================================
   MODAL PANEL CONTENT STYLES (#modal-1)
   ========================================== */

.modal-content-wrapper {
  color: #333333;
  font-family: inherit; /* Inherit font from your main website */
  line-height: 1.6;
}

/* Header Section */
.modal-content-header {
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.modal-content-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #003366; /* Clean deep blue tone */
  margin: 0 0 10px 0;
  line-height: 1.25;
}

.modal-content-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  color: #555555;
  margin: 0;
  line-height: 1.4;
}

/* Content Sections */
.modal-content-section {
  margin-bottom: 28px;
}

.modal-content-heading {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--wcs-cnt-accent);
  margin: 0 0 12px 0;
  position: relative;
}

.modal-content-text {
  font-size: 1rem;
  color: #4a4a4a;
  margin: 0;
}

.modal-content-intro {
  margin-bottom: 10px;
  font-weight: 500;
}

/* Bullet Lists Styling */
.modal-content-list {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.modal-content-list li {
  font-size: 0.98rem;
  color: #4a4a4a;
  margin-bottom: 8px;
  line-height: 1.5;
}

.modal-content-list li:last-child {
  margin-bottom: 0;
}

/* Highlight Box for Outcome */
.modal-content-text.highlight-box {
  background-color: #f4f7fa;
  border-left: 4px solid #003366;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  font-weight: 500;
  color: #222222;
}

/* Responsive Adjustments for Mobile & Tablets */
@media (max-width: 768px) {
  .modal-content-main-title {
    font-size: 1.5rem;
  }
  
  .modal-content-subtitle {
    font-size: 1rem;
  }

  .modal-content-heading {
    font-size: 1.15rem;
  }

  .modal-content-section {
    margin-bottom: 20px;
  }
}



/* ==========================================================================
   PRIVACY POLICY SECTION STYLES
   ========================================================================== */

.wcs_pp_section {
  width: 100%;
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: inherit; /* Inherits font family from site layout */
  color: #334155;
  line-height: 1.7;
}

.wcs_pp_container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Section Blocks */
.wcs_pp_block {
  margin-bottom: 40px;
}

.wcs_pp_block:last-child {
  margin-bottom: 0;
}

/* Typography */
.wcs_pp_lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: #1e293b;
  border-left: 4px solid var(--wcs-accent-color, #2563eb);
  padding-left: 18px;
  margin-bottom: 24px;
}

.wcs_pp_heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.wcs_pp_subheading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin: 20px 0 10px 0;
}

.wcs_pp_text {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.wcs_pp_note {
  font-size: 0.95rem;
  color: #64748b;
  margin-top: 10px;
}

/* Tick List Custom Styling */
.wcs_pp_list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.wcs_pp_list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
}

/* Tick Icon (SVG) */
.wcs_pp_list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-color: var(--wcs-accent-color, #2563eb);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center / contain;
}

/* Contact Block Card */
.wcs_pp_address_card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
}

.wcs_pp_company_name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.wcs_pp_contact_detail {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.wcs_pp_contact_detail a {
  color: var(--wcs-accent-color, #2563eb);
  text-decoration: none;
  transition: color 0.2s ease;
}

.wcs_pp_contact_detail a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .wcs_pp_section {
    padding: 50px 16px;
  }

  .wcs_pp_heading {
    font-size: 1.35rem;
  }

  .wcs_pp_lead {
    font-size: 1rem;
  }

  .wcs_pp_list li {
    font-size: 0.95rem;
  }
}



/* ==========================================================================
   Cookie & Imprint System Styles (Prefix: ckp-)
   ========================================================================== */

/* Utility Lock for Screen Scroll */
body.ckp-no-scroll {
  overflow: hidden !important;
}

/* --------------------------------------------------------------------------
   1. Cookie Banner
   -------------------------------------------------------------------------- */
.ckp-banner-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9998;
  padding: 1.25rem;
  box-sizing: border-box;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ckp-banner-container.ckp-show {
  transform: translateY(0);
}

.ckp-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .ckp-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.ckp-banner-text {
  margin: 0;
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: inherit;
}

.ckp-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .ckp-banner-actions {
    width: auto;
    flex-shrink: 0;
  }
}

/* --------------------------------------------------------------------------
   2. Buttons
   -------------------------------------------------------------------------- */
.ckp-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
  flex: 1;
  text-align: center;
  font-family: inherit;
}

@media (min-width: 768px) {
  .ckp-btn {
    flex: initial;
  }
}

.ckp-btn-primary {
  background-color: #2563eb;
  color: #ffffff;
}

.ckp-btn-primary:hover {
  background-color: #1d4ed8;
}

.ckp-btn-secondary {
  background-color: #f3f4f6;
  color: #374151;
  border-color: #d1d5db;
}

.ckp-btn-secondary:hover {
  background-color: #e5e7eb;
}

.ckp-btn-outline {
  background-color: transparent;
  color: #2563eb;
  border-color: #2563eb;
}

.ckp-btn-outline:hover {
  background-color: #eff6ff;
}

.ckp-link-btn {
  background: none;
  border: none;
  padding: 0;
  color: #2563eb;
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

.ckp-link-btn:hover {
  color: #1d4ed8;
}

/* --------------------------------------------------------------------------
   3. Imprint Centered Modal & Backdrop
   -------------------------------------------------------------------------- */
.ckp-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
  box-sizing: border-box;
}

.ckp-modal-overlay.ckp-is-active {
  opacity: 1;
  visibility: visible;
}

.ckp-modal-container {
  background-color: #ffffff;
  border-radius: 16px;
  border: 2px solid #ffffff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 650px;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Standard overflow hidden */
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.ckp-modal-overlay.ckp-is-active .ckp-modal-container {
  transform: scale(1);
}

.ckp-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
  z-index: 10;
}

.ckp-modal-close:hover {
  background-color: #f3f4f6;
  color: #111827;
}

.ckp-modal-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.ckp-modal-heading {
  margin: 0;
  font-size: 1.35rem;
  color: #111827;
  font-weight: 700;
  font-family: inherit;
}

/* Modal Body with Dedicated Scrollbar */
.ckp-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  font-family: inherit;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Custom Scrollbar styling for the modal body */
.ckp-modal-body::-webkit-scrollbar {
  width: 8px;
}

.ckp-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.ckp-modal-body::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.ckp-modal-body::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.ckp-modal-body h3 {
  margin: 1.25rem 0 0.5rem 0;
  font-size: 1.05rem;
  color: #111827;
}

.ckp-modal-body h3:first-child {
  margin-top: 0;
}

.ckp-modal-body p {
  margin: 0 0 0.75rem 0;
}

