 :root {
        --navy: #0a1a3e;
        --blue: #0077ff;
        --white: #f4f7fa;
        --gray: #4b5563;
        --emerald: #00c46c;
        --light-blue: rgba(0, 119, 255, 0.1);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", sans-serif;
        background-color: var(--white);
        color: var(--gray);
        line-height: 1.6;
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4 {
        color: #00e6a4;
        font-weight: 700;
        line-height: 1.2;
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .btn {
        display: inline-block;
        padding: 14px 32px;
        border-radius: 4px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .btn-primary {
        background-color: #00e6a4;
        color: white;
        border: none;
      }

      .btn-primary:hover {
        background-color: #0055cc;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 119, 255, 0.2);
      }

      .btn-secondary {
        background-color: transparent;
        color: var(--navy);
        border: 2px solid var(--navy);
      }

      .btn-secondary:hover {
        background-color: var(--navy);
        color: white;
      }

      section {
        padding: 100px 0;
      }

      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
      }

      .section-header h2:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--blue), var(--emerald));
        border-radius: 2px;
      }

      .section-header p {
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
      }

      /* Header & Navigation */
      header {
        background-color: black;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: fixed;
        width: 100%;
        z-index: 1000;
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
      }

      .logo span {
        color: #00e6a4;
      }

      .logo i {
        margin-right: 8px;
        color: var(--emerald);
      }

      .nav-links {
        display: flex;
        list-style: none;
      }

      .nav-links li {
        margin-left: 30px;
      }

      .nav-links a {
        text-decoration: none;
        color: white;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
      }

      .nav-links a:hover {
        color: var(--blue);
      }

      .nav-links a.active {
        color: var(--blue);
      }

      .nav-links a.active:after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--blue);
      }

      .mobile-menu {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
       background: url('https://images.unsplash.com/photo-1709240987503-6e31155c88ab?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NTY1fHxpbWFnZXMlMjAzRCUyMGZvciUyMGElMjB0ZWNoJTIwY29tcGFueSUyMHdlYnNpdGV8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&q=60&w=500')
    center/cover no-repeat;color: white;
        padding: 180px 0 120px;
        position: relative;
        overflow: hidden;
      }

      .hero-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
      }

      .hero h1 {
        font-size: 3.5rem;
        color: #00e6a4;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease forwards 0.5s;
      }

      .hero p {
        font-size: 1.3rem;
        margin-bottom: 40px;
        opacity: 0.9;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease forwards 0.8s;
      }

      .hero-btns {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease forwards 1.1s;
      }

      .hero .btn-secondary {
        color: white;
        border-color: white;
      }

      .hero .btn-secondary:hover {
        background-color: white;
        color: var(--navy);
      }

      .hero-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
      }

      .shape {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(
          135deg,
          rgba(0, 119, 255, 0.1) 0%,
          rgba(0, 196, 108, 0.1) 100%
        );
      }

      .shape-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -100px;
        animation: float 20s infinite ease-in-out;
      }

      .shape-2 {
        width: 200px;
        height: 200px;
        bottom: -50px;
        left: -50px;
        animation: float 15s infinite ease-in-out reverse;
      }

      /* portfolio Filter */
      .case-filter {
        background-color: white;
        padding: 50px 0;
      }

      .filter-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 30px;
      }

      .filter-tab {
        padding: 12px 24px;
        background-color: var(--white);
        border: 1px solid #e0e0e0;
        border-radius: 30px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .filter-tab:hover {
        background-color: var(--light-blue);
        border-color: var(--blue);
      }

      .filter-tab.active {
        background-color: #00e6a4;
        color: whitesmoke;
        border-color: none;
      }

      /* portfolio Grid */
      .case-studies {
        background-color: black;
      }

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

      .case-card {
        background-color: black;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        opacity: 0;
        transform: translateY(30px);
      }

      .case-card.visible {
        opacity: 1;
        transform: translateY(0);
      }

      .case-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .case-img {
        height: 200px;
        background-color: var(--light-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #00e6a4;
        font-size: 3rem;
        position: relative;
        overflow: hidden;
      }

      .case-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .case-tag {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 5px 12px;
        background-color: #00e6a4;
        color: white;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
      }

      .case-content {
        padding: 25px;
      }

      .case-content h3 {
        margin-bottom: 10px;
        font-size: 1.4rem;
        color: #00e6a4;
      }

      .case-content p {
        margin-bottom: 20px;
        color: white;
      }

      .case-stats {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
      }

      .stat {
        text-align: center;
      }

      .stat-value {
        font-size: 1.5rem;
        font-weight: 700;
        color: #00e6a4;
      }

      .stat-label {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.699);
      }

      /* Featured Case Study */
      .featured-case {
        background-color: rgb(250, 246, 246);
      }
       .featured-case p {
        color: black;
      }
      


      .featured-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        color: white;
      }

      .featured-image {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .featured-image img {
        width: 100%;
        height: auto;
        display: block;
      }

      .featured-details h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
      }

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

      .featured-stat {
        text-align: center;
        padding: 20px;
        background-color: black;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
       
      }

      .featured-stat .value {
        font-size: 2rem;
        font-weight: 700;
        color: var(--blue);
        margin-bottom: 5px;
      }

      .featured-stat .label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.856);
      }

      /* Testimonials */
      .testimonials {
        background-color: black;
      }
      .testimonials h2{
        color: #00e6a4;
      }
      .testimonials p{
        color: white;
      }

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

      .testimonial-card {
        background-color: white;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        position: relative;
      }

      .testimonial-card:before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 4rem;
        color: var(--light-blue);
        font-family: Georgia, serif;
        line-height: 1;
      }

      .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
      }

      .testimonial-author {
        display: flex;
        align-items: center;
      }

      .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--light-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        color: var(--blue);
        font-size: 1.2rem;
      }

      .author-info h4 {
        margin-bottom: 5px;
        font-size: 1.1rem;
      }

      .author-info p {
        font-size: 0.9rem;
        color: var(--gray);
      }

      /* CTA Section */
      .cta {
        background: linear-gradient(135deg, var(--navy) 0%, #1a2d5e 100%);
        color: white;
        text-align: center;
      }

      .cta h2 {
        color: #00e6a4;
        margin-bottom: 20px;
      }

      .cta p {
        max-width: 700px;
        margin: 0 auto 30px;
        font-size: 1.1rem;
        opacity: 0.9;
      }

      /* Footer */
      footer {
        background-color: black;
        color: white;
        padding: 70px 0 30px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 50px;
      }

      .footer-col h3 {
        color: var(--emerald);
        margin-bottom: 25px;
        font-size: 1.3rem;
        position: relative;
      }

      .footer-col h3:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: #00e6a4;
      }

      .footer-col p {
        margin-bottom: 20px;
        opacity: 0.8;
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: white;
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.3s ease;
      }

      .footer-links a:hover {
        opacity: 1;
      }

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

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

      .social-link:hover {
        background-color: var(--blue);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.7;
        font-size: 0.9rem;
      }

      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(5deg);
        }
      }

      /* Particle Animation */
      .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
      }

      .particle {
        position: absolute;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        animation: floatParticle 15s infinite linear;
      }

      @keyframes floatParticle {
        0% {
          transform: translateY(100vh) rotate(0deg);
          opacity: 0;
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          transform: translateY(-100px) rotate(360deg);
          opacity: 0;
        }
      }

      /* Modal */
      .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 1001;
        overflow-y: auto;
        padding: 20px;
      }

      .modal-content {
        background-color: white;
        max-width: 900px;
        margin: 50px auto;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        animation: modalFadeIn 0.3s ease;
      }

      @keyframes modalFadeIn {
        from {
          opacity: 0;
          transform: translateY(-50px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--gray);
        z-index: 2;
      }

      .modal-body {
        padding: 30px;
      }

      .modal-header {
        margin-bottom: 30px;
      }

      .modal-header h2 {
        margin-bottom: 10px;
      }

      .modal-tag {
        display: inline-block;
        padding: 5px 12px;
        background-color: var(--light-blue);
        color: var(--blue);
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
      }

      .modal-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin: 30px 0;
      }

      .modal-stat {
        text-align: center;
        padding: 20px;
        background-color: var(--white);
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .modal-stat .value {
        font-size: 2rem;
        font-weight: 700;
        color: var(--blue);
        margin-bottom: 5px;
      }

      .modal-stat .label {
        font-size: 0.9rem;
        color: var(--gray);
      }

      /* Responsive Design */
      @media (max-width: 992px) {
        .footer-content {
          grid-template-columns: 1fr 1fr;
        }

        .featured-content {
          grid-template-columns: 1fr;
          gap: 30px;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background-color: black;
          flex-direction: column;
          padding: 20px;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-links.active {
          display: flex;
        }

        .nav-links li {
          margin: 10px 0;
        }

        .mobile-menu {
          display: block;
        }
        .mobile-menu i{
          color: white;
        }

        .hero h1 {
          font-size: 2.5rem;
        }

        .hero-btns {
          flex-direction: column;
          align-items: center;
        }

        .hero-btns .btn {
          width: 100%;
          max-width: 250px;
          margin-bottom: 10px;
        }

        .section-header h2 {
          font-size: 2rem;
        }

        .footer-content {
          grid-template-columns: 1fr;
        }

        .filter-tabs {
          flex-direction: column;
          align-items: center;
        }

        .filter-tab {
          width: 100%;
          max-width: 250px;
          text-align: center;
        }

        .case-grid {
          grid-template-columns: 1fr;
        }

        .featured-stats {
          grid-template-columns: 1fr;
        }
      }
 /* Section Styling */
.applications-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
  color: #fff;
}

.applications-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #00e6a4;
}

.applications-section .section-subtitle {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 3rem;
}

/* Swiper Container */
.mySwiper {
  padding-bottom: 3rem;
}

.swiper-wrapper {
  align-items: center; /* vertically center the slides */
}

/* Individual Slide / Card */
.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: black;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  width: 200px; /* more compact, adjust for more visible slides */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.swiper-slide:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

/* Logo Images */
.swiper-slide img {
  width: auto;
  max-width: 200%;
  height: 150px; /* consistent logo height */
  object-fit: contain; /* ensures full logo visibility */
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.swiper-slide:hover img {
  transform: scale(1.05);
}

/* Optional Text Content */
.application-content {
  display: none; /* keep it clean */
}

/* Pagination */
.swiper-pagination {
  bottom: 0;
  margin-top: 2rem;
}

.swiper-pagination-bullet {
  background: var(--solar-yellow) !important;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .swiper-slide {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 200px;
    padding: 1rem;
  }
}
