/* Page Hero Section */
.page-hero {
  position: relative;
  width: 100%;
  height: 400px;
  background: url('./images/images-T4FESZB-2.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 40, 0.75); /* Dark blue overlay */
  top: 0;
  left: 0;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-hero__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-hero__breadcrumb {
  font-size: 16px;
}

.page-hero__breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
}

.page-hero__breadcrumb a:hover {
  opacity: 1;
}

.separator {
  margin: 0 8px;
  color: #00d4ff; /* cyan arrow color */
}


.services-section {
  background: #143c40;
  padding: 100px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: #11181454;
  padding: 40px;
  border-radius: 15px;
  transition: all 0.3s ease;
  color: #cfd8e3;
}

.service-card:hover {
  transform: translateY(-10px);
  background: #07345a;
}

.service-card .icon {
  font-size: 32px;
  color: #00e0b8;
  margin-bottom: 20px;
}

.service-card h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.about-section {
  background: #0a3b3f;
  padding: 100px 0;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Images */
.about-images {
  position: relative;
}

.img-main {
  width: 100%;
  border-radius: 20px;
}

.img-small {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  border-radius: 20px;
  border: 5px solid #0a3b3f;
}

/* Content */
.section-tag {
  color: #00e0b8;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.about-content h2 {
  font-size: 42px;
  margin: 15px 0;
}

.about-content p {
  color: #cfd8dc;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Feature Box */
.feature-box {
  background: #1c2b2f;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  display: flex;
  gap: 40px;
}

.feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature i {
  font-size: 28px;
  color: #00e0b8;
}

.feature h4 {
  margin-bottom: 5px;
  font-size: 18px;
}

/* Button */
.btn-primary {
  display: inline-block;
  background: #00e0b8;
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #00c7a2;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .img-small {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }

  .feature-box {
    flex-direction: column;
  }
}


.stats-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475') center/cover no-repeat;
  padding: 100px 0;
  color: #fff;
}

.stats-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 15, 35, 0.85);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 40px;
}

.stat-box i {
  font-size: 32px;
  color: #00e0b8;
  margin-bottom: 20px;
}

.stat-box h2 {
  font-size: 42px;
  font-weight: 700;
}

.stat-box h2 span {
  color: #00e0b8;
  font-size: 28px;
}

.stat-box p {
  color: #cfd8dc;
  margin-top: 10px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}


.values-section {
  background: #0a3b3f;
  padding: 100px 0;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Top Layout */
.values-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.section-tag {
  color: #00e0b8;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.values-content h2 {
  font-size: 48px;
  margin: 15px 0;
  line-height: 1.2;
}

.values-content p {
  color: #cfd8dc;
  line-height: 1.6;
}

/* Image */
.values-image img {
  width: 100%;
  border-radius: 20px;
}

/* Cards */
.values-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  background: #1c2b2f;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
  background: #22363b;
}

.value-card i {
  font-size: 36px;
  color: #00e0b8;
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.value-card p {
  color: #cfd8dc;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .values-top {
    grid-template-columns: 1fr;
  }

  .values-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-cards {
    grid-template-columns: 1fr;
  }
}

.values-section {
  background: #0f2f33;
  padding: 120px 0;
  color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Top Layout */
.values-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.section-label {
  font-size: 13px;
  letter-spacing: 3px;
  color: #00c2a8;
  font-weight: 600;
}

.values-left h2 {
  font-size: 44px;
  line-height: 1.25;
  margin: 20px 0;
  font-weight: 700;
}

.values-left p {
  color: #c7d4d6;
  max-width: 500px;
  line-height: 1.7;
}

/* Image */
.values-right img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Cards */
.values-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: #143c40;
  padding: 40px;
  border-radius: 16px;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: #00c2a8;
}

.value-card .icon {
  font-size: 24px;
  color: #00c2a8;
  margin-bottom: 20px;
}

.value-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.value-card p {
  font-size: 15px;
  color: #c7d4d6;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .values-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .values-left p {
    margin: auto;
  }

  .values-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-cards {
    grid-template-columns: 1fr;
  }

  .values-left h2 {
    font-size: 34px;
  }
}


.contact-section {
  background: #0f3a3f;
  padding: 120px 0;
  color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Side */
.section-label {
  font-size: 13px;
  letter-spacing: 3px;
  color: #00c2a8;
  font-weight: 600;
}

.contact-left h2 {
  font-size: 46px;
  margin: 20px 0;
}

.contact-left p {
  color: #c7d4d6;
  margin-bottom: 25px;
  line-height: 1.7;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.contact-info li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #d6e2e4;
}

.contact-info i {
  color: #00c2a8;
  margin-right: 10px;
}

.social-icons span {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.social-icons a {
  color: #ffffff;
  margin-right: 15px;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #00c2a8;
}

/* Form Box */
.contact-form-box {
  background: #1c1f22;
  padding: 50px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #00c2a8;
}

.btn-submit {
  background: #00c2a8;
  color: #000;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #00a893;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}
.icon-highlight {
  color: #00c2a8;
  margin-right: 10px;
}

.contact-left p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-submit i {
  margin-right: 8px;
}

.map-section {
  background: #0f3a3f; /* same theme as contact */
  padding: 80px 0;
}

.map-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  display: block;
  border-radius: 20px;
}



  .course-hero {
    background: linear-gradient(135deg, #283f3e, #0e4840);
    color: #fff;
    /* padding: 80px 0; */
}

.course-hero .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
}

.sub-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #128f4e;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #128f4e;
}

.btn-outline {
    border: 2px solid #128f4e;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #38bdf8;
    color: #000;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
}

.cloud-clean {
    padding: 100px 0;
    background: #0e4840;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.cloud-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 70px;
    align-items: start;
}

.cloud-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #fff;
}

.cloud-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 18px;
}

/* Right Box */
.cloud-highlight {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #0f172a;
}

.cloud-highlight h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #0f172a;
}

.cloud-highlight ul {
    list-style: none;
    padding: 0;
}

.cloud-highlight ul li {
    margin-bottom: 14px;
    font-size: 15px;
    color: #334155;
    position: relative;
    padding-left: 18px;
}

.cloud-highlight ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0f172a;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .cloud-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cloud-text h2 {
        font-size: 26px;
    }
}

 .benefits-gradient {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(135deg, #0f766e, #064e3b);
    overflow: hidden;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.gradient-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* CONTENT */

.gradient-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.gradient-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #d1fae5;
}

.gradient-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.gradient-content ul li {
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
}

.gradient-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #34d399;
    font-weight: bold;
}

/* BUTTON */

.gradient-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #22c55e;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.gradient-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* IMAGE */

.gradient-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
    transition: 0.4s ease;
}

.gradient-image img:hover {
    transform: scale(1.05);
}

/* FLOATING SHAPES */

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: #22c55e;
    top: 10%;
    left: 5%;
}

.shape2 {
    width: 400px;
    height: 400px;
    background: #16a34a;
    bottom: 5%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-40px); }
    100% { transform: translateY(0px); }
}

/* SCROLL ANIMATION */

.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: all 0.9s cubic-bezier(.17,.67,.83,.67);
}

.reveal-left { transform: translateX(-100px); }
.reveal-right { transform: translateX(100px); }
.reveal-up { transform: translateY(60px); }

.active {
    opacity: 1;
    transform: translate(0,0);
}

/* Responsive */

@media (max-width: 900px) {
    .gradient-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .gradient-content h2 {
        font-size: 30px;
    }
}


   .approach-section {
    padding: 150px 0;
    background:linear-gradient(135deg, #0f766e, #064e3b);
}

.approach-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.approach-heading {
    text-align: center;
    margin-bottom: 100px;
}

.approach-heading h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 20px;
}

.approach-heading p {
    max-width: 650px;
    margin: auto;
    font-size: 16px;
    color: #fff;
    line-height: 1.7;
}

/* Timeline Layout */

.approach-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
}

/* Connecting Line */

.approach-timeline::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 8%;
    width: 84%;
    height: 4px;
    background: linear-gradient(to right, #22c55e, #16a34a);
    z-index: 0;
}

/* Step */

.approach-step {
    width: 22%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 70px;
    height: 70px;
    margin: auto;
    background: #fff;
    color: #22c55e;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(34,197,94,0.4);
    transition: 0.4s ease;
}

.approach-step:hover .step-circle {
    background: #16a34a;
    transform: scale(1.1);
    color: #fff;
}

.approach-step h3 {
    margin-top: 25px;
    font-size: 17px;
    color: #fff;
}

.approach-step p {
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
    line-height: 1.6;
}

/* Scroll Animation */

.reveal-step {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.8s ease;
}

.reveal-step.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 900px) {

    .approach-timeline {
        flex-direction: column;
        gap: 60px;
    }

    .approach-timeline::before {
        display: none;
    }

    .approach-step {
        width: 100%;
    }
}


 .cloud-benefits-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #283f3e, #0e4840);
}

.cloud-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.cloud-benefits-header {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #2c8b4d;
    color: #fff;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.cloud-benefits-header h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #fff;
}

.cloud-benefits-header p {
    font-size: 16px;
    color: #fff;
    line-height: 1.7;
}

/* GRID */

.cloud-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.cloud-benefit-card {
    background: #f9fafb;
    padding: 40px 30px;
    border-radius: 18px;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.cloud-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(34,197,94,0.4);
}

.cloud-benefit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #064e3b;
}

.cloud-benefit-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* Responsive */

@media (max-width: 1000px) {
    .cloud-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cloud-benefits-grid {
        grid-template-columns: 1fr;
    }

    .cloud-benefits-header h2 {
        font-size: 28px;
    }
}

/* ===== SECTION BACKGROUND ===== */
.cw3sp-green {
  padding: 100px 0;
  background: linear-gradient(135deg, #021b16 0%, #063d2e 50%, #064e3b 100%);
  color: #d1fae5;
}

/* Container */
.cw3sp-green .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.cw3sp-green .section-top {
  text-align: center;
  margin-bottom: 60px;
}

.cw3sp-green h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #34d399, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cw3sp-green p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  color: #a7f3d0;
  line-height: 1.6;
}

/* ===== MODULE GRID ===== */
.modules-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ===== MODULE BOX ===== */
.module-box {
  padding: 25px;
  border-radius: 12px;
  background: rgba(6, 78, 59, 0.6);
  border: 1px solid rgba(52, 211, 153, 0.3);
  font-weight: 500;
  font-size: 15px;
  color: #ecfdf5;
  transition: all 0.3s ease;
}

/* Hover Effect */
.module-box:hover {
  transform: translateY(-6px);
  border-color: #34d399;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.4);
}


  .crypto-hero {
    background: #0c0f14;
    padding: 120px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.crypto-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.crypto-hero h1 span {
    color: #55aa31;
}

.hero-tag {
    color: #aaa;
    letter-spacing: 2px;
    font-size: 12px;
}

.users-box h6 {
    font-size: 20px;
    margin-bottom: 0;
}

.users-box small {
    color: #aaa;
}

.user-images img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #0c0f14;
    margin-left: -10px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: #55aa31;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-box p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

.hero-phone {
    max-width: 420px;
    animation: float 4s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media(max-width:991px){
    .crypto-hero h1 {
        font-size: 34px;
    }
    .hero-right {
        margin-top: 50px;
    }
}

.typing-text1 {
  color: #55aa31;
  border-right: 3px solid #55aa31;
  padding-right: 5px;
  font-weight: 700;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%,100% { border-color: #55aa31; }
  50% { border-color: transparent; }
}


.crypto-partner-section {
  background: #050b12;
  padding: 120px 0;
  color: #fff;
}

/* HEADING */
.crypto-heading-wrapper {
  text-align: center;
  margin-bottom: 80px;
  width: 100%;
}

.crypto-main-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}

.crypto-main-heading span {
  color: #55aa31;
}

/* CARDS */
.crypto-cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.crypto-box {
  background: #0f1720;
  padding: 45px 30px;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.06);
  width: 300px;
  transition: 0.4s ease;
}

.crypto-number {
  opacity: 0.5;
  font-weight: 600;
}

.crypto-box h5 {
  margin-top: 20px;
  font-weight: 600;
}

.crypto-box p {
  margin-top: 15px;
  font-size: 14px;
}

/* ACTIVE CARD */
.crypto-box-active {
  background: #55aa31;
  color: #000;
  transform: translateY(-30px);
  box-shadow: 0 25px 50px rgba(57,255,20,0.35);
}

.crypto-box-active a {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width:991px){
  .crypto-cards-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* TYPING */
.typing-text {
  color: #55aa31;
  border-right: 3px solid #55aa31;
  padding-right: 5px;
  font-weight: 700;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%,100% { border-color: #55aa31; }
  50% { border-color: transparent; }
}

  .cyber-cta-section {
  background: #0a120f;
  padding: 120px 0;
}

.cyber-cta-wrapper {
  border: 1px solid rgba(57,255,20,0.15);
  border-radius: 25px;
  padding: 60px;
  background: linear-gradient(145deg, #0f1a14, #0c1411);
}

/* LEFT */

.cta-tags {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.cta-tags span {
  color: #9cff60;
  font-size: 13px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-left h2 {
  font-size: 40px;
  color: #fff;
  line-height: 1.2;
}

/* CENTER IMAGE */

.cta-image-box {
  position: relative;
}

.cta-image-box img {
  border-radius: 20px;
}

.cta-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #55aa31;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #2fd40f;
}

/* RIGHT */

.small-img {
  border-radius: 15px;
  margin-bottom: 25px;
}

.cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-list li {
  color: #cbd5d1;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-list i {
  color: #55aa31;
}

/* RESPONSIVE */

@media(max-width:991px){
  .cyber-cta-wrapper {
    padding: 40px;
  }

  .cta-left {
    text-align: center;
    margin-bottom: 40px;
  }

  .cta-right {
    margin-top: 40px;
  }
}

.ecih-modules-section {
  background: radial-gradient(circle at top left, #0b1620, #050b12);
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Soft glowing background */
.ecih-modules-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(57,255,20,0.08), transparent 70%);
  top: -200px;
  left: -200px;
  z-index: 0;
}

/* HEADING */
.ecih-heading h2 {
  font-size: 48px;
  font-weight: 700;
}

.ecih-heading span {
  color: #55aa31;
}

.ecih-tag {
  color: #55aa31;
  letter-spacing: 2px;
  font-size: 14px;
}

.ecih-sub {
  max-width: 600px;
  margin: 20px auto 70px;
  opacity: 0.7;
}

/* GRID */
.ecih-module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  position: relative;
  z-index: 2;
}

/* CARD */
.ecih-module-card {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

/* Animated Border */
.ecih-module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, #55aa31, transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, 
                linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

.ecih-module-card:hover::before {
  opacity: 1;
}

/* TOP AREA */
.module-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.module-icon {
  width: 50px;
  height: 50px;
  background: rgba(57,255,20,0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #55aa31;
  font-size: 22px;
}

.module-number {
  font-size: 20px;
  font-weight: 700;
  opacity: 0.4;
}

/* HOVER */
.ecih-module-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(57,255,20,0.15);
}

.ecih-module-card h5 {
  font-weight: 600;
  line-height: 1.4;
}
 .ecih-certificate-section {
  background: linear-gradient(145deg, #06121b, #040a10);
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Soft Glow Background */
.ecih-certificate-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(57,255,20,0.08), transparent 70%);
  right: -150px;
  top: -150px;
}

/* Certificate Wrapper */
.certificate-wrapper {
  position: relative;
  padding: 20px;
}

.certificate-img {
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(57,255,20,0.15);
  transition: 0.4s ease;
}

.certificate-wrapper:hover .certificate-img {
  transform: scale(1.05) rotate(-1deg);
}

/* RIGHT CONTENT */
.cert-tag {
  color: #55aa31;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
}

.cert-right h2 {
  font-size: 44px;
  font-weight: 700;
}

.cert-right span {
  color: #55aa31;
}

.cert-desc {
  margin: 25px 0;
  opacity: 0.75;
}

/* FEATURES */
.cert-features {
  margin-bottom: 35px;
}

.cert-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.cert-feature i {
  color: #55aa31;
  font-size: 20px;
}

/* BUTTON */
.cert-btn {
  display: inline-block;
  background: #55aa31;
  color: #000;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cert-btn:hover {
  background: #2fd40f;
  box-shadow: 0 10px 30px rgba(57,255,20,0.4);
}

/* RESPONSIVE */
@media(max-width:991px){
  .cert-right {
    text-align: center;
    margin-top: 50px;
  }

  .cert-feature {
    justify-content: center;
  }
}

  .ecih-review-section {
  background: #040a10;
  padding: 120px 0;
  color: #fff;
  position: relative;
}

.review-heading h2 {
  font-size: 42px;
  font-weight: 700;
}

.review-heading span {
  color: #55aa31;
}

.review-tag {
  color: #55aa31;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Review Card */
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(57,255,20,0.15);
  padding: 30px;
  border-radius: 20px;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
  height: 100%;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(57,255,20,0.15);
  border-color: #55aa31;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.review-top img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #55aa31;
}

.review-top h5 {
  margin: 0;
  font-size: 18px;
}

.review-top span {
  font-size: 14px;
  opacity: 0.7;
}

.review-stars {
  color: #55aa31;
  margin-bottom: 15px;
  font-size: 18px;
  letter-spacing: 3px;
}

.review-card p {
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media(max-width:991px){
  .review-heading h2 {
    font-size: 32px;
  }
}

 .ecih-faq-form-section {
  background: #06121b;
  padding: 120px 0;
  color: #fff;
}

/* Heading */
.faq-heading h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-heading span,
.faq-tag {
  color: #55aa31;
}

/* FAQ */
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(57,255,20,0.15);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item.active {
  border-color: #55aa31;
  box-shadow: 0 10px 30px rgba(57,255,20,0.15);
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.faq-icon {
  transition: 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #55aa31;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  opacity: 0;
  transition: 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px;
  opacity: 0.8;
}

/* FORM BOX */
.enquiry-form-box {
  background: rgba(255,255,255,0.05);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(57,255,20,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.enquiry-form-box h3 {
  margin-bottom: 10px;
}

.enquiry-form-box p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 25px;
}

.enquiry-form-box input,
.enquiry-form-box textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.enquiry-form-box input:focus,
.enquiry-form-box textarea:focus {
  border: 1px solid #55aa31;
}

.enquiry-form-box button {
  width: 100%;
  padding: 12px;
  background: #55aa31;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.enquiry-form-box button:hover {
  background: #2fd40f;
  box-shadow: 0 10px 30px rgba(57,255,20,0.4);
}

/* Responsive */
@media(max-width:991px){
  .enquiry-form-box {
    margin-top: 50px;
  }
}
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ENROLL BUTTON (Primary) */
.btn-enroll {
    padding: 14px 35px;
    background: #39ff14;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s ease;
    position: relative;
}

.btn-enroll:hover {
    background: #2fd40f;
    box-shadow: 0 10px 30px rgba(57,255,20,0.5);
    transform: translateY(-3px);
}

/* DOWNLOAD BUTTON (Outline Glass Style) */
.btn-download {
    padding: 14px 35px;
    border: 2px solid #39ff14;
    color: #39ff14;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
}

.btn-download:hover {
    background: #39ff14;
    color: #000;
    box-shadow: 0 10px 30px rgba(57,255,20,0.4);
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width:576px){
    .hero-buttons {
        flex-direction: column;
    }

    .btn-enroll,
    .btn-download {
        width: 100%;
        text-align: center;
    }
}



