/* === Reset & Global === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Trebuchet MS', sans-serif;
  background: #ffffff;
  color: #1f2937;
  margin: 0;
  padding: 80px 0 0;
  font-size: 16px;
  font-weight: lighter;
  line-height: 1.6;
}

/* === Loader === */
/* === Loader === */
#loader,
#loading-spinner {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(8px); 
  -webkit-backdrop-filter: blur(8px); 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

/* Loader Logo */
.loader-logo {
  width: 100px;
  animation: bounceLogo 1.5s infinite alternate;
}

/* Loader Text */
.loader-text {
  font-size: 24px;
  color: #1f2937;
  margin-top: 10px;
  font-weight: bold;
}

/* Spinner Circle */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(31, 41, 55, 0.2);
  border-top: 5px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Hide Loader */
.hidden {
  display: none;
}

/* Bounce Animation */
@keyframes bounceLogo {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* === Header === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #3b3b3b;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(44, 1, 1, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: slideInFromTop 1s ease-in-out;
}


.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo img {
  width: 60px;
  transition: transform 0.5s ease;
}
.logo img:hover {
  transform: rotate(360deg);
}

/* === Navbar === */
nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
}
nav li a {
  color: #f3f4f5;
  text-decoration: none;
  font-size: 16px !important;
  padding: 10px 15px;
  display: block;
  transition: color 0.3s ease;
  position: relative;
}
nav li a:hover {
  color: #dc2626;
}
nav li a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #ef4444;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
nav li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* === Hover Mega Menu === */
.hover-trigger {
  position: relative;
}


.hover-content {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #3b3b3b;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
}

.hover-trigger:hover .hover-content,
.hover-content:hover {
  display: grid;
}



.hover-box {
  border: 1px solid #d1d5db;
  padding: 20px;
  border-radius: 8px;
  background: #494848;
  transition: 0.2s;
  color: #d9dbdf;
}
.hover-box:hover {
  background: #f9fafb;
  transform: scale(1.05);
}
.hover-box h3,
.hover-box h2 {
  font-size: 18px;
  margin-bottom: 8px;
}
.hover-box p {
  font-size: 16px;
  color: #afb1b4;
}

/* === Search Bar === */
.search-bar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-bar input {
  padding: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #1f2937;
  border-radius: 4px 0 0 4px;
  width: 250px;
}
.search-bar button {
  padding: 10px;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}
.search-bar button:hover {
  background: #1e3a8a;
}

/* === Hamburger Menu === */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
}
.hamburger-icon-bar {
  height: 4px;
  background: #2563eb;
  border-radius: 2px;
}
.hamburger-dropdown {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: #f3f4f6;
  z-index: 999;
  padding: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 #f1f5f9;
}
.hamburger-dropdown::-webkit-scrollbar {
  width: 6px;
}
.hamburger-dropdown::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 3px;
}
.hamburger-dropdown::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.hamburger-dropdown.open {
  display: block;
}
.hamburger-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hamburger-dropdown li {
  border-bottom: 1px solid #cbd5e1;
}
.hamburger-dropdown li a {
  color: #1f2937;
  text-decoration: none;
  display: block;
  padding: 12px 16px;
  font-weight: 500;
  background: #e5e7eb;
  transition: background 0.3s ease;
}
.hamburger-dropdown li a:hover {
  background: #d1d5db;
}

/* === Submenu === */
.submenu {
  display: none;
  background: #f3f4f6;
  padding: 5px 0 5px 20px;
  border-left: 2px solid #2563eb;
  margin-left: 30px !important;
}
.has-submenu:hover .submenu,
.has-submenu.open .submenu {
  display: block;
}
.submenu li {
  border-bottom: 1px solid #e5e7eb;
}
.submenu li a {
  font-size: 14px;
  background: #ffffff;
  padding: 10px 16px;
  color: #4b5563;
}
.submenu li a:hover {
  background: #f3f4f6;
  color: #111827;
}

/* === Main Section === */
main {
  flex: 1;
  width: 100%;
  padding: 10px 0;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 10px;
}
section {
  max-width: 100vw;
  overflow-x: hidden;
}




/*SPA Scroll*/
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.highlight-section {
    animation: pulseHighlight 1.5s ease-in-out;
    box-shadow: 0 0 15px #2a4bff;
    border-radius: 12px;
}

@keyframes pulseHighlight {
    0% { box-shadow: 0 0 0px rgba(42, 75, 255, 0.5); }
    50% { box-shadow: 0 0 15px rgba(42, 75, 255, 0.8); }
    100% { box-shadow: 0 0 0px rgba(42, 75, 255, 0.5); }
}





/* ===================HOME SECTION=================*/
#home-section {
  font-family: Arial, sans-serif;
  color: white;
  padding-bottom: 50px;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-bottom: 10px;
}


/* Hero Slide Backgrounds */
.bg-hero-1  { background-image: url('/sections/hero/aih.jpg'); }
.bg-hero-2  { background-image: url('/sections/hero/aig.jpg'); }
.bg-hero-3  { background-image: url('/sections/hero/wapps.jpg'); }
.bg-hero-4  { background-image: url('/sections/hero/webdv.jpg'); }
.bg-hero-5  { background-image: url('/sections/hero/mob.jpg'); }
.bg-hero-6  { background-image: url('/sections/hero/mobapps.jpg'); }
.bg-hero-7  { background-image: url('/sections/hero/macos.jpg'); }
.bg-hero-8  { background-image: url('/sections/hero/cybersec.jpg'); }
.bg-hero-9  { background-image: url('/sections/hero/cybsecurity.jpg'); }
.bg-hero-10 { background-image: url('/sections/hero/blockchain.jpg'); }
.bg-hero-11 { background-image: url('/sections/hero/blockch.jpg'); }
.bg-hero-12 { background-image: url('/sections/hero/robot.jpg'); }


.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: blur(3px);
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.hero-section h1 {
  font-size: 2.2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background-clip: text;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5), 0 4px 25px rgba(59, 60, 54, 0.8);
  animation: heroHeading3DAnimation 1.5s ease-in-out both;
}

.hero-section p {
  font-size: 1.2rem;
  font-weight: 300;
  color: white;
  background-clip: text;
  text-shadow: 3px 3px 15px rgba(9, 16, 8, 0.6);
  animation: heroParagraphAnimation 2s ease-in-out both;
  animation-delay: 0.5s;
}

@keyframes heroHeading3DAnimation {
  from { opacity: 0; transform: translateY(-30px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroParagraphAnimation {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Arrows & Dots */
.nav-arrows {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
}

.arrow {
  background-color: transparent;
  color: white;
  border: none;
  font-size: 0.8rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 10px;
  min-width: 40px;
  min-height: 40px;
}

.dots-container {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: lightgray;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: green;
}


/* Company Info Section – Revamped UI */
.company-info {
  background-color: #f8fafc;
  color: #0f172a;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.info-wrapper {
  max-width: 1140px;
  margin: auto;
  padding: 0 20px;
}

.section-block {
  margin-bottom: 80px;
}

.company-info h1 {
  font-size: 2rem;
  color: #1d4ed8;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-title {
  font-size: 1.5rem;
  color: #1e40af;
}

.section-description {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 760px;
}

/* Info Cards Grid */
.info-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Individual Card Styling */
.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background-color: #f9fafb;
}

.card-icon {
  flex-shrink: 0;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  font-size: 1.6rem;
}

/* Card Content */
.card-content h2 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  color: #1e293b;
}

.card-content p {
  margin: 0;
  font-size: 1rem;
  color: #334155;
  line-height: 1.5;
}

.card-meta {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.card-meta i {
  margin-right: 6px;
  color: #2563eb;
  font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .company-info h2 {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .card {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }

  .card-content h3 {
    font-size: 1.1rem;
  }

  .card-meta {
    font-size: 0.8rem;
  }
}





/* Trust Section */
.trust-section {
  padding: 30px 0;
  border-radius: 10px;
  text-align: center;
  background-color: #f0fdf4; /* soft greenish tint */
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}

.trust-section h1 {
  font-size: 2.5em;
  color: #059669; /* elegant emerald */
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-in-out;
}

.company-logos {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
  animation: moveLogos 20s linear infinite;
}

.company-logos img {
  width: 100px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.company-logos img:hover {
  opacity: 1;
}

@keyframes moveLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 30px)); }
}


/*---- Why WSpace AI ----*/
.why-wspace-ai {
  padding: 60px 0;
  border-radius: 10px;
  text-align: center;
  border: solid 1px #000;
}

.why-wspace-ai h1 {
  font-size: 2.5rem;
  color: #58bb26;
  margin-bottom: 30px;
  animation: why-fadeInUp 1s ease-in-out;
}

.why-wspace-ai p {
  font-size: 1.2rem;
  color: #827e7e;
  margin-bottom: 40px;
  text-align: start;
}

.why-wspace-ai .metrics {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.why-wspace-ai .metric {
  width: 220px;
  text-align: center;
  margin-bottom: 30px;
}

.why-wspace-ai .metric h2 {
  font-size: 3rem;
  color: #007bff;
  font-weight: bold;
  margin-bottom: 10px;
}

.why-wspace-ai .icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.why-wspace-ai .icon {
  text-align: center;
}

.why-wspace-ai .icon i {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 10px;
}

.why-wspace-ai .icon p {
  font-size: 1.2rem;
  color: #a09b9b;
}

@keyframes why-fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Future Section */
/* ========== Future Section ========== */
.future-section {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.05); /* Light frosted blur */
  backdrop-filter: blur(10px);
  border-radius: 16px;
  color: #1f2937;
  text-align: center;
  max-width: 1200px;
  margin: 60px auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 1s ease-in-out;
}

/* Heading */
.future-section h1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #0d6efd;
  font-weight: 700;
  letter-spacing: 0.5px;
}


/* FadeInUp Animation (if not defined yet) */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
  .future-section h2 {
    font-size: 1.8rem;
  }

  .talk-button {
    font-size: 1rem;
    padding: 12px 24px;
    width: 100%;
    max-width: 300px;
  }
}


/* Mobile Styles */
@media (max-width: 768px) {
  .company-info {
    padding: 15px;
  }

  .company-info h2,
  .why-wspace-ai h2,
  .future-section h2 {
    font-size: 1.5rem !important;
  }

  .hero-section {
    height: 300px;
  }

  .hero-section h1 {
    font-size: 1rem !important;
  }

  .hero-section p {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
    padding: 0 5px !important;
    max-width: 100%;
  }

  .info-cards {
    gap: 1rem;
  }

  .card-content h3 {
    font-size: 1rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }

  .card-meta {
    font-size: 0.75rem;
  }

  .card-icon i {
    font-size: 1.5rem;
  }

  .trust-section h2,
  .why-wspace-ai p,
  .talk-button {
    font-size: 1rem !important;
  }

  .why-wspace-ai .metric {
    width: 100% !important;
  }

  .talk-button {
    padding: 10px 20px !important;
  }
}



/*========================SERVICES SECTION============================*/

/* Main Section */
#services {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 15px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Section Header */
#services .section-header {
  text-align: center;
  margin-bottom: 15px;
}
#services .section-header h1,
#services h1 {
  font-size: 1.8rem;
  color: #111827;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
}

.service-content h2 {
  font-size: 1.5rem;
  color: #1f2937; /* Dark slate for readability */
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border-left: 4px solid #3b82f6;
  padding-left: 12px;
  text-align: center;
}


#services .subtitle,
#services p.subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  margin-top: 5px;
  text-align: center;
}

/* Service Grid */
.services-grid {
  width: 100%;
}

/* Individual Service Card */
.service-card {
  width: 100%;
  margin-bottom: 50px;
  padding: 25px 25px 30px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
}

/* Icon Block */
.service-icon {
  width: 60px;
  height: 60px;
  background-color: #3b82f6;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.8rem;
  text-align: center;
  line-height: 60px;
  float: left;
  margin-right: 20px;
}

/* Content */
.service-content {
  overflow: hidden;
}
.service-content h2 {
  font-size: 1.6rem;
  margin: 0 0 12px;
  color: #0f172a;
}
.service-content p {
  font-size: 1.05rem;
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* List Styling */
.service-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}
.service-content ul li {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 12px;
  position: relative;
  padding-left: 32px;
}
.service-content ul li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #facc15;
  font-size: 1rem;
}
.service-content ul li strong {
  color: #111827;
  font-weight: 600;
}

/* Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.95rem;
}
.comparison-table th,
.comparison-table td {
  padding: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
}
.comparison-table th {
  background-color: #f3f4f6;
  color: #1d4ed8;
  font-weight: 600;
}
.comparison-table td {
  color: #374151;
}
.comparison-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
.comparison-table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

/* Responsive */
@media (max-width: 768px) {
  #services {
    padding: 10px 5px;
  }

  #services .section-header h2 {
    font-size: 1.4rem;
  }

  .service-icon {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
  }

  .service-content {
    text-align: center;
  }

  .service-content h3 {
    font-size: 1.3rem;
  }

  .service-content p,
  .service-content ul li {
    font-size: 1rem;
  }

  .comparison-table th,
  .comparison-table td {
    font-size: 0.9rem;
    padding: 6px;
  }
}


/*<!-- ========== SERVICE DETAILS MODALS HIDDEN========== -->*/
/* === Service Detail Panel Styling === */
.service-details {
  display: none;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  background: #f9fafb;
  border-left: 5px solid #2563eb;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.service-details h1 {
  font-size: 1.75rem;
  color: #1d4ed8;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-details p {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-details ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-details li {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-left: 5px;
}

.service-details li i {
  color: #2563eb;
  font-size: 1.1rem;
  min-width: 20px;
}

/* Optional inner container (like a card inside) */
.details-inner {
  animation: fadeInUp 0.5s ease both;
}

/* Smooth animation on reveal */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .service-details {
    padding: 25px 20px;
    margin: 25px 10px;
  }

  .service-details h3 {
    font-size: 1.4rem;
  }

  .service-details p,
  .service-details li {
    font-size: 0.95rem;
  }
}



/* <!-- =======Custom Software Details======== -->*/

.section-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.lead-description {
  font-size: 1.1rem;
  color: #555;
}

.overview-grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 40px;
}
.overview-left {
  flex: 1 1 400px;
}
.overview-right {
  flex: 1 1 400px;
}
.illustration {
  width: 100%;
  max-width: 500px;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.tech-table th, .tech-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: left;
}
.tech-table th {
  background-color: #f4f4f4;
}

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.workflow-steps .step {
  background: #f0f7ff;
  padding: 12px 16px;
  border-radius: 8px;
  flex: 1 1 160px;
  text-align: center;
  font-size: 0.95rem;
}

.benefit-list {
  list-style: none;
  padding-left: 0;
}
.benefit-list li {
  margin-bottom: 10px;
}

.cta-section {
  margin-top: 40px;
  text-align: center;
}
.primary-btn {
  background-color: #2a4bff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .section-header h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .lead-description {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .overview-grid {
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
  }

  .overview-left,
  .overview-right {
    flex: 1 1 100%;
  }

  .illustration {
    max-width: 100%;
    height: auto;
  }

  .tech-table th,
  .tech-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .workflow-steps {
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }

  .workflow-steps .step {
    flex: 1 1 100%;
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  .benefit-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .cta-section {
    margin-top: 30px;
    padding: 0 10px;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}





/* <!-- ============== Cybersecurity and Threat Intelligence Details ============== -->*/
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.tool-item {
  background: #f0f7fa;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.comparison-table th, .comparison-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: left;
}
.comparison-table th {
  background-color: #e9f1ff;
}

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.workflow-steps .step {
  background: #fefefe;
  border: 1px dashed #ccc;
  padding: 12px 16px;
  border-radius: 8px;
  flex: 1 1 160px;
  text-align: center;
  font-size: 0.95rem;
}


@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 16px;
  }

  .tool-item {
    padding: 10px;
    font-size: 0.9rem;
  }

  .comparison-table {
    font-size: 0.9rem;
    margin-top: 16px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
  }

  .workflow-steps {
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }

  .workflow-steps .step {
    flex: 1 1 100%;
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}



/* ===================== Blockchain and Smart Contracts Styles ===================== */
.blockchain-section {
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.lead-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

/* Grid Layout */
.overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.overview-left {
  flex: 1 1 400px;
}
.overview-right {
  flex: 1 1 400px;
}
.illustration {
  width: 100%;
  max-width: 500px;
  display: block;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding-left: 0;
}
.feature-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

/* Table */
.tech-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 40px;
}
.tech-table th, .tech-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: left;
}
.tech-table th {
  background-color: #f4f4f4;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.tool-item {
  background: #f0f7fa;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
}

/* Workflow */
.workflow-section {
  margin-bottom: 40px;
}
.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.workflow-steps .step {
  background: #fefefe;
  border: 1px dashed #ccc;
  padding: 12px 16px;
  border-radius: 8px;
  flex: 1 1 160px;
  text-align: center;
  font-size: 0.95rem;
}

/* Benefits */
.benefits-section {
  margin-bottom: 40px;
}
.benefit-list {
  list-style: none;
  padding-left: 0;
}
.benefit-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

/* CTA */
.cta-section {
  margin-top: 40px;
  text-align: center;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.primary-btn {
  background-color: #2a4bff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.primary-btn:hover {
  background-color: #1e38cc;
}

/* ===================== Media Query for Tablets & Mobile ===================== */
@media (max-width: 768px) {
  .section-header h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .lead-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .overview-grid {
    flex-direction: column;
    gap: 24px;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .tool-item {
    padding: 10px;
    font-size: 0.9rem;
  }

  .tech-table th,
  .tech-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .workflow-steps {
    flex-direction: column;
    gap: 12px;
  }

  .workflow-steps .step {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .benefit-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .cta-section {
    margin-top: 30px;
    padding: 0 10px;
  }

  .cta-text {
    font-size: 1rem;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}



/* =================== AI & Machine Learning Styles =================== */
.ai-ml-section {
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.lead-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

/* Grid Layout */
.overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.overview-left {
  flex: 1 1 400px;
}
.overview-right {
  flex: 1 1 400px;
}
.illustration {
  width: 100%;
  max-width: 500px;
  display: block;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding-left: 0;
}
.feature-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

/* Table */
.tech-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 40px;
}
.tech-table th, .tech-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: left;
}
.tech-table th {
  background-color: #f4f4f4;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.tool-item {
  background: #f0f7fa;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
}

/* Workflow */
.workflow-section {
  margin-bottom: 40px;
}
.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.workflow-steps .step {
  background: #fefefe;
  border: 1px dashed #ccc;
  padding: 12px 16px;
  border-radius: 8px;
  flex: 1 1 160px;
  text-align: center;
  font-size: 0.95rem;
}

/* Benefits */
.benefits-section {
  margin-bottom: 40px;
}
.benefit-list {
  list-style: none;
  padding-left: 0;
}
.benefit-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

/* CTA */
.cta-section {
  margin-top: 40px;
  text-align: center;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.primary-btn {
  background-color: #2a4bff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.primary-btn:hover {
  background-color: #1e38cc;
}

/* ========== Media Query for Tablets & Mobile (≤768px) ========== */
@media (max-width: 768px) {
  .section-header h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .lead-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .overview-grid {
    flex-direction: column;
    gap: 24px;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .tool-item {
    padding: 10px;
    font-size: 0.9rem;
  }

  .tech-table th,
  .tech-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .workflow-steps {
    flex-direction: column;
    gap: 12px;
  }

  .workflow-steps .step {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .benefit-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .cta-section {
    margin-top: 30px;
    padding: 0 10px;
  }

  .cta-text {
    font-size: 1rem;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}



/* ===================== AI-Powered Robotics Styles ===================== */
.robotics-section {
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 1200px;
  margin: auto;
}

.section-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.lead-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.overview-left {
  flex: 1 1 400px;
}
.overview-right {
  flex: 1 1 400px;
}
.illustration {
  width: 100%;
  max-width: 500px;
  display: block;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}
.feature-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 40px;
}
.tech-table th, .tech-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: left;
}
.tech-table th {
  background-color: #f4f4f4;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.tool-item {
  background: #f0f7fa;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
}

.workflow-section {
  margin-bottom: 40px;
}
.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.workflow-steps .step {
  background: #fefefe;
  border: 1px dashed #ccc;
  padding: 12px 16px;
  border-radius: 8px;
  flex: 1 1 160px;
  text-align: center;
  font-size: 0.95rem;
}

.benefits-section {
  margin-bottom: 40px;
}
.benefit-list {
  list-style: none;
  padding-left: 0;
}
.benefit-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.cta-section {
  margin-top: 40px;
  text-align: center;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.primary-btn {
  background-color: #2a4bff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.primary-btn:hover {
  background-color: #1e38cc;
}

/* ========== Media Query for ≤768px ========== */
@media (max-width: 768px) {
  .section-header h1 {
    font-size: 1.5rem;
  }

  .lead-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .overview-grid {
    flex-direction: column;
    gap: 24px;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .tool-item {
    padding: 10px;
    font-size: 0.9rem;
  }

  .tech-table th,
  .tech-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .workflow-steps {
    flex-direction: column;
    gap: 12px;
  }

  .workflow-steps .step {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .benefit-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .cta-section {
    padding: 0 10px;
  }

  .cta-text {
    font-size: 1rem;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}



/* ===================== Edge AI and IoT Styles ===================== */
.edge-ai-section {
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 1200px;
  margin: auto;
}

.section-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.lead-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.overview-left {
  flex: 1 1 400px;
}
.overview-right {
  flex: 1 1 400px;
}
.illustration {
  width: 100%;
  max-width: 500px;
  display: block;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}
.feature-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 40px;
}
.tech-table th, .tech-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: left;
}
.tech-table th {
  background-color: #f4f4f4;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.tool-item {
  background: #f0f7fa;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
}

.workflow-section {
  margin-bottom: 40px;
}
.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.workflow-steps .step {
  background: #fefefe;
  border: 1px dashed #ccc;
  padding: 12px 16px;
  border-radius: 8px;
  flex: 1 1 160px;
  text-align: center;
  font-size: 0.95rem;
}

.benefits-section {
  margin-bottom: 40px;
}
.benefit-list {
  list-style: none;
  padding-left: 0;
}
.benefit-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.cta-section {
  margin-top: 40px;
  text-align: center;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.primary-btn {
  background-color: #2a4bff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.primary-btn:hover {
  background-color: #1e38cc;
}

/* ========== Media Query for ≤768px ========== */
@media (max-width: 768px) {
  .section-header h1 {
    font-size: 1.5rem;
  }

  .lead-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .overview-grid {
    flex-direction: column;
    gap: 24px;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .tool-item {
    padding: 10px;
    font-size: 0.9rem;
  }

  .tech-table th,
  .tech-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .workflow-steps {
    flex-direction: column;
    gap: 12px;
  }

  .workflow-steps .step {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .benefit-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .cta-section {
    padding: 0 10px;
  }

  .cta-text {
    font-size: 1rem;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}



/* ===================== Computer Vision Systems Styles ===================== */
.vision-section {
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 1200px;
  margin: auto;
}

.section-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.lead-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.overview-left {
  flex: 1 1 400px;
}
.overview-right {
  flex: 1 1 400px;
}
.illustration {
  width: 100%;
  max-width: 500px;
  display: block;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}
.feature-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 40px;
}
.tech-table th, .tech-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: left;
}
.tech-table th {
  background-color: #f4f4f4;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.tool-item {
  background: #f0f7fa;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
}

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.workflow-steps .step {
  background: #fefefe;
  border: 1px dashed #ccc;
  padding: 12px 16px;
  border-radius: 8px;
  flex: 1 1 160px;
  text-align: center;
  font-size: 0.95rem;
}

.benefit-list {
  list-style: none;
  padding-left: 0;
}
.benefit-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.cta-section {
  margin-top: 40px;
  text-align: center;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.primary-btn {
  background-color: #2a4bff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.primary-btn:hover {
  background-color: #1e38cc;
}

/* ========== Media Query for ≤768px ========== */
@media (max-width: 768px) {
  .section-header h1 {
    font-size: 1.5rem;
  }

  .lead-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .overview-grid {
    flex-direction: column;
    gap: 24px;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .tool-item {
    padding: 10px;
    font-size: 0.9rem;
  }

  .tech-table th,
  .tech-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .workflow-steps {
    flex-direction: column;
    gap: 12px;
  }

  .workflow-steps .step {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .benefit-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .cta-section {
    padding: 0 10px;
  }

  .cta-text {
    font-size: 1rem;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}








/*========================PRODUCTS SECTION============================*/
#products {
  color: #1e1e1e;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  text-align: left;
}

#products h1 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  color: #0066cc;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInSlide 1.5s ease-in-out;
}

.product-card {
  display: inline-block;
  vertical-align: top;
  width: 300px;
  margin: 10px;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #d8d8d8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card h2 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #005cbf;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  animation: slideInLeft 1.8s ease-in-out;
}

.product-card p {
  font-style: italic;
  font-size: 0.9rem;
  color: #666;
  margin-top: 2px;
  margin-bottom: 15px;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-card ul li {
  font-size: 14px;
  margin: 10px 0;
  color: #333;
  padding-left: 20px;
  position: relative;
  animation: fadeInUp 2s ease-in-out;
  transition: color 0.3s ease, transform 0.3s ease;
}

.product-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #005cbf;
  transition: transform 0.3s ease;
}


.product-card ul li:hover::before {
  transform: translateX(5px);
}

.product-card ul li a {
  color: #0066cc;
  text-decoration: underline;
}



@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  #products {
    padding: 10px 5px;
    margin: 10px auto;
    border-width: 1px;
    width: 100%;
  }

  #products h2 {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .product-card {
    width: 95%;
    display: block;
    margin: 8px auto;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .product-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
    letter-spacing: 1px;
  }

  .product-card p {
    font-size: 0.8rem;
    margin-top: 2px;
    margin-bottom: 10px;
  }

  .product-card ul li {
    font-size: 12.5px;
    margin: 6px 0;
    padding-left: 18px;
  }

  .product-card ul li::before {
    left: 0;
    font-size: 14px;
  }

  .product-card ul li:hover {
    transform: translateX(5px);
  }

  .product-card ul li:hover::before {
    transform: translateX(3px);
  }

  .product-card ul li a {
    font-size: 12.5px;
  }
}


/*========================PRODUCTS DETAILS WRAPPER SECTION HIDDEN============================*/
.products-details-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.product-details {
  display: none;
  padding: 40px 30px;
  background: #f0f2f5;
  border-left: 5px solid #005cbf;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.5s ease both;
}

.product-details h1 {
  font-size: 1.6rem;
  color: #0b58d4;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-details ul {
  padding-left: 0;
  list-style: none;
}

.product-details li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-details i {
  color: #005cbf;
  font-size: 1.1rem;
  min-width: 20px;
}

.product-details a {
  color: #0066cc;
  text-decoration: underline;
}

.product-details a:hover {
  color: #d63384;
}

@media (max-width: 768px) {
  .product-details {
    padding: 25px 20px;
    margin: 25px 10px;
  }

  .product-details h3 {
    font-size: 1.3rem;
  }

  .product-details li {
    font-size: 0.95rem;
  }
}



/* ===================== OmniAI Product Panel ===================== */
.omniAI-section {
  padding: 40px 20px;
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 1200px;
  margin: auto;
}

.section-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.lead-description {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}

.overview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.overview-left {
  flex: 1 1 400px;
}
.overview-right {
  flex: 1 1 400px;
}
.illustration {
  width: 100%;
  max-width: 500px;
  display: block;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}
.feature-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 40px;
}
.tech-table th, .tech-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: left;
}
.tech-table th {
  background-color: #f4f4f4;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.tool-item {
  background: #eef6ff;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
}

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.workflow-steps .step {
  background: #fefefe;
  border: 1px dashed #ccc;
  padding: 12px 16px;
  border-radius: 8px;
  flex: 1 1 160px;
  text-align: center;
  font-size: 0.95rem;
}

.benefit-list {
  list-style: none;
  padding-left: 0;
}
.benefit-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.cta-section {
  margin-top: 40px;
  text-align: center;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.primary-btn {
  background-color: #2a4bff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.primary-btn:hover {
  background-color: #1f38b6;
}

/* ========== Media Query for ≤768px ========== */
@media (max-width: 768px) {
  .section-header h1 {
    font-size: 1.5rem;
  }

  .lead-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .overview-grid {
    flex-direction: column;
    gap: 24px;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .tool-item {
    padding: 10px;
    font-size: 0.9rem;
  }

  .tech-table th,
  .tech-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .workflow-steps {
    flex-direction: column;
    gap: 12px;
  }

  .workflow-steps .step {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .benefit-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .cta-section {
    padding: 0 10px;
  }

  .cta-text {
    font-size: 1rem;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}


/* =================== RoboOptimize Panel Styles =================== */
.robooptimize-section {
  padding: 40px 20px;
  background: #fdfefe;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem; /* adds space between each section */
}

/* Intro Block */
.intro-block {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  background-color: transparent;
}

.intro-icon i {
  font-size: 3rem;
  color: #2c3e50;
}

.intro-text {
  flex: 1;
  min-width: 280px;
}

.intro-text h1 {
  font-size: 2rem;
  margin-bottom: 50px;
}

.intro-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

/* Core Capabilities */
.core-capabilities {
  padding-top: 15rem;
  border-top: 1px solid #e3e3e3;
}

.core-capabilities h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f76c2;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.cap-item {
  background: #e6f4ff;
  padding: 16px;
  border-radius: 8px;
  font-size: 0.95rem;
}

/* Use Case Table */
.usecase-table h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
}

.tech-table th, .tech-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: left;
}

.tech-table th {
  background: #f0f6fc;
}

/* System Diagram */
.robo-illustration h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.robo-illustration p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
}

.robo-illustration img.illustration {
  max-width: 100%;
  margin-top: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Tools Section */
.tools-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.tool-item {
  background: #f1faff;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-size: 0.95rem;
}

/* Benefits */
.benefits-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.benefit-list {
  list-style: none;
  padding-left: 0;
}

.benefit-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

/* CTA */
.cta-section {
  text-align: center;
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.primary-btn {
  background-color: #1f76c2;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.primary-btn:hover {
  background-color: #165aa0;
}

/* Responsive */
@media (max-width: 768px) {
  .intro-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .intro-text h1 {
    font-size: 1.5rem;
  }

  .intro-text p {
    font-size: 1rem;
  }

  .capability-grid,
  .tools-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .tech-table th,
  .tech-table td {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .benefit-list li {
    font-size: 0.95rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}


/* ================= API Access Panel ================= */
.api-access-section {
  padding: 40px 20px;
  background: #f9f9ff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  max-width: 1200px;
  margin: auto;
}

/* Header */
.api-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.api-icon i {
  font-size: 3rem;
  color: #3b73ff;
}
.api-intro h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.intro-description {
  font-size: 1.1rem;
  color: #444;
}

/* Features */
.developer-features h2 {
  margin-bottom: 16px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.feature-card {
  background: #eff4ff;
  padding: 16px;
  border-radius: 10px;
  text-align: left;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Access List */
.access-links {
  margin-bottom: 40px;
}
.access-links h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.access-list {
  list-style: none;
  padding-left: 0;
}
.access-list li {
  margin-bottom: 12px;
  font-size: 1rem;
}

/* Table */
.api-sample-table h2 {
  margin-bottom: 12px;
}
.tech-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.tech-table th, .tech-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: left;
  font-size: 0.95rem;
}
.tech-table th {
  background-color: #eaf0ff;
}
.tech-table code {
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 4px;
}

/* CTA */
.cta-section {
  text-align: center;
  margin-top: 40px;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.primary-btn {
  background-color: #3b73ff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.primary-btn:hover {
  background-color: #2a57cc;
}

/* ========== Media Query ========== */
@media (max-width: 768px) {
  .api-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .api-icon i {
    font-size: 2.5rem;
  }

  .api-intro h1 {
    font-size: 1.5rem;
  }

  .intro-description {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .access-list li {
    font-size: 0.95rem;
  }

  .tech-table th, .tech-table td {
    font-size: 0.9rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}


/* ================= Explore More Panel ================= */
.exploremore-section {
  padding: 40px 20px;
  background: #fefeff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  max-width: 1200px;
  margin: auto;
}

/* Intro */
.explore-intro {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.explore-icon i {
  font-size: 3rem;
  color: #2e89ff;
}
.explore-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.explore-text p {
  font-size: 1.1rem;
  color: #444;
}

/* Upcoming List */
.upcoming-section {
  margin-bottom: 40px;
}
.highlight-list {
  list-style: none;
  padding-left: 0;
}
.highlight-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

/* Case Studies Grid */
.case-studies {
  margin-bottom: 40px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.case-card {
  background: #f1f6ff;
  padding: 16px;
  border-radius: 10px;
}
.case-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.case-card p {
  font-size: 0.95rem;
  color: #444;
}

/* Roadmap Timeline */
.roadmap-section {
  margin-bottom: 40px;
}
.timeline {
  border-left: 3px solid #2e89ff;
  padding-left: 20px;
}
.timeline-item {
  margin-bottom: 20px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #2e89ff;
  border-radius: 50%;
}
.timeline-date {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 4px;
}
.timeline-event {
  font-size: 0.95rem;
  color: #333;
}

/* CTA */
.cta-section {
  text-align: center;
  margin-top: 40px;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.primary-btn {
  background-color: #2e89ff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.primary-btn:hover {
  background-color: #236fd9;
}

/* ========== Media Query ========== */
@media (max-width: 768px) {
  .explore-intro {
    flex-direction: column;
    align-items: flex-start;
  }
  .explore-icon i {
    font-size: 2.5rem;
  }
  .explore-text h1 {
    font-size: 1.5rem;
  }
  .explore-text p {
    font-size: 1rem;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .highlight-list li,
  .case-card p,
  .timeline-event,
  .cta-text {
    font-size: 0.95rem;
  }
  .timeline-date {
    font-size: 0.95rem;
  }
  .primary-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}









/*========================PRICING SECTION============================*/
.marketing-strategies {
    color: #121212;
    padding: 0;
    margin: 0 auto;
    background-color: #ffffff;
        width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


/* Headings */
.marketing-strategies h1,
.marketing-strategies h2 {
    color: #005cbf;
    text-align: center;
}

.marketing-strategies h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.marketing-strategies h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 1.2rem;
    text-align: start;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
}

.stress {
    font-weight: 700;
    color: #cc8800;
}

/* TALK BUTTON */
.talk-button {
    position: relative;
    display: inline-block;
    background: transparent;
    color: #222;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #00bfd5;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease;
}

.talk-button::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: linear-gradient(45deg, #e0f7fa, transparent, #b2ebf2, transparent);
    animation: move-border 2s linear infinite;
}


.talk-button:hover {
    color: #fff;
    background: #00bfd5;
}



/* Card/Grid Blocks */
.precision-ai,
.value-based-pricing,
.elite-memberships,
.roi-driven-ai,
.limited-offers,
.thought-leadership,
.ai-demos {
    padding: 20px;
    border-radius: 12px;
    background: #f7f9fa;
    border-left: 4px solid #ffc107;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    margin: 20px 0;
}

/* ICONS */
.icon {
    font-size: 5rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
    color: #0077cc;
}

/* Paragraphs */
.precision-ai p,
.value-based-pricing p,
.elite-memberships p,
.roi-driven-ai p,
.limited-offers p,
.thought-leadership p,
.ai-demos p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

/* List Styling */
.key-points {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.key-points li {
    font-size: 17px;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.key-points li:last-child {
    border-bottom: none;
}

/* Highlighted Text */
.highlight {
    color: #f39c12;
    font-weight: 600;
}

.highlight-number {
    color: #2ecc71;
    font-weight: 700;
}

.highlight-discount {
    color: #e74c3c;
    font-weight: 700;
}

.impact {
    color: #00bcd4;
    font-style: italic;
}

.consultation-benefits {
    margin-top: 10px;
    padding: 10px;
    background: #eef4f7;
    border-radius: 5px;
    color: #333;
}

.image-caption {
    font-size: 0.7em;
    color: #666;
    margin-top: 8px;
    padding: 8px;
    border-radius: 5px;
    text-align: start;
    font-style: italic;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #00bfd5;
    color: #fff;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
    text-decoration: none;
    justify-content: center;
    cursor: pointer;
}

.cta-button:hover {
    background: #00a6bb;
    transform: scale(1.05);
}

/* Join Community Button */
.join-community-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: white !important;
    background: #2e7d32;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

/* Tables */
.membership-table,
.roi-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.membership-table th,
.membership-table td,
.roi-table th,
.roi-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ccc;
    color: #333;
}

.membership-table th {
    background: #ffeb3b;
    color: #000;
}

.roi-table th {
    background: #ff7043;
    color: #fff;
}

.text-container h4 {
    font-size: 22px;
    color: #0066cc;
    margin-bottom: 10px;
}

.text-caption {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* AI Demo Table */
.demo-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
}

.demo-table th,
.demo-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    color: #333;
}

.demo-table th {
    background-color: #1976d2;
    color: #fff;
}

.demo-table tr:nth-child(even) {
    background-color: #f5f5f5;
}

/* CTA Description */
.cta-description {
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
    color: #333;
}

/* Modal */
/* ===== PRECISION AI CONSULTATION MODAL ONLY ===== */

/* Overlay Wrapper */
#consultationModal.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Modal Box */
#consultationModal .modal-content {
  position: relative;
  background: #ffffff;
  color: #121212;
  width: 100%;
  max-width: 520px;
  height: 75vh; /* slightly tighter */
  padding: 16px 20px; /* reduced padding */
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Close Button */
#consultationModal .modal-content .close {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 15px;
  color: #999;
  cursor: pointer;
}
#consultationModal .modal-content .close:hover {
  color: #000;
}

/* Heading */
#consultationModal .modal-content h3 {
  font-size: 1.1rem;
  text-align: center;
  margin: 6px 0 14px 0; /* tight top & bottom */
  color: #005cbf;
}

/* Form Group Layout */
#consultationModal .consultant-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  justify-content: center;
  width: 100%;
}

/* Form Fields */
#consultationModal .consultant-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 4px;
}

#consultationModal .consultant-form label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}

#consultationModal .consultant-form input,
#consultationModal .consultant-form textarea {
  font-size: 12px;
  padding: 6px 9px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #222;
  resize: vertical;
  transition: border-color 0.3s ease, background 0.3s ease;
}

#consultationModal .consultant-form input:focus,
#consultationModal .consultant-form textarea:focus {
  outline: none;
  border-color: #00bfd5;
  background: #f1fdff;
}

#consultationModal .consultant-form textarea {
  min-height: 70px;
  line-height: 1.4;
}

/* Submit Button */
#consultationModal .consultant-form button {
  background-color: #00bfd5;
  color: #fff;
  font-size: 13px;
  padding: 7px 14px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 6px;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

#consultationModal .consultant-form button:hover {
  background-color: #00a6bb;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  #consultationModal .modal-content {
    max-width: 92%;
    height: 90vh;
    padding: 14px 16px;
  }

  #consultationModal .consultant-form label {
    font-size: 12.5px;
  }

  #consultationModal .consultant-form input,
  #consultationModal .consultant-form textarea {
    font-size: 12px;
    padding: 6px 8px;
  }

  #consultationModal .consultant-form button {
    font-size: 12.5px;
    padding: 7px 12px;
  }
}



@media (max-width: 768px) {
  /* Headings */
  .marketing-strategies h2 {
    font-size: 1.4rem;
  }

  .marketing-strategies h3 {
    font-size: 1.2rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  /* Paragraphs */
  .precision-ai p,
  .value-based-pricing p,
  .elite-memberships p,
  .roi-driven-ai p,
  .limited-offers p,
  .thought-leadership p,
  .ai-demos p,
  .text-caption {
    font-size: 0.95rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  /* Key points */
  .key-points li {
    font-size: 15px;
  }

  /* Talk & CTA Buttons */
  .talk-button,
  .cta-button,
  .join-community-btn {
    font-size: 0.95rem;
    padding: 10px 18px;
  }

  /* Tables */
  .membership-table th,
  .membership-table td,
  .roi-table th,
  .roi-table td,
  .demo-table th,
  .demo-table td {
    font-size: 0.85rem;
    padding: 8px;
  }

  /* Sub-headings */
  .text-container h4 {
    font-size: 1.1rem;
  }

  .image-caption {
    font-size: 0.65rem;
  }

  /* Reduce image padding if needed */
  .precision-ai,
  .value-based-pricing,
  .elite-memberships,
  .roi-driven-ai,
  .limited-offers,
  .thought-leadership,
  .ai-demos {
    padding: 16px;
    margin: 14px 0;
  }
}






/* Images */
.container-images {
    display: block;
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

.image-container {
    display: inline-block;
    max-width: 450px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.precision-ai img,
.value-based-pricing img,
.elite-memberships img,
.roi-driven-ai img,
.limited-offers img,
.thought-leadership img,
.ai-demos img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}




/*======================== PRICING DETAILS WRAPPER ========================*/
.pricing-details-wrapper {
  display: none;
  padding: 0;
  background: #f5f7fa;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-detail {
  margin-bottom: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  user-select: text;
  transition: transform 0.3s ease;
}

.details-inner {
  pointer-events: auto;
}

/* Headings & icons */
.details-inner h1 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.details-inner h1 i {
  color: #2a4bff;
  font-size: 1.2rem;
}

/* List Items */
.key-points {
  margin-top: 20px;
  padding-left: 0;
}

.key-points li {
  margin-bottom: 14px;
  list-style: none;
  position: relative;
  padding-left: 26px;
  font-size: 1rem;
}

.key-points li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 1px;
  color: #2a4bff;
}

/* Highlights */
.highlight-discount {
  color: #d9534f;
  font-weight: bold;
}

.highlight-number {
  color: #28a745;
  font-weight: bold;
}

/* CTA Button Styling */
.cta-button {
  display: inline-block;
  margin-top: 20px;
  background: #2a4bff;
  color: white;
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #1a35cc;
}





/* ============= Precision AI & Tech Consultation ============= */
.consultation-section {
  padding: 40px 20px;
  background: #f9fbfe;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  max-width: 1200px;
  margin: auto;
}

/* Hero */
.consult-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
.hero-icon i {
  font-size: 3rem;
  color: #2a4bff;
}
.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.hero-text p {
  font-size: 1.1rem;
  color: #555;
}

/* Benefits */
.consult-benefits h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: #eef3ff;
  padding: 16px;
  border-radius: 10px;
}
.benefit-card i {
  font-size: 1.5rem;
  color: #3a60ff;
}
.benefit-card h3 {
  margin: 10px 0 6px;
  font-size: 1.1rem;
}
.benefit-card p {
  font-size: 0.95rem;
  color: #444;
}
.highlight-offer {
  background: #fff6e1;
}

/* Steps Timeline */
.consultation-steps {
  margin: 50px 0;
}
.steps-timeline .step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.step-number {
  background: #2a4bff;
  color: white;
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  margin-right: 16px;
}
.step-content h4 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}
.step-content p {
  font-size: 0.95rem;
  color: #555;
}

/* Image Gallery */
.visual-samples {
  margin-bottom: 40px;
}
.image-gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.image-card {
  flex: 1 1 300px;
}
.strategy-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}
.caption {
  font-size: 0.95rem;
  margin-top: 8px;
}

/* CTA */
.cta-section {
  text-align: center;
  margin-top: 40px;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.primary-btn {
  background-color: #2a4bff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.primary-btn:hover {
  background-color: #1e39cc;
}

/* ========== Media Query ========== */
@media (max-width: 768px) {
  .consult-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-icon i {
    font-size: 2.4rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p,
  .benefit-card p,
  .step-content p,
  .caption,
  .cta-text {
    font-size: 0.95rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .image-gallery {
    flex-direction: column;
  }

  .primary-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}


/* ============= Value-Based Pricing Styles ============= */
.value-pricing-section {
  padding: 40px 20px;
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Header Block */
.value-intro {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
.value-icon i {
  font-size: 3rem;
  color: #1e5aff;
}
.value-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.value-text p {
  font-size: 1.1rem;
  color: #444;
}

/* Benefits Grid */
.value-benefits h2 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.benefit-item {
  background: #f0f6ff;
  border-radius: 8px;
  padding: 16px;
}
.benefit-item i {
  font-size: 1.5rem;
  color: #2a4bff;
}
.benefit-item h3 {
  margin: 10px 0 6px;
}
.benefit-item p {
  font-size: 0.95rem;
}
.offer {
  background: #fff5df;
}

/* Comparison Table */
.comparison-section {
  margin: 50px 0;
}
.pricing-comparison {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.pricing-comparison th,
.pricing-comparison td {
  border: 1px solid #ccc;
  padding: 12px 16px;
  text-align: left;
}
.pricing-comparison th {
  background: #f3f7ff;
}

/* Visuals */
.visual-examples {
  margin-top: 40px;
}
.image-showcase {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.img-card {
  flex: 1 1 300px;
}
.strategy-img {
  width: 100%;
  border-radius: 8px;
}
.caption {
  font-size: 0.95rem;
  margin-top: 8px;
}

/* CTA */
.cta-section {
  text-align: center;
  margin-top: 40px;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.talk-button {
  background-color: #2a4bff;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.talk-button:hover {
  background-color: #1d42cc;
}

/* =========== Media Query =========== */
@media (max-width: 768px) {
  .value-intro {
    flex-direction: column;
    align-items: flex-start;
  }
  .value-icon i {
    font-size: 2.5rem;
  }
  .value-text h1 {
    font-size: 1.5rem;
  }
  .value-text p,
  .benefit-item p,
  .caption,
  .cta-text {
    font-size: 0.95rem;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .image-showcase {
    flex-direction: column;
  }
  .talk-button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}



/* === Elite Membership Section === */
.elite-membership-wrapper {
  padding: 40px 20px;
  background: #fefeff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.elite-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}
.elite-icon i {
  font-size: 3rem;
  color: #b486ff;
}
.elite-intro h1 {
  font-size: 2rem;
}
.elite-intro p {
  color: #444;
  font-size: 1.05rem;
}

/* Benefit Grid */
.elite-benefits h2 {
  margin-bottom: 20px;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.benefit-item {
  background: #f3f6fe;
  padding: 16px;
  border-radius: 8px;
}
.benefit-item i {
  color: #6b5afc;
  font-size: 1.6rem;
}
.benefit-item h3 {
  margin: 10px 0 6px;
}
.special-offer {
  background: #fff9e6;
}

/* Table */
.membership-comparison {
  margin-top: 40px;
}
.membership-table {
  width: 100%;
  border-collapse: collapse;
}
.membership-table th,
.membership-table td {
  border: 1px solid #ccc;
  padding: 12px 16px;
}
.membership-table th {
  background: #f0f5ff;
  text-align: left;
}

/* Training */
.training-section h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}
.training-section p {
  font-size: 1rem;
  margin-bottom: 12px;
}
.training-section .key-points li {
  margin-bottom: 8px;
}

/* Expert Quote */
.expert-quote {
  background: #f9f9fb;
  border-left: 4px solid #9975e3;
  padding: 20px;
  margin: 40px 0;
  font-style: italic;
}
.expert-quote blockquote {
  margin: 0;
}
.expert-quote cite {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

/* CTA */
.cta-section {
  text-align: center;
  margin-top: 30px;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.join-community-btn {
  background: #6e48ff;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}
.join-community-btn:hover {
  background: #5a39d4;
}

/* === Media Query (≤768px) === */
@media (max-width: 768px) {
  .elite-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .elite-icon i {
    font-size: 2.5rem;
  }
  .elite-intro h1 {
    font-size: 1.5rem;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .membership-table th,
  .membership-table td {
    font-size: 0.95rem;
  }
  .cta-text {
    font-size: 0.95rem;
  }
}



/* === ROI-Driven Growth Styling === */
.growth-wrapper {
  padding: 40px 24px;
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.growth-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.growth-icon i {
  font-size: 3rem;
  color: #2a4bff;
}
.growth-intro h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.growth-intro p {
  font-size: 1.05rem;
  color: #444;
}

/* Columns */
.growth-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}
.growth-left {
  flex: 1 1 400px;
}
.growth-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.growth-list i {
  color: #2a4bff;
  margin-right: 6px;
}

.cta-button {
  background: #2a4bff;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 20px;
}
.cta-button:hover {
  background: #1d38d3;
}

/* Image Panel */
.growth-right .image-panel {
  text-align: center;
}
.growth-img {
  max-width: 100%;
  border-radius: 10px;
}
.image-caption {
  font-size: 0.95rem;
  margin-top: 10px;
}

/* Text Container */
.text-container {
  margin-top: 30px;
}
.text-container h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.text-caption {
  margin-bottom: 15px;
  color: #555;
}

/* Table */
.impact-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.impact-table th, .impact-table td {
  border: 1px solid #ccc;
  padding: 12px 16px;
  text-align: left;
}
.impact-table th {
  background: #f3f8ff;
}

/* Final CTA */
.cta-section {
  margin-top: 40px;
  text-align: center;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.cta-button.filled {
  background-color: #28b66e;
}
.cta-button.filled:hover {
  background-color: #209a5c;
}

/* === Media Query ≤ 768px === */
@media (max-width: 768px) {
  .growth-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .growth-columns {
    flex-direction: column;
  }
  .growth-intro h1 {
    font-size: 1.6rem;
  }
  .cta-text {
    font-size: 0.95rem;
  }
  .impact-table th, .impact-table td {
    font-size: 0.95rem;
  }
}




/* === Limited Offers UI === */
.limited-offers .details-inner {
  padding: 40px 24px;
  background: #fefefe;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.offer-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.offer-header .header-icon i {
  font-size: 2.5rem;
  color: #ff9800;
}
.offer-header .header-text h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.offer-header .header-text p {
  font-size: 1rem;
  color: #444;
}

.offer-features .key-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.offer-features .key-points li {
  margin-bottom: 14px;
  font-size: 1rem;
}
.offer-features i {
  color: #2a4bff;
  margin-right: 6px;
}

.offer-table-section {
  margin-top: 30px;
}
.offer-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.offer-table th, .offer-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: left;
}
.offer-table th {
  background: #f3f8ff;
  font-weight: 600;
}
.offer-table i {
  margin-right: 6px;
  color: #4caf50;
}

.cta-section {
  text-align: center;
  margin-top: 40px;
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.talk-button {
  background-color: #2a4bff;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}
.talk-button:hover {
  background-color: #1e3ccf;
}

.container-images {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}
.image-container {
  flex: 1 1 280px;
}
.strategy-img {
  width: 100%;
  border-radius: 10px;
}
.image-caption {
  font-size: 0.95rem;
  margin-top: 8px;
  color: #555;
}

/* === Responsive Design: Max 768px === */
@media (max-width: 768px) {
  .offer-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .offer-header .header-icon i {
    font-size: 2rem;
  }
  .header-text h1 {
    font-size: 1.5rem;
  }
  .offer-table th, .offer-table td {
    font-size: 0.95rem;
    padding: 10px;
  }
  .cta-text {
    font-size: 1rem;
  }
  .container-images {
    flex-direction: column;
  }
}


/* ===== Thought Leadership Styling ===== */
.thought-leadership .details-inner {
  padding: 40px 24px;
  background: #fffefb;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.leadership-header {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}
.header-icon i {
  font-size: 2.5rem;
  color: #6a1b9a;
}
.header-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.header-text p {
  font-size: 1rem;
  color: #555;
}

.key-points {
  list-style: none;
  padding: 0;
}
.key-points li {
  margin-bottom: 14px;
  font-size: 1rem;
}
.key-points i {
  color: #2a4bff;
  margin-right: 6px;
}

.thought-table {
  margin-top: 30px;
}
.leadership-table {
  width: 100%;
  border-collapse: collapse;
}
.leadership-table th,
.leadership-table td {
  padding: 14px 16px;
  border: 1px solid #ccc;
  text-align: left;
  font-size: 0.95rem;
}
.leadership-table th {
  background-color: #f3f0ff;
  font-weight: 600;
}
.leadership-table td i {
  margin-right: 6px;
  color: #6a1b9a;
}

.thought-leadership-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}
.thought-box {
  flex: 1 1 280px;
  padding: 20px;
  border-radius: 12px;
  background: #f7f7f7;
  font-size: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}
.thought-box.circle {
  border-radius: 50px;
  background: #e3f2fd;
}
.thought-box.irregular {
  border-left: 5px solid #2a4bff;
  background: #fdf7ff;
}
.quote-author {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #777;
}

.cta-section {
  text-align: center;
  margin-top: 40px;
}
.cta-caption {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.cta-button {
  background-color: #6a1b9a;
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #53197f;
}

/* === Responsive for max-width 768px === */
@media (max-width: 768px) {
  .leadership-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-icon i {
    font-size: 2rem;
  }
  .header-text h1 {
    font-size: 1.5rem;
  }
  .leadership-table th, .leadership-table td {
    font-size: 0.9rem;
    padding: 10px;
  }
  .thought-leadership-container {
    flex-direction: column;
  }
  .cta-caption {
    font-size: 1rem;
  }
}



/* ============ Hands-On Demos ============ */
.ai-demos .details-inner {
  padding: 40px 24px;
  background: #fefefe;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

/* Header */
.demo-header {
  text-align: center;
  margin-bottom: 30px;
}
.demo-header i {
  font-size: 2.8rem;
  color: #2a4bff;
}
.demo-header h1 {
  font-size: 2rem;
  margin: 12px 0;
}
.demo-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Features List */
.demo-features h3 {
  margin-top: 30px;
  font-size: 1.4rem;
  color: #333;
}
.key-points {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}
.key-points li {
  margin-bottom: 12px;
  font-size: 1rem;
}
.key-points i {
  color: #2a4bff;
  margin-right: 6px;
}

/* Table */
.demo-table-wrapper {
  margin-top: 40px;
}
.demo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.demo-table th,
.demo-table td {
  padding: 14px 16px;
  border: 1px solid #ddd;
}
.demo-table th {
  background-color: #f4f7ff;
  font-weight: 600;
}
.highlight {
  color: #2a4bff;
  font-weight: 600;
}
.highlight-number {
  color: #e53935;
  font-weight: bold;
}

/* Flow Steps */
.demo-flow {
  margin-top: 50px;
}
.demo-flow h3 {
  font-size: 1.3rem;
}
.demo-steps {
  margin-top: 12px;
  list-style: none;
  counter-reset: demo;
  padding-left: 0;
}
.demo-steps li {
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
}
.demo-steps li::before {
  counter-increment: demo;
  content: counter(demo) ".";
  position: absolute;
  left: 0;
  color: #2a4bff;
  font-weight: bold;
}
.demo-steps i {
  color: #2a4bff;
  margin-right: 6px;
}

/* CTA */
.cta-section {
  margin-top: 50px;
  text-align: center;
}
.cta-description {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.cta-button {
  background: #2a4bff;
  color: white;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #1a35cc;
}

/* Media Query */
@media (max-width: 768px) {
  .demo-header h1 {
    font-size: 1.6rem;
  }
  .demo-header p,
  .cta-description {
    font-size: 1rem;
  }
  .demo-table th,
  .demo-table td {
    font-size: 0.9rem;
    padding: 10px;
  }
  .demo-steps li {
    font-size: 0.95rem;
  }
}








/*========================RESEARCH SECTION============================*/
/*======================== RESEARCH SECTION ============================*/
#research {
  text-align: center;
  margin: 40px auto;
  max-width: 1000px;
  padding: 40px 20px;
  background: #fefefe;
  border: 1px solid #ddd;
  border-radius: 10px;
}

#research h1 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

#research p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

/*======================== TILE WRAP ============================*/
.tilesWrap {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/*======================== INDIVIDUAL TILE ============================*/
.tilesWrap li {
  position: relative;
  z-index: 0;
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 30px 20px 60px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.tilesWrap li:before,
.tilesWrap li:after {
  content: '';
  position: absolute;
  z-index: -1;
}

.tilesWrap li:before {
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  transform: skew(2deg, 2deg);
  border-radius: 10px;
}

.tilesWrap li:after {
  width: 40%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.02);
}

/* Gradient Backgrounds */
.tilesWrap li:nth-child(1):before {
  background: linear-gradient(to right, #FFDEE9, #B5FFFC);
}

.tilesWrap li:nth-child(2):before {
  background: linear-gradient(to right, #fbc2eb, #a6c1ee);
}

.tilesWrap li:nth-child(3):before {
  background: linear-gradient(to right, #fddb92, #d1fdff);
}

.tilesWrap li:nth-child(4):before {
  background: linear-gradient(to right, #c2ffd8, #465efb);
}

/*======================== TEXT INSIDE TILE ============================*/
.tilesWrap li h2 {
  font-size: 114px;
  position: absolute;
  top: 100px;
  right: 10px;
  opacity: 0.08;
  color: #333;
  font-weight: bold;
  letter-spacing: 2px;
  transition: top 0.5s, opacity 0.5s;
  pointer-events: none;
}

.tilesWrap li h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #111;
}

.tilesWrap li p {
  font-size: 15px;
  line-height: 26px;
  color: #444;
  margin-bottom: 15px;
}

/*======================== IMAGE ============================*/
.tilesWrap li img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

/*======================== BUTTON ============================*/
.tilesWrap li button {
  display: inline-block;
  background: transparent;
  border: 1px solid #007bff;
  color: #007bff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  position: relative;
  transform: translateY(-40px);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
  z-index: 2;
  pointer-events: none; /* default disabled */
}

.tilesWrap li:hover button {
  transform: translateY(5px);
  opacity: 1;
  pointer-events: auto; /* enable on hover */
}

.tilesWrap li button:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 120%;
  top: 0;
  left: -140px;
  background: #007bff;
  border-radius: 0 20px 20px 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.tilesWrap li button:hover {
  color: #fff;
}

.tilesWrap li button:hover:before {
  left: 0;
  opacity: 1;
}

/*======================== TILE HOVER ============================*/
.tilesWrap li:hover h2 {
  top: 0;
  opacity: 0.15;
}

/*======================== RESPONSIVE ============================*/
@media (max-width: 768px) {
  #research {
    padding: 20px;
  }

  #research h2 {
    font-size: 1.8rem;
  }

  #research p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .tilesWrap {
    flex-direction: column;
    align-items: center;
  }

  .tilesWrap li {
    max-width: 100%;
    margin: 10px 0;
    padding: 20px 15px 60px;
  }

  .tilesWrap li h2 {
    font-size: 3rem;
    top: 30px;
    right: 20px;
  }

  .tilesWrap li p {
    font-size: 14px;
    line-height: 24px;
  }

  .tilesWrap li button {
    padding: 8px 16px;
  }
}


/*========================RESEARCH SECTION WRAPPER ============================*/

.research-details-wrapper {
  display: none;
  padding: 60px 20px;
  background: #f0f3f9;
  max-width: 1200px;
  margin: 0 auto;
}

.research-detail {
  margin-bottom: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.research-detail h1 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.research-detail h1 i {
  color: #2a4bff;
  font-size: 1.2rem;
}

.research-detail p {
  font-size: 1rem;
  margin-bottom: 16px;
}

.research-detail .key-points {
  padding-left: 0;
  margin-top: 12px;
}

.research-detail .key-points li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.research-detail .key-points li::before {
  content: '🧠';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 1rem;
}



.dispa-expanded {
  background: #fff;
  padding: 40px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', sans-serif;
}

/* Header */
.dispa-header h1 {
  font-size: 2rem;
  color: #2a4bff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dispa-header p {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #444;
}

/* Capability Boxes */
.capability-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.cap-box {
  flex: 1 1 240px;
  background: #f4f9ff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.cap-box i {
  font-size: 1.6rem;
  color: #2a4bff;
}
.cap-box h4 {
  margin-top: 10px;
  font-size: 1.1rem;
}
.cap-box p {
  font-size: 0.95rem;
  color: #555;
}

/* Table */
.comparison-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: left;
}
.comparison-table th {
  background: #edf3ff;
}
.highlight {
  color: #2a4bff;
  font-weight: bold;
}
.highlight-low {
  color: #27ae60;
  font-weight: bold;
}

/* Benefits List */
.highlight-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.highlight-list li {
  margin-bottom: 12px;
  font-size: 1rem;
}
.highlight-list i {
  color: #2a4bff;
  margin-right: 8px;
}

/* Quote Section */
.dispa-quote {
  background: #f9f9f9;
  padding: 20px;
  border-left: 4px solid #2a4bff;
  margin-top: 40px;
}
.dispa-quote blockquote {
  margin: 0;
  font-style: italic;
}
.dispa-quote i {
  font-size: 1.4rem;
  color: #2a4bff;
}
.quote-author {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

/* CTA */
.dispa-cta {
  text-align: center;
  margin-top: 40px;
}
.cta-button {
  background: #2a4bff;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}
.cta-button:hover {
  background: #1f38cc;
}

/* Responsive */
@media (max-width: 768px) {
  .capability-boxes {
    flex-direction: column;
  }
  .dispa-header h1 {
    font-size: 1.6rem;
  }
  .comparison-table th,
  .comparison-table td {
    font-size: 0.9rem;
  }
  .cta-button {
    width: 100%;
    font-size: 1rem;
  }
}



.carbontrack-expanded {
  background: #ffffff;
  padding: 40px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', sans-serif;
}

/* Header */
.carbontrack-header h1 {
  font-size: 2rem;
  color: #1b6b43;
  display: flex;
  align-items: center;
  gap: 10px;
}
.carbontrack-header p {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #444;
}

/* Capability Grid */
.capability-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.cap-box {
  flex: 1 1 240px;
  background: #f0f8f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.cap-box i {
  font-size: 1.6rem;
  color: #1b6b43;
}
.cap-box h4 {
  margin-top: 10px;
  font-size: 1.1rem;
}
.cap-box p {
  font-size: 0.95rem;
  color: #555;
}

/* Table */
.comparison-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
  text-align: left;
}
.comparison-table th {
  background: #e8f5e9;
}
.highlight {
  color: #1b6b43;
  font-weight: bold;
}

/* Benefits List */
.highlight-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.highlight-list li {
  margin-bottom: 12px;
  font-size: 1rem;
}
.highlight-list i {
  color: #1b6b43;
  margin-right: 8px;
}

/* Quote Section */
.carbontrack-pledge {
  background: #f4faf7;
  padding: 20px;
  border-left: 4px solid #1b6b43;
  margin-top: 40px;
}
.carbontrack-pledge blockquote {
  margin: 0;
  font-style: italic;
}
.carbontrack-pledge i {
  font-size: 1.4rem;
  color: #1b6b43;
}
.quote-author {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

/* CTA */
.carbontrack-cta {
  text-align: center;
  margin-top: 40px;
}
.cta-button {
  background: #1b6b43;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}
.cta-button:hover {
  background: #155f3c;
}

/* Responsive */
@media (max-width: 768px) {
  .capability-boxes {
    flex-direction: column;
  }
  .carbontrack-header h1 {
    font-size: 1.6rem;
  }
  .comparison-table th,
  .comparison-table td {
    font-size: 0.9rem;
  }
  .cta-button {
    width: 100%;
    font-size: 1rem;
  }
}


.robooptimize-section {
  background: #ffffff;
  padding: 40px 24px;
  border-radius: 12px;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.robooptimize-header h1 {
  font-size: 2rem;
  color: #2e3a59;
  display: flex;
  gap: 10px;
  align-items: center;
}
.robooptimize-header p {
  font-size: 1.1rem;
  color: #444;
  margin-top: 12px;
}

/* Feature Grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.feature-box {
  flex: 1 1 250px;
  background: #eef5fb;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.feature-box i {
  font-size: 1.6rem;
  color: #0b4c5f;
}
.feature-box h4 {
  margin-top: 10px;
  font-size: 1.1rem;
}
.feature-box p {
  font-size: 0.95rem;
  color: #555;
}

/* Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.comparison-table th, .comparison-table td {
  padding: 12px 16px;
  border: 1px solid #ccc;
}
.comparison-table th {
  background-color: #e9f2fa;
}
.highlight {
  color: #0b4c5f;
  font-weight: bold;
}
.highlight-number {
  color: #10863c;
  font-weight: bold;
}

/* Benefits List */
.highlight-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.highlight-list li {
  font-size: 1rem;
  margin-bottom: 10px;
}
.highlight-list i {
  color: #0b4c5f;
  margin-right: 8px;
}

/* Quote */
.robooptimize-quote {
  background: #f4fafe;
  border-left: 4px solid #0b4c5f;
  padding: 20px;
  margin-top: 40px;
}
.robooptimize-quote blockquote {
  margin: 0;
  font-style: italic;
}
.robooptimize-quote .quote-author {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

/* CTA */
.robooptimize-cta {
  text-align: center;
  margin-top: 40px;
}
.cta-button {
  background: #0b4c5f;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 12px;
}
.cta-button:hover {
  background: #083844;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
  }
  .robooptimize-header h1 {
    font-size: 1.6rem;
  }
  .cta-button {
    width: 100%;
  }
}


.omniai-section {
  background: #f9fcfe;
  padding: 40px 24px;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}
.omniai-header h1 {
  font-size: 2rem;
  color: #102a43;
  display: flex;
  align-items: center;
  gap: 12px;
}
.omniai-header p {
  font-size: 1.1rem;
  color: #444;
  margin-top: 12px;
}

/* Feature Cards */
.omniai-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.feature-card {
  flex: 1 1 250px;
  background: #eaf3fc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.feature-card i {
  font-size: 1.8rem;
  color: #0d3f67;
}
.feature-card h4 {
  margin-top: 10px;
  font-size: 1.1rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}
.comparison-table th,
.comparison-table td {
  border: 1px solid #ccc;
  padding: 12px 16px;
  text-align: left;
}
.comparison-table th {
  background: #dbeeff;
}
.highlight {
  color: #0c4969;
  font-weight: bold;
}
.highlight-number {
  color: #1c874d;
  font-weight: bold;
}

/* Quotes */
.quote-block {
  background: #eef8fc;
  border-left: 5px solid #1178ac;
  padding: 20px;
  font-style: italic;
  margin-top: 40px;
}
.quote-block i {
  color: #1178ac;
  margin-right: 10px;
}
.quote-author {
  display: block;
  font-weight: bold;
  margin-top: 10px;
  color: #333;
}

/* List */
.highlight-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}
.highlight-list li {
  font-size: 1rem;
  margin-bottom: 10px;
}
.highlight-list i {
  color: #1178ac;
  margin-right: 10px;
}

/* CTA */
.omniai-cta {
  text-align: center;
  margin-top: 40px;
}
.cta-button {
  background: #1178ac;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.cta-button:hover {
  background: #0a5f86;
}

/* Responsive */
@media (max-width: 768px) {
  .omniai-grid {
    flex-direction: column;
  }
  .cta-button {
    width: 100%;
    margin-top: 20px;
  }
  .omniai-header h1 {
    font-size: 1.5rem;
  }
}








/*========================RESOURCES SECTION============================*/
#resources {
  background-color: #f5f6fa;
  color: #212121;
  padding: 0;
  width: 100%;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#resources h1,
#resources h2,
#resources h3 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 0;
}

#resources h1 {
  font-size: 2.5rem;
  color: #2c3e50;
}

#resources > p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

/* ======================= */
/* Blog Section Container  */
/* ======================= */
#blogs {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
}

#blogs h2 {
  font-size: 30px;
  color: #2980b9;
  margin-bottom: 10px;
}

#blogs > p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}


.blog-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 15px;
}


.blog-preview {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}



.blog-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-preview h3 {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #2ecc71;
  background: none;
  -webkit-text-fill-color: initial;
}


.blog-preview p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 14px;
  text-align: left;
}


.blog-preview a {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #27ae60;
  border: 2px solid #27ae60;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: center;
}

.blog-preview a:hover {
  background-color: #27ae60;
  color: white;
}

/* ======================= */
/* Load More Button        */
/* ======================= */
#blogs button[type="button"] {
  display: block;
  margin: 25px auto 10px;
  padding: 10px 22px;
  font-size: 1rem;
  background-color: #2980b9;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

#blogs button[type="button"]:hover {
  background-color: #1a5276;
}

/* ======================= */
/* Responsive Design       */
/* ======================= */
@media (max-width: 768px) {
  .blog-image {
    height: 160px;
  }

  .blog-preview h3 {
    font-size: 1.1rem;
  }

  .blog-preview p {
    font-size: 0.95rem;
  }

  .blog-preview a {
    font-size: 0.9rem;
    padding: 7px 14px;
  }

  #blogs button[type="button"] {
    font-size: 0.95rem;
    padding: 9px 18px;
  }
}



/*<!-- =========WSPACEAI ACADEMY==============-->*/
.wspace-ai.academy {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #ffffff;
  text-align: center;
  box-sizing: border-box;
}

.wspace-ai.academy h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.wspace-ai.academy p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
}

/* Cards Wrapper */
.academy-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* Individual Card */
.academy-card {
  flex: 1 1 260px;
  max-width: 280px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.academy-card i {
  font-size: 2rem;
  color: #27ae60;
  margin-bottom: 12px;
}

.academy-card h3 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.academy-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Action Buttons */
.academy-actions {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px !important;
  width: 100%;
  justify-content: center;
  display: block;
}

.academy-link,
.academy-actions button {
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #27ae60;
  background: none;
  color: #27ae60;
  cursor: pointer;
  transition: all 0.3s ease;
}

.academy-link:hover,
.academy-actions button:hover {
  background-color: #27ae60;
  color: #fff;
}

/* ======================== */
/* Responsive Adjustments   */
/* ======================== */
@media (max-width: 768px) {
  .wspace-ai.academy {
    padding: 30px 15px;
  }

  .academy-cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .academy-card {
    width: 100%;
    max-width: 90%;
  }

  .wspace-ai.academy p {
    font-size: 1rem;
    padding: 0 10px;
  }
}



/*<!-- =========WSPACEAI ACADEMY HIDDEN WRAPPER==============-->*/
.wspace-ai.academy {
    width: 100%;
    margin: 50px auto;
    border-radius: 16px;
    background-color: #f8f9fa;
    padding: 40px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.wspace-ai.academy h2 {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.wspace-ai.academy h3 {
    font-size: 1.3rem;
    color: #007bff;
    text-align: center;
    margin: 25px 0 12px;
}

.wspace-ai.academy p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
    word-break: break-word;
    max-width: 100%;
}

/* === Icon List Scrolling Container === */
.icon-list-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin: 30px 0;
}

/* === Horizontal Icon List === */
.icon-list {
    display: flex;
    gap: 24px;
    width: max-content;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
    margin: 0 auto;
}

/* === Scroll Animations === */
@keyframes scroll-left {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}
@keyframes scroll-right {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.icon-list-container:nth-of-type(odd) .icon-list li {
    animation-name: scroll-left;
}
.icon-list-container:nth-of-type(even) .icon-list li {
    animation-name: scroll-right;
}

/* === List Item Styling === */
.icon-list li {
    display: inline-block;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    min-width: 200px;
    max-width: 300px;
    margin: 5px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    animation-duration: 16s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    white-space: normal;
    transition: transform 0.3s ease;
}

.icon-list li:hover {
    transform: translateY(-5px);
}

/* === Typography Inside Items === */
.icon-list li h3,
.icon-list li h4,
.icon-list li p {
    width: 100%;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    color: #333;
}

/* === Font Awesome Icons === */
.icon-list i {
    font-size: 50px;
    margin-bottom: 10px;
    padding: 10px;
}

/* === Image Icons === */
.icon-list img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    padding: 5px;
}

/* === Color Classes for Icons === */
/* Programming */
.fa-python { color: #366e9c; }
.fa-js { color: #f0db4f; }
.fa-java { color: #007396; }
.fa-cuttlefish { color: #6f42c1; }
.fa-html5 { color: #e44d26; }
.fa-css3-alt { color: #264de4; }
.fa-angular { color: #dd1b16; }

/* Cybersecurity */
.fa-shield-alt { color: #2980b9; }
.fa-laptop-code { color: #16a085; }
.fa-lock { color: #e67e22; }
.fa-balance-scale { color: #8e44ad; }
.fa-shield-virus { color: #c0392b; }

/* Data Science */
.fa-table { color: #f39c12; }
.fa-database { color: #34495e; }
.fa-chart-line { color: #27ae60; }
.fa-pie-chart { color: #8e44ad; }
.fa-robot { color: #3498db; }

/* === Visit Academy Button === */
.academy-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #007bff, #1abc9c);
    border-radius: 10px;
    border: none;
    margin: 40px auto 0;
    cursor: pointer;
    user-select: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
}

.academy-link:hover {
    background: linear-gradient(135deg, #0056b3, #148f77);
    transform: scale(1.05);
}

/* === MEDIA QUERIES === */
@media (max-width: 768px) {
    .wspace-ai.academy {
        padding: 20px 15px;
    }

    .wspace-ai.academy h2 {
        font-size: 1.5rem;
    }

    .wspace-ai.academy h3 {
        font-size: 1.1rem;
    }

    .wspace-ai.academy p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .icon-list {
        gap: 16px;
    }

    .icon-list li {
        min-width: 160px;
        max-width: 85vw;
        font-size: 14px;
        padding: 12px 8px;
    }

    .icon-list i,
    .icon-list img {
        font-size: 40px;
        width: 48px;
        height: 48px;
    }

    .academy-link {
        font-size: 15px;
        padding: 10px 22px;
        margin-top: 25px;
    }
}



/* Guides and Tutorials */
/* === Guides and Tutorials Section === */
.guides-tutorials {
  border-radius: 16px;
  margin: 40px auto;
  padding: 40px 30px;
  max-width: 1200px;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  text-align: center;
}

/* Headings */
.guides-tutorials h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #1e2a38;
}

.guides-tutorials h3 {
  font-size: 1.5rem;
  color: #007bff;
  margin: 30px 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.guides-tutorials p {
  font-size: 1.05rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* === Video Guides === */
.video-guide-container {
  width: 100%;
  margin-bottom: 50px;
}

.video-guide-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.video-card {
  width: 100%;
  max-width: 340px;
  background: #f9f9f9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #e5e5e5;
  text-align: left;
}

.video-card:hover {
  transform: translateY(-6px);
}

.video-thumb-wrapper {
  width: 100%;
}

.video-thumb {
  width: 100%;
  display: block;
  border-radius: 0;
}

.video-info {
  padding: 15px 20px;
}

.video-title {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 8px;
}

.video-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* === Written Guides === */
.written-guides {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #e0e0e0;
  position: relative;
  margin-top: 40px;
}



.written-guides::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, #ffc107, #fd7e14);
  border-radius: 4px;
}

.written-guides-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-item {
  background: #fefefe;
  padding: 18px;
  border-radius: 10px;
  border-left: 4px solid #ffc107;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: 0.3s ease;
}

.guide-item:hover {
  border-left-color: #fd7e14;
  background-color: #fdfdfd;
}

.guide-item h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #1e2a38;
}

.guide-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.guide-points {
  margin-top: 10px;
  padding-left: 18px;
  text-align: left;
  list-style: none;
}

.guide-points li {
  margin: 6px 0;
  font-size: 0.95rem;
  color: #333;
  position: relative;
  padding-left: 18px;
}

.guide-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}


.read-more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #0056b3;
}

/* CTA Button */
.guides-footer {
  margin-top: 30px;
}

.guides-cta-button {
  background: #343a40;
  color: #fff;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.guides-cta-button:hover {
  background: #23272b;
}

/* === Responsive === */
@media (max-width: 768px) {
  .video-guide-grid {
    flex-direction: column;
    align-items: center;
  }

  .video-card {
    max-width: 100%;
  }

  .guides-tutorials h2 {
    font-size: 1.6rem;
  }

  .guides-tutorials h3 {
    font-size: 1.25rem;
  }

  .guide-item h5 {
    font-size: 1.1rem;
  }

  .guide-item p,
  .video-description {
    font-size: 0.95rem;
  }

  .read-more,
  .guides-cta-button {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}



/* Ensure responsiveness */


/* Webinars Section */
/* === Webinars Section (White Theme) === */
.webinars {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.webinars h2 {
  text-align: center;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.upcoming-webinars h3,
.recorded-webinars h3 {
  font-size: 1.6rem;
  color: #0d6efd;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.5px;
}

.section-description {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

/* === Webinar Item Card === */
.webinar-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  padding: 25px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.webinar-item:hover {
  transform: translateY(-3px);
}

.webinar-info {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.webinar-info h4 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 15px;
}

/* === Webinar Details Box === */
.webinar-details-container {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 15px;
  background: #ffffff;
  margin-bottom: 15px;
}

.webinar-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
}

.webinar-detail-row:last-child {
  border-bottom: none;
}

.webinar-detail-row strong {
  width: 40%;
  color: #444;
  text-align: left;
}

.webinar-detail-row span {
  width: 60%;
  color: #555;
  text-align: left;
}

/* === Description === */
.webinar-description {
  font-size: 1rem;
  color: #444;
  text-align: left;
  margin-top: 10px;
}

/* === Image === */
.webinar-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.webinar-image img {
  max-width: 100%;
  border-radius: 10px;
  height: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* === Register Button === */
.register-button {
  display: block;
  width: 160px;
  padding: 10px 15px;
  background: transparent;
  border: 2px solid #0d6efd;
  color: #0d6efd;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 8px;
  margin: 20px auto 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.register-button:hover {
  background: #0d6efd;
  color: #fff;
}

/* === Modal === */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #ffffff;
  color: #222;
  margin: 8% auto;
  padding: 30px;
  border-radius: 14px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  text-align: left;
}

.modal-content h2 {
  text-align: center;
  color: #0d6efd;
  margin-bottom: 20px;
}

.close-button {
  color: #999;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
}

/* === Form === */
.register-form label {
  display: block;
  margin: 12px 0 5px;
  font-weight: bold;
  color: #444;
}

.register-form input,
.register-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fefefe;
  color: #333;
  font-size: 1rem;
}

.register-form input::placeholder {
  color: #aaa;
}

/* === Submit Button === */
.submit-button {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  font-size: 1.1rem;
  background: #0d6efd;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-button:hover {
  background: #0056b3;
}

/* === Recorded Webinars === */
.recorded-webinars {
  margin: 40px auto 0;
  width: 100%;
  max-width: 1200px;
  text-align: left;
}

.recorded-item {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.recorded-item video {
  flex: 1;
  max-width: 40%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 250px;
}

.recorded-info {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.recorded-info h4 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
}

.recorded-details {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
}

.recorded-description {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
}

/* === Watch Button === */
.watch-now {
  display: inline-block;
  padding: 10px 20px;
  background: #198754;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease-in-out;
  font-weight: bold;
}

.watch-now:hover {
  background: #157347;
}

/* === Responsive === */
@media (max-width: 768px) {
  .webinars,
  .recorded-webinars {
    padding: 20px;
  }

  .webinar-item,
  .recorded-item {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .webinar-info,
  .webinar-image,
  .recorded-info,
  .recorded-item video {
    width: 100%;
    max-width: 100%;
  }

  .modal-content {
    padding: 20px;
  }

  .submit-button {
    font-size: 1rem;
  }

  .register-button {
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
  }
}




/* Help Center Container */
.help-center {
  background-color: #ffffff;
  color: #2a2a2a;
  text-align: center;
  max-width: 1200px;
  margin: 50px auto 20px;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Heading */
.help-center h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Subtext */
.help-text {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #666;
}

/* Search Bar */
#help-search {
  width: 60%;
  padding: 15px;
  border-radius: 50px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #f8f8f8;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: block;
  margin: 0 auto 30px;
  transition: border-color 0.3s ease;
}

#help-search:focus {
  border-color: #0d6efd;
  outline: none;
}

/* FAQs Section */
.faqs h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0d6efd;
}

.faq-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0 auto;
  max-width: 800px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  background: #f1f3f5;
  color: #212529;
  border: none;
  padding: 12px 16px;
  width: 100%;
  text-align: left;
  font-size: 1.05rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.faq-question:hover {
  background-color: #e9ecef;
  color: #0d6efd;
}

.faq-answer {
  display: none;
  padding: 12px 18px;
  margin-top: 6px;
  border-radius: 8px;
  font-size: 1rem;
  color: #444;
  background: #fefefe;
  border-left: 4px solid #0d6efd;
}

/* Chat Button */
.chat-button {
  display: inline-block;
  margin: 30px auto 0;
  padding: 14px 40px;
  background-color: #0d6efd;
  color: #fff;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.chat-button:hover {
  background-color: #0a58ca;
  transform: translateY(-2px);
}


/* Media Query - Mobile */
@media (max-width: 768px) {
  .help-center {
    padding: 20px 10px;
    margin: 30px 10px;
  }

  .help-center h2 {
    font-size: 1.4rem;
  }

  .help-text {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  #help-search {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .faqs h3 {
    font-size: 1.1rem;
    text-align: center;
  }

  .faq-question {
    font-size: 1rem;
    padding: 8px;
  }

  .faq-answer {
    font-size: 0.95rem;
    padding: 8px 12px;
  }

  .chat-button {
    font-size: 1rem;
    padding: 10px 25px;
    width: 100%;
    max-width: 300px;
  }
}




/* Community Section */
.community {
  padding: 20px 10px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  color: #333;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  animation: fadeIn 1.2s ease-out;
  border: 1px solid #eee;
}


/* Heading */
.community h2 {
  font-size: 2.2rem;
  color: #0d6efd;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  animation: slideInFromTop 0.8s ease-out;
}

/* Paragraphs */
.community p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

/* Form Container */
.community-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Form Group */
.form-group {
  width: 100%;
  margin-bottom: 20px;
  animation: slideInFromBottom 0.8s ease-out forwards;
}

/* Labels */
.community-form label {
  font-size: 1rem;
  color: #222;
  margin-bottom: 8px;
  font-weight: 600;
  display: block;
  text-align: left;
}

/* Input Fields */
.community-form input {
  width: 100%;
  height: 48px;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #fdfdfd;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.community-form input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 6px rgba(13, 110, 253, 0.3);
  outline: none;
}

.community-form input::placeholder {
  color: #5c5959;
  font-style: italic;
}

/* Submit Button */
.community-submit-button {
  background-color: #0d6efd;
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  max-width: 300px;
  font-weight: bold;
  margin: 20px auto 0;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.community-submit-button:hover {
  background-color: #0a58ca;
  transform: translateY(-2px);
}

/* === Community Buttons Centering Fix === */
.view-more-btn-wrapper {
  text-align: center;
  margin-top: 25px;
}

.community-viewmore-button {
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: bold;
  background-color: #ffffff;
  color: #0d6efd;
  border: 2px solid #0d6efd;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.08);
}

.community-viewmore-button:hover {
  background-color: #0d6efd;
  color: #ffffff;
}

/* Utility Class for Hiding Labels (for accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInFromTop {
  0% { transform: translateY(-30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromBottom {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Responsive - Mobile First */
@media (max-width: 768px) {
  .community {
    padding: 30px 15px;
  }

  .community h2 {
    font-size: 1.7rem;
    margin-bottom: 18px;
  }

  .community p {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .community-form input {
    height: 44px;
    font-size: 0.98rem;
  }

  .community-submit-button {
    width: 100%;
    font-size: 1rem;
    padding: 12px 20px;
  }
}


/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideInFromTop {
  0% { transform: translateY(-30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromBottom {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Responsive - Mobile First */
@media (max-width: 768px) {
  .community {
    padding: 25px 12px;
  }

  .community h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .community p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .community-form {
    margin-top: 20px;
  }

  .community-form input {
    height: 42px;
    font-size: 0.95rem;
    padding: 10px;
  }

  .community-submit-button {
    font-size: 1rem;
    padding: 12px 20px;
    width: 100%;
    max-width: 100%;
  }
}




/* Consultant Form Container */
/* === Consultant CTA Intro === */
.consultant-form {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin: 30px auto;
  padding: 28px 22px;
  color: #212529;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: fadeIn 0.8s ease-out;
}

.consultant-form h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
  color: #0d6efd;
  font-weight: 700;
}

.consultant-form p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #444;
  text-align: start;
  max-width: 800px;
  margin: 0 auto 20px;
}

.consultant-cta-wrapper,
.view-more-btn-wrapper {
  text-align: center;
  margin-top: 25px;
}

.hire-consultant-toggle,
.view-more-btn-wrapper button {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 12px rgba(13, 110, 253, 0.15);
}

.hire-consultant-toggle:hover,
.view-more-btn-wrapper button:hover {
  background: linear-gradient(135deg, #0a58ca, #084298);
  transform: translateY(-2px);
}

/* === Modal Wrapper === */
.consult-form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 40px 20px;
}

.consult-form-modal.visible {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

/* === Modal Content === */
.modal-content {
  background: #fff;
  border-radius: 14px;
  max-width: 600px;
  width: 100%;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-in-out;
  position: relative;
}

.modal-content h3 {
  text-align: center;
  color: #0d6efd;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* === Close Button === */
.close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  background: transparent;
  border: none;
  color: #444;
  cursor: pointer;
}

/* === Form Fields === */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.consultant-form input,
.consultant-form textarea {
  padding: 12px 14px;
  font-size: 0.95rem;
  border: 1px solid #ced4da;
  border-radius: 8px;
  background-color: #fefefe;
  color: #212529;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.consultant-form input:focus,
.consultant-form textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 5px rgba(13, 110, 253, 0.2);
  background-color: #fff;
  outline: none;
}

.consultant-form input::placeholder,
.consultant-form textarea::placeholder {
  color: #adb5bd;
  font-style: italic;
}

.consultant-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* === Submit Button === */
#hire-consultant-form-inner button[type="submit"] {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 14px;
  cursor: pointer;
  width: 160px;
  margin: 0 auto;
  box-shadow: 0 5px 12px rgba(13, 110, 253, 0.15);
  transition: background 0.3s ease, transform 0.2s ease;
}

#hire-consultant-form-inner button[type="submit"]:hover {
  background: linear-gradient(135deg, #0a58ca, #084298);
  transform: translateY(-2px);
}

/* === Screen Reader Only === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === Fade Animation === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .consultant-form {
    padding: 10px 5px;
    margin: 10px 5px;
  }

  .consultant-form h2 {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }

  .consultant-form p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .consultant-cta-wrapper,
  .view-more-btn-wrapper {
    margin-top: 20px;
  }

  .hire-consultant-toggle,
  .view-more-btn-wrapper button,
  #hire-consultant-form-inner button[type="submit"] {
    width: 100%;
    font-size: 0.95rem;
    padding: 6px 10px;
  }

  .modal-content {
    padding: 10px 8px;
    max-width: 92%;
  }

  .modal-content h3 {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }

  .form-group {
    gap: 5px;
  }

  .consultant-form input,
  .consultant-form textarea {
    font-size: 0.9rem;
    padding: 10px 10px;
  }

  .consultant-form textarea {
    min-height: 100px;
  }

  .close-modal {
    top: 10px;
    right: 14px;
    font-size: 22px;
  }
}



/* === RESOURCE BUTTON STYLE === */
[data-resource] {
  display: inline-block;
  background: linear-gradient(to right, #2a4bff, #00bcd4);
  color: #fff;
  border: none;
  gap: 10px !important;
  width: 22%;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(42, 75, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

[data-resource]:hover {
  background: linear-gradient(to right, #00bcd4, #2a4bff);
  box-shadow: 0 6px 16px rgba(42, 75, 255, 0.3);
  transform: translateY(-2px);
}

[data-resource]::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: right 0.3s ease;
}

[data-resource]:hover::after {
  right: 16px;
}


@media (max-width: 768px) {
  [data-resource] {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 50px;
    text-align: center;
  }

  [data-resource]::after {
    right: 16px;
    font-size: 1.1rem;
  }
}





/* Partner Form Container */
.partner-form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  animation: fadeIn 1s ease-out;
  color: #333;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Headings */
.partner-form-container h2 {
  text-align: center;
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 20px;
  font-weight: 700;
  animation: slideIn 1s ease-out;
}

.partner-form-container h3 {
  font-size: 1.5rem;
  text-align: center;
  color: #198754;
  margin: 30px 0 15px;
  font-weight: 600;
}

/* Paragraphs */
.partner-form-container p {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Partner Program Options */
.program-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.program-card {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  background: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.program-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #f39c12;
  font-weight: 600;
}

.program-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

/* CTA Button */
.program-card .btn {
  display: inline-block;
  background-color: #0d6efd;
  color: #fff;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
}

.program-card .btn:hover {
  background-color: #0a58ca;
  transform: translateY(-2px);
}

/* Testimonials */
.partner-testimonials {
  margin-top: 20px;
}

.testimonial {
  background-color: #f1f3f5;
  border-radius: 10px;
  padding: 20px;
  margin: 10px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  color: #212529;
  max-width: 900px;
  text-align: center;
}

.testimonial em {
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
}

.testimonial h5 {
  margin-top: 15px;
  font-size: 1rem;
  color: #198754;
  font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  0% { transform: translateX(-30px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Media Query - Mobile Friendly */
@media (max-width: 768px) {
  .partner-form-container {
    padding: 25px 20px;
  }

  .partner-form-container h2 {
    font-size: 1.6rem;
  }

  .partner-form-container h3 {
    font-size: 1.25rem;
  }

  .partner-form-container p {
    font-size: 0.95rem;
  }

  .program-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .program-card h4 {
    font-size: 1.1rem;
  }

  .program-card p {
    font-size: 0.9rem;
  }

  .program-card .btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 10px;
  }

  .testimonial em {
    font-size: 1rem;
  }

  .testimonial h5 {
    font-size: 0.9rem;
  }
}



/*<!--==================== RESOURCES DETAILS WRAPPER ====================-->*/




/*<!-- ==================== Blogs Section ==================== -->*/
.resource-detail {
  padding: 40px 24px;
  background: #f7fbff;
  border-radius: 14px;
  font-family: 'Segoe UI', sans-serif;
}

.resource-detail h1 {
  font-size: 2rem;
  color: #0a2b4c;
  display: flex;
  align-items: center;
  gap: 12px;
}

.resource-detail .intro-text {
  margin-top: 10px;
  color: #444;
  font-size: 1.1rem;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.blog-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #dce7f1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.blog-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #7a7a7a;
  margin-bottom: 10px;
}

.blog-category i,
.blog-date i {
  margin-right: 6px;
  color: #3d7ebd;
}

.blog-title {
  font-size: 1.2rem;
  color: #18344f;
  margin: 8px 0;
}

.blog-summary {
  font-size: 0.96rem;
  color: #444;
  margin-bottom: 14px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-author i {
  color: #3d7ebd;
  margin-right: 6px;
}

.blog-read-link {
  background: #0d6efd;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.blog-read-link:hover {
  background: #094bb4;
}

/* Responsive Text Centering */
@media (max-width: 600px) {
  .blog-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}



/*<!-- =========WSPACEAI ACADEMY HIDDEN WRAPPER==============-->*/
.resource-detail {
  padding: 40px 24px;
  background: #f8fcff;
  border-radius: 14px;
  font-family: 'Segoe UI', sans-serif;
  width: 1200px;

  position: relative; /* or absolute/fixed if needed */
  left: 50%;
  transform: translateX(-50%); /* Correct centering */
  
  display: flex;
  justify-content: center;
  align-items: center;
}

.resource-detail h1 {
  font-size: 2rem;
  color: #123456;
  display: flex;
  align-items: center;
  gap: 10px;
}

.resource-detail .intro-text {
  font-size: 1.1rem;
  color: #444;
  margin-top: 10px;
}

.academy-highlights {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlight-badge {
  background-color: #e6f0ff;
  color: #0d3b66;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.courses-table-wrapper h3 {
  font-size: 1.3rem;
  margin: 20px 0 10px;
  color: #123456;
}

.courses-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.courses-table th,
.courses-table td {
  border: 1px solid #ccddef;
  padding: 12px 16px;
  text-align: left;
}

.courses-table th {
  background: #eaf3ff;
  color: #123456;
  font-weight: 600;
}

.text-green {
  color: #27ae60;
}

.academy-quote {
  margin-top: 30px;
  padding: 20px;
  background: #f1f6fc;
  border-left: 6px solid #3498db;
  border-radius: 8px;
  font-style: italic;
  color: #2c3e50;
}

.quote-author {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-style: normal;
}

.academy-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.enroll-button {
  background: #0066ff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.enroll-button:hover {
  background: #004ec4;
}

.academy-link {
  color: #0066ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 700px) {
  .academy-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}



/*<!-- =========GUIDE HIDDEN WRAPPER==============-->*/
.resource-detail {
  padding: 40px 24px;
  background: #f9fbff;
  border-radius: 14px;
  font-family: 'Segoe UI', sans-serif;
}

.resource-detail h1 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.2rem;
  color: #123456;
  margin-bottom: 10px;
}
.intro-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.badge {
  background: #e4efff;
  color: #1b4e9b;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.guide-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.tab {
  background: #edf4fa;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tab.active {
  background: #0b63ce;
  color: #fff;
}

.toc-section {
  margin-bottom: 30px;
}
.toc-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
  color: #444;
}
.toc-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.guide-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.guide-card:hover {
  transform: translateY(-5px);
}
.guide-icon {
  font-size: 1.6rem;
  color: #0d6efd;
  margin-bottom: 12px;
}

.read-link {
  display: inline-flex;
  align-items: center;
  color: #0b63ce;
  text-decoration: none;
  margin-top: 10px;
  font-weight: 500;
}
.read-link i {
  margin-left: 6px;
}

.guides-cta {
  background: #e9f2ff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}
.guides-cta h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cta-button {
  background: #0b63ce;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.cta-button:hover {
  background: #094aa3;
}

@media (max-width: 768px) {
  .guides-grid {
    grid-template-columns: 1fr;
  }
  .guide-tabs {
    flex-direction: column;
  }
}


/* Existing base styles remain unchanged above */

/* === Video Tutorial Section === */
.tutorial-video-section {
  background: #fff;
  border-left: 4px solid #0b63ce;
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.tutorial-video-section h3 {
  font-size: 1.4rem;
  color: #123456;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tutorial-video-section p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 16px;
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* === Tips / Pro Advice Box === */
.tips-box {
  background: #fff4e5;
  padding: 24px;
  border-left: 5px solid #ffa502;
  border-radius: 10px;
  margin-bottom: 40px;
}
.tips-box h4 {
  font-size: 1.2rem;
  color: #d35400;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tips-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.tips-box li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* === Comparison Table === */
.comparison-table {
  margin-top: 40px;
  overflow-x: auto;
}
.comparison-table h3 {
  font-size: 1.3rem;
  color: #123456;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 0.95rem;
}
.comparison-table th {
  background: #f2f6fa;
  color: #0b63ce;
  font-weight: 600;
}
.comparison-table td strong {
  color: #123456;
}

/* === Learning Outcomes === */
.learning-outcomes {
  margin-bottom: 30px;
  background: #f4faff;
  padding: 20px 24px;
  border-left: 4px solid #0b63ce;
  border-radius: 10px;
}
.learning-outcomes h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #0b63ce;
  display: flex;
  align-items: center;
  gap: 8px;
}
.learning-outcomes ul {
  padding-left: 0;
  list-style: none;
}
.learning-outcomes li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* === Responsive Enhancements === */
@media (max-width: 768px) {
  .video-wrapper {
    padding-bottom: 60%;
  }
  .comparison-table table, .comparison-table th, .comparison-table td {
    font-size: 0.9rem;
  }
  .tips-box,
  .tutorial-video-section,
  .learning-outcomes {
    padding: 18px;
  }
}




/* ========= WEBINAR SECTION ========== */
.webinar-section {
  margin-bottom: 60px;
}

.webinar-section h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #0b3a70;
  display: flex;
  align-items: center;
  gap: 10px;
}

.webinar-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.webinar-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.webinar-card:hover {
  transform: translateY(-6px);
}

/* Video Embed Container */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
}

/* Webinar Info */
.webinar-info {
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.webinar-info h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0b63ce;
}

.webinar-info p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.4;
}

.webinar-info i {
  color: #888;
  margin-right: 6px;
}

/* CTA in Webinar Section */
.guides-cta {
  background: #e9f2ff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 40px;
}

.guides-cta h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.cta-button {
  background: #0b63ce;
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 8px;
  margin-top: 14px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #094aa3;
}

/* Media Queries */
@media (max-width: 768px) {
  .webinar-section h2 {
    font-size: 1.5rem;
    text-align: left;
  }

  .webinar-card-grid {
    grid-template-columns: 1fr;
  }

  .webinar-info h4 {
    font-size: 1.1rem;
  }

  .cta-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .webinar-info {
    padding: 16px;
  }

  .webinar-info p {
    font-size: 0.9rem;
  }

  .guides-cta {
    padding: 20px;
  }

  .guides-cta h3 {
    font-size: 1.1rem;
  }
}


.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.community-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.community-card:hover {
  transform: translateY(-5px);
}
.community-icon {
  font-size: 1.6rem;
  color: #0d6efd;
  margin-bottom: 12px;
}

.community-stats-spotlight {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.stats-box, .spotlight-box {
  flex: 1;
  min-width: 280px;
  background: #f3faff;
  border-left: 4px solid #0b63ce;
  padding: 20px;
  border-radius: 12px;
}
.stats-box h3,
.spotlight-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.stats-box ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
}
.stats-box ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.member-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.member-card {
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1;
  min-width: 280px;
}
.member-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 16px;
  object-fit: cover;
}
.member-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #0b3a70;
}
.member-info p {
  font-size: 0.9rem;
  color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .community-stats-spotlight {
    flex-direction: column;
  }
  .member-grid {
    flex-direction: column;
  }
}


/*<!-- =========Consultant HIDDEN WRAPPER==============-->*/
.consultant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.consult-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}
.consult-card:hover {
  transform: translateY(-5px);
}
.consult-icon {
  font-size: 1.6rem;
  color: #0b63ce;
  margin-bottom: 10px;
}

.consult-benefits-box {
  background: #f0f6ff;
  padding: 30px;
  border-left: 4px solid #0b63ce;
  border-radius: 12px;
  margin-bottom: 40px;
}
.consult-benefits-box h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.consult-benefits-box ul {
  list-style: none;
  padding-left: 0;
}
.consult-benefits-box ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.form-preview {
  background: #ffffff;
  border: 1px solid #e0eafc;
  border-radius: 12px;
  padding: 24px;
  margin-top: 30px;
}
.form-preview h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.form-preview form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.consult-form input,
.consult-form select,
.consult-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
}
.consult-form button {
  background: #0b63ce;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.consult-form button:hover {
  background: #094aa3;
}

@media (max-width: 768px) {
  .consultant-grid {
    grid-template-columns: 1fr;
  }
}


/*========================PARTNERSHIP WRAPPER HIDDEN============================*/
.partnership-table-container {
  margin: 40px 0;
}
.partnership-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.partnership-table th,
.partnership-table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: center;
}
.partnership-table th {
  background: #0b63ce;
  color: #fff;
}
.partnership-table tr:nth-child(even) {
  background: #f9fbff;
}

.form-preview h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.consult-form input,
.consult-form select,
.consult-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
}
.consult-form button {
  background: #0b63ce;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}
.consult-form button:hover {
  background: #094aa3;
}

@media (max-width: 768px) {
  .partnership-table th,
  .partnership-table td {
    font-size: 0.85rem;
  }
  .partnership-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}







/*========================CONTACTS SECTION============================*/
#contacts {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  max-width: 800px;
  margin: 20px auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Heading */
#contacts h1 {
  color: #0d6efd;
  font-size: 26px;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
}

/* Description */
#contacts p {
  color: #555;
  text-align: start;
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Form Layout */
#contacts form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Form Group */
#contacts .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 6px;
}

/* Labels */
#contacts .form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

/* Input Fields */
#contacts .form-group input,
#contacts .form-group select {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  color: #333;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.2s ease;
}

/* Focus Effect */
#contacts .form-group input:focus,
#contacts .form-group select:focus {
  border-color: #0d6efd;
  outline: none;
  box-shadow: 0 0 4px rgba(13, 110, 253, 0.2);
  background-color: #fff;
}

/* Submit Button */
#contacts button[type="submit"] {
  background-color: #0d6efd;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

#contacts button[type="submit"]:hover {
  background-color: #0a58ca;
  transform: translateY(-2px);
}

/* Social Icons */
#contacts .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

#contacts .social-icons a {
  color: #666;
  font-size: 22px;
  transition: color 0.3s ease, transform 0.2s ease;
}

#contacts .social-icons a:hover {
  color: #0d6efd;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 600px) {
  #contacts {
    padding: 20px;
  }

  #contacts h1 {
    font-size: 18px;
  }

  #contacts p {
    font-size: 0.92rem;
    margin-bottom: 12px;
  }

  #contacts .form-group input,
  #contacts .form-group select {
    font-size: 0.92rem;
  }

  #contacts button[type="submit"] {
    font-size: 0.92rem;
    padding: 10px;
  }

  #contacts .social-icons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}




/*==================COMPANY SECTION==========================*/
/* ======= Company Section Styling ======= */
.company {
  width: 100%;
  background: #f5f7fa;
  padding: 20px 10px;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  top: 0;
}

.company .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.company h1 {
  font-size: 30px;
  color: #2a4bff;
  position: relative;

}

.company h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #2a4bff;
  display: block;
  margin: 10px auto 10px;
  border-radius: 2px;
}

.company-container {
  display: block;
}

.company-container > div {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.company-container > div:hover {
  transform: scale(1.015);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Front + Back style (as cards) */
.company-container .front,
.company-container .back {
  padding: 25px 30px;
  text-align: left;
  transition: background 0.3s ease;
}

.company-container .front {
  background: #f0f4ff;
  border-bottom: 1px solid #ccc;
}

.company-container .back {
  background: #ffffff;
}

.company-container h2 {
  font-size: 22px;
  color: #2a4bff;
  margin-bottom: 10px;
}

.company-container h2 i {
  margin-right: 8px;
  color: #1c2b8e;
}

.company-container p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Individual box styling enhancements */
.about h2 i { color: #0077b6; }
.faqs h2 i { color: #ff6f00; }
.policies h2 i { color: #6d28d9; }
.privacy h2 i { color: #dc2626; }
.terms h2 i { color: #4b5563; }
.news h2 i { color: #2563eb; }
.charter h2 i { color: #059669; }
.security h2 i { color: #0f766e; }
.residency h2 i { color: #ea580c; }
.careers h2 i { color: #1e40af; }

/* Responsive tweak */
@media screen and (max-width: 600px) {
  .company {
    padding: 0;
  }

  .company-container > div {
    margin: auto;
    padding: 0;
    width: 100% !important;
  }

  .company h1 {
    font-size: 20px;
  }

  .company-container h2 {
    font-size: 17px;
  }

  .company-container p {
    font-size: 12px;
  }
}


/* ================== COMPANY CONTAINER WRAPPER ========================== */

.company-container-wrapper {
  display: none;
  background-color: #f9fbfd;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
  animation: fadeIn 0.5s ease-in-out;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

/* ========== PANEL BOXES INSIDE WRAPPER ========== */
.company-container-wrapper > div {
  background-color: #ffffff;
  padding: 32px 30px;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.company-container-wrapper > div:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ========== TYPOGRAPHY STYLES ========== */
/* ========== TYPOGRAPHY STYLES ========== */

.company-container-wrapper h1 {
  font-size: 20px;
  color: #1b1f3b;
  text-align: center;
  font-weight: 800;
  margin-bottom: 25px;
  border-bottom: 2px solid #2a4bff;
  padding-bottom: 10px;
}

/* Headline with optional icon centered */
.company-container-wrapper h2 {
  font-size: 17px;
  color: #222c45;
  margin-bottom: 16px;
  font-weight: 700;
  justify-content: center;      /* Fix for flex centering */
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;           /* still needed for multiline text */
}

.company-container-wrapper h1 i {
  color: #2a4bff;
  font-size: 18px;
}

.company-container-wrapper h2 {
  font-size: 20px;
  font-weight: 600;
  color: #2a4bff;
  margin-bottom: 14px;
  text-align: center;
}

.company-container-wrapper h3 {
  font-size: 18px;
  font-weight: 600;
  color: #37406b;
  margin-bottom: 12px;
  text-align: start;
}

.company-container-wrapper p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
  text-align: start;
}

.company-container-wrapper strong {
  font-weight: 700;
  color: #1c1f38;
}

/* ========== LIST STYLES ========== */
.company-container-wrapper ul {
  list-style: disc inside;
  padding-left: 10px;
  margin-bottom: 20px;
}

.company-container-wrapper ul li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #444;
  padding-left: 4px;
}

.company-container-wrapper ul ul {
  margin-left: 20px;
  list-style-type: circle;
}

/* ========== HIGHLIGHT SECTION (FOR JS EFFECTS) ========== */
.company-container-wrapper .highlight-section {
  background: #fffbe6;
  border-left: 4px solid #ffc107;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.2);
  transition: all 0.4s ease;
}

/* ========== RESPONSIVE - TABLET 768px ========== */
@media (max-width: 768px) {
  .company-container-wrapper {
    padding: 0;
  }

  .company-container-wrapper .back-btn {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 15px;
    padding: 6px 10px;
    margin-bottom: 15px;
  }

  .company-container-wrapper > div {
    padding: 10px 8px;
    border-radius: 12px;
    margin-bottom: 25px;
  }

  .company-container-wrapper h1 {
    font-size: 24px;
  }

  .company-container-wrapper h1 {
    font-size: 20px;
    gap: 8px;
  }

  .company-container-wrapper h1 i {
    font-size: 16px;
  }

  .company-container-wrapper p,
  .company-container-wrapper ul li {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ========== ANIMATION ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  text-decoration: none;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
    font-size: 22px;
  }
}





/* ========== Footer (White Theme) ========== */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 20px;
  border-top: 1px solid #e0e0e0;
  color: #b9b5b5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  text-align: center;
  background: #221f1f !important;
  box-shadow: 0 2px 5px rgba(29, 16, 16, 0.08) !important;
}

/* Footer Text */
footer p {
  margin: 0;
  font-size: 1rem;
  color: #cac6c6;
}

/* Social Icons Container */
.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Social Icon Styling */
.social-icons .icon {
  font-size: 1.4rem;
  color: #ebe6e6;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons .icon:hover {
  color: #0d6efd;
  transform: scale(1.2);
}

/* Font Awesome Fix (Optional) */
.fas, .fab {
  font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands';
  font-weight: 900;
}


.footer-links {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.footer-links a {
  color: #ddd;
  margin: 0 8px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #fff;
}



/* Mobile Responsive */
@media (max-width: 600px) {
  footer {
    padding: 24px 16px;
  }

  .social-icons {
    gap: 14px;
  }

  .social-icons .icon {
    font-size: 1.2rem;
  }

  footer p {
    font-size: 0.95rem;
  }
}

/* === Responsive (≤768px) === */
@media (max-width: 768px) {
  nav { display: none !important; }
  .hamburger-menu { display: flex !important; }
  .hamburger-dropdown { top: 60px; }
  .search-bar input { width: 70%; }
  .search-bar { flex: 15.5; justify-content: center; }
  .logo img { width: 60px; }
  .hero-section { height: 300px !important; }
  .hero-section h1 { font-size: 1rem !important; }
  .hero-section p {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
    margin-top: 5px !important;
    padding: 0 5px !important;
    max-width: 100% !important;
  }

  .company-info { padding: 5px !important; }
  .olcards li { margin: 0.5rem 0 !important; }
  .company-info h2,
  .olcards li .content .title { font-size: 1rem !important; }
  .olcards li .content .text { font-size: 0.8rem !important; }
  .olcards li .icon { font-size: 1.8em !important; }

  .trust-section { padding: 20px 0 !important; border-radius: 10px !important; max-width: 100%; }
  .trust-section h2 { font-size: 1.2em !important; margin-bottom: 10px !important; }
  .company-logos { gap: 20px !important; }

  .why-wspace-ai {
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #000;
  }

  .why-wspace-ai h2 { font-size: 1.5rem !important; }
  .why-wspace-ai p { font-size: 1rem !important; }
  .why-wspace-ai .metric { width: 60% !important; margin-bottom: 10px !important; }
  .why-wspace-ai .metric h3 { font-size: 2rem !important; }
  .why-wspace-ai .icons { gap: 30px; margin-top: 20px !important; }
  .why-wspace-ai .icon i { font-size: 2rem !important; }
  .why-wspace-ai .icon p { font-size: 1.2rem; }

  .future-section { padding: 30px 0 !important; }
  .future-section h2 { font-size: 1.5rem !important; }
  .talk-button { padding: 10px 20px !important; font-size: 1rem !important; }

  footer { flex-direction: column; }
  .social-icons { margin-top: 10px; }
}

/* === Animations === */
@keyframes fadeInLoader { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes bounceLogo { 0% { transform: translateY(0); } 100% { transform: translateY(-15px); } }
@keyframes fadeInText { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes spin { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInFromLeft { from { opacity: 0; transform: translateX(-100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInFromTop { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: translateY(0); } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes bounceIn {
  0%, 20%, 50%, 80%, 100% { transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
  20% { transform: scale3d(1.1, 1.1, 1.1); }
  50% { transform: scale3d(0.9, 0.9, 0.9); }
  80% { transform: scale3d(1.03, 1.03, 1.03); opacity: 1; }
  100% { transform: scale3d(1, 1, 1); opacity: 1; }
}
@keyframes textZoom {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes rotateIn { from { opacity: 0; transform: rotate(-200deg); } to { opacity: 1; transform: rotate(0deg); } }
