/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}



.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
    color: #6FBEDD;
}
.mx-auto {
    margin-right: auto !important;
    background-color: #000000;
    margin-left: auto !important;
}
/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}
.btn-outline-primary {
    color: #4FAC22;
    border-color:#4FAC22;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}
   
 



    .section1 {
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      background: #000;
    }

    .container1 {
      max-width: 1200px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    /* Left Content */
    .content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #6FBEDD;
    }

    .content p {
      color: #ddd;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }

    .stat-box {
      background: rgba(255,255,255,0.05);
      border-radius: 20px;
      padding: 25px;
      transition: 0.4s ease;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .stat-box:hover {
      transform: translateY(-8px);
      border-color: #057C9D;
      box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    }

    .stat-icon {
      font-size: 28px;
      margin-bottom: 10px;
      color: #4FAC22;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: bold;
      color: #97D191;
    }

    .stat-label {
      font-size: 0.95rem;
      color: #aaa;
      margin-top: 5px;
    }

    /* Right Image */
    .image-box {
      position: relative;
      overflow: hidden;
      border-radius: 25px;
    }

    .image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .image-box:hover img {
      transform: scale(1.08);
    }

    /* Animations */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.9s ease;
    }

    .fade-up.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .container1 {
        grid-template-columns: 1fr;
      }

      .content h2 {
        font-size: 2rem;
      }
    }
  

/*** Navbar ***/
/* Default (Mobile) */
.navbar-logo {
    max-height: 80px;
    width: auto;
}

/* Tablet */
@media (min-width: 768px) {
    .navbar-logo {
        max-height: 100px;
    }
}


/* Desktop */
@media (min-width: 992px) {
    .navbar-logo {
        max-height: 140px;
    }
}


.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 40px 0;
    color: var(--bs-white);
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
}


@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid var(--bs-white);
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid var(--bs-white);
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}



.service-item.service-item-left {
    border-radius: 200px 0 0 200px;
    background: linear-gradient(to right, var(--bs-secondary), var(--bs-dark));
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(to left, var(--bs-secondary), var(--bs-dark));
}

@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}
/* Clients Section */

.clients-section {
    background: #000;
    color: #fff;
}

.clients-section h5,
.clients-section h1 {
    color: #fff;
}

/* Grid Table */

.clients-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-left: 1px solid rgba(255,255,255,0.15);
}

/* Each Cell */

.client-cell {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-right: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);

    padding: 20px;
}

/* Logos */

.client-cell img {
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.4s ease;
}

.client-cell:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive */

@media (max-width: 992px) {
    .clients-table {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-table {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .clients-table {
        grid-template-columns: 1fr;
    }
}



/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--bs-dark);
    border-radius: 100px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}



/* ================= WHY CHOOSE US ================= */

.why-section {
  background: #000;
  padding: 100px 20px;
  color: #fff;
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h5 {
  color: #6FBEDD;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.why-header h2 {
  font-size: 2.5rem;
  margin: 15px 0;
  color: #ffffff;
}

.why-header p {
  max-width: 700px;
  margin: auto;
  color: #ccc;
  line-height: 1.6;
}

/* Grid */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */

.why-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
  transform: translateY(40px);
  opacity: 0;
}

.why-card.show {
  transform: translateY(0);
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #057C9D;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* Icon */

.why-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #4FAC22;
  transition: 0.4s ease;
}

.why-card:hover .why-icon {
  color: #97D191;
  transform: scale(1.1);
}

.why-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #6FBEDD;
}

.why-card p {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 2rem;
  }
}
/* ================= AWARDS SECTION ================= */

.awards-section {
  background: #000;
  padding: 120px 20px;
  color: #fff;
  overflow: hidden;
}

.awards-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ================= IMAGES ================= */

.awards-images {
  position: relative;
}

.big-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
  transition: 0.6s ease;
}

.big-image img:hover {
  transform: scale(1.05);
}

.small-image {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
}

.small-image img {
  width: 100%;
  border-radius: 20px;
  border: 4px solid #057C9D;
  box-shadow: 0 15px 50px rgba(0,0,0,0.6);
  animation: floatImage 4s ease-in-out infinite;
}

/* Floating Animation */

@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ================= CONTENT ================= */

.award-subtitle {
  color: #6FBEDD;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.award-title {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.award-org {
  color: #97D191;
  margin-bottom: 25px;
}

.awards-content p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Button */

.award-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid #4FAC22;
  color: #4FAC22;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s ease;
}

.award-btn:hover {
  background: #057C9D;
  border-color: #057C9D;
  color: #fff;
  box-shadow: 0 10px 35px rgba(5,124,157,0.5);
}

/* ================= ANIMATIONS ================= */

.fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: 1s ease;
}

.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.fade-left.show,
.fade-up.show {
  opacity: 1;
  transform: translate(0);
}

/* Text Animation (Staggered Reveal) */

.text-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease;
}

.text-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .awards-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .small-image {
    position: relative;
    bottom: 0;
    right: 0;
    width: 70%;
    margin: 20px auto 0;
  }

  .award-title {
    font-size: 1.8rem;
  }
}
/* ================= ULTIMATE CONTACT ================= */

.ultimate-contact {
  background: #000;
  padding: 120px 20px 60px;
  color: #fff;
}

.ultimate-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

/* Titles */

.ultimate-sub {
  color: #6FBEDD;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ultimate-title {
  font-size: 2.4rem;
  margin: 15px 0;
}

.ultimate-desc {
  color: #bbb;
  margin-bottom: 40px;
}

/* Cards */

.ultimate-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.u-card {
  display: flex;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 20px;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.u-card i {
  font-size: 26px;
  color: #4FAC22;
}

.u-card:hover {
  transform: translateY(-10px);
  border-color: #057C9D;
  box-shadow: 0 15px 40px rgba(5,124,157,0.4);
}

/* Social */

.ultimate-social {
  margin-top: 40px;
}

.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.s-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: 0.4s;
  animation: float 4s infinite ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.s-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 20px #6FBEDD;
}

/* Platform colors */

.insta { background: linear-gradient(45deg,#833ab4,#fd1d1d,#fcb045); }
.insta2 { background: linear-gradient(45deg,#057C9D,#6FBEDD); }
.linkedin { background: #057C9D; }
.facebook { background: #1877f2; }
.google { background: #4FAC22; }

/* Form + Map */

.form-wrapper,
.map-wrapper {
  border-radius: 25px;
  overflow: hidden;
  border: 3px solid #057C9D;
  margin-bottom: 30px;
  animation: glowBorder 3s infinite alternate;
}

@keyframes glowBorder {
  from { box-shadow: 0 0 10px rgba(5,124,157,0.4); }
  to { box-shadow: 0 0 30px rgba(111,190,221,0.6); }
}

.form-wrapper iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Footer */

.ultimate-footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #777;
}
/* ================= FOOTER ================= */

.main-footer {
  position: relative;
  background: url(img/footer.png);
  color: #fff;
  padding: 100px 20px 30px;
  overflow: hidden;
}

/* Dark Overlay */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.footer-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  z-index: 2;
}

/* Column */

.footer-col h3 {
  margin-bottom: 20px;
  color: #6FBEDD;
}

.footer-desc {
  color: #bbb;
  margin-bottom: 25px;
}

/* Contact */

.footer-contact p {
  margin-bottom: 12px;
  color: #ccc;
  transition: 0.3s;
}

.footer-contact i {
  color: #4FAC22;
  margin-right: 8px;
}

.footer-contact p:hover {
  color: #fff;
  transform: translateX(5px);
}

/* Links */

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #bbb;
  transition: 0.3s;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #057C9D;
  transition: 0.4s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Social Icons */

.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.f-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.4s;
}

.f-icon:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 0 20px #6FBEDD;
}

/* Social Colors */

.insta { background: linear-gradient(45deg,#833ab4,#fd1d1d,#fcb045); }
.linkedin { background: #057C9D; }
.facebook { background: #1877f2; }
.google { background: #4FAC22; }

.footer-note {
  color: #aaa;
  font-size: 14px;
}

/* Bottom */

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #777;
  position: relative;
  z-index: 2;
}

/* Responsive */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
/* ================= ABOUT SAMMEGH ================= */

.about-sammegh {
  background: #000;
  padding: 120px 20px;
  color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Image */

.about-image img {
  width: 100%;
  border-radius: 25px;
  transition: 0.5s ease;
  box-shadow: 0 20px 50px rgba(5,124,157,0.3);
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 70px rgba(111,190,221,0.5);
}

/* Content */

.about-subtitle {
  color: #6FBEDD;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-title {
  font-size: 2.5rem;
  margin: 15px 0 25px;
}

.about-title span {
  color: #4FAC22;
}

.about-text {
  color: #bbb;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Highlights */

.about-highlights {
  margin-top: 25px;
  margin-bottom: 30px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  transition: 0.3s;
}

.highlight i {
  color: #4FAC22;
}

.highlight:hover {
  transform: translateX(8px);
  color: #fff;
}

/* Button */

.about-btn {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(45deg,#057C9D,#6FBEDD);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.4s;
}

.about-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(5,124,157,0.5);
}

/* Animations */

.fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: 1s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(60px);
  transition: 1s ease;
}

.fade-left.show,
.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .highlight {
    justify-content: center;
  }
}
/* ================= CEO SECTION ================= */

.ceo-section {
  background: #000;
  padding: 120px 20px;
  color: #fff;
}

.ceo-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* Image */

.ceo-image img {
  width: 100%;
  border-radius: 30px;
  transition: 0.5s ease;
  box-shadow: 0 20px 60px rgba(5,124,157,0.3);
}

.ceo-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(111,190,221,0.5);
}

/* Content */

.ceo-subtitle {
  color: #6FBEDD;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ceo-title {
  font-size: 2.6rem;
  margin: 10px 0;
  color: #fff;
}

.ceo-role {
  color: #4FAC22;
  margin-bottom: 25px;
}

.ceo-text {
  color: #bbb;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* LinkedIn Button */

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  background: linear-gradient(45deg,#057C9D,#6FBEDD);
  color: #fff;
  transition: 0.4s;
}

.linkedin-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(5,124,157,0.6);
}

/* Animations */

.fade-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: 1s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(60px);
  transition: 1s ease;
}

.fade-left.show,
.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */

@media (max-width: 992px) {
  .ceo-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Scroll Animation */

.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 992px) {
  .ultimate-container {
    grid-template-columns: 1fr;
  }

  .social-icons {
    justify-content: center;
  }
}

/* ================= SERVICES SECTION ================= */

.services-section {
  background: #000;
  padding: 100px 20px;
  color: #fff;
}

.container-services {
  max-width: 1200px;
  margin: auto;
}

/* Section Header */

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h5 {
  color: #4FAC22;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #6FBEDD;
  margin: 15px 0;
}

.section-header p {
  color: #ccc;
  max-width: 700px;
  margin: auto;
}

/* Grid Layout */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Service Box */

.service-box {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
}

.service-box img {
  width: 100%;
  margin-bottom: 20px;
}

.service-box h3 {
  color: #057C9D;
  margin-bottom: 15px;
}

.service-box p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.7;
}

.service-box:hover {
  transform: translateY(-10px);
  border-color: #6FBEDD;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Animations */

.animate-top {
  opacity: 0;
  transform: translateY(-40px);
  transition: 1s ease;
}

.animate-up {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.animate-top.show,
.animate-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.technologies-section {
  background: #000;
  padding: 100px 0;
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 40px;
  color: #6FBEDD; /* Light Sky Blue */
  margin-bottom: 15px;
}

.section-header p {
  color: #ccc;
}

/* Grid Layout */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.1);
}

/* Tech Item */
.tech-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s ease;
}

.tech-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.tech-item span {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  color: #ccc;
}

/* Hover Effect */
.tech-item:hover {
  background: rgba(5, 124, 157, 0.08);
}

.tech-item:hover span {
  color: #6FBEDD;
}

.tech-item:hover img {
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }
}
.process-section {
  background: #000;
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 42px;
  background: linear-gradient(90deg, #4FAC22, #6FBEDD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.section-header p {
  color: #bbb;
  max-width: 700px;
  margin: auto;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

/* Glowing Center Line */
.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background: linear-gradient(to bottom, #4FAC22, #97D191);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(79, 172, 34, 0.6);
}

/* Timeline Item */
.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.7s ease;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

/* Content Box */
.timeline-content {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(79,172,34,0.2);
  transition: 0.3s ease;
}

.timeline-content h3 {
  color: #97D191;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.timeline-content:hover {
  background: rgba(79,172,34,0.1);
  border-color: #4FAC22;
  transform: scale(1.03);
}

/* Icon */
.timeline-icon {
  position: absolute;
  top: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #4FAC22, #057C9D);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  z-index: 1;
  box-shadow: 0 0 20px rgba(79,172,34,0.6);
  transition: 0.3s ease;
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(151,209,145,0.9);
}

.timeline-item:nth-child(odd) .timeline-icon {
  right: -28px;
}

.timeline-item:nth-child(even) .timeline-icon {
  left: -28px;
}

/* Responsive */
@media (max-width: 768px) {

  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 20px;
    text-align: left !important;
  }

  .timeline-item:nth-child(even) {
    left: 0;/* ================= MARQUEE PREMIUM ================= */

.marquee-section{
    margin-top:100px;
    background-color: black;
}

.marquee-title{
    text-align:center;
    font-size:32px;
    color:#6FBEDD;
    margin-bottom:50px;
}

.marquee-container{
    overflow:hidden;
    position:relative;
}

.marquee-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scroll 30s linear infinite;
}

.marquee-container:hover .marquee-track{
    animation-play-state:paused;
}

.marquee-card{
    min-width:320px;
    background:black;
    padding:30px;
    border-radius:20px;
    border:1px solid #222;
    transition:0.4s ease;
    position:relative;
}

.marquee-card:hover{
    transform:translateY(-10px);
    border:1px solid #057C9D;
    box-shadow:0 0 30px rgba(5,124,157,0.4);
}

.marquee-card h3{
    color:#97D191;
    margin-bottom:20px;
}

.marquee-card ul{
    list-style:none;
    padding:0;
}

.marquee-card ul li{
    margin-bottom:10px;
    font-size:14px;
    color:#ccc;
    position:relative;
    padding-left:20px;
}

.marquee-card ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#4FAC22;
    font-size:14px;
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* Responsive */
@media(max-width:768px){
    .marquee-card{
        min-width:260px;
        padding:20px;
    }

    .marquee-title{
        font-size:24px;
    }
}

  }

  .timeline-icon {
    left: -5px !important;
  }
}
/* ================= MARQUEE PREMIUM ================= */

.marquee-section{
    margin-top:100px;
}

.marquee-title{
    text-align:center;
    font-size:32px;
    color:#6FBEDD;
    margin-bottom:50px;
}

.marquee-container{
    overflow:hidden;
    position:relative;
}

.marquee-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scroll 30s linear infinite;
}

.marquee-container:hover .marquee-track{
    animation-play-state:paused;
}

.marquee-card{
    min-width:320px;
    background:#111;
    padding:30px;
    border-radius:20px;
    border:1px solid #222;
    transition:0.4s ease;
    position:relative;
}

.marquee-card:hover{
    transform:translateY(-10px);
    border:1px solid #057C9D;
    box-shadow:0 0 30px rgba(5,124,157,0.4);
}

.marquee-card h3{
    color:#97D191;
    margin-bottom:20px;
}

.marquee-card ul{
    list-style:none;
    padding:0;
}

.marquee-card ul li{
    margin-bottom:10px;
    font-size:14px;
    color:#ccc;
    position:relative;
    padding-left:20px;
}

.marquee-card ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#4FAC22;
    font-size:14px;
}

@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* Responsive */
@media(max-width:768px){
    .marquee-card{
        min-width:260px;
        padding:20px;
    }

    .marquee-title{
        font-size:24px;
    }
}
/* ================= DARK QUOTE SECTION ================= */

.quote-dark{
    background:#000000;
    padding:100px 5%;
}

.quote-dark-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

/* LEFT IMAGE */
.quote-dark-image{
    flex:1;
    min-width:320px;
    text-align:center;
}

.quote-dark-image img{
    width:100%;
    max-width:500px;
    transition:0.4s ease;
    filter:drop-shadow(0 0 25px rgba(5,124,157,0.5));
}

.quote-dark-image img:hover{
    transform:scale(1.03);
}

/* RIGHT CONTENT */
.quote-dark-content{
    flex:1;
    min-width:320px;
}

.quote-dark-content h2{
    font-size:36px;
    color:#6FBEDD; /* Light Sky Blue */
    margin-bottom:15px;
}

.quote-dark-content p{
    color:#cccccc;
    margin-bottom:30px;
    line-height:1.6;
}

/* FORM */
.quote-dark-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.quote-dark-form input,
.quote-dark-form select,
.quote-dark-form textarea{
    padding:12px 15px;
    background:#111;
    border:1px solid #222;
    border-radius:8px;
    color:#ffffff;
    outline:none;
    transition:0.3s ease;
}

/* Focus Effect */
.quote-dark-form input:focus,
.quote-dark-form select:focus,
.quote-dark-form textarea:focus{
    border-color:#057C9D; /* Deep Teal */
    box-shadow:0 0 10px rgba(5,124,157,0.4);
}

/* BUTTON */
.quote-dark-form button{
    padding:12px;
    border:none;
    border-radius:8px;
    background:linear-gradient(45deg,#057C9D,#4FAC22);
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
}

.quote-dark-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 25px rgba(79,172,34,0.4);
}

/* RESPONSIVE */
@media(max-width:992px){
    .quote-dark-container{
        flex-direction:column;
        text-align:center;
    }

    .quote-dark-content h2{
        font-size:28px;
    }
}
/* ================= PORTFOLIO SECTION ================= */

.portfolio-section{
    background:#000;
    padding:100px 5%;
}

.portfolio-header{
    text-align:center;
    margin-bottom:60px;
}

.portfolio-header h2{
    font-size:40px;
    color:#6FBEDD;
}

.portfolio-header p{
    color:#ccc;
    max-width:700px;
    margin:auto;
    margin-top:10px;
}

/* GRID */
.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

/* CARD */
.portfolio-card{
    background:#111;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s ease;
    border:1px solid #222;
}

.portfolio-card:hover{
    transform:translateY(-10px);
    border:1px solid #057C9D;
    box-shadow:0 0 30px rgba(5,124,157,0.4);
}

.portfolio-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.4s ease;
}

.portfolio-card:hover .portfolio-img img{
    transform:scale(1.05);
}

.portfolio-content{
    padding:20px;
}

.portfolio-content h3{
    color:#97D191;
    margin-bottom:10px;
}

.portfolio-content p{
    color:#ccc;
    font-size:14px;
    margin-bottom:15px;
}

.client-info{
    font-size:13px;
    color:#6FBEDD;
}

.client-info span{
    color:#4FAC22;
}

/* Responsive */
@media(max-width:768px){
    .portfolio-header h2{
        font-size:28px;
    }
}


/* SECTION */
.products-section {
    padding: 80px 8%;
    background: linear-gradient(135deg, #0f0f0f, #151515);
}

.products-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.products-section h2 span {
    color: var(--sky);
}

/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* CARD */
.product-card {
    background: var(--dark);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s ease;
    position: relative;
    border: 2px solid var(--green);   /* GREEN BORDER */
    box-shadow: 0 0 15px rgba(79, 172, 34, 0.15);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(79, 172, 34, 0.5);
    border-color: var(--softgreen);
}

/* BUTTON */
.btn-whatsapp {
    display: inline-block;
    padding: 10px 22px;
    background: transparent;
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    border: 2px solid var(--green);  /* GREEN BORDER */
    transition: 0.3s ease;
}

.btn-whatsapp:hover {
    background: var(--green);
    color: #000;
    box-shadow: 0 0 15px rgba(79, 172, 34, 0.6);
    transform: scale(1.05);
}

/* IMAGE */
.product-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

/* CONTENT */
.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--green);
}

.product-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ccc;
}

.product-content ul {
    margin-bottom: 20px;
}

.product-content ul li {
    font-size: 14px;
    margin-bottom: 8px;
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.product-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--sky);
}

/* BUTTON */
.btn-whatsapp {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, var(--teal), var(--green));
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-whatsapp:hover {
    background: linear-gradient(90deg, var(--green), var(--sky));
    transform: scale(1.05);
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:768px){
    .products-section h2 {
        font-size: 28px;
    }
}

.testimonial-section {
    background: var(--black);
    padding: 60px 0;
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
}

.testimonial-card {
    background: var(--dark);
    min-width: 320px;
    max-width: 320px;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--green);
    box-shadow: 0 0 15px rgba(79, 172, 34, 0.2);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(79, 172, 34, 0.5);
}

.testimonial-card h4 {
    margin-bottom: 5px;
    color: var(--sky);
}

.industry {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.rating {
    color: gold;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media(max-width:768px){
    .testimonial-card{
        min-width: 280px;
    }
}



.education-section{
    padding:90px 8%;
}

.education-container{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

/* LEFT IMAGE */
.education-image{
    flex:1;
}

.education-image img{
    width:100%;
    border-radius:20px;
    border:2px solid var(--blue);
    box-shadow:0 0 25px rgba(6,188,244,0.3);
}

/* RIGHT CONTENT */
.education-content{
    flex:1;
}

.education-content h2{
    font-size:38px;
    margin-bottom:20px;
}

.education-content h2 span{
    color:var(--lightblue);
}

.education-content p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:20px;
}

.education-points{
    margin-top:20px;
}

.education-points li{
    list-style:none;
    margin-bottom:12px;
    padding-left:25px;
    position:relative;
    color:#ddd;
}

.education-points li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:var(--green);
}

/* RESPONSIVE */
@media(max-width:900px){
    .education-container{
        flex-direction:column;
    }
    .education-content h2{
        font-size:28px;
    }
}
.section{
  padding:80px 8%;
  text-align:center;
}

.section h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:50px;
  color:#ffffff;
}

.box-container{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap:30px;
}

.box{
  background:#000; /* Black box */
  color:#fff; /* White text */
  padding:35px;
  border-radius:16px;
  border:2px solid #4FAC22; /* Green Border */
  transition:all 0.4s ease;
  position:relative;
  overflow:hidden;
}

.box:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(79,172,34,0.4);
  background:#0d0d0d;
}

.box h3{
  font-size:22px;
  margin-bottom:15px;
  color:#4FAC22;
}

.box p{
  font-size:15px;
  line-height:1.7;
  color:#f1f1f1;
}

.icon{
  font-size:40px;
  margin-bottom:20px;
  color:#4FAC22;
}

@media(max-width:768px){
  .section{
    padding:60px 5%;
  }
  .section h2{
    font-size:28px;
  }
}


/* ===== SECTION ===== */
.stats-section{
  position:relative;
  padding:100px 8%;
  text-align:center;
  overflow:hidden;
  background:#000;
}

/* Floating background image */
.stats-section::before{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  background:url('../img/group-four-indian-teen-male-students-classmates-spend-time-together.jpg') no-repeat center/cover;
  opacity:0.08;
  top:10%;
  left:-100px;
  animation:float 6s ease-in-out infinite;
  border-radius:50%;
}

@keyframes float{
  0%{transform:translateY(0px);}
  50%{transform:translateY(-30px);}
  100%{transform:translateY(0px);}
}

.stats-title{
  font-size:38px;
  font-weight:700;
  margin-bottom:20px;
  color:#4FAC22;
}

.stats-description{
  max-width:900px;
  margin:0 auto 60px;
  font-size:16px;
  line-height:1.8;
  color:#ccc;
}

.stats-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.stat-box{
  background:#0d0d0d;
  border:2px solid #4FAC22;
  border-radius:18px;
  padding:40px 20px;
  transition:0.4s;
}

.stat-box:hover{
  transform:translateY(-10px);
  box-shadow:0 0 25px rgba(79,172,34,0.5);
}

.stat-number{
  font-size:42px;
  font-weight:700;
  color:#4FAC22;
  margin-bottom:15px;
}

.stat-text{
  font-size:16px;
  line-height:1.6;
  color:#eee;
}

@media(max-width:768px){
  .stats-title{
    font-size:28px;
  }
}

.program-section{
  background:#000;
  padding:100px 8%;
  text-align:center;
  font-family:'Poppins', sans-serif;
  color:#fff;
}

.section-title{
  font-size:36px;
  font-weight:700;
  margin-bottom:60px;
  background:linear-gradient(90deg,#057C9D,#6FBEDD);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.program-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:40px;
}

.program-card{
  background:#0a0a0a;
  border-radius:18px;
  overflow:hidden;
  border:1px solid #057C9D;
  transition:0.4s ease;
}

.program-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 30px rgba(111,190,221,0.4);
}

.program-image img{
  width:100%;
  height:220px;
  object-fit:cover;
  opacity:0.9;
}

.program-content{
  padding:30px;
  text-align:left;
}

.program-content h3{
  font-size:20px;
  margin-bottom:15px;
  color:#6FBEDD;
}

.program-content ul{
  padding-left:18px;
  margin-bottom:20px;
}

.program-content ul li{
  margin-bottom:8px;
  font-size:14px;
  color:#ddd;
}

.program-table{
  width:100%;
  border-collapse:collapse;
  margin-bottom:20px;
  font-size:14px;
}

.program-table td{
  padding:8px 0;
  border-bottom:1px solid #222;
  color:#ccc;
}

.old-price{
  text-decoration:line-through;
  color:#777;
  margin-right:8px;
}

.new-price{
  color:#6FBEDD;
  font-weight:700;
  font-size:16px;
}

/* Buttons */
.buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.btn{
  padding:10px 20px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  border-radius:30px;
  transition:0.3s;
}

/* Same gradient button style */
.btn-gradient{
  background:linear-gradient(90deg,#057C9D,#6FBEDD);
  color:#fff;
}

.btn-gradient:hover{
  opacity:0.85;
}

.btn-outline{
  border:1px solid #6FBEDD;
  color:#6FBEDD;
}

.btn-outline:hover{
  background:#6FBEDD;
  color:#000;
}

@media(max-width:768px){
  .section-title{
    font-size:28px;
  }
}

/* SECTION */
.process-section{
    padding:80px 5%;
    background:#000;
    color:#fff;
}

.section-title{
    text-align:center;
    font-size:40px;
    margin-bottom:60px;
    font-weight:700;
}

.section-title span{
    color:#4FAC22; /* Bright Green */
}

/* PROCESS CONTAINER */
.process-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:40px;
}

/* CARD */
.process-card{
    background:#111;
    border-radius:15px;
    padding:40px 30px;
    width:350px;
    transition:0.4s ease;
    border:1px solid #057C9D;
    position:relative;
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 25px #4FAC22;
}

/* STEP NUMBER */
.step-number{
    font-size:60px;
    font-weight:800;
    color:#6FBEDD;
    margin-bottom:20px;
}

/* ICON */
.process-card i{
    font-size:35px;
    color:#4FAC22;
    margin-bottom:20px;
}

/* TITLE */
.process-card h3{
    font-size:24px;
    margin-bottom:20px;
    color:#6FBEDD;
}

/* LIST */
.process-card ul{
    padding-left:20px;
}

.process-card ul li{
    margin-bottom:10px;
    line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:992px){
    .process-container{
        flex-direction:column;
        align-items:center;
    }
}

.placements-section {
    background: #000;
    padding: 80px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(90deg, #00ff99, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: #aaa;
    margin-bottom: 50px;
}

.marque3 {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: scroll 25s linear infinite;
    width: max-content;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.placement-card {
    background: #111;
    min-width: 260px;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 153, 0.2);
    transition: 0.4s ease;
}

.placement-card:hover {
    border: 1px solid #00ff99;
    box-shadow: 0 0 25px rgba(0, 255, 153, 0.4);
    transform: translateY(-8px);
}

.placement-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00ccff;
    margin-bottom: 15px;
}

.placement-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.placement-card p {
    color: #888;
    font-size: 14px;
}

.placement-card span {
    color: #00ccff;
    font-weight: 600;
}
