
#hero-6 {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}
#hero-6 .hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
#hero-6 .hero-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}
.card-item {
  background: #f8f9fa;
  padding: 30px;
  margin: 15px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.card-icon {
  font-size: 48px;
  color: #2575fc;
  margin-bottom: 15px;
}
.card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-description {
  font-size: 16px;
  color: #555;
}



#our-services-9 {
  padding: 60px 15px;
  max-width: 900px;
  margin: 0 auto;
}
#our-services-9 .header {
  text-align: center;
  margin-bottom: 40px;
}
#our-services-9 .header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#our-services-9 .header p {
  font-size: 1.1rem;
  color: #777;
}
#our-services-9 .accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
}
#our-services-9 .accordion-button {
  background: #f8f9fa;
  font-size: 1rem;
}
#our-services-9 .accordion-body {
  font-size: 0.95rem;
  color: #555;
}



#why-choose-us-19 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff;
}
#why-choose-us-19 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#why-choose-us-19 .section-header h2 {
  font-weight: 700;
  color: #343a40;
}
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline-container::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #e9ecef;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
  z-index: 1;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  z-index: 2;
}
.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #fff;
  border: 4px solid var(--bs-primary, #0d6efd);
  top: 20px;
  border-radius: 50%;
  z-index: 3;
}
.timeline-item.left {
  left: 0;
  padding-right: 30px;
  text-align: right;
}
.timeline-item.right {
  left: 50%;
  padding-left: 30px;
  text-align: left;
}
.timeline-item.right::after {
  left: -10px;
}
.timeline-content {
  padding: 15px 20px;
  background-color: #f8f9fa;
  position: relative;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}
.timeline-item.left .timeline-content {
}
.timeline-item.right .timeline-content {
}
.timeline-icon i {
  font-size: 1.2rem;
  color: var(--bs-primary, #0d6efd);
  margin-bottom: 0.5rem;
  display: inline-block;
}
.timeline-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #495057;
}
.timeline-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
}
@media screen and (max-width: 767.98px) {
  .timeline-container::after {
    left: 15px;
    margin-left: 0;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 15px;
    text-align: left;
  }
  .timeline-item.left,
  .timeline-item.right {
    left: 0%;
  }
  .timeline-item.left::after,
  .timeline-item.right::after {
    left: 5px;
  }
}



/* === Section Base === */
.post-section {
  position: relative;
  padding: 60px 0;
  background: #f8f9fa;
}
.post-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.post-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}
.post-section .section-header p {
  color: #555;
  margin-top: 8px;
}

/* === Timeline Line & Container === */
.timeline {
  position: relative;
  margin: 0 auto;
  padding: 1rem 0;
  width: 90%;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--timeline-color);
  transform: translateX(-50%);
}

/* === Timeline Items === */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 2rem;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

/* === Marker Dot === */
.timeline-item::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  background: var(--timeline-color);
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--timeline-color);
}
.timeline-item:nth-child(odd)::before {
  right: -8px;
}
.timeline-item:nth-child(even)::before {
  left: -8px;
}

/* === Content === */
.timeline-item .date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.timeline-item h5 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.timeline-item p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}
.timeline-item .btn-readmore {
  font-size: 0.85rem;
  color: var(--timeline-color);
  text-decoration: none;
  border-bottom: 1px solid var(--timeline-color);
  transition: color 0.3s, border-color 0.3s;
}
.timeline-item .btn-readmore:hover {
  color: #000;
  border-color: #000;
}

/* === Responsive === */
@media (max-width: 767.98px) {
  .timeline::before {
    left: 8px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 1rem;
    text-align: left !important;
  }
  .timeline-item::before {
    left: 0;
  }
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}




#about-us-30 {
  padding: 80px 0;
  background-color: #222;
  color: #fff;
  text-align: center;
  position: relative;
}
#about-us-30 .section-title,
#about-us-30 .section-subtitle {
  margin-bottom: 60px;
}
#about-us-30 .circular-layout {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}
#about-us-30 .central-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #ffc107;
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
#about-us-30 .central-element img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
#about-us-30 .central-element h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
#about-us-30 .point-of-interest {
  position: absolute;
  width: 120px;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
#about-us-30 .point-of-interest i {
  font-size: 1.5rem;
  color: #00bfff;
  margin-bottom: 10px;
}
#about-us-30 .point-of-interest h5 {
  font-size: 1rem;
  margin-bottom: 5px;
}
#about-us-30 .point-of-interest p {
  font-size: 0.8rem;
  color: #ccc;
}
#about-us-30 .point-of-interest.top-left {
  top: 10px;
  left: 10px;
}
#about-us-30 .point-of-interest.top-right {
  top: 10px;
  right: 10px;
}
#about-us-30 .point-of-interest.bottom-left {
  bottom: 10px;
  left: 10px;
}
#about-us-30 .point-of-interest.bottom-right {
  bottom: 10px;
  right: 10px;
}
#about-us-30 .point-of-interest.center-left {
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
#about-us-30 .point-of-interest.center-right {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  #about-us-30 .circular-layout {
    width: 300px;
    height: 300px;
  }
  #about-us-30 .point-of-interest {
    width: 100px;
    font-size: 0.9rem;
  }
  #about-us-30 .point-of-interest i {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  #about-us-30 .central-element {
    width: 100px;
    height: 100px;
  }
  #about-us-30 .central-element img {
    width: 50px;
    height: 50px;
  }
}



#testimonials-3 {
  padding: 60px 15px;
  max-width: 800px;
  margin: 0 auto;
}
#testimonials-3 .slider-container {
  position: relative;
  overflow: hidden;
  height: 300px;
}
#testimonials-3 .slider-item {
  display: none;
  text-align: center;
  padding: 30px;
}
#testimonials-3 .slider-item.active {
  display: block;
}
#testimonials-3 .slider-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
#testimonials-3 .slider-item p {
  font-size: 1.1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}
#testimonials-3 .client-info {
  font-size: 0.95rem;
  color: #777;
}



#cta-banner-16 {
  padding: 6rem 1rem;
  position: relative;
  background-size: cover;
  background-position: center center;
  text-align: center;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #212529;
}
#cta-banner-16::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background-color: rgba(20, 30, 40, 0.7);
}
#cta-banner-16 .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
#cta-banner-16 .cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
#cta-banner-16 .cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#cta-banner-16 .cta-button .btn {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}
#cta-banner-16 .cta-button .btn i {
  margin-right: 0.5rem;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--bs-warning-rgb), 0.5);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(var(--bs-warning-rgb), 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--bs-warning-rgb), 0);
  }
}
#cta-banner-16 .cta-pulse-button {
  animation: pulse 2s infinite;
  transform-origin: center;
}
@keyframes shake {
  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }
  30%,
  50%,
  70% {
    transform: translate3d(-3px, 0, 0);
  }
  40%,
  60% {
    transform: translate3d(3px, 0, 0);
  }
}
#cta-banner-16 .cta-shake-button:hover {
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
#cta-banner-16 .cta-bounce-button {
}
@media (max-width: 767.98px) {
  #cta-banner-16 {
    padding: 4.5rem 1rem;
  }
  #cta-banner-16 .cta-title {
    font-size: 2.1rem;
  }
  #cta-banner-16 .cta-subtitle {
    font-size: 1rem;
  }
  #cta-banner-16 .cta-button .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}



#game-section-7 {
  padding: 60px 15px;
  max-width: 1200px;
  margin: 0 auto;
}
#game-section-7 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#game-section-7 .modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
#game-section-7 .mode-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
#game-section-7 .mode-card:hover {
  transform: translateY(-5px);
}
#game-section-7 .mode-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 10px;
}
#game-section-7 .mode-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #333;
}
#game-section-7 .mode-card p {
  font-size: 1rem;
  color: #555;
}



#features-7 {
  padding: 60px 0;
  background-color: #f1f3f5;
  text-align: center;
}
#features-7 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-7 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-7 .flip-card {
  background-color: transparent;
  width: 100%;
  height: 250px;
  perspective: 1000px;
  margin-bottom: 30px;
}
#features-7 .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
#features-7 .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
#features-7 .flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#features-7 .flip-card-front {
  background-color: #ffffff;
  color: #17a2b8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-7 .flip-card-back {
  background-color: #17a2b8;
  color: #ffffff;
  transform: rotateY(180deg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-7 .flip-card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}
#features-7 .flip-card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-7 .flip-card-description {
  font-size: 14px;
}



#counter-12 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #ffffff);
}
#counter-12 .container {
  max-width: 1140px;
}
#counter-12 .section-header {
  margin-bottom: 60px;
  text-align: center;
}
#counter-12 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#counter-12 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#counter-12 .counter-item-circular {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#counter-12 .counter-circle-svg {
  display: block;
  margin: 0 auto;
  position: relative;
}
#counter-12 .circle-bg {
  fill: none;
  stroke: var(--circle-base-color, #e9ecef);
  stroke-width: var(--stroke-width, 10px);
}
#counter-12 .circle-progress {
  fill: none;
  stroke: var(--circle-progress-color, #0d6efd);
  stroke-width: var(--stroke-width, 10px);
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1.5s ease-out;
}
#counter-12 .counter-number-svg {
  font-size: 1.8rem;
  font-weight: 700;
  fill: #343a40;
  dominant-baseline: middle;
  text-anchor: middle;
}
#counter-12 .counter-suffix-svg {
  font-size: 0.9rem;
  font-weight: 500;
  fill: #555;
}
#counter-12 .counter-title-circular {
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #495057;
}
@media (max-width: 991.98px) {
  #counter-12 .counter-circle-svg {
  }
  #counter-12 .counter-number-svg {
  }
}
@media (max-width: 767.98px) {
  #counter-12 {
    padding: 50px 0;
  }
  #counter-12 .section-header h2 {
    font-size: 2rem;
  }
  #counter-12 .counter-item-circular {
    margin-bottom: 50px;
  }
  #counter-12 .counter-item-circular:last-child {
    margin-bottom: 0;
  }
}



#awards-11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#awards-11 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#awards-11 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#awards-11 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#awards-11 .certification-item {
  text-align: center;
  padding: 1.5rem;
}
#awards-11 .cert-icon {
  margin-bottom: 1.5rem;
}
#awards-11 .cert-icon i {
  font-size: 3rem;
  color: var(--bs-primary);
}
#awards-11 .cert-area {
  font-size: 1.3rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.75rem;
}
#awards-11 .cert-description {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1rem;
}
#awards-11 .cert-details-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #6c757d;
}
#awards-11 .cert-details-list li {
  margin-bottom: 0.25rem;
}
#awards-11 .cert-details-list li::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.5em;
  margin-right: 0.5rem;
  color: var(--bs-primary);
  opacity: 0.6;
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  #awards-11 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #awards-11 .section-title {
    font-size: 2.1rem;
  }
  #awards-11 .certification-item {
    padding: 1rem;
  }
  #awards-11 .cert-area {
    font-size: 1.2rem;
  }
}



#call-to-action-6 {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
}
#call-to-action-6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
#call-to-action-6 .cta-content {
  position: relative;
  z-index: 1;
}
#call-to-action-6 h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}
#call-to-action-6 p {
  font-size: 18px;
  margin-bottom: 30px;
}
#call-to-action-6 .cta-btn {
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  background-color: #17a2b8;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
}
#call-to-action-6 .cta-btn:hover {
  background-color: #138496;
}
@media (max-width: 767.98px) {
  #call-to-action-6 h2 {
    font-size: 28px;
  }
  #call-to-action-6 p {
    font-size: 16px;
  }
}


