
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');
:root {
  --bs-heading-color: var(--s-heading);
}

:root,
[data-bs-theme=light] {
  --s-theme:	#ff4a57;
  --s-theme-rgb:	0, 153, 255;
  --s-black:	#040C16;
  --s-white:	#fff;
  --s-text:	#ffffffbb;
  --s-heading:	#fff;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  color: var(--s-heading);
}

.section-heading h2 span {
  color: var(--s-theme);
}

.text-center .section-heading h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.downloads-hero {
  
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.downloads-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/effect-1.svg') no-repeat center right;
  opacity: 0.1;
  z-index: 0;
}

.downloads-hero h1 {
  color: var(--s-white);
  position: relative;
  z-index: 1;
}

.downloads-hero p {
  color: var(--s-text);
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
}

/* Downloads Section Styles */
.downloads-section {
  padding: 100px 0;
}

.download-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.download-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.download-icon {
  width: 60px;
  height: 60px;
  background: var(--s-theme);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.download-icon i {
  font-size: 24px;
  color: var(--s-white);
}

.download-content h3 {
  color: var(--s-white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.download-content p {
  color: var(--s-text);
  margin-bottom: 15px;
  font-size: 16px;
}

.download-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.download-meta span {
  color: var(--s-text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--s-theme);
  color: var(--s-white);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-link:hover {
  background: var(--s-white);
  color: var(--s-theme);
}

/* Additional Resources Styles */
.additional-resources {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
}

.additional-resources h3 {
  color: var(--s-white);
  margin-bottom: 30px;
}

.resource-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.resource-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  color: var(--s-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--s-white);
  transform: translateX(5px);
}

.resource-link i {
  color: var(--s-theme);
  font-size: 1.2rem;
}

/* Carousel Navigation */
.training-wrap {
  position: relative;
}

.owl-carousel {
  position: relative;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: -70px;
  right: 0;
  display: flex;
  gap: 10px;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  background: rgba(255, 74, 87, 0.1);
  color: var(--s-theme);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: var(--s-theme);
  color: var(--s-white);
}

@media (max-width: 768px) {
  .download-item {
    padding: 20px;
  }
  
  .additional-resources {
    padding: 25px;
  }
  
  .owl-carousel .owl-nav {
    top: -60px;
  }
  
  .resource-links {
    grid-template-columns: 1fr;
  }
}

/* Contact Page Styles */
.contact-hero {
 
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
   min-height: 350px;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('../img/effect-1.svg') no-repeat center right; */
  opacity: 0.1;
  z-index: 0;
}

.contact-hero h1,
.contact-hero p {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  color: var(--s-white);
}

.contact-hero p {
  color: var(--s-text);
}

.contact-section {
  padding: 100px 0;
  background-color: var(--s-black);
}

.contact-info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-info-box .icon {
  width: 50px;
  height: 50px;
  background: var(--s-theme);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--s-white);
}

.contact-info-box .text h5 {
  color: var(--s-white);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-info-box .text p {
  color: var(--s-text);
  margin: 0;
  font-weight: 400;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--s-white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--s-theme);
  color: var(--s-white);
}

.contact-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--s-white);
  padding: 15px 20px;
}

.contact-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--s-theme);
  box-shadow: none;
}

.contact-form .form-control::placeholder {
  color: var(--s-text);
}

.btn-theme {
  background-color: var(--s-theme);
  color: var(--s-white);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-theme:hover {
  background-color: var(--s-white);
  color: var(--s-theme);
}

/* Training Section Styles */
.training-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.training-card:hover {
  transform: translateY(-5px);
}

.training-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.training-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.training-overlay {
  display: none;
}

.training-content {
  padding: 25px;
}

.training-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255, 74, 87, 0.1);
  color: var(--s-theme);
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.training-content h3 {
  color: var(--s-white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.training-content p {
  color: var(--s-text);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Modal Styles */
.modal-content {
  background: var(--s-black);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 25px;
}

.modal-header .modal-title {
  color: var(--s-white);
  font-size: 1.5rem;
}

.modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body {
  padding: 25px;
}

.modal-body h4 {
  color: var(--s-white);
  margin-bottom: 15px;
}

.modal-body p {
  color: var(--s-text);
}

.training-details {
  margin-top: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--s-text);
}

.detail-item i {
  color: var(--s-theme);
}

.modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 25px;
}

@media (max-width: 768px) {
  .training-content {
    padding: 20px;
  }
  
  .modal-dialog {
    margin: 1rem;
  }
}

/* Footer Styles */
.footer {
  background: var(--s-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
  list-style: none;
  margin: 0;
  flex-wrap: wrap;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-transform: capitalize;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.footer-links li a:hover {
  color: var(--s-theme);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 0.9rem;
  margin-top: 15px;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .footer-links {
    gap: 20px;
    padding: 15px 0;
  }
}

/* Why Choose Me Section Styles */
.qualities-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.quality-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
}

.quality-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}

.quality-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 74, 87, 0.15);
  margin-right: 25px;
  line-height: 1;
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
}

.quality-content {
  flex: 1;
}

.quality-content h3 {
  color: var(--s-white);
  margin-bottom: 10px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quality-content h3 i {
  color: var(--s-theme);
  font-size: 1.2rem;
}

.quality-content p {
  color: var(--s-text);
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .quality-item {
    margin-bottom: 1.5rem;
    padding: 15px;
  }

  .quality-number {
    font-size: 2.5rem;
    margin-right: 15px;
  }

  .quality-content h3 {
    font-size: 1.2rem;
  }

  .quality-item:hover {
    transform: translateX(5px);
  }
}

/* Brand Card Styles */
/* Business Page Styles */
.business-hero {
    padding: 120px 0 80px;
    padding-bottom: 10px;
   
}

.business-hero h1 {
    color: var(--s-white);
    font-weight: 600;
    margin-bottom: 0px;
}

.business-hero p {
    color: var(--s-text);
    font-size: 1.2rem;
}

.business-grid {
    padding: 80px 0;
}

.business-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.business-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.business-logo {
    background: rgba(255, 255, 255, 1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.business-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: none;
}

.business-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.business-content h3 {
    color: var(--s-white);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.business-content p {
    color: var(--s-text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Special styles for Nocture logo */
/* .business-card:first-child .business-logo {
    padding: 15px;
} */




.business-card:first-child .business-logo img {
    max-width: 85%;
    max-height: 85%;
}

.business-link {
    color: var(--s-theme);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.business-link:hover {
    color: var(--s-white);
    gap: 12px;
}

@media (max-width: 768px) {
    .business-hero {
        padding: 100px 0 60px;
    }
    
    .business-grid {
        padding: 60px 0;
    }
    
    .business-card {
        padding: 20px;
    }
    
    .business-logo {
        height: 80px;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .business-content h3 {
        font-size: 1.2rem;
    }
    
    .business-tags {
        margin-bottom: 15px;
    }
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* .brand-card:hover .brand-logo {
  background: rgba(255, 255, 255, 0.15);
} */

.brand-content {
  padding: 0 15px;
}

.brand-content h3 {
  color: var(--s-white);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.brand-content p {
  color: var(--s-text);
  margin-bottom: 20px;
}

.brand-link {
  color: var(--s-theme);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.brand-link:hover {
  color: var(--s-white);
}

/* Quality Cards Styles */
.quality-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.quality-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--s-theme);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.quality-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.quality-card:hover::before {
  transform: scaleX(1);
}

.quality-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 74, 87, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.quality-card:hover .quality-icon {
  background: var(--s-theme);
}

.quality-icon i {
  font-size: 28px;
  color: var(--s-theme);
  transition: all 0.3s ease;
}

.quality-card:hover .quality-icon i {
  color: var(--s-white);
}

.quality-card h3 {
  color: var(--s-white);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.quality-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quality-list li {
  color: var(--s-text);
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.quality-list li:last-child {
  margin-bottom: 0;
}

.quality-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--s-theme);
}

.why-choose-section .lead {
  color: var(--s-text);
}

/* Introduction Section Styles */
.intro-section {
  padding: 100px 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.achievement-item {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.achievement-item i {
  font-size: 2rem;
  color: var(--s-theme);
  margin-bottom: 15px;
}

.achievement-item h4 {
  color: var(--s-white);
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.achievement-item p {
  color: var(--s-text);
  margin: 0;
}

.credentials-wrapper {
  height: 100%;
  padding: 0 30px;
  padding-top: 30px;
}

.credentials-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  height: 100%;
}

.credentials-box h3 {
  color: var(--s-white);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.credentials-box h3 i {
  color: var(--s-theme);
  margin-right: 10px;
  font-size: 1.3rem;
}

.credentials-list {
  margin: 0;
  padding: 0;
}

.credentials-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.credentials-list li:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.credentials-list li:last-child {
  margin-bottom: 0;
}

.credentials-list li i {
  color: var(--s-theme);
  font-size: 1.1rem;
  margin-right: 12px;
  margin-top: 3px;
}

.credentials-list li div {
  flex: 1;
}

.credentials-list li h4 {
  color: var(--s-white);
  margin-bottom: 2px;
  font-size: 1rem;
}

.credentials-list li p {
  color: var(--s-text);
  margin: 0;
  line-height: 1.3;
  font-size: 16px;
}

/* Timeline Styles */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--s-theme);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 50%;
  padding-right: 40px;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-right: 0;
  padding-left: 40px;
}

.timeline-dot {
  position: absolute;
  right: -6px;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--s-theme);
}

.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -6px;
}

.timeline-date {
  position: absolute;
  right: -100px;
  top: 0;
  color: var(--s-theme);
  font-weight: bold;
}

.timeline-item:nth-child(even) .timeline-date {
  right: auto;
  left: -100px;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
}

.timeline-content h3 {
  color: var(--s-white);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.timeline-content p {
  color: var(--s-text);
  margin: 0;
}

.vision-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
}

.vision-box h3 {
  color: var(--s-white);
  margin-bottom: 30px;
}

.vision-box i {
  color: var(--s-theme);
  margin-right: 10px;
}

.vision-item {
  padding: 20px;
}

.vision-number {
  color: var(--s-theme);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.vision-item p {
  color: var(--s-text);
  margin: 0;
}

@media (max-width: 991px) {
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .timeline::before {
    left: 0;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 30px;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(even) {
    margin-left: 0;
    padding-left: 30px;
  }
  
  .timeline-dot {
    left: -6px;
    right: auto;
  }
  
  .timeline-date {
    position: relative;
    left: 0;
    right: auto;
    margin-bottom: 10px;
  }
  
  .timeline-item:nth-child(even) .timeline-date {
    left: 0;
  }
}

.navbar-brand img{max-width: 200px; max-height: 72px;}
img{object-fit: cover;}
/* section{min-height: calc(100vh - 72px);} */

.yottie-widget-contents{overflow: hidden; border-radius: 16px!important;}

.toggler-menu {
  background-color: transparent;
  color: var(--s-white);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 5px;
  padding: 0 25px;
  height: 40px;
  line-height: 1;
  position: relative;
  margin-left: 15px;
}
.toggler-menu span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 17px;
  box-shadow: 0 0 0 1px currentColor, 0px -7px 0 1px currentColor, 0 7px 0 1px currentColor;
  height: 0;
}

.header-top-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 111;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: ease all 0.35s;
  background-color: transparent;
}
.fixed-header .header-top-fixed {
  background-color: var(--s-black);
  box-shadow: 0 0.125rem 0.25rem rgba(55, 55, 55, 0.075);
}
.header-top-fixed > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1320px;
  padding: 0 12px;
}

.header-top-fixed .logo {
  flex-shrink: 0;
  width: 180px;
}

.header-top-fixed .main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 991px) {
  .header-top-fixed > .container {
    max-width: 100%;
  }
  
  .header-top-fixed .main-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--s-black);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-direction: column;
    padding: 20px 20px;
    display: none;
    box-shadow: 0 0.125rem 0.25rem rgba(55, 55, 55, 0.075);
  }

  .header-top-fixed .main-menu > li a.s-btn {
    display: inline-block;
    padding: 8px 25px;
    color: var(--s-white);
    background-color: var(--s-theme);
    border-color: var(--s-theme);
  }

@media (max-width: 991px) {
  .header-top-fixed .main-menu > li {
    padding: 0 25px;
    width: 100%;
  }

  .header-top-fixed .main-menu > li a.s-btn {
    display: block;
    margin: 5px 0;
    padding: 8px 0;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--s-white);
    width: 100%;
  }

  .header-top-fixed .main-menu > li a.s-btn:hover {
    color: var(--s-theme);
  }
}

  .header-top-fixed .main-menu > li a.s-btn:hover {
    background-color: transparent;
    border-color: var(--s-white);
  }
}
.header-top-fixed .main-menu > li {
  padding: 0;
}

.header-top-fixed .main-menu > li a {
  padding: 8px 0;
  text-transform: uppercase;
  color: var(--s-white);
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

.header-top-fixed .main-menu > li a.s-btn {
  margin: 10px 0px;
  text-align: center;
  padding: 12px 25px;
  border-radius: 30px;
  color: var(--s-white);
  background-color: var(--s-theme);
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .header-top-fixed .main-menu > li {
    padding: 6px 0;
  }
}
.header-top-fixed .main-menu > li a:after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  transition: ease all 0.35s;
  background-color: var(--s-theme);
}
.header-top-fixed .main-menu > li a:hover:after,
.header-top-fixed .main-menu > li a.active:after {
  width: 100%;
  left: 0;
  right: auto;
}
.header-top-fixed .main-menu > li a.active {
  color: var(--s-theme);
}
.header-top-fixed .logo-dark {
  display: none;
}
@media (max-width: 1200px) {
  .header-top-fixed.menu-open .main-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}



.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
.footer .nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.footer .nav a + a {
  margin-left: 18px;
}

.s-btn {
  padding: 13px 30px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 40px;
  border: 2px solid var(--s-theme);
  background-color: var(--s-theme);
  color: var(--s-white);
  text-decoration: none;
  transition: ease all 0.35s;
  font-weight: 500;
  outline: none;
  box-shadow: none;
  text-transform: uppercase;
}
.s-btn i {
  margin-left: 10px;
}
.s-btn:hover {
  background-color: var(--s-black);
  color: var(--s-white);
  border: 2px solid var(--s-white);
}
.s-btn.dark {
  background: var(--s-black);
  border: 1px solid var(--s-black);
  color: var(--s-white);
}
.s-btn.dark:hover {
  background: var(--s-white);
  color: var(--s-black);
}
.s-btn.light {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--s-white);
}
.s-btn.light:hover {
  background: var(--s-white);
  color: var(--s-black);
}
.s-btn.white {
  background: var(--s-white);
  border: 1px solid var(--s-white);
  color: var(--s-black);
}
.s-btn.white:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--s-white);
}

.social-icon a {
  width: 46px;
  height: 46px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 50%;
  color: var(--s-white);
  border: 2px solid var(--s-white);
  margin-right: 8px;
  position: relative;
  transition: ease top 0.2s;
  top: 0;
}
.social-icon a:hover {
  top: -2px;
}
.social-icon a.dribbble {
  background: #F26798;
}
.social-icon a.facebook {
  background: #1877F2;
}
.social-icon a.linkedin {
  background: #1275B1;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: inherit;
  }
}
html,
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

* {
  outline: none !important;
}

/* ----------------------
*   Loading
---------------------------*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
}

.load-circle {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
}
.load-circle span {
  display: inline-block;
  width: 64px;
  height: 64px;
}
.load-circle span:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
          animation: lds-dual-ring 1.2s linear infinite;
}

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.gray-bg {
  background: rgba(var(--s-theme-rgb), 0.1);
}

.theme-bg {
  background: var(--s-theme);
}

/* Section
---------------------*/
.section {
  padding: 100px 0;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 1200px) {
  .section {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
@media (max-width: 767px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.section-heading {
  margin-bottom: 45px;
  position: relative;
}
@media (max-width: 767px) {
  .section-heading {
    margin-bottom: 35px;
  }
}
.section-heading h6 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 400;
  color: var(--s-text);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-heading h6 span {
  background: rgba(var(--s-theme-rgb), 0.2);
  border-radius: 4px;
  padding: 5px 12px;
  display: inline-block;
  color: var(--s-white);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.section-heading h2 {
  margin: 0;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
}
.section-heading h2 span {
  color: var(--s-theme);
}
@media (max-width: 767px) {
  .section-heading h2 {
    font-size: 35px;
  }
}

/* Modal
-------------------------------*/
.mfp-bg {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
}

.s-modal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background-color: #040c16;
  position: relative;
}
@media (max-width: 1200px) {
  .s-modal {
    padding: 18px;
  }
}
.s-modal .mfp-close {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--s-gray-2);
  color: var(--s-text);
  z-index: 1;
  opacity: 1;
}
.s-modal .about-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.s-modal .about-content ul li {
  padding: 5px 0;
}
.s-modal .about-content .col-4 {
  color: var(--s-heading);
}

.single-project-box h4 {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

/* Background
-------------------------------*/
body {
  background-color: var(--s-bg);
  color: var(--s-text);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.1; 
  line-height: 1.4;
  --bs-body-font-weight: 300;
  --bs-body-font-size: 1rem;
  --bs-body-line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(90deg, #07233B 1.67%, #041D34 39.95%, #04192D 58.24%, #040E18 80.28%, #050C16 101.48%);
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Space Grotesk', sans-serif;
}
a {
  text-decoration: none;
}

.effect-section {
  position: relative;
  overflow: hidden;
}
.effect-section .effect-3 {
  position: absolute;
  left: 20%;
  top: 15%;
  width: 140px;
}
.effect-section .effect-4 {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  height: 450px;
}
.effect-section .effect-4 img {
  height: 100%;
}

/* ----------------------
*   owl 
---------------------------*/
.owl-dots {
  text-align: center;
  font-size: 0px;
  padding-top: 35px;
}
.owl-dots .owl-dot {
  display: inline-block;
  vertical-align: top;
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid var(--s-white);
  transition: ease all 0.55s;
  border-radius: 8px;
  margin: 0 4px;
}
.owl-dots .owl-dot.active {
  background: var(--s-theme);
  width: 20px;
}

.owl-nav {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  pointer-events: none;
}
.owl-nav .owl-next,
.owl-nav .owl-prev {
  position: absolute;
  top: 0;
  bottom: -400px;
  margin: auto;
  width: 35px;
  height: 35px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 50%;
  pointer-events: auto;
  transition: ease all 0.35s;
}
.owl-nav .owl-next:hover,
.owl-nav .owl-prev:hover {
  background: #fff;
  color: var(--s-theme);
}
.owl-nav .owl-next {
  right: 0px;
}
/* @media (min-width: 1201px) {
  .owl-nav .owl-next {
    right: -50px;
  }
}
.owl-nav .owl-prev {
  left: 0px;
}
@media (min-width: 1201px) {
  .owl-nav .owl-prev {
    left: -50px;
  }
} */




/* ----------------------
*   Home Banner
---------------------------*/
.home-wraper {
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 100vh;
  background-color: var(--s-black);
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-bg-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.home-wraper .container {
  z-index: 1;
}
@media (max-width: 991px) {
  .home-wraper {
    padding-top: 130px;
  }
}
.home-wraper .container {
  width: 100%;
}

.home-wraper .row {
  min-height: calc(100vh - 200px);
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .home-wraper .hs-text-box {
    padding-bottom: 50px;
  }
}
.home-wraper .hs-text-box h6 {
  margin: 0 0 10px;
}
.home-wraper .hs-text-box h6 span {
  background: rgba(var(--s-theme-rgb), 0.2);
  border-radius: 4px;
  padding: 5px 12px;
  display: inline-block;
  color: var(--s-white);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.home-wraper .hs-text-box {
  text-align: left;
}

.home-wraper .hs-text-box h1 {
  color: var(--s-white);
  font-weight: 700;
  font-size: 70px;
  text-transform: uppercase;
  text-align: left;
}
@media (max-width: 1200px) {
  .home-wraper .hs-text-box h1 {
    font-size: 45px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .home-wraper .hs-text-box h1 {
    font-size: 38px;
  }
}
.home-wraper .hs-text-box h2 {
  color: var(--s-theme);
  font-weight: 700;
  font-size: 50px;
  text-transform: uppercase;
  margin: 0 0 30px;
  text-align: left;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 15px;
}

#type-it {
  display: inline-block;
  min-width: 400px;
  white-space: nowrap;
}

.s-container {
  display: inline-block;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .home-wraper .hs-text-box h2 {
    font-size: 42px;
    margin: 0 0 20px;
  }
}
@media (max-width: 767px) {
  .home-wraper .hs-text-box h2 {
    font-size: 38px;
    margin: 0 0 10px;
  }
}
.home-wraper .hs-text-box .text {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: var(--s-white);
}
@media (max-width: 1200px) {
  .home-wraper .hs-text-box .text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .home-wraper .hs-text-box .text {
    font-size: 16px;
  }
}
.home-wraper .hs-text-box .btn-bar {
  padding-top: 15px;
}

/* ----------------------
*   About
---------------------------*/
.about-wrap {
  overflow: hidden;
}
.about-wrap .container {
  position: relative;
  z-index: 1;
}
.about-wrap .effect-1 {
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .about-wrap .effect-1 {
    display: none;
  }
}
.about-wrap .effect-2 {
  position: absolute;
  top: 80px;
  right: -60px;
  z-index: -1;
}
@media (max-width: 991px) {
  .about-wrap .effect-2 {
    display: none;
  }
}
.about-wrap .about-text .section-heading {
  margin-bottom: 25px;
}

.about-wrap .review-box {
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  padding-bottom: 45px;
}
.about-wrap .review-box .r-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  color: var(--s-white);
  border-radius: 8px;
  padding: 20px;
}
.about-wrap .review-box .r-box h3 {
  margin: 0 0 8px;
}
.about-wrap .review-box .r-box label {
  font-size: 13px;
  line-height: 130%;
}
.about-wrap .review-box .r-box + .r-box {
  margin-left: 10px;
}

/* ----------------------
*   Projects
---------------------------*/
.training-wrap {
  overflow: hidden;
}
.training-wrap .owl-stage-outer {
  overflow: inherit;
}

.project-box {
  padding: 14px;
  border-radius: 10px;
  background: #040c16;
}
.project-box .project-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.project-box .project-media img {
  transition: ease all 0.35s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.project-box .project-media .gallery-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: ease all 0.35s;
}
.project-box .project-media .gallery-link i {
  width: 50px;
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: var(--s-white);
  color: var(--s-black);
  font-size: 35px;
  border-radius: 50%;
}
.project-box:hover .project-media img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.project-box:hover .project-media .gallery-link {
  opacity: 1;
}
.project-box .project-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-top: 20px;
}
.project-box .project-body h5 {
  font-weight: 700;
  color: white;
  font-weight: 20px;
  margin: 0 0 5px;
}
.project-box .project-body .text {
  -ms-flex: 0 0 calc(100% - 50px);
      flex: 0 0 calc(100% - 50px);
  padding-right: 10px;
}
.project-box .project-body .text span {
  font-size: 14px;
  color: #efefef;
}
.project-box .project-body .link {
  width: 45px;
}
.project-box .project-body .link .p-link {
  width: 45px;
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  /* background: var(--s-theme); */
  color: var(--s-white);
  font-size: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.project-box .project-body .link .p-link:hover {
  background: #fff;
  color: var(--s-theme);
  
}

/* ----------------------
*   Services
---------------------------*/
.gallery-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 150px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-align: end;
      align-items: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.gallery-box:after {
  content: "";
  background: linear-gradient(180deg, rgba(4, 12, 22, 0) 0%, #040C16 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.gallery-box .services-body {
  padding: 20px;
  position: relative;
  z-index: 1;
}
.gallery-box .services-body .icon {
  width: 50px;
  height: 50px;
  background: var(--s-theme);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: var(--s-white);
  font-size: 22px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.gallery-box .services-body p {
  color: var(--s-white);
  font-size: 14px;
  line-height: 140%;
  opacity: 0.65;
  margin: 0 0 15px;
}
.gallery-box .services-body .rating {
  display: -ms-flexbox;
  display: flex;
  color: var(--bs-warning);
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.gallery-box .services-body .rating i {
  margin-right: 5px;
}

/* ----------------------
*   EXPERIENCE
---------------------------*/
.ex-box {
  background: rgba(var(--s-theme-rgb), 0.1);
  padding: 25px;
  border-radius: 10px;
}
.ex-box .ex-left {
  padding: 20px;
  border-radius: 8px;
  background: var(--s-theme);
}
.ex-box .ex-left h4 {
  margin: 0 0 8px;
  font-weight: 700;
}
.ex-box .ex-left span {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--s-white);
  opacity: 0.8;
}
.ex-box .ex-left p {
  font-weight: 400;
  font-size: 16px;
  color: var(--s-white);
  text-transform: uppercase;
  margin: 0 0 15px;
}
.ex-box .ex-left label {
  padding: 8px 16px;
  border-radius: 30px;
  background: var(--s-white);
  color: var(--s-black);
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 600;
}
.ex-box .ex-right h5 {
  font-weight: 700;
  font-size: 32px;
}
@media (max-width: 767px) {
  .ex-box .ex-right h5 {
    font-size: 28px;
  }
}
.ex-box .ex-right p {
  color: var(--s-white);
  opacity: 0.8;
}

/* ----------------------
*   Testimonials
---------------------------*/
.testimonial-box {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-box .t-user {
  width: 130px;
  height: 130px;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 30px;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.2);
}
.testimonial-box .t-user img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonial-box .t-text {
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 18px;
  color: var(--s-white);
}
.testimonial-box .t-person h6 {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.testimonial-box .t-person span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: var(--s-white);
  opacity: 0.5;
}

/* ----------------------
*   Gallery Page
---------------------------*/
.gallery-hero {
    padding: 180px 0 100px;
    position: relative;
    background: url('../img/about-banner.png') no-repeat center center;
    background-size: cover;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 12, 22, 0.8);
}

.gallery-hero .container {
    position: relative;
    z-index: 1;
}

.gallery-section {
    position: relative;
}

.gallery-grid {
    position: relative;
}

.gallery-item {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.gallery-item.featured {
    height: 520px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Magnific Popup Customization */
.mfp-arrow {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mfp-arrow:hover {
    opacity: 1;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
}

.mfp-arrow-left:after {
    border-right: 17px solid var(--s-theme);
}

.mfp-arrow-right:after {
    border-left: 17px solid var(--s-theme);
}

.mfp-counter {
    color: var(--s-theme);
}

.mfp-title {
    color: var(--s-white);
}

@media (max-width: 991px) {
    .gallery-item {
        height: 200px;
    }
    
    .gallery-item.featured {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .gallery-item.featured {
        height: 300px;
    }
}

/* ----------------------
*   Training Page
---------------------------*/
.training-hero {
    padding: 180px 0 100px;
    position: relative;
    background: url('../img/about-banner.png') no-repeat center center;
    background-size: cover;
    min-height: 400px;
}

.training-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 12, 22, 0.8);
}

.training-hero .container {
    position: relative;
    z-index: 1;
}

.training-hero h1 {
    color: var(--s-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.training-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}



.training-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.pagetraining-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 74, 87, 0.1), transparent);
    opacity: 0;
    transition: all 0.5s ease;
    padding: 40px;
}

.training-card:hover .card-overlay {
    opacity: 1;
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 74, 87, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.program-icon i {
    font-size: 35px;
    color: var(--s-theme);
    transition: all 0.3s ease;
}

.training-card:hover .program-icon {
    background: var(--s-theme);
}

.training-card:hover .program-icon i {
    color: var(--s-white);
}

.card-content h3 {
    color: var(--s-white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.program-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--s-white);
}

.feature i {
    color: var(--s-theme);
    font-size: 18px;
}

.program-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255, 74, 87, 0.1);
    color: var(--s-theme);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.program-btn:hover {
    background: var(--s-theme);
    color: var(--s-white);
    transform: translateX(10px);
    text-decoration: none;
}

/* Coaching Section */
.coaching-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.coaching-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: var(--s-theme);
}

.coaching-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 74, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.coaching-icon i {
    font-size: 45px;
    color: var(--s-theme);
}

.coaching-feature {
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.coaching-feature:hover {
    background: rgba(255, 74, 87, 0.1);
    transform: translateY(-5px);
}

.coaching-feature i {
    font-size: 30px;
    color: var(--s-theme);
    margin-bottom: 15px;
}

.coaching-feature h4 {
    color: var(--s-white);
    font-size: 18px;
    margin-bottom: 10px;
}

.coaching-feature p {
    color: var(--s-text);
    margin: 0;
}

.coaching-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: var(--s-theme);
    color: var(--s-white);
    border-radius: 30px;
    font-weight: 500;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.coaching-btn:hover {
    background: var(--s-white);
    color: var(--s-theme);
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .training-hero {
        padding-top: 120px;
    }
    
    .training-card {
        padding: 30px;
    }
    
    .program-icon {
        width: 70px;
        height: 70px;
    }
    
    .program-icon i {
        font-size: 30px;
    }
    
    .card-content h3 {
        font-size: 20px;
    }
    
    .coaching-card {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .training-tabs {
        flex-direction: column;
        gap: 10px;
        background: none;
        padding: 0;
    }
    
    .tab-btn {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .training-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .program-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .coaching-feature {
        margin-bottom: 15px;
    }
}

/* ----------------------
*   Services Page
---------------------------*/
.services-page {
    padding-top: 120px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 74, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.tech-icon i {
    font-size: 35px;
    color: var(--s-theme);
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    background: var(--s-theme);
    transform: rotateY(180deg);
}

.tech-card:hover .tech-icon i {
    color: var(--s-white);
    transform: rotateY(180deg);
}

.tech-card h3 {
    color: var(--s-white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-list li {
    color: var(--s-white);
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--s-theme);
    transition: height 0.3s ease;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 74, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 25px;
    color: var(--s-theme);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--s-theme);
}

.feature-card:hover .feature-icon i {
    color: var(--s-white);
}

.feature-card h3 {
    color: var(--s-white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .services-page {
        padding-top: 100px;
    }
    
    .tech-card,
    .feature-card {
        padding: 25px;
    }
    
    .tech-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .tech-icon i {
        font-size: 30px;
    }
    
    .tech-card h3 {
        font-size: 20px;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .tech-card,
    .feature-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .tech-icon i {
        font-size: 25px;
    }
    
    .tech-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/* ----------------------
*   Businesses Page
---------------------------*/
.brands-page {
    padding-top: 120px;
}

.brand-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

/* .brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
} */

.brand-logo {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.brand-logo img {
    max-width: 100%;
    max-height: 80px;
    transition: all 0.3s ease;
}

/* .brand-card:hover .brand-logo img {
    transform: scale(1.05);
} */

.brand-content h3 {
    color: var(--s-white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.brand-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.brand-link {
    color: var(--s-theme);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.brand-link i {
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.brand-link:hover {
    color: var(--s-white);
}

.brand-link:hover i {
    transform: translateX(5px);
}

.related-section {
    background: rgba(255, 255, 255, 0.02);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 74, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 30px;
    color: var(--s-theme);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--s-theme);
    transform: rotateY(180deg);
}

.service-card:hover .service-icon i {
    color: var(--s-white);
    transform: rotateY(180deg);
}

.service-card h3 {
    color: var(--s-white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .brands-page {
        padding-top: 100px;
    }
    
    .brand-card {
        padding: 20px;
    }
    
    .brand-logo {
        height: 100px;
        margin-bottom: 15px;
    }
    
    .brand-logo img {
        max-height: 60px;
    }
    
    .brand-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .brand-logo {
        height: 80px;
        margin-bottom: 20px;
    }
    
    .brand-content h3 {
        font-size: 18px;
    }
}

/* ----------------------
*   Services Section
---------------------------*/
.services-section {
    background: rgba(255, 255, 255, 0.02);
}

.service-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 74, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 30px;
    color: var(--s-theme);
    transition: all 0.3s ease;
}

.service-box:hover .service-icon {
    background: var(--s-theme);

}

.service-box:hover .service-icon i {
    color: var(--s-white);

}

.service-box h3 {
    color: var(--s-white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--s-theme);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--s-white);
}

.service-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .service-box {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 25px;
    }
    
    .service-box h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .service-box {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .service-box h3 {
        font-size: 18px;
    }
}

/* ----------------------
*   Brands Section
---------------------------*/
.brands-section {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.brands-slider {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    width: 100%;
}

.brands-track {
    display: flex;
    animation: slideLeft 40s linear infinite;
    width: fit-content;
}

.brands-slider:hover .brands-track {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    flex: 0 0 200px;
    padding: 0 20px;
}

.brand-logo {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.brand-logo img {
    max-height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 74, 87, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.brand-overlay h4 {
    color: white;
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 600;
}

.brand-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.brand-logo:hover .brand-overlay {
    opacity: 1;
}

.brand-logo:hover img {
    opacity: 0;
}

@media (max-width: 991px) {
    .brand-item {
        flex: 0 0 180px;
        padding: 0 15px;
    }
    
    .brand-logo {
        height: 120px;
    }
    
    .brand-logo img {
        max-height: 70px;
    }
}

@media (max-width: 767px) {
    .brand-item {
        flex: 0 0 160px;
        padding: 0 10px;
    }
    
    .brand-logo {
        height: 100px;
    }
    
    .brand-logo img {
        max-height: 60px;
    }
    
    .brand-overlay h4 {
        font-size: 14px;
    }
    
    .brand-overlay p {
        font-size: 12px;
    }
}

/* ----------------------
*   About Page Styles
---------------------------*/
.about-banner {
    padding: 120px 0 60px;
    position: relative;
}

.about-banner .about-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-banner .about-img img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.credentials-box, .mission-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.credentials-box ul li, .journey-box ul li {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--s-white);
}

.credentials-box ul li i, .journey-box ul li i {
    margin-right: 10px;
    color: var(--s-theme);
}

.journey-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: 100%;
    transition: transform 0.3s ease;
}

.journey-box:hover {
    transform: translateY(-5px);
}

.journey-box h3 {
    color: var(--s-white);
    margin-bottom: 20px;
    font-size: 24px;
}

.journey-box h3 i {
    margin-right: 10px;
    color: var(--s-theme);
}

.vision-list li {
    margin-bottom: 30px;
    text-align: center;
}

.vision-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--s-theme);
    display: block;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-banner {
        padding: 100px 0 40px;
    }
    
    .about-banner .about-text h1 {
        font-size: 36px;
    }
    
    .about-banner .about-img {
        margin-top: 30px;
    }
    
    .journey-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .about-banner .about-text h1 {
        font-size: 30px;
    }
    
    .credentials-box, .mission-box, .journey-box {
        padding: 20px;
    }
    
    .vision-number {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .about-banner {
        padding: 80px 0 30px;
    }
    
    .about-banner .about-text h1 {
        font-size: 26px;
        padding-top: 30px;
    }
    
    .journey-box h3 {
        font-size: 20px;
    }
}

/* ----------------------
*   Contact Us
---------------------------*/
.contactus-section .contactus-title h5 {
  font-weight: 500;
  font-size: 40px;
}
@media (max-width: 767px) {
  .contactus-section .contactus-title h5 {
    font-size: 32px;
  }
}
.contactus-section .contactus-title p {
  font-weight: 400;
  font-size: 17px;
  color: var(--s-white);
  max-width: 550px;
  opacity: 0.85;
}
@media (min-width: 992px) {
  .contactus-section .contact-banner {
    margin-top: -200px;
  }
}
.contactus-section .contact-info {
  padding: 20px 0 40px;
}
@media (max-width: 767px) {
  .contactus-section .contact-info {
    padding: 20px 0 25px;
  }
}
.contactus-section .contact-info .contact-info-in {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding-top: 20px;
}
.contactus-section .contact-info .contact-info-in label {
  font-weight: 400;
  font-size: 12px;
  color: var(--s-white);
  margin: 0 0 2px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.75;
}
.contactus-section .contact-info .contact-info-in a {
  color: var(--s-white);
  font-size: 22px;
  font-weight: 600;
}
.contactus-section .contactus-box {
  border: 1px solid rgba(var(--s-theme-rgb), 0.2);
}
.contactus-section .contact-form .form-label {
  color: var(--s-white);
  margin: 0 0 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}
.contactus-section .contact-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--s-white);
  box-shadow: none;
  padding: 0.575rem 0.75rem;
}
.contactus-section .contact-form .form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contactus-section .contact-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.contactus-section .contact-form .form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contactus-section .contact-form .form-control::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contactus-section .contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contactus-section .contactus-form {
  border-top: 1px solid rgba(var(--s-theme-rgb), 0.2);
  background: rgba(var(--s-theme-rgb), 0.1);
}

.hs-banner {
  width: 550px; /* square size */
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;       /* ✅ keeps images & bar inside rounded corners */
  border-radius: 15px;    /* ✅ rounded corners for whole slider */
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  object-position: center;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  border-radius: 15px;
}

.slider-img.active {
  opacity: 1;
}

/* CTA Banner Styles */
.cta-banner {
    background: linear-gradient(45deg, var(--s-theme), #000000);
    padding: 60px 0;
    margin-top: -1px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: var(--s-white);
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-banner .s-btn {
    background: var(--s-white);
    color: var(--s-theme);
    border: 2px solid var(--s-white);
    padding: 12px 30px;
}

.cta-banner .s-btn:hover {
    background: transparent;
    color: var(--s-white);
}

/* Google Form Styles */
.google-form-container {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.google-form-container iframe {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    width: 100%;
}

/* New About Section Styles */
.about-image .img-wrap {
    padding: 15px;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--s-theme);
    color: var(--s-white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--s-theme);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--s-white);
    font-size: 1.1rem;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.achievement-box {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.achievement-box:hover {
    transform: translateY(-5px);
}

.achievement-box h3 {
    color: var(--s-theme);
    font-size: 2rem;
    margin-bottom: 5px;
}

.achievement-box p {
    color: var(--s-white);
    margin: 0;
    font-size: 0.9rem;
}

.btn-group {
    display: flex;
    gap: 15px;
}

.s-btn-outline {
    background: transparent;
    border: 2px solid var(--s-theme);
    color: var(--s-theme);
}

.s-btn-outline:hover {
    background: var(--s-theme);
    color: var(--s-white);
}

/* Certificates Section Styles */
.certificates-section {
    padding: 80px 0;
}

.certificate-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
}

.certificate-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.certificate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.certificate-card:hover .certificate-img img {
    transform: scale(1.05);
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certificate-card:hover .hover-overlay {
    opacity: 1;
}

.hover-overlay i {
    color: var(--s-white);
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.certificate-card:hover .hover-overlay i {
    transform: scale(1);
}

.rounded-img {
  border-radius: 15px; /* adjust value for more/less curve */
  overflow: hidden;    /* ensures image stays clipped inside radius */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* optional shadow for depth */
}

/* Hero section mobile/desktop images */
.hero-bg-slide .desktop-bg,
.hero-bg-slide .mobile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;

}

mobile-bg img{
  object-position: center;
}
.hero-bg-slide .desktop-bg::after,
.hero-bg-slide .mobile-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 12, 22, 0.4); /* Lighter overlay with 40% opacity */
  z-index: 1;
}

.hs-text-box {
  position: relative;
  z-index: 2; /* Ensure text stays above the overlay */
}

.hero-bg-slide .mobile-bg {
  display: none;
}

@media (max-width: 767px) {
  .hero-bg-slide .desktop-bg {
    display: none;
  }
  .hero-bg-slide .mobile-bg {
    display: block;
  }


}

/* Progress bar */
.progress-bar {
  position: absolute;
  bottom: 8px;
  left: 90px;
  width: 70%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
}


.progress-fill {
  width: 0%;
  height: 100%;
  background: #fff; /* adjust color */
  animation: progressAnim 3s linear infinite;
}

@keyframes progressAnim {
  from { width: 0%; }
  to { width: 100%; }
}

