    /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

           /* General Styling */
        body {
            font-family: 'Poppins', sans-serif;
   /* background-color: #181818;*/
background: linear-gradient(to right, #000530, #000530, #00031A, #00102A);

            color: #fff;
            line-height: 1.8;
        }


    /* Navbar container */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
     /* background-color: #000; */
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
     /* border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
    }


  /* Center menu */
.navbar .menu {
  display: flex;
  gap: 1rem;
  position: relative;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  justify-content: flex-end; /* Align items to the right */
        text-transform: uppercase;

}


    .navbar .menu a {
      color: #fff;
      text-decoration: none;
      font-size: 12px;
      position: relative;
    }

    .navbar .menu a:hover,
    .navbar .menu a.active {
      color: #7a5cff;
    }

    /* Contact button */
    .navbar .contact-btn {
      background-color: transparent;
      border: 1px solid #7a5cff;
      color: #7a5cff;
      padding: 0.5rem 1.2rem;
      border-radius: 20px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .navbar .contact-btn:hover {
      background-color: #7a5cff;
      border: 1px solid #7a5cff;
      color: #fff;
    }

    /* Styles when scrolled */
.navbar.scrolled {
  background-color: #c1d1e9 !important;
  color: #7a5cff;
  border-radius: 0 0 50px 50px;
}

.navbar.scrolled .nav-link {
  color: #000530 !important;
}

.navbar.scrolled .custom-btn {
  border-color: #7a5cff;
        background-color: #7a5cff;

  color: #7a5cff;
}

.navbar.scrolled .custom-btn:hover {
  color: black;
  background-color: white;
}


    /* ------------------- Dropdown Styling ------------------- */
  .navbar .dropdown-menu {
    background-color: #000530;
    border: none;
    border-radius: 0;
    min-width: 200px;
    padding: 0.5rem 0;
    text-transform: uppercase;
  }

  .navbar .dropdown-menu .dropdown-item {
    color: #c1c1c1;
        background-color: #000530;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
  }

  .navbar .dropdown-menu .dropdown-item:hover {
    padding-left: 1.5rem;
  }

  /* ------------------- Modal Style ------------------- */
  .modal-content {
    background-color: #1b263b;
    color: #ffffff;
    border-radius: 1rem;
    border: 1px solid #1f4068;
  }

  /* ------------------- Mobile Styles ------------------- */
  @media (max-width: 991.98px) {
    .navbar {
      background-color: rgba(0, 0, 0, 0.85) !important;
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .navbar-collapse {
      background-color: #000530;
      border-radius: 0 0 15px 15px;
      padding: 1rem;
    }

    .navbar-nav .nav-link {
background: rgba(255, 255, 255, 0.1);
      margin-bottom: 0.5rem;
      padding: 10px 15px;
    }

    .navbar-nav .nav-link:hover {
      background-color: #2a2a2a;
    }

    .navbar .dropdown-menu {
      background-color: #000530;
      border-radius: 0;
    }
  }
/* Remove dropdown caret for ABOUT */
.navbar .dropdown-toggle::after {
  display: none !important;
}

/* Make ABOUT match other nav links */
.navbar .dropdown-toggle {
  color: #ffffff;
  padding: 10px 15px;
}

.navbar .dropdown-toggle:hover {
  background-color: #;
}

/* Optional: add consistent hover for desktop dropdown too */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}


.modal-header {
  border-bottom: 1px solid #1f4068;
}

.modal-title {
  font-weight: 600;
  color: #ffffff;
}

.form-label {
  color: #dddddd;
}

.form-control, .form-select {
  background-color: #0d1b2a;
  color: #ffffff;
  border: 1px solid #33415c;
}

.form-control::placeholder {
  color: #888;
}

.btn-primary {
  background-color: #1f4068;
  border: none;
  border-radius: 2rem;
  font-weight: 500;
}

.btn-close {
  background-color: #ffffff;
  border-radius: 50%;

  
    /* ---2. Hero section with video ---*/
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

     .hero img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .hero .content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      color: #fff;
      text-align: center;
    }

    .hero .content h1 {
      font-size: 3rem;
      font-weight: 400px;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }

    .hero .content p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }

    .hero .content .cta-btn {
      background-color: #7a5cff;
      color: #000;
      padding: 0.8rem 2rem;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: bold;
      text-transform: uppercase;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .hero .content .cta-btn:hover {
      background-color: #fff;
      color: #7a5cff;
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .navbar .menu {
        gap: 1rem;
        padding: 0.3rem 1rem;
      }

      .navbar .menu a {
        font-size: 0.9rem;
      }

      .navbar .contact-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
      }

      .hero .content h1 {
        font-size: 2rem;
      }

      .hero .content p {
        font-size: 1rem;
      }
    }

    /*running count-------- */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    object-fit: cover;
    z-index: -1;
}

/* Overlay */
.overlay {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 20px; /* Added padding for small screens */
}

/* Count Box */
.count-box {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    max-width: 300px; /* Prevents box from getting too wide */
    width: 100%;
}

/* Count Number */
.count-number {
    font-size: 5rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .overlay {
        height: 70vh; /* Adjusts height for tablets */
    }

    .count-number {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .overlay {
        height: 60vh; /* #7a5cffuces overlay height for mobile */
        flex-direction: column;
        text-align: center;
    }

    .count-box {
        max-width: 250px;
        padding: 15px;
    }

    .count-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .overlay {
        height: 50vh; /* Further #7a5cffuces height on extra-small screens */
    }

    .count-box {
        max-width: 220px;
        padding: 10px;
    }

    .count-number {
        font-size: 2.5rem;
    }
}
/*---------about---------*/
     .about {
background: linear-gradient(to right, #000530, #000530, #00031A, #00102A);
            padding: 0px 0;
            text-align: left;
        }
        .about h1 {
            color: #7a5cff;
            font-weight: 700;
        }
        .btn-primary {
            background-color: #7a5cff;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
        }
        .about-image img {
            max-width: 100%;
        }
        /*----features-------*/
                .hero-section {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 150px 50px;
        }
        .hero-content h1 {
            font-weight: 700;

        }
        .hero-content p {
            color: #ccc;
        }
        .circle-bg {
            position: relative;
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .circle-bg img {
            position: absolute;
            width: 380px;
            transition: 0.3s;
        }
        .circle-bg img:nth-child(1) {
            top: -30px;
            left: -40px;
            transform: rotate(-15deg);
        }
        .circle-bg img:nth-child(2) {
            bottom: -30px;
            right: -40px;
            transform: rotate(10deg);
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .feature-icon {
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            border-radius: 50%;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
        }
        @media (max-width: 992px) {
    .hero-section {
        flex-direction: column-reverse; /* Stack image below text on smaller screens */
        text-align: center;
        padding: 130px 30px;
    }
    .circle-bg {
        width: 280px;
        height: 280px;
    }
    .circle-bg img {
        width: 220px;
    }
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    .circle-bg {
        width: 220px;
        height: 220px;
    }
    .circle-bg img {
        width: 180px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 120px 20px;
    }
    .circle-bg {
        width: 180px;
        height: 180px;
    }
    .circle-bg img {
        width: 140px;
    }
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .feature-item {
        gap: 10px;
    }
}
.service-card {
    background: linear-gradient(135deg, #14142b, #0d0d1c);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease-in-out;
    position: relative;
    min-height: 380px; /* Ensures space for image */
    overflow: hidden; /* Prevents overflow */
}

/* Triangle Container at the Top-Right */
.service-card .triangle-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 220px;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    overflow: hidden;
}

/* Image inside the Triangle */
.service-card .triangle-container img {
    width: 320px;
    height: 220px;
    object-fit: cover;
}

/* Adjust text spacing */
.service-card-content {
    margin-top: 150px; /* Adds space below the image */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 20px rgba(84, 51, 255, 0.3);
}

.service-card h5 {
    color: #A78BFA;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #b0b0c3;
}

.learn-more {
    color: #A78BFA;
    font-weight: 600;
    text-decoration: none;
}

.learn-more:hover {
    text-decoration: underline;
}


         /*----------testimonial------------*/
        .testimonials-section h2 {
      font-weight: bold;
    }
    .testimonials-section .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
      border: none;
      padding: 20px;
      height: 280px;
      color: #fff;

                  border-radius: 12px;
            box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .testimonial-card img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
    }
    .testimonial-card .stars {
      color: #ffc107;
    }
 /*------CTA Section------*/
.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

/* CTA Card with Scrolling Background */
.cta-card {
    background: url("image/'image/father-showing-his-little-daughter-solar-photovoltaics-panels-explaining-how-it-works-alternative-energy-saving-resources-sustainable-lifestyle-concept.jpg") no-repeat center center; /* Replace with your image */
    background-size: cover;
    background-attachment: fixed; /* This makes the background image stay while scrolling */
    padding: 80px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    width: 100%;
    color: white; /* Ensures text is readable */
    position: relative;
}

/* Overlay for Better Readability */
.cta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    border-radius: 20px;
    z-index: 1;
}

/* Text inside CTA Card */
.cta-title, .cta-text, .btn-inquiry {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.cta-text {
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* Button */
.btn-inquiry {
    background-color: #7a5cff;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.btn-inquiry:hover {
    background-color: #2bd3c0;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-card {
        padding: 50px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 0.9rem;
    }

    .btn-inquiry {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cta-card {
        padding: 40px;
        width: 90%;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 0.85rem;
    }

    .btn-inquiry {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}


        /*--------calculator------*/

        .section-header {
            font-size: 3rem;
            font-weight: bold;
            color: #fff;
        }
        .highlight {
            color: #5d9cec;
        }
        .benefits-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #5d9cec;
            border-radius: 50%;
            font-size: 24px;
            color: #5d9cec;
        }
        .benefits-card {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .benefits-text {
            flex: 1;
        }
        .benefits-title {
            font-weight: bold;
            font-size: 1.2rem;
        }
        .image-container {
            position: relative;
        }
        
     .calculator-container {
    background: #222;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
    max-width: 500px;
    margin: auto;
}

h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.form-group {
    text-align: left;
}

.form-control {
    background: #333;
    color: #fff;
    border: 1px solid #444;
    padding: 12px;
    border-radius: 8px;
}

.form-control::placeholder {
    color: #bbb;
}

.form-control:focus {
    background: #444;
    color: white;
    border-color: #ffcc00;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/*.btn-primary {
    background: #ffcc00;
    color: #222;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background: #ffdd44;
    color: #222;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}



   /*------brands---------*/
   /* Trusted Section */
.trusted-section {
    padding: 60px 20px;
}

/* Heading */
.trusted-heading {
    font-size: 2.2rem;
    font-weight: bold;
}

/* Subtext */
.trusted-subtext {
    font-size: 1.1rem;
    color: #b3b3b3;
    margin-bottom: 30px;
}

/* Logo Grid */
.logo-grid {
    background: #222;
    padding: 40px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    justify-items: center;
    align-items: center;
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.1);
}

/* Logo Box */
.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 10px;
    height: 70px;
    width: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.1);
}

/* Logo Images */
.logo-box img {
    max-width: 90px;
    max-height: 35px;
    filter: brightness(0) invert(1); /* Converts to white for dark mode */
}

/* Responsive Design */
@media (max-width: 992px) {
    .trusted-heading {
        font-size: 2rem;
    }
    .trusted-subtext {
        font-size: 1rem;
    }
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    .logo-box {
        height: 65px;
        padding: 8px;
    }
    .logo-box img {
        max-width: 80px;
        max-height: 30px;
    }
}

@media (max-width: 768px) {
    .trusted-heading {
        font-size: 1.8rem;
    }
    .trusted-subtext {
        font-size: 0.95rem;
    }
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
    }
    .logo-box {
        height: 60px;
        padding: 6px;
    }
    .logo-box img {
        max-width: 75px;
        max-height: 28px;
    }
}

@media (max-width: 480px) {
    .trusted-heading {
        font-size: 1.6rem;
    }
    .trusted-subtext {
        font-size: 0.9rem;
    }
    .logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 5px;
    }
    .logo-box {
        height: 55px;
        padding: 5px;
    }
    .logo-box img {
        max-width: 70px;
        max-height: 25px;
    }
}
/*-footer------*/
        .footer {
            background-color: #181818;
            padding: 50px 0;
            text-align: center;
        }
        .footer h5 {
            color: #836fff;
        }
        .footer a {
            color: #b0b0b0;
            text-decoration: none;
            display: block;
            margin: 5px 0;
        }
        .footer a:hover {
            color: white;
        }
        .footer .social-icons i {
            font-size: 24px;
            margin: 10px;
            color: #836fff;
            transition: 0.3s;
        }
        .footer .social-icons i:hover {
            color: white;
        }
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: #836fff;
        }
        .footer-logo span {
            color: white;
        }
        .footer-bottom {
            margin-top: 20px;
            font-size: 14px;
            color: #777;
            border-top: 1px solid #222;
            padding-top: 20px;
        }


        /*---------PROCESS-------*/
.container {
    padding: 100px 20px;
}

.title {
    text-align: left;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    max-width: 600px;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: left;
}

.process {
    padding: 20px;
    border-right: 1px solid #ddd;
    text-align: center; /* Centered for mobile screens */
}

.process:last-child {
    border-right: none;
}

.process img {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
}

.process h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.process p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
}

.number {
    font-weight: 400;
    font-size: 70px;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 36px;
        text-align: center;
    }

    .process {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-bottom: 20px;
    }

    .process:last-child {
        border-bottom: none;
    }

    .number {
        font-size: 50px;
    }
}
/*------vision & mission-------*/
.vision-mission {
            padding: 80px 0;
        }
        .icon-box {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: #00e6e6;
            border-radius: 50%;
            font-size: 30px;
            color: #000;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .section-title {
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
        }

/*------team-------*/
.team-card {
  perspective: 1000px;
  cursor: pointer; /* Make the card clickable */
}

.card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
  position: relative;
}

.team-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.card-front {
  background: linear-gradient(45deg, #0d1b2a, #1b263b, #415a77, #778da9);
  background-size: 300% 300%;
  animation: gradientFlow 8s ease infinite;
}

.card-back {
  background: #050D26;
  transform: rotateY(180deg);
  padding: 20px;
  color: white;
  border: 1px solid #c1c1c1;
  overflow-y: auto;
}

/* Gradient Animation for Front Card */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 150px 0 90px 0;
    text-align: center;
    background: url(https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?auto=format&fit=crop&w=1400&q=80);
    background-size: cover; /* Ensures the image covers the whole section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
}

.page-header h2 {
    position: relative;
    color: #000530;
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #000530;
}

.page-header a:hover {
    color: #c1c1c1;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #000530;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*----service page-------*/
        .custom-section {
            display: flex;
            flex-wrap: wrap;
        }
        .custom-section div {
            padding: 20px;
        }
        .bg-light-gray {
        }
        .text-green {
            color: #056608;
        }
        .image-bg {
            background-size: cover;
            background-position: center;
            height: 450px;
        }
        /*------side count-------*/
                .hero-section {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }
        .stats {
            font-size: 1.8rem;
            font-weight: bold;
            color: #b8a7ff;
        }
        .cta-btn {
            background: #7d5fff;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
        }
        .cta-btn:hover {
            background: #5a3dff;
        }
        .image-container {
            position: relative;
        }
        .small-overlay {
            position: absolute;
            bottom: -20px;
            left: 30px;
            width: 150px;
            height: 150px;
            border-radius: 20px;
            box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
        }
        /*----career-------*/
         .job-card {
            background: #1a1a1a;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid transparent;
            transition: 0.3s;
        }
        .job-card:hover {
            border-color: #6a5acd;
        }
        .job-title {
            color: #6a5acd;
            font-weight: bold;
        }
        .join-now {
            color: #6a5acd;
            text-decoration: none;
            font-weight: bold;
        }
        .join-now:hover {
            text-decoration: underline;
        }
        /*--contact-------*/
                .contact-card {
            background-color: #111;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }
        .contact-card:hover {
            background-color: #222;
        }
        .btn-custom {
            background-color: #00d1b2;
            color: white;
        }
        .btn-custom:hover {
            background-color: #00a890;
        }