:root{
    --green: #b700ff;
    --light-grey: #ffffff;
    --dark: #0e1010;
    --trans: all 0.3s ease-in-out;
}
.navbar{
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    padding: 1rem 0;
    z-index: 999;
}
.navbar .container{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Navbar brand */


/* Keep your existing site-brand styling as is */
.site-brand {
  color: #fff;
  font-size: 2.4rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  opacity: 0.95;
}

.site-brand span {
  font-weight: 300;
}
/* Contact Us highlight styling */
.contact-highlight {
  background-color: #9800d4; /* Accent color */
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-highlight:hover {
  background-color: #b700ff;
  transform: scale(1.05);
}


#navbar-show-btn{
    background: transparent;
    color: #fff;
    font-size: 2rem;
    opacity: 0.9;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    border: none;
}
#navbar-show-btn:hover{
    opacity: 1;
}

/* navbar side menu */
#navbar-collapse{
    background-color: var(--green);
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    padding: 2rem;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
.navbar-collapse-rmw{
    /* js related */
    -webkit-transform: translateX(0)!important;
        -ms-transform: translateX(0)!important;
            transform: translateX(0)!important;
}
#navbar-close-btn{
    background: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 0.2rem;
    font-size: 2rem;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    position: absolute;
    right: 1rem;
    top: 2rem;
    border: none;
}
#navbar-close-btn:hover{
    background-color: #fff;
    color: var(--green);
}
.navbar-nav{
    margin-top: 5rem;
}
.nav-item{
    margin: 1.6rem 0;
}
.nav-link{
    color: #fff;
    font-size: 1.2rem;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
.nav-link:hover{
    opacity: 0.8;
}

/* header */
header{
    min-height: 100vh;
    padding-top: 7rem;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url(../images/header-bg.jpeg) center/cover no-repeat;
    background: -o-linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/header-bg.jpeg) center/cover no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/header-bg.jpeg) center/cover no-repeat;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #ffffff;
    text-align: center;
}
/* Responsive Layout */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.header-content {
  flex: 1 1 500px;
  padding: 1rem;
  animation: fadeInLeft 1.5s ease;
}

.header-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1.5s ease;
}

/* Animate Logo */
.animated-logo {
  width: 320px;
  max-width: 100%;
  border-radius: 50%;
  filter: drop-shadow(0 0 15px #c800ff);
  animation: pulse 3s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.animated-logo:hover {
  transform: scale(1.05) rotate(2deg);
}


/* Title Style */
.header-title h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.header-title p {
  font-size: 1.2rem;
  color: #ddd;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 10px #c800ff);
  }
  50% {
    filter: drop-shadow(0 0 25px #a64dff);
  }
  100% {
    filter: drop-shadow(0 0 10px #c800ff);
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .header-content,
  .header-image {
    flex: 1 1 100%;
  }

  .header-title h1 {
    font-size: 2.2rem;
  }

  .header-form {
    padding: 1.5rem;
  }

  .animated-logo {
    width: 250px;
    margin-top: 2rem;
  }
}

.header-title h1{
    font-size: 2.8rem;
    letter-spacing: 2px;
    -webkit-animation: bounce-in-top 1.1s both;
            animation: bounce-in-top 1.1s both;
}
.header-title p{
    margin: 1.8rem auto;
    max-width: 700px;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.7;
}

@-webkit-keyframes bounce-in-top{
    0%{
        -webkit-transform: translateY(-500px);
                transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
        opacity: 0;
    }
    38%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
        opacity: 1;
    }
    55%{
        -webkit-transform: translateY(-65px);
                transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
    }
    72%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
    }
    81%{
        -webkit-transform: translateY(-28px);
                transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
    }
    90%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
    }
    95%{
        -webkit-transform: translateY(-8px);
                transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
    }
    100%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
    }
}

@keyframes bounce-in-top{
    0%{
        -webkit-transform: translateY(-500px);
                transform: translateY(-500px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
        opacity: 0;
    }
    38%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
        opacity: 1;
    }
    55%{
        -webkit-transform: translateY(-65px);
                transform: translateY(-65px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
    }
    72%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
    }
    81%{
        -webkit-transform: translateY(-28px);
                transform: translateY(-28px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
    }
    90%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
    }
    95%{
        -webkit-transform: translateY(-8px);
                transform: translateY(-8px);
        -webkit-animation-timing-function: ease-in;
                animation-timing-function: ease-in;
    }
    100%{
        -webkit-transform: translateY(0);
                transform: translateY(0);
        -webkit-animation-timing-function: ease-out;
                animation-timing-function: ease-out;
    }
}

.header-form{
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 0.2rem;
}
.header-form h3{
    font-size: 1.2rem;
}
.header-form form{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1.8rem;
}
.header-form form .form-control{
    -webkit-box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.4);
            box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.4);
}
.header-form input[type = "date"]{
    text-transform: uppercase;
}
.header-form input:not([type = "submit"])::-webkit-input-placeholder{
    color: #fff;
}
.header-form input:not([type = "submit"])::-moz-placeholder{
    color: #fff;
}
.header-form input:not([type = "submit"]):-ms-input-placeholder{
    color: #fff;
}
.header-form input:not([type = "submit"])::-ms-input-placeholder{
    color: #fff;
}
.header-form input:not([type = "submit"])::placeholder{
    color: #fff;
}
::-webkit-calendar-picker-indicator{
    -webkit-filter: invert(1);
            filter: invert(1);
}
.header-form .btn{
    margin-top: 0.8rem;
}

/* change background on scroll */
.navbar-cng{
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(48, 48, 48, 0.2);
            box-shadow: 0px 4px 5px 0px rgba(48, 48, 48, 0.2);
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
.navbar-cng .site-brand{
    color: var(--dark);
}
.navbar-cng .site-brand span{
    color: var(--green);
}
.navbar-cng #navbar-show-btn{
    color: var(--green);
}


/* OUR SERVICES SECTION */
/* Base Styling */


.why-choose-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-choose-section .container {
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #C800FF;
}

.section-heading span {
  color: #1A1A1A;
}

.section-subtext {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  transform: translateY(30px);
  opacity: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.why-card {
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.why-card {
  image-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.why-card .icon {
  font-size: 2.5rem;
  color: #A64DFF;
  margin-bottom: 20px;
}

.why-card h3 {
  color: #1A1A1A;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 2.2rem;
  }

  .why-card {
    padding: 30px 20px;
  }
}
.why-card:hover .icon {
  animation: pulse 0.6s ease-in-out infinite alternate;
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
.cta-wrapper {
  margin-top: 60px;
  text-align: center;
}

.cta-text {
  font-size: 1.1rem;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 14px 34px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  background-image: linear-gradient(135deg, #C800FF, #A64DFF);
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(200, 0, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.1);
  transition: width 0.4s ease;
  z-index: 0;
}

.cta-button:hover::after {
  width: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(200, 0, 255, 0.4);
}
.industries-marquee {
  background: #1A1A1A;
  padding: 80px 20px;
  overflow: hidden;
  position: relative;
  color: white;
}

.industries-marquee .section-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #C800FF;
  margin-bottom: 10px;
}

.industries-marquee .section-heading span {
  color: white;
}

.industries-marquee .section-subtext {
  text-align: center;
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.scroll-track {
  display: flex;
  gap: 20px;
  animation: scroll-left 25s linear infinite;
  will-change: transform;
}

.industry-card {
  min-width: 220px;
  flex: 0 0 auto;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  box-shadow: 0 0 15px rgba(168, 84, 255, 0.12);
  transition: transform 0.3s ease;
}

.industry-card i {
  display: block;
  font-size: 1.4rem;
  color: #A64DFF;
  margin-bottom: 8px;
}

.industry-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(200, 0, 255, 0.25);
}

.scroll-wrapper:hover .scroll-track {
  animation-play-state: paused;
}

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

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .industry-card {
    min-width: 200px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .industries-marquee .section-heading {
    font-size: 2rem;
  }

  .industry-card {
    min-width: 180px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .industry-card {
    min-width: 150px;
    font-size: 0.85rem;
    padding: 14px 12px;
  }

  .industries-marquee .section-subtext {
    font-size: 0.95rem;
  }
}

/* Testimonials Section */
#testimonials {
  background: #f8f9fa;
  padding: 60px 0;
}

#testimonials .container {
  max-width: 1200px;
  margin: auto;
}

#testimonials .title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

#testimonials .sm-title {
  font-size: 16px;
  color: #C800FF; /* neon purple */
  text-transform: uppercase;
}

#testimonials .lg-title {
  font-size: 36px;
  font-weight: 700;
  color: #1A1A1A;
}

#testimonials .section-subtitle {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.testimonial-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px;
  scroll-snap-type: x mandatory;
}

.testimonial-scroll::-webkit-scrollbar {
  height: 6px;
}

.testimonial-scroll::-webkit-scrollbar-thumb {
  background: #A64DFF; /* soft purple */
  border-radius: 10px;
}

.test-item {
  flex: 0 0 350px;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
  transition: transform 0.3s;
}

.test-item:hover {
  transform: translateY(-8px);
}

.test-item p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.rating {
  margin: 15px 0;
  font-weight: bold;
  color: #C800FF;
}

.rating span {
  color: #f4c150;
  font-size: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h3 {
  margin: 0;
  font-size: 18px;
  color: #222;
}

.client-info p {
  font-size: 14px;
  color: #C800FF;
}

.client-info small {
  color: #999;
}
/* ===== Responsive Styles ===== */
@media (min-width: 768px) {
  .testimonial-scroll {
    gap: 30px;
  }

  .test-item {
    flex: 0 0 45%;
  }
}

@media (min-width: 1024px) {
  .test-item {
    flex: 0 0 30%;
  }

  #testimonials .lg-title {
    font-size: 36px;
  }

  .test-item p {
    font-size: 16px;
  }
}

/* video */
.video-wrapper{
    height: 500px;
    position: relative;
}
.video-wrapper video{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
#play-btn{
    position: absolute;
    z-index: 5;
    width: 70px;
    height: 70px;
    background-color: var(--green);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    padding-left: 0.4rem;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}
#play-btn:hover{
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}


/* ### ABOUT PAGE ### */
/* about */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: none;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
}

.slide.active {
  display: block;
}

.dots {
  position: absolute;
  bottom: 20px; /* Puts it inside the image at bottom */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 8px 14px;
  border-radius: 2rem;
  backdrop-filter: blur(4px);
}

.dots .dot {
  height: 12px;
  width: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dots .dot.active {
  background-color: #C800FF; /* Neon purple */
}


@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
  }

  .about-left, .about-right {
    width: 100%;
  }

  .slider {
    height: auto;
  }

  .slide img {
    width: 100%;
    height: auto;
  }
}
.about-right {
  padding: 1rem 2rem;
  color: #CCCCCC;
  background: rgba(26, 26, 26, 0.9); /* Charcoal Black with transparency */
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(200, 0, 255, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease-in-out;
}

.about-right h2 {
  font-size: 2rem;
  color: #C800FF; /* Neon purple */
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
}

.about-right h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background-color: #A64DFF; /* Soft purple */
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 10px;
}

.about-right .text {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #DDDDDD;
}

@media (max-width: 768px) {
  .about-right {
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
  }

  .about-right h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}



/* facts */
/* ================= FACTS SECTION ONLY ================= */
#facts {
  position: relative;
  min-height: 80vh;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url("../images/facts-img.jpg") center/cover no-repeat;
  background-attachment: fixed; /* Parallax effect */
  overflow: hidden;
}
/* Facts Grid Layout */
.facts-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.facts-item {
  flex: 1 1 220px; /* Each card takes equal width, min 220px */
  max-width: 250px;
}

/* Animated subtle gradient overlay */
#facts::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, rgba(200, 0, 255, 0.185), transparent 40%, rgba(166, 77, 255, 0.15) 80%, transparent);
  animation: rotate-bg 30s linear infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes rotate-bg {
  to { transform: rotate(360deg); }
}

/* Title Styling */
#facts .title-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
#facts .sm-title {
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
  display: block;
  margin-bottom: 10px;
}
#facts .lg-title {
  font-size: 3rem;
  color: #fbfbfb;
  font-weight: bold;
}

/* Facts Row - Responsive Grid */
#facts .facts-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Fact Card Styling */
#facts .facts-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

/* Neon Glow on Hover */
#facts .facts-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}
#facts .facts-item:hover::after {
  opacity: 1;
}
#facts .facts-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(200, 0, 255, 0.3);
}
  
/* Icon Styling */
#facts .facts-icon {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}
#facts .facts-item:hover .facts-icon {
  transform: scale(1.2);
  color: #ffffff;
}

/* Counter Number */
#facts .facts-info strong {
  font-size: 2.4rem;
  font-weight: bold;
  display: block;
  margin: 1rem 0;
  color: #fff;
}

/* Text Label */
#facts .facts-info .text {
  text-transform: uppercase;
  font-size: 1rem;
  color: #ccc;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  #facts .lg-title {
    font-size: 2.2rem;
  }
  #facts .facts-info strong {
    font-size: 1.8rem;
  }
}
/* Our Journey Section */
.journey-section {
  background: #fff;
  padding: 5rem 2rem;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #C800FF; /* Neon Purple */
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #C800FF, #A64DFF);
  border-radius: 10px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

.timeline-dot {
  position: absolute;
  left: -7px;
  width: 18px;
  height: 18px;
  background: #C800FF;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 10px rgba(200, 0, 255, 0.6);
}

.timeline-content {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  margin-left: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(10px);
}

.timeline-content .year {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #1a1a1a;
  background: #C800FF;
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 1rem;
  color: #555;
}

/* Leaders Section Styling */
.leaders-section {
  background: #000000;
  padding: 5rem 2rem;
  color: #fff;
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #C800FF;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 3rem;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.leader-card {
  perspective: 1000px;
  width: 280px;
  height: 380px;
}
.leader-card {
  
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

.leader-card.show {
  opacity: 1;
  transform: translateY(0);
}

.leader-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.leader-card:hover .leader-inner {
  transform: rotateY(180deg);
}

.leader-front, .leader-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  backface-visibility: hidden;
}

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

.leader-front img.leader-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 4px solid #C800FF;
}

.leader-name {
  font-size: 1.5rem;
  font-weight: bold;
}

.leader-role {
  font-size: 1rem;
  color: #A64DFF;
}

.leader-back {
  transform: rotateY(180deg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leader-back h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #C800FF;
}

.leader-back p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.social-links a {
  color: #fff;
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #C800FF;
}

/* Responsive */
@media (max-width: 768px) {
  .leaders-section {
    padding: 3rem 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
}
/* Section Layout */
.cert-section {
  background: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #C800FF;
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

/* Certifications Grid */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.cert-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.cert-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(200, 0, 255, 0.3);
}

.cert-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.cert-item:hover::before {
  left: 125%;
}

.cert-badge img {
  max-width: 90px;
  margin-bottom: 1rem;
  transition: transform 0.4s;
}

.cert-item:hover .cert-badge img {
  transform: scale(1.1);
}

.cert-item h4 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-top: 0.5rem;
}

/* Achievement Stats */
.achievement-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(90deg, #C800FF, #A64DFF);
  -webkit-background-clip: text;
  color: transparent;
}

.stat-item p {
  font-size: 1rem;
  color: #333;
}

/* Scroll Animation */
.cert-item, .stat-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-in-out;
}

.cert-item.show, .stat-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .stat-item h3 {
    font-size: 2.2rem;
  }
}


/* ### CONTACT PAGE ### */
/* contact */
.contact-form .form-control{
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000;
    display: block;
    margin: 1.6rem auto;
}
.contact-form .btn{
    display: block;
    margin: auto;
}
.contact-icon{
    background-color: var(--green);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 1rem auto;
    font-size: 2rem;
}
.contact-item{
    text-align: center;
    margin: 3rem 0;
}
.contact-item div span{
    font-weight: 600;
    font-family: "Ralway", sans-serif;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1rem;
}