/* ExtraLight */
@font-face {
  font-family: 'Geomini';
  src: url('./fonts/webfonts/Geomini-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* Light */
@font-face {
  font-family: 'Geomini';
  src: url('./fonts/webfonts/Geomini-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Regular */
@font-face {
  font-family: 'Geomini';
  src: url('./fonts/webfonts/Geomini-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Medium */
@font-face {
  font-family: 'Geomini';
  src: url('./fonts/webfonts/Geomini-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* SemiBold */
@font-face {
  font-family: 'Geomini';
  src: url('./fonts/webfonts/Geomini-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: 'Geomini';
  src: url('./fonts/webfonts/Geomini-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ExtraBold */
@font-face {
  font-family: 'Geomini';
  src: url('./fonts/webfonts/Geomini-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}

body {
  font-family: 'Geomini', sans-serif;
}

.bor{
  border: 1px solid red;
}

.hidden{
  display: none;
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.site-hero-body {
  color: #000000;
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Navbar Base */
.site-hero-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 20px 0;
  background-color: transparent;
}

.site-hero-nav--scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.site-hero-nav__container {
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-hero-nav__logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  color: #000000;
  transition: color 0.3s ease;
  max-width: 12rem;
}

.site-hero-nav__logo img{
  width: 100%;
  height: 100%;
}

/* Hamburger Button */
.site-hero-nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #000000;
  cursor: pointer;
  z-index: 1001;
}

.site-hero-nav__wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-hero-nav__menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.site-hero-nav__link {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  color: #000000;
  font-family: inherit;
  transition: opacity 0.3s ease;
}

.site-hero-nav__link:hover {
  opacity: 0.6;
}

.site-hero-nav__cta {
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  background-color: #d18b00;
  color: #ffffff !important;
  transition: opacity 0.3s ease;
}

.site-hero-nav__cta:hover {
  opacity: 0.8;
}

/* Hero Section - Clean background without overlay filters */
.site-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../images/heroimage.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* Particles Canvas */
#site-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Hero Text Content (No shadows, Black Text) */
.site-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #000000; /* Pure black text */
  padding-bottom: 140px;
}

.site-hero-content__title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: none; /* Shadow removed */
}

.site-hero-content__title span{
  color: #d18b00;
}

.site-hero-content__subtitle {
  font-size: .95rem;
  margin-bottom: 35px;
  font-weight: 400;
  text-shadow: none; /* Shadow removed */
}

.site-hero-content__actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.site-hero-btn {
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: none; /* Shadow removed */
}

/* Exchanged Button Styles */
.site-hero-btn--secondary {
  border: 2px solid #0036AA;
  color: #0036AA;
  background-color: transparent;
}

.site-hero-btn--secondary img{
  width: 2rem;
  height: 2rem;
}

.site-hero-btn--secondary:hover {
  background-color: #0036AA;
  color: #ffffff;
}

.site-hero-btn--primary {
  background-color: #d18b00;
  color: #ffffff;
  border: 2px solid #d18b00;
}

.site-hero-btn--primary:hover {
  background-color: #c79a41;
}

/* Dummy Section */
.site-hero-dummy-content {
  padding: 100px 20px;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 80vh;
  color: #000000;
}

/* Mobile Responsive & Hamburger Navigation Panel */
@media (max-width: 768px) {
  .site-hero-nav__toggle {
    display: block; /* Show Hamburger */
  }

  .site-hero-nav__wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .site-hero-nav__wrapper.site-hero-nav__wrapper--active {
    right: 0; /* Slide in menu panel */
  }

  .site-hero-nav__menu {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .site-hero-nav__cta {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }

  .site-hero-content__title {
    font-size: 2.2rem;
  }

  .site-hero-content__actions {
    flex-direction: column;
  }

  .site-hero-content{
    padding-bottom: 0px;
  }
}

/* Announcement Badge Container */
.site-hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  padding: 6px 8px 6px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-hero-top-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Badge Text */
.site-hero-top-badge__text {
  color: #2563eb; /* Vibrant blue color matching the reference */
  font-size: 0.9rem;
  font-weight: 500;
}

/* Badge Blue Arrow Circle */
.site-hero-top-badge__icon {
  width: 28px;
  height: 28px;
  background-color: #0052cc;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: background-color 0.2s ease;
}

.site-hero-top-badge:hover .site-hero-top-badge__icon {
  background-color: #003d99;
}

/* Title Highlight (for "With AI" gold/yellow color matching reference) */
.site-hero-content__title--highlight {
  color: #e59819;
}

.our_clients_section{
  min-height: 60vh;
  background: rgb(245, 245, 245);
  background: linear-gradient(180deg, rgba(187, 232, 255, 0.57) 0%, rgba(255, 255, 255, 0) 95%);
}

.section_heading_element{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0px;
  gap: 15px;
}

.section_heading_element .section_heading_title{
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 500;
  color: #111827;
  line-height: 1.25;
  text-align: center; 
}

.section_heading_element p{
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.65;
    font-family: inherit;
}

.clients_logo_seciton {
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 60px;
}

.clients_wrapper {
  display: grid;
  /* Fixed width container 1100px screen aur usse badi screen ke liye */
  max-width: 1200px;
  width: 100%;
  /* Pure container ko center karne ke liye */
  margin: 0 auto;
  /* Desktop par ek row mein exact 5 cards */
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  justify-content: center;
}

.client {
  /* Dynamic size handle karne ke liye fixed max-width hataya hai */
  width: 100%;
  height: 90px;
  border-radius: 40px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.client img {
  /* Image stretch na ho aur perfectly card ke andar fit ho */
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* 1100px se neeche ki screens ke liye (Responsive Auto-adjust) */
@media (max-width: 1100px) {
  .clients_wrapper {
    max-width: 100%;
    padding: 0 10px;
  }
}

/* Tablet View: Ek row mein 3 cards */
@media (max-width: 992px) {
  .clients_wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

/* Mobile View: Ek row mein 1 card */
@media (max-width: 576px) {
  .clients_wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }

  .client {
    max-width: 280px;
    margin: 0 auto; /* Center single card on mobile screen */
  }
}


/* CSS Styling */
.csat_stats_section {
  width: 100%;
  padding: 60px 20px;
  /* Exact royal-blue gradient matching the design */
  background: linear-gradient(180deg, #1d52ce 0%, #11358b 100%);
  box-sizing: border-box;
  font-family: inherit; /* Website ki main font inherit karega */
}

.csat_stats_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
  text-align: center;
}

.csat_stat_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.csat_number {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
  padding: 0;
  line-height: 1.1;
  letter-spacing: -0.5px;
  font-family: inherit;
}

.csat_label {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  margin: 10px 0 0 0;
  padding: 0;
  opacity: 0.9;
  letter-spacing: 0.2px;
  font-family: inherit;
}

/* Tablet Responsiveness */
@media (max-width: 992px) {
  .csat_stats_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  
  .csat_number {
    font-size: 2.5rem;
  }
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
  .csat_stats_section {
    padding: 40px 15px;
  }

  .csat_stats_container {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  
  .csat_number {
    font-size: 2.2rem;
  }
  
  .csat_label {
    font-size: 0.9rem;
  }
}

.small_heading_about_us{
  margin-bottom: -10px;
}


/* Section Wrapper */
.arccs_about_section {
  width: 100%;
  padding: 50px 100px;
  background-color: #ffffff;
  box-sizing: border-box;
  font-family: inherit; /* Website ki font-family inherit karega */
}

/* Flex Container for Desktop Layout */
.arccs_about_container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: stretch; /* Image aur content ki height barabar rakhne ke liye */
  justify-content: space-between;
  gap: 50px;
}

/* Left Content - Takes 50% Width */
.arccs_about_content {
  flex: 1;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Heading: Strict 4 words per line target */
.arccs_about_heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0036AA;
  line-height: 1.25;
  margin: 0 0 24px 0;
  font-family: inherit;
  /* 4 words per line adjustment */
  max-width: 22ch; 
}
.arccs_about_heading span{
  color: #d18b00;
}

/* Paragraphs Styling */
.arccs_about_para {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.65;
  margin: 0 0 18px 0;
  font-family: inherit;
}

.arccs_about_para:last-child {
  margin-bottom: 0;
}

/* Right Image Wrapper - Exact 50% Width */
.arccs_about_image_wrapper {
  flex: 1;
  width: 50%;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}

/* Image scaling to match text height perfectly */
.arccs_about_image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Content ke height ke barabar crop/fit hoga */
  display: block;
}

/* Tablet Responsiveness */
@media (max-width: 992px) {
  .arccs_about_container {
    gap: 30px;
  }

  .arccs_about_heading {
    font-size: 2rem;
    max-width: 100%; /* Tablet par natural wrap hoga */
  }

  .arccs_about_para {
    font-size: 1rem;
  }
}

/* Mobile Responsiveness: Switches to Column Layout */
@media (max-width: 768px) {
  .arccs_about_section {
    padding: 40px 16px;
  }

  .arccs_about_container {
    flex-direction: column; /* Flex direction column me switch hoga */
    gap: 30px;
  }

  .arccs_about_content,
  .arccs_about_image_wrapper {
    width: 100%; /* Mobile par full width le lega */
  }

  .arccs_about_heading {
    font-size: 1.75rem;
  }

  .arccs_about_image_wrapper {
    height: 300px; /* Mobile View me fixed height */
  }
}


/* Scope all styles under unique prefixes to prevent class conflicts */
    .arccs-footer-section {
      background-color: #f2f3f5;
      color: #111111;
      font-family: inherit;
      line-height: 1.6;
      width: 100%;
      box-sizing: border-box;
    }

    .arccs-footer-section * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .arccs-footer-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 50px 20px 40px;
      display: grid;
      grid-template-columns: 1.2fr 0.9fr 1.1fr 1fr;
      gap: 30px;
    }

    /* Column 1: Logo & About */
    .arccs-footer-col-about .arccs-footer-logo {
      max-width: 200px;
      height: auto;
      margin-bottom: 25px;
      display: block;
    }

    .arccs-footer-col-about p {
      font-size: 15px;
      color: #222222;
      margin-bottom: 25px;
      font-weight: 500;
      max-width: 320px;
    }

    .arccs-footer-socials {
      display: flex;
      gap: 18px;
      align-items: center;
    }

    .arccs-footer-socials a {
      color: #0046be;
      font-size: 20px;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .arccs-footer-socials a:hover {
      color: #002d80;
    }

    /* Columns 2, 3, 4: Headings */
    .arccs-footer-title {
      font-size: 20px;
      font-weight: 700;
      color: #000000;
      margin-bottom: 12px;
      position: relative;
    }

    .arccs-footer-title::after {
      content: "";
      display: block;
      width: 100%;
      height: 1.5px;
      background-color: #0046be;
      margin-top: 8px;
      margin-bottom: 16px;
    }

    /* Link Lists */
    .arccs-footer-links {
      list-style: none;
    }

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

    .arccs-footer-links a {
      color: #222222;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .arccs-footer-links a:hover {
      color: #0046be;
    }

    /* Column 4: Contact */
    .arccs-contact-list {
      list-style: none;
    }

    .arccs-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 15px;
      font-weight: 500;
      color: #222222;
    }

    .arccs-contact-item i {
      color: #000000;
      font-size: 16px;
      margin-top: 4px;
      flex-shrink: 0;
    }

    .arccs-contact-item a {
      color: #222222;
      text-decoration: none;
    }

    .arccs-contact-item a:hover {
      color: #0046be;
    }

    /* Bottom Copyright Bar */
    .arccs-footer-bottom {
      background-color: #0046be;
      color: #ffffff;
      text-align: center;
      padding: 14px 20px;
      font-size: 15px;
      font-weight: 500;
    }

    .arccs-footer-bottom a {
      color: #ffffff;
      text-decoration: none;
    }

    .arccs-footer-bottom a:hover {
      text-decoration: underline;
    }

    /* Responsive Breakpoints */
    @media (max-width: 1024px) {
      .arccs-footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
      }
    }

    @media (max-width: 600px) {
      .arccs-footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px 30px;
      }

      .arccs-footer-col-about p {
        max-width: 100%;
      }
    }


    /* Base Section Setup */
.videos-cards-section {
  padding: 0 100px;
  box-sizing: border-box;
  width: 100%;
}

.vcs-container {
  width: 100%;
}

/* 3-Column Grid Layout */
.vcs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 20px 0;
}

/* Card Styling & Hover Transitions */
.vcs-card {
  position: relative;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-radius: 16px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.35s ease,
              border-color 0.35s ease;
}

.vcs-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

/* Centered Content Layout */
.vcs-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

/* Typography Inherits Parent Font */
.vcs-card-title {
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #f8fafc;
  margin: 0;
  transition: color 0.3s ease, transform 0.3s ease;
}

.vcs-card:hover .vcs-card-title {
  color: #ffffff;
  transform: scale(1.03);
}

/* Circular Play Button */
.vcs-card-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.vcs-card:hover .vcs-card-btn {
  background-color: #ffffff;
  color: #1d4ed8;
  transform: scale(1.1);
}

/* Modal Overlay & Centered Panel */
.vcs-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Base Modal Setup */
.vcs-modal-panel {
  position: relative;
  width: 85%;
  max-width: 1100px;
  height: 85vh;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header Section */
.vcs-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #e2e8f0;
}

.vcs-modal-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.vcs-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #64748b;
}

/* Body Content */
.vcs-modal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 65px);
  box-sizing: border-box;
}

.vcs-modal-subtitle {
  font-size: 0.95rem;
  color: #475569;
  margin: 0 0 16px 0;
}

/* Row Layout (Left 30% & Right 70%) */
.vcs-modal-content-row {
  display: flex;
  gap: 20px;
  flex: 1;
  min-height: 0; /* Overflow handle karne ke liye */
}

/* Left 30% Column */
.vcs-left-col {
  width: 30%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}

.vcs-tab-btn {
  width: 100%;
  padding: 14px 16px;
  background: #f1f5f9;
  border: 1px solid transparent;
  border-radius: 6px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vcs-tab-btn:hover {
  background: #e2e8f0;
}

.vcs-tab-btn.active {
  background: #ff6b00; /* Active orange accent as shown in image */
  color: #ffffff;
}

/* Right 70% Column */
.vcs-right-col {
  width: 70%;
  height: 100%;
  background: #f8fafc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.vcs-right-col img,
.vcs-right-col video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Responsive adjust for mobile view */
@media (max-width: 768px) {
  .vcs-modal-content-row {
    flex-direction: column;
  }
  .vcs-left-col, .vcs-right-col {
    width: 100%;
  }
  .vcs-right-col {
    height: 250px;
  }
}


/* Container Layout and Padding */
.why_choose_us_cards_wrappper {
  padding: 10px 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  box-sizing: border-box;
  width: 100%;
}

/* Base Card Styling (500px Height & Default Background Image) */
.wcu-card {
  position: relative;
  height: 400px;
  background-color: #fffaf7;
  background-image: url('../images/svg/mysvg.svg');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 32px 24px;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Elevation & Floating Effect */
.wcu-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 45px rgba(29, 99, 250, 0.28);
}

/* Hover Background Image (Bottom-to-Top Animation) */
.wcu-card-bg-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/svg/mysvg1.svg');
  background-size: cover;
  background-position: center;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.wcu-card:hover .wcu-card-bg-hover {
  transform: translateY(0);
}

/* Card Content Flex Container */
.wcu-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Circular Icon Wrapper (10px Padding) */
.wcu-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0036AA;
  color: #fcfcfc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 28px;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.wcu-card:hover .wcu-icon-circle {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: scale(1.05);
}

/* Heading Title */
.wcu-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgb(17, 24, 39);
  margin: 0 0 16px 0;
  line-height: 1.3;
  transition: color 0.35s ease;
}

.wcu-card:hover .wcu-card-title {
  color: #ffffff;
}

/* Description Text (Hidden initially & Animates on Hover) */
.wcu-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
  margin-top: auto; /* Pushes description towards the bottom of 500px card */
}

.wcu-card:hover .wcu-card-desc {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsiveness Rules */
@media (max-width: 1024px) {
  .why_choose_us_cards_wrappper {
    padding: 10px 40px;
    grid-template-columns: repeat(3, 1fr); /* 3 cards on Tablet */
  }
}

@media (max-width: 640px) {
  .why_choose_us_cards_wrappper {
    padding: 10px 20px;
    grid-template-columns: 1fr; /* 1 card on Mobile */
  }
  
  .wcu-card {
    height: 420px; /* Reduced height for smaller mobile screens */
  }
}


/* Unique Section Styles */
.cs-overview-section {
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  font-family: inherit;
}

.cs-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Top Left Header Section Styles */
.cs-header-content {
  text-align: left;
  margin-bottom: 30px;
  max-width: 600px;
}

.cs-main-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #0036AA;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.cs-main-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Visual Overlapping Capsule Container */
.cs-capsules-wrapper {
  width: 100%;
  height: 180px;
  margin-bottom: 40px;
  position: relative;
}

/* Base Capsule Pill Styling */
.cs-capsule {
  border-radius: 100px;
  display: flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  height: 100%;
}

/* Nesting Pill Sizes & Colors */
.cs-capsule-4 {
  width: 100%;
  background-color: #114eb4;
  justify-content: flex-end;
  padding-right: 30px;
}

.cs-capsule-3 {
  width: 75%;
  height: 100%;
  background-color: #447cd8;
  position: absolute;
  left: 0;
  top: 0;
  justify-content: flex-end;
  padding-right: 35px;
}

.cs-capsule-2 {
  width: 55%;
  height: 100%;
  background-color: #83b2ff;
  position: absolute;
  left: 0;
  top: 0;
  justify-content: flex-end;
  padding-right: 35px;
}

.cs-capsule-1 {
  width: 35%;
  height: 100%;
  background-color: #c6dcff;
  position: absolute;
  left: 0;
  top: 0;
  justify-content: center;
  padding: 0 15px;
}

/* Label Inside Pills */
.cs-capsule-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.cs-capsule-1 .cs-capsule-text {
  color: #114eb4; /* Dark contrast text for lightest background */
}

/* Bottom Grid Setup */
.cs-content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cs-content-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-item-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Color Matching with Pillars */
.cs-item-1 .cs-item-title { color: #83b2ff; }
.cs-item-2 .cs-item-title { color: #447cd8; }
.cs-item-3 .cs-item-title { color: #114eb4; }
.cs-item-4 .cs-item-title { color: #114eb4; } 

.cs-item-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4a5568;
  margin: 0;
}

/* --- Tablet Responsive Rules (1024px & down) --- */
@media (max-width: 1024px) {
  .cs-capsules-wrapper {
    height: 140px;
  }

  .cs-capsule-4 { padding-right: 20px; }
  .cs-capsule-3 { padding-right: 25px; width: 78%; }
  .cs-capsule-2 { padding-right: 25px; width: 56%; }
  .cs-capsule-1 { width: 34%; }

  .cs-capsule-text {
    font-size: 0.75rem;
  }

  .cs-content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* --- Mobile Responsive Rules (640px & down) --- */
@media (max-width: 640px) {
  .cs-main-heading {
    font-size: 1.5rem;
  }

  /* Reset capsule wrapper to column layout */
  .cs-capsules-wrapper {
    height: auto;
    display: none;
    flex-direction: column;
    gap: 12px;
    position: static;
  }

  /* Unstack all nested capsules into standalone stacked circular badges */
  .cs-capsule-4,
  .cs-capsule-3,
  .cs-capsule-2,
  .cs-capsule-1 {
    position: relative !important;
    width: 100% !important;
    height: 60px !important;
    border-radius: 50px !important;
    justify-content: center !important;
    padding: 0 16px !important;
    box-sizing: border-box;
  }

  .cs-capsule-text {
    font-size: 0.85rem;
    white-space: normal;
  }

  .cs-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Section & Container Setup */
.u3d-card-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;
  box-sizing: border-box;
  font-family: inherit;
  background-color: #f3f4f6;
}

.u3d-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1300px;
  width: 100%;
  perspective: 1000px;
}

/* 3D Card Wrapper */
.u3d-card-item {
  position: relative;
  height: 380px;
  border-radius: 20px;
  background: #161b26;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.15s cubic-bezier(0.2, 0.85, 0.4, 1.2), box-shadow 0.4s ease;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); */
}

/* Ambient Background Glow */
.u3d-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  /* background: radial-gradient(circle at var(--u3d-mouse-x, 50%) var(--u3d-mouse-y, 50%), rgba(99, 102, 241, 0.35), transparent 70%); */
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.u3d-card-item:hover .u3d-card-glow {
  opacity: 1;
}

/* Card Image & Overlay */
.u3d-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  transform: scale(1.05) translateZ(0);
  filter: brightness(0.7);
}

.u3d-card-item:hover .u3d-card-bg {
  transform: scale(1.15) translateZ(10px);
  filter: brightness(0.85);
}

.u3d-card-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(11, 15, 25, 0.1) 0%, rgba(11, 15, 25, 0.85) 100%); */
  z-index: 2;
}

/* Floating Content Layer */
.u3d-card-content {
  position: relative;
  height: 100%;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 3;
  transform-style: preserve-3d;
}

/* Category Badge */
.u3d-card-badge {
  align-self: flex-start;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transform: translateZ(20px);
  transition: transform 0.4s ease, background 0.3s ease;
}

.u3d-card-item:hover .u3d-card-badge {
  transform: translateZ(35px);
  background: rgba(99, 102, 241, 0.8);
}

/* Center 3D Play Button */
.u3d-play-btn-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(30px);
  transition: transform 0.4s ease;
}

.u3d-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.u3d-play-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-left: 3px;
}

.u3d-card-item:hover .u3d-play-btn-wrapper {
  transform: translate(-50%, -50%) translateZ(55px);
}

.u3d-card-item:hover .u3d-play-btn {
  background: #6366f1;
  border-color: #818cf8;
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.7);
}

/* Bottom Header Text */
.u3d-card-footer {
  transform: translateZ(25px);
  transition: transform 0.4s ease;
}

.u3d-card-item:hover .u3d-card-footer {
  transform: translateZ(45px);
}

.u3d-card-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 6px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.u3d-card-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 1100px) {
  .u3d-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 580px) {
  .u3d-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .u3d-card-item {
    height: 340px;
  }
}



/* --- SECTION BASE STYLES --- */
.eb-industry-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #f3f4f6;
  box-sizing: border-box;
}

.eb-industry-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
}

.eb-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* --- HEADER SECTION --- */
.eb-header {
  text-align: center;
  margin-bottom: 40px;
}

.eb-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0b3db8;
  margin-bottom: 12px;
  line-height: 1.2;
}

.eb-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
  color: #000000;
}

/* --- GRID LAYOUT --- */
.eb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* --- CARD DESIGN & HOVER EFFECTS --- */
.eb-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* Smooth transitions for all changing properties */
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.eb-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  line-height: 1;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.eb-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  transition: color 0.3s ease;
  line-height: 1.3;
}

/* --- HOVER STATE --- */
.eb-card:hover {
  background-color: #d18b00; /* Soft modern blue */
  border-color: #d18b00;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

.eb-card:hover .eb-card-title {
  color: #ffffff; /* White text on hover */
}

.eb-card:hover .eb-icon {
  transform: scale(1.1); /* Slight icon pop effect */
  filter: brightness(1.2);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .eb-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row on tablets */
  }
}

@media (max-width: 768px) {
  .eb-industry-section {
    padding: 40px 16px;
  }

  .eb-title {
    font-size: 1.75rem;
  }

  .eb-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on mobile screens */
    gap: 14px;
  }

  .eb-desktop-break {
    display: none;
  }
}

@media (max-width: 480px) {
  .eb-card {
    padding: 20px 12px;
  }

  .eb-icon {
    font-size: 1.8rem;
  }

  .eb-card-title {
    font-size: 0.875rem;
  }
}


/* Section Scoped Styles */
    .g-testimonial-section {
      font-family: inherit;
      background-color: #ffffff;
      padding: 60px 20px;
      color: #202124;
    }

    .g-testimonial-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Google Rating Header (Matching Reference Image) */
    .g-rating-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .g-logo-text {
      font-size: 32px;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .g-blue { color: #4285F4; }
    .g-red { color: #EA4335; }
    .g-yellow { color: #FBBC05; }
    .g-green { color: #34A853; }

    .g-rating-score {
      font-size: 32px;
      font-weight: 700;
      color: #202124;
    }

    .g-header-stars {
      display: flex;
      gap: 4px;
      color: #FBBC05;
      font-size: 22px;
    }

    .g-rating-count {
      color: #70757a;
      font-size: 18px;
    }

    /* Testimonial Cards & Slider Layout */
    .g-testimonial-slider {
      padding-bottom: 45px !important;
    }

    .g-testimonial-card {
      background-color: #f8f9fa;
      border-radius: 16px;
      padding: 24px;
      box-sizing: border-box;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      border: 1px solid #f0f0f0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .g-testimonial-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    /* Header Profile inside Card */
    .g-card-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }

    .g-avatar-wrapper {
      position: relative;
      width: 48px;
      height: 48px;
      flex-shrink: 0;
    }

    .g-avatar-img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
    }

    .g-badge-icon {
      position: absolute;
      bottom: -2px;
      right: -2px;
      width: 18px;
      height: 18px;
      background-color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    .g-user-info {
      display: flex;
      flex-direction: column;
    }

    .g-user-name-wrap {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .g-user-name {
      font-size: 16px;
      font-weight: 700;
      color: #202124;
      margin: 0;
    }

    .g-verified-check {
      color: #1a73e8;
      font-size: 14px;
    }

    .g-post-date {
      font-size: 13px;
      color: #70757a;
      margin-top: 2px;
    }

    /* Star Rating Row */
    .g-card-stars {
      display: flex;
      gap: 3px;
      color: #FBBC05;
      font-size: 16px;
      margin-bottom: 14px;
    }

    /* Description Text */
    .g-card-text {
      font-size: 14px;
      line-height: 1.5;
      color: #3c4043;
      margin: 0;
    }

    /* Customizing Swiper Pagination Dots */
    .swiper-pagination-bullet {
      background: #bdc1c6;
      opacity: 1;
      width: 8px;
      height: 8px;
    }

    .swiper-pagination-bullet-active {
      background: #202124;
      width: 8px;
      height: 8px;
    }



  /* Container & Section Base */
.faq-custom-section {
  background-color: #f3f4f6;
  padding: 60px 20px;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  /* CSS Counter Reset */
  counter-reset: faq-counter;
}

.faq-custom-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 2-Column Desktop Grid */
.faq-custom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

/* Accordion Card Styles with Background & Left Alignment */
.faq-custom-card {
  background-color: #f8f9fa; /* Light grey card background */
  border-radius: 12px;
  padding: 24px;
  box-sizing: border-box;
  counter-increment: faq-counter;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-custom-card:hover {
  background-color: #f1f3f4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Interactive Header Toggle */
.faq-custom-toggle {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 0;
  text-align: left; /* Left Aligned */
}

/* Auto-numbering */
.faq-custom-toggle::before {
  content: counter(faq-counter, decimal-leading-zero) ".";
  font-size: 1.15rem;
  font-weight: 700;
  color: #0036AA;
  flex-shrink: 0;
}

.faq-custom-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: #202124;
  text-align: left; /* Left Aligned */
  flex: 1;
}

/* Plus to Minus Icon (Pure CSS Animation) */
.faq-custom-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-custom-icon::before,
.faq-custom-icon::after {
  content: '';
  position: absolute;
  background-color: #202124;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-custom-icon::before {
  width: 16px;
  height: 2px;
}

.faq-custom-icon::after {
  width: 2px;
  height: 16px;
}

/* CSS Hover & JS Active States for Plus-to-Minus Transition */
.faq-custom-card:hover .faq-custom-icon::after,
.faq-custom-card.is-open .faq-custom-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Accordion Open Transition (Smooth Height via CSS Grid) */
.faq-custom-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Trigger Open on Hover OR via JS Class */
.faq-custom-card:hover .faq-custom-content,
.faq-custom-card.is-open .faq-custom-content {
  grid-template-rows: 1fr;
}

.faq-custom-content-inner {
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5f6368;
  text-align: left; /* Left Aligned */
  padding-top: 0px;
  padding-left: 36px; /* Indents text underneath the auto-numbering */
  transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-custom-card:hover .faq-custom-content-inner,
.faq-custom-card.is-open .faq-custom-content-inner {
  padding-top: 14px;
}

/* Mobile & Tablet Responsive Layout */
@media (max-width: 991px) {
  .faq-custom-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Base Section Styles */
.contact-custom-section {
  padding: 80px 20px;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  color: #202124;
}

.contact-custom-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* 2-Column Responsive Grid */
.contact-custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left Column: Contact Details */
.contact-custom-info {
  display: flex;
  flex-direction: column;
}

.contact-custom-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.contact-custom-subtext {
  font-size: 1rem;
  line-height: 1.6;
  color: #5f6368;
  margin: 0 0 32px 0;
}

.contact-custom-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-custom-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-custom-icon {
  width: 46px;
  height: 46px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.contact-custom-text-wrap {
  display: flex;
  flex-direction: column;
}

.contact-custom-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #80868b;
}

.contact-custom-text,
.contact-custom-text a {
  font-size: 1rem;
  font-weight: 500;
  color: #202124;
  margin: 4px 0 0 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-custom-text a:hover {
  color: #4285f4;
}

/* Right Column: Form Container */
.contact-custom-form-wrapper {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-custom-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-custom-field {
  width: 100%;
}

/* Input & Textarea Fields */
.contact-custom-input,
.contact-custom-textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #202124;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-sizing: border-box;
  outline: none;
  transition: all 0.3s ease;
}

.contact-custom-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Custom Placeholder Styles */
.contact-custom-input::placeholder,
.contact-custom-textarea::placeholder {
  color: #9aa0a6;
  opacity: 1;
}

/* Input Focus States */
.contact-custom-input:focus,
.contact-custom-textarea:focus {
  background-color: #ffffff;
  border-color: #0b3db8;
  box-shadow: 0 0 0 4px rgba(66, 133, 244, 0.12);
}

/* Submit Button */
.contact-custom-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #C78401;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.25);
}

.contact-custom-submit-btn:hover {
  background-color: #0b3db8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(66, 133, 244, 0.35);
}

.contact-custom-submit-btn:active {
  transform: translateY(0);
}

/* Responsive View (Tablet & Mobile Stack) */
@media (max-width: 991px) {
  .contact-custom-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-custom-form-wrapper {
    padding: 30px 20px;
  }
}


/* Unique Section Namespace */
.os-solutions-section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.os-solutions-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Header Banner */
.os-header-wrapper {
  display: inline-block;
  padding: 10px 60px;
  margin-bottom: 50px;
}

.os-header-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0036AA;
  letter-spacing: 0.5px;
}

/* 6-Column Responsive Grid */
.os-grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px 15px;
  align-items: start;
}

/* Card Styling */
.os-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 10px;
  border-radius: 12px;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.os-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(22, 110, 131, 0.12);
}

.os-icon-box {
  color: #166e83;
  font-size: 3.2rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.os-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.35;
  text-align: center;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .os-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 20px;
  }
}

@media (max-width: 650px) {
  .os-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
  }
  
  .os-header-wrapper {
    padding: 8px 30px;
  }

  .os-header-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  .os-grid-container {
    grid-template-columns: 1fr;
  }
}


/* Custom Services Section Styles */
.custom-services-section {
  width: 100%;
  padding: 50px 20px;
  box-sizing: border-box;
}

.custom-services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Heading Style */
.custom-services-heading {
  color: #0036AA;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  font-family: inherit;
  margin-bottom: 40px;
  line-height: 1.3;
}

/* Grid Layout: 4 Cards in Desktop */
.custom-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Individual Card Styling */
.custom-services-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

/* Hover Effect */
.custom-services-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

/* Circle Icon Box Style */
.custom-services-icon-box {
  width: 75px;
  height: 75px;
  background-color: #d18b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(209, 139, 0, 0.2);
}

.custom-services-icon-box i {
  color: #ffffff;
  font-size: 28px;
}

/* Card Content Styling */
.custom-services-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px 0;
  font-family: inherit;
  line-height: 1.3;
}

.custom-services-card-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d18b00;
  margin: 0 0 12px 0;
  font-family: inherit;
}

.custom-services-card-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  font-family: inherit;
}

/* Responsive Media Queries */

/* Tablet View (3 Cards per row) */
@media screen and (max-width: 992px) {
  .custom-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Small Tablet View (2 Cards per row) */
@media screen and (max-width: 768px) {
  .custom-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .custom-services-heading {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
}

/* Mobile View (1 Card per row) */
@media screen and (max-width: 576px) {
  .custom-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .custom-services-card {
    padding: 24px 16px;
  }

  .custom-services-heading {
    font-size: 1.5rem;
  }
}