/* Reset and basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}


    /* Top bar */
:root { --nav-h: 86px; } /* tweak 76–96px to taste */

.site-nav{
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  background: #0a2e65;
  box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 6px 18px rgba(0,0,0,.25);
}

.site-nav .nav-inner{
  max-width: 1280px; margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; /* vertically center everything */
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.4rem 1rem; /* was .6rem 1rem — lowered vertical padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Brand */
.brand{ display:inline-flex; align-items:center; gap:.25rem;
  font-size:1.6rem; font-weight:800; color:#fff; text-decoration:none; white-space:nowrap;
}
.brand .code{ color:#f4c542; }
.brand .care{ color:#fff; }

/* Desktop links (JS shows/hides) */
.links{ margin:0; padding:0; list-style:none; display:flex; align-items:center; gap:1.5rem; }
.links a{ color:#e9eef9; text-decoration:none; font-weight:500; font-size:.98rem; opacity:.95; transition:opacity .18s,color .18s; }
.links a:hover{ color:#9cc3ff; opacity:1; }

/* Hamburger (JS shows/hides) */
/* .menu-toggle span{ display:block; height:2px; background:#fff; margin:6px 0; width:100%; transition:transform .25s, opacity .25s; } */
/* Hamburger button */



/* Drawer + scrim */
.mobile-drawer{
  position:fixed; top:0; right:0; bottom:0; width:78%;
  max-width:340px; background:#0b1e33; color:#fff;
  transform:translateX(100%); transition:transform .28s ease; z-index:1001;
  padding:4.5rem 1.25rem 1.25rem;
  box-shadow:-14px 0 28px rgba(0,0,0,.35);
}
.mobile-drawer ul{ list-style:none; margin:0; padding:0; }
.mobile-drawer li{ border-bottom:1px solid rgba(255,255,255,.08); }
.mobile-drawer a{ display:block; padding:.9rem .25rem; color:#fff; text-decoration:none; font-size:1.05rem; }
.mobile-drawer a:hover{ background:rgba(255,255,255,.06); }
.mobile-drawer.open{ transform:translateX(0); }

.scrim{
  position:fixed; inset:0; background:rgba(0,0,0,.45);
  opacity:0; pointer-events:none; transition:opacity .28s ease; z-index:1000;
}
.scrim.show{ opacity:1; pointer-events:auto; }

.logo{
  font-size:1.4rem; font-weight:700; color:#fff; text-decoration:none;
  display:flex; align-items:center; white-space:nowrap;
}
.logo .code{ color:#f4c542; }   /* gold */
.logo .care{ color:#fff; }

/* reset the UL so it doesn't push down */
.nav-links{
  list-style:none; display:flex; align-items:center; gap:1.75rem;
  margin:0; padding:0;           /* <-- important */
  white-space:nowrap;            /* keep on one line when possible */
}
.nav-links a{
  color:#fff; text-decoration:none; font-weight:500;
  opacity:.95; transition:color .2s ease, opacity .2s ease;
}
.nav-links a:hover{ color:#9cc3ff; opacity:1; }



/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('/static/img/p1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(1px);
  z-index: 1;
}
/* :root{
  --header-h: 60px;      
  --menu-bg: #4c66af;    
} */




.dropmenu-links li{ margin: 0; }
.dropmenu-links a{
  display: block;
  padding: .85rem 1.1rem;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: .2px;
}
.dropmenu-links a:hover{
  background: rgba(255,255,255,.08);
}



/* optional: prevent body scroll when menu is open */
body.noscroll{ overflow: hidden; }



.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: left;
  max-width: 800px;
  padding: 2rem;
}
.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 600;
}

/* Arrows */
.arrows {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 2;
}
.arrow-btn {
  background: none;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s;
}
.arrow-btn:hover {
  background: white;
  color: black;
}


/* Default: hidden and offscreen to the right */
/* Base styles */



/* Height you want */
:root { --nav-h: 72px; } /* try 64–76px to taste */

/* Top bar */
.site-nav{
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  background: #0a2e65;
  box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 6px 18px rgba(0,0,0,.25);
}
.site-nav .nav-inner{
  max-width: 1280px; margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.25rem;                 /* tighter vertical feel */
}

/* Brand */
.brand{
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: 1.6rem; font-weight: 800; color: #fff; text-decoration: none;
  white-space: nowrap;
}
.brand .code{ color:#f4c542; }
.brand .care{ color:#fff; }

/* Desktop links (if you show them on wide screens) */
.links{
  margin: 0; padding: 0; list-style: none;
  display: flex; align-items: center; gap: 1.5rem;
}
.links a{
  color:#e9eef9; text-decoration:none; font-weight:500; font-size:.98rem;
  opacity:.95; transition:opacity .18s,color .18s;
}
.links a:hover{ color:#9cc3ff; opacity:1; }

/* Hamburger button (visible) */
.menu-toggle{
  display: flex; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
  width: 60px; height: 100px;   /* matches bar height */
  padding: 0; z-index: 1100;
}
/* three bars */
.menu-toggle span{
  display: block; width: 30px; height: 3px;       /* shorter, thinner bars */
  background: #fff; border-radius: 2px;
  margin: 7px 0; transition: transform .25s, opacity .25s;
}


.overlay-menu.active {
  display: flex;
}

.overlay-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 100vh;
  padding: 3rem 4rem;
  gap: 2rem;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

/* --- What's New floating badge --- */
.wn-badge{
  position:fixed;
  right:24px;
  bottom:24px;                     /* change to 'top:24px' if you prefer top */
  z-index:9999;
  display:flex; flex-direction:column; gap:4px;
  max-width:min(90vw, 420px);
  padding:12px 14px;
  border-radius:14px;
  background:#111827;              /* dark slate */
  color:#fff;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.12);
  animation:wn-bob 2.8s ease-in-out infinite;  /* up-down motion */
}

.wn-title{
  font:700 13px/1.1 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial;
  letter-spacing:.04em;
  color:#fde68a;                   /* warm highlight */
  text-transform:uppercase;
}

.wn-text{
  font:500 14px/1.35 ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial;
  color:#e5e7eb;
}

@keyframes wn-bob{
  0%,100%{ transform:translateY(0) }
  25%    { transform:translateY(-7px) }
  50%    { transform:translateY(0) }
  75%    { transform:translateY(7px) }
}

/* Smaller on phones */
@media (max-width:520px){
  .wn-badge{ right:12px; bottom:12px; padding:10px 12px; }
  .wn-text{ font-size:13px; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  .wn-badge{ animation:none }
}

.overlay-links {
  list-style: none;
  padding-left: 0;
  counter-reset: section;
  /* font-family: 'Poppins', sans-serif !important; */
  /* font-family: 'Courier New'; */
  /* font-family: 'Jost', sans-serif; */
  /* font-family: 'Century Gothic'; */
  font-family: 'Times New Roman', Times, serif;
}

.overlay-links li {
  display: flex;
  align-items: baseline;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.4rem;
  padding-left: 1rem;
  color: #ffffff;
  line-height: 1.2;
  position: relative;
}

.overlay-links li::before {
  content: counter(section, decimal-leading-zero) ".";
  counter-increment: section;
  font-size: 1rem;
  color: #f07c75;
  font-weight: 400;
  margin-right: 1.5rem;
  display: inline-block;
  width: 2rem;
  text-align: right;
}
/* .overlay-links {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: section;
}
.overlay-links li {
  font-size: 0.5rem;
  font-family: 'Jost', sans-serif;
  align-items: center;
  margin-bottom: 1.0rem;
  position: relative;
  padding-left: 2.8rem;
  color: #e2e8f0;
  counter-increment: section;
  line-height: 2.0;
}

.overlay-links li::before {
  content: counter(section, decimal-leading-zero) ".";
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 0.8rem;
  color: #ff8686;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 1.0rem;
} */



.overlay-links li a {
  text-decoration: none;
  color: inherit;
  letter-spacing: -0.2px;
}

.overlay-links a {
  text-decoration: none;
  color: white;
  font-size: 1.9rem;
  font-weight: 500;
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
.overlay-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  color: white;
  font-size: 1rem;
  font-weight: 400;
  gap: 1rem;
  line-height: 1.5;
  margin-top: 2rem;
  padding-right: 2rem;
  width: 100%;
  max-width: 300px;
  word-break: break-word;
}

.overlay-contact p {
  margin: 0.2rem;
  font-size: 0.95rem;
  font-family: 'Courier New';
}
.overlay-contact strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #fff;
}
.search-box {
  margin-top: 2rem;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  width: 100%;
  max-width: 250px;
  border: none;
  border-radius: 3px;
}
.overlay-content {
  display: flex;
  align-items: flex-start;
  padding: 3rem 4rem;
  gap: 4rem; /* add more space between the left and right columns */
  /* flex-wrap: wrap; */
}
.info-section {
  background-color: #fff;
  padding: 4rem 2rem;
}

.info-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: #f9f9f9;
  flex: 1 1 280px;
  padding: 2rem;
  border-radius: 5px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.info-icon {
  width: 70px;
  margin-bottom: 1.5rem;
}

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.95rem;
  color: #333;
}

.info-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #000;
}
.mission-section {
  background: #fff;
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}

.mission-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
  align-items: flex-start;
}

.mission-left {
  flex: 1 1 45%;
}

.mission-left h5 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 1rem;
  position: relative;
}

.mission-left h5::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
}

.mission-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.impact-btn {
  padding: 0.8rem 1.5rem;
  border: 1px solid #111;
  background: transparent;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
}

.mission-right {
  flex: 1 1 45%;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

.know-more {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.know-more .line {
  width: 50px;
  height: 1px;
  background: #000;
  margin-right: 1rem;
}

.know-text {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.category-tiles {
  padding: 3rem 2rem;
  background: #fff;
  display: flex;
  justify-content: center;
}

.tiles-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tile {
  width: 120px;
  height: 120px;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.tile:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

/* Specific colors */
.tile.tech {
  background-color:  #4A90E2;
  color: #fff;
}
/* #7e57c2   #f57373   #d8f2fd  #d2d8f6  #6ec3e9 */
.tile.staffing {
  background-color: #06D6A0;
  color: #fff;
}

.tile.supply {
  background-color: #6C63FF;
  color: #333;
}

.tile.consulting {
  background-color: #FFD166;
}

.tile.hospital {
  background-color: #EF476F;
  color: #fff;
}
.margin-improvement {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10%;
  background-color: #fff;
  flex-wrap: wrap;
}

.margin-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.margin-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
}

.margin-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
  font-family: 'Jost', sans-serif;
}

.margin-icon {
  flex: 1 1 30%;
  text-align: right;
}

.margin-icon img {
  max-width: 120px;
  height: auto;
}

.btn-outline {
  padding: 12px 30px;
  border: 1px solid #000;
  background: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline:hover {
  background-color: #000;
  color: #fff;
}
/* .ethos-section {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
} */
.ethos-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;  /* prevents stretching height */
  gap: 0px;
  padding: 4rem 2rem;
  background-color: #fff;
  flex-wrap: wrap;
}
/* .video-container {
  flex: 1 1 60%;
  background: #000;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
} */
 .video-container {
  flex: 1 1 60%;
  background: #000;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -50px;  /* Add this line */
  padding-bottom: 0px;
}

/* .ethos-video {
  flex: 1 1 60%;
  max-width: 60%;
} */

.ethos-video iframe {
  width: 500px;
  height: 400px; /* fixed height for video */
  border: none;
}

/* .ethos-panel {
  flex: 1 1 40%;
  background-color: #5888ea;
  color: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 500px;              
  min-height: auto;              
  margin: auto;                 
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
} */
.ethos-panel {
  background-color: #5888ea;
  color: white;
  padding: 60px 40px;
  max-width: 450px;         /* LIMIT width */
  width: 100%;
  border-radius: 0px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: auto;             /* center it vertically */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ethos-panel h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.ethos-item {
  margin-bottom: 30px;
  max-width: 400px;
}

.ethos-item span::before {
  content: attr(data-number); /* assumes data-number="01", etc. */
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  color: white;
  font-size: 1.5rem;
  margin-right: 10px;
  display: inline-block;
}

.ethos-item span {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.ethos-item p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #eaeaea;
}
.our-dna {
  background-image: url('/static/images/dna-pattern.png'); /* replace with actual path */
  background-repeat: repeat;
  background-color: #f5f5f5; /* subtle gray, not pure white */
  padding: 4rem 2rem;
  font-family: 'Jost', sans-serif;
}

.dna-wrapper {
  max-width: 900px;
  margin-left: 5vw;
}

.our-dna h4 {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #444;
  margin-bottom: 1rem;
}

.our-dna h4 .line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #333;
  margin-right: 12px;
}

.our-dna h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
  color: #1a1a1a;
}
.ethos-text {
  background-color: #5788f7;
  color: white;
  padding: 2rem;
  border-radius: 0 0 0 100px;
  margin-top: -150px; 
  z-index: 2;
  position: relative;
  margin-left: 10px;
  font-family: 'Jost', sans-serif;
}
.ethos-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
}
.clients-section {
  padding: 5rem 2rem;
  background-color: #fff;
  text-align: center;
}

.clients-container {
  max-width: 1100px;
  margin: 0 auto;
}

.clients-container h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #666;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Times New Roman', Times, serif;
}

.clients-container h5 .line {
  width: 40px;
  height: 1px;
  background-color: #000;
  display: inline-block;
  margin-right: 12px;
}

.clients-container h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 3rem;
  font-family: 'Times New Roman', Times, serif;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.clients-logos img {
  max-height: 50px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.clients-logos img:hover {
  opacity: 1;
}
.conference-section {
  padding: 5rem 2rem;
  background-color: #fff;
  font-family: 'Times New Roman', Times, serif;
}

.conference-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  align-items: flex-start;
}

.conference-text {
  flex: 1 1 45%;
}

.conference-text h5 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.conference-text h5 .line {
  width: 40px;
  height: 1px;
  background-color: #000;
  margin-right: 12px;
  display: inline-block;
}

.conference-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.conference-text p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.btn-outline {
  padding: 0.8rem 2rem;
  border: 1px solid #000;
  background: transparent;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #000;
  color: #fff;
}

.conference-media {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.conference-images {
  display: flex;
  gap: 1.5rem;
}

.conference-images img {
  width: 150px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.conference-stat {
  text-align: center;
}

.conference-stat h3 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.conference-stat p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conference-stat .underline {
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #000;
  margin-right: 12px;
}
.case-studies {
  background: #fff;
  padding: 4rem 2rem;
  font-family: 'Times New Roman', Times, serif;
}

.case-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.case-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 4px;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-content {
  padding: 1.5rem;
}

.case-content h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.case-content p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
}

.case-content a {
  font-size: 0.9rem;
  text-decoration: underline;
  color: #000;
}
.webinars-section {
  padding: 5rem 2rem;
  background-color: #fff;
  font-family: 'Times New Roman', Times, serif;
}

.webinars-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.webinars-left {
  flex: 1 1 50%;
}

.webinars-left h5 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.webinars-left h5 .line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #000;
  margin-right: 10px;
}

.webinars-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000;
}

.webinars-left p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

.webinars-left .quote {
  font-style: italic;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.webinars-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.webinars-images {
  display: flex;
  gap: 1rem;
}

.webinars-images img {
  width: 160px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.experience-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.experience-box h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.experience-box hr {
  width: 50px;
  height: 1px;
  background-color: #000;
  border: none;
  margin-bottom: 0.5rem;
}

.experience-box p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #333;
}

.btn-outline {
  display: inline-block;
  margin-top: 1rem;
  padding: 12px 30px;
  border: 1px solid #000;
  background: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline:hover {
  background-color: #000;
  color: #fff;
}
.dark-footer {
  background-color: #000;
  color: #fff;
  padding: 4rem 2rem 2rem;
  font-family: 'Times New Roman', serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #222;
  padding-bottom: 3rem;
}

.footer-left h4 {
  color: #eaf075;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.footer-left h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.footer-left p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-right {
  display: flex;
  align-items: center;
}

.btn-touch {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0.75rem 1.5rem;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1;
}
.btn-touch::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: width 0.4s ease;
}

.btn-touch:hover::before {
  width: 100%;
}

.btn-touch:hover {
  color: #000;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  gap: 1rem;
}

.legal-link {
  color: #eaf075;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f4c542; /* Highlight color */
}


.social-icons a {
  margin: 0 0.5rem;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(100%);
  transition: filter 0.3s;
}

.social-icons img:hover {
  filter: brightness(70%);
}

.copyright {
  color: #ccc;
  font-size: 0.9rem;
}

.copyright span {
  color: #f07c75;
}
section {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}


.hero-carousel {
  position: relative;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
  margin-top: 0px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 0.8s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.caption {
  color: white;
  text-align: center;
  max-width: 90%;
  z-index: 2;
  animation: fadeInUp 0.8s ease;
}

.caption h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: white;
}

.hero-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 2px solid #fff;
  color: white;
  background: transparent;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 30px;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}


.hero-btn:hover {
  background: white;
  color: #000;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 3;
  transform: translateY(-50%);
}

.slider-btn {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  color: black;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo {
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
}

.logo .code {
  color: #f4c542;
}

.logo .care {
  color: white;
}

