* {
            /* margin: 0;
            padding: 0; */
            box-sizing: border-box;
            /* color: #000; */
            font-family: 'Poppins', sans-serif;
        }
        body {
                background: linear-gradient(to right, #f9fafb, #c3f5f8);
            padding-top: 80px; /* Adjust for fixed header */
            /* background-color: #f8f9fa; */
            /* color: #70d3f7; */
            line-height: 1.6;
            overflow-x: hidden;
        }
 /* header.scrolled {
            background-color: rgba(0, 0, 0, 0.8);
        } */
     
     
/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/

.emma-navbar {
  position: fixed;
  top: 0;
    background-color: #8DB9FF;

  width: 100%;
  /* background-color: transparent; */
  transition: 0.3s ease;
  z-index: 999;
}

.emma-navbar.scrolled {
  background-color: #8DB9FF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.emma-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.emma-logo img {
  height: 60px;
  width: auto;
}

.emma-nav-links {
  display: flex;
  align-items: center;
}

.emma-nav-links ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.emma-nav-links ul li a {
  color: #15018C;
  text-decoration: none;
  font-size: 1rem;
  padding: 10px;
  transition: 0.3s;
}

.emma-nav-links ul li a:hover {
  color: #FFB6D9;
  border-bottom: 2px solid #FFB6D9;
}

.emma-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  flex-direction: column;
  padding: 10px 0;
  border-radius: 5px;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.dropdown:hover .emma-dropdown-content {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.emma-dropdown-content li a {
  padding: 10px 20px;
  color: #fff;
  display: block;
}

.emma-dropdown-content li a:hover {
  background: #444;
}

.btn {
  background-color: #568BAC;
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background-color: #8DB9FF;
}

/* HAMBURGER ICON */
.emma-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}

.emma-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ==== RESPONSIVE STYLES (Scoped) ==== */
@media (max-width: 768px) {
  .emma-menu-toggle {
    display: flex;
  }

  .emma-nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #4235FF;
    border-radius: 10%;
    backdrop-filter: blur(8px);
    flex-direction: column;
    display: none;
    animation: fadeIn 0.3s ease forwards;
  }

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

  .emma-nav-links ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px 0;
  }

  .emma-nav-links ul li a {
    font-size: 1.2rem;
    padding: 12px 0;
  }

  .emma-dropdown-content {
    position: relative;
    background: transparent;
    width: 100%;
    padding: 0;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .emma-dropdown-content li a {
    background: none;
    padding: 10px;
  }

  .desktop-only {
    display: none !important;
  }

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

@media (min-width: 769px) {
  .desktop-only {
    display: block;
  }
}













/* Slider Product  */
/* Base Slider Styles */


/* Base Slider Styles */
.unique-slider-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.unique-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%; /* Adjust for all slides */
}

.unique-slider-item {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.unique-slider-card {
  width: 80%;
  height: 400px;
  background: linear-gradient(to right, #8db9ffe2, #b0d0ff, #b0d0ff,  #b0d0ff,  #312af066);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Slider Text Section */
.unique-slider-text {
  flex: 1;
  text-align: left;
  padding: 20px;
}

.unique-slider-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.unique-slider-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
  font-family: 'Roboto', sans-serif;
}

.unique-slider-button {
  padding: 10px 20px;
  background-color: #2F80ED;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.unique-slider-button:hover {
  background-color: #1c5eb6;
  transform: scale(1.05);
}

/* Slider Product Section with Fixed Circle */
.unique-slider-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.unique-slider-circle {
  position: absolute;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #8db9ff, #b9d3f9, ); 
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.unique-slider-image img {
  position: relative;
  z-index: 2;
  width: 275px;
  height: 263px;
  object-fit: contain;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(135deg, #8db9ff, #b0d0ff); /* Subtle gradient background for image */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile and Tablet View Adjustments */
@media (max-width: 768px) {
  .unique-slider-card {
    width: 85%; /* Adjust slider width for tablets */
    padding: 15px;
    gap: 15px;
    flex-direction: column; /* Stack text and image */
    justify-content: flex-start;
    align-items: center;
  }

  .unique-slider-text {
    text-align: center;
    padding: 10px;
  }

  .unique-slider-text h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .unique-slider-text p {
    font-size: 0.95rem;
  }

  .unique-slider-button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .unique-slider-image {
    margin-top: 20px;
  }

  .unique-slider-circle {
    width: 180px;
    height: 180px; /* Fixed circle size for all devices */
  }

  .unique-slider-image img {
    width: 140px;
    height: 140px; /* Fixed image size */
  }
}

@media (max-width: 480px) {
  .unique-slider-card {
    width: 60%; /* Reduced slider width for smaller screens */
    padding: 10px;
    margin-top: 50px;
    flex-direction: column; /* Image below text */
    align-items: center;
  }

  .unique-slider-text h1 {
    font-size: 1.7rem;
  }

  .unique-slider-text p {
    font-size: 0.85rem;
  }

  .unique-slider-button {
    font-size: 0.85rem;
    padding: 8px 15px;
  }

  .unique-slider-image {
    margin-top: 15px;
  }

  .unique-slider-circle {
    width: 160px;
    height: 160px; /* Fixed circle size for all devices */
  }

  .unique-slider-image img {
    width: 120px;
    height: 120px; /* Fixed image size */
  }
}












/* header end */
  .video-slider {
        position: relative;
        overflow: hidden;
        height: 125vh;
    }

    .video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -1;
    }
    .background-video {
        width: 100%;
        height: 80%;
        object-fit: cover;
        
    }

    .slides {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 20px;
    }

    .slide-content {
        max-width: 800px;
        text-align: center;
        color: white;
    }

    .text-container h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .text-container p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .contact-button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #ff5a5f;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-size: 1rem;
        transition: background-color 0.3s ease;
    }

    .contact-button:hover {
        background-color: #ff3a3f;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .text-container h1 {
            font-size: 2rem;
        }

        .text-container p {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .text-container h1 {
            font-size: 1.5rem;
        }

        .text-container p {
            font-size: 0.9rem;
        }

        .contact-button {
            padding: 8px 16px;
            font-size: 0.9rem;
        }
    }

     /* Slider styles */
.slider {
    position: relative;
    overflow: hidden;
    /* margin-top: 50px; */
    width: 100%;
    height: 80vh; /* Increased height */
}

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

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slide content styles */
.slide-content {
    margin-top: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Darker background for better readability */
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.text-container {
    flex: 1;
    margin-right: 20px;
    color: #fff;
}

.text-container h1 {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Arial', sans-serif; /* Modern font family */
}

.text-container p {
    font-size: 1.5em;
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact-button {
    background-color: #38BFF0;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.2em;
    font-weight: bold;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-button:hover {
    background-color: #38BFF0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.image-container {
    flex: 1;
    text-align: right;
}

.image-container img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Slider controls styles */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 2.5em;
    color: #70d3f7;
    transition: background 0.3s ease, color 0.3s ease;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #e04363;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .slide-content {
        flex-direction: column;
        align-items: center;
    }

    .text-container {
        margin-right: 0;
        text-align: center;
    }

    .image-container {
        margin-top: 20px;
        text-align: center;
    }

    .contact-button {
        font-size: 1em;
        padding: 10px 20px;
    }

    .slide-content h1 {
        font-size: 2.5em;
    }

    .slide-content p {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 15px;
    }

    .text-container h1 {
        font-size: 2em;
    }

    .text-container p {
        font-size: 1em;
    }

    .contact-button {
        font-size: 0.9em;
        padding: 8px 16px;
    }

    .image-container {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 70vh; /* Adjust height for smaller screens */
    }

    .slide-content {
        padding: 10px;
    }

    .text-container h1 {
        font-size: 1.5em;
    }

    .text-container p {
        font-size: 0.9em;
    }

    .contact-button {
        font-size: 0.8em;
        padding: 6px 12px;
    }

    .image-container {
        margin-top: 10px;
    }
}
/* General styles for larger screens */
.laptop-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh;
    padding: 100px; */
    
    gap: 40px;
}

.hero-image {
    transform: scale(0.8);
}

.screen {
    border-radius: 20px;
    box-shadow: inset 0 0 0 2px #c8cacb, inset 0 0 0 10px #000;
    height: 318px;
    width: 518px;
    margin: 0 auto;
    padding: 9px 9px 23px 9px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(
        15deg,
        #3f51b1 0%,
        #5a55ae 13%,
        #7b5fac 25%,
        #8f6aae 38%,
        #a86aa4 50%,
        #cc6b8e 62%,
        #f18271 75%,
        #f3a469 87%,
        #f7c978 100%
    );
    transform-style: preserve-3d;
    transform: perspective(1900px) rotateX(-88.5deg);
    transform-origin: 50% 100%;
    animation: open 4s infinite alternate;
}

@keyframes open {
    0% {
        transform: perspective(1900px) rotateX(-88.5deg);
    }
    100% {
        transform: perspective(1000px) rotateX(0deg);
    }
}

.screen::before {
    content: "";
    width: 518px;
    height: 12px;
    position: absolute;
    background: linear-gradient(#979899, transparent);
    top: -3px;
    transform: rotateX(90deg);
    border-radius: 5px 5px;
}

.text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    /* color: #fff; */
    letter-spacing: 1px;
    text-shadow: 0 0 5px #fff;
}

.header {
    width: 100px;
    height: 12px;
    position: absolute;
    background-color: #000;
    top: 10px;
    left: 50%;
    transform: translate(-50%, -0%);
    border-radius: 0 0 6px 6px;
}

.screen::after {
    background: linear-gradient(to bottom, #272727, #0d0d0d);
    border-radius: 0 0 6px 6px;
    box-shadow: inset 0 0 10px #000, inset 0 0 20px #000;
    content: "";
    height: 40px;
    position: absolute;
    left: 50%;
    bottom: -51px;
    margin-left: -62px;
    width: 124px;
}

.keyboard {
    background: radial-gradient(circle at center, #e2e3e4 85%, #a9abac 100%);
    border: solid #a0a3a7;
    border-radius: 2px 2px 12px 12px;
    border-width: 1px 2px 0 2px;
    box-shadow: inset 0 -2px 8px 0 #6c7074;
    height: 24px;
    margin-top: -10px;
    position: relative;
    width: 620px;
    z-index: 9;
}

.keyboard::after {
    background: #e2e3e4;
    border-radius: 0 0 10px 10px;
    box-shadow: inset 0 0 4px 2px #babdbf;
    content: "";
    height: 10px;
    left: 50%;
    margin-left: -60px;
    position: absolute;
    top: 0;
    width: 120px;
}

.keyboard::before {
    background: 0 0;
    border-radius: 0 0 3px 3px;
    bottom: -2px;
    box-shadow: -270px 0 #272727, 250px 0 #272727;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -10px;
    position: absolute;
    width: 40px;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .laptop {
        transform: scale(0.6);
    }

    .screen {
        height: 240px;
        width: 360px;
    }

    .text {
        font-size: 14px;
    }

    .header {
        width: 70px;
    }

    .keyboard {
        width: 450px;
    }
}

@media (max-width: 480px) {
    .laptop {
        transform: scale(0.5);
    }

    .screen {
        height: 180px;
        width: 280px;
    }

    .text {
        font-size: 12px;
    }

    .header {
        width: 50px;
    }

    .keyboard {
        width: 350px;
    }

    .laptop-content-container {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }
}














    .product-section {
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
      padding: 20px;
      background-color: transparent;
      /* border-radius: 10px; */
      /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    }

    .carousel-container {
      display: flex;
      overflow: hidden;
      position: relative;
    }

    .carousel {
      display: flex;
      width: calc(200%); /* Double the width to enable looping */
      animation: scroll 20s linear infinite;
    }

    .carousel-item {
      flex: 0 0 auto;
      width: 200px; /* Adjust width as needed */
      margin-right: 10px;
    }

    .product-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      text-align: center;
      padding: 10px;
    }

    .product-card img {
      width: 100%;
      border-radius: 8px;
    }

    .product-name {
      margin-top: 8px;
      font-size: 16px;
      font-weight: bold;
    }

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

    /* Responsive design */
    @media (max-width: 768px) {
      .carousel-item {
        width: 150px; /* Adjust for smaller screens */
      }

      .product-card img {
        width: 90%;
      }

      .product-name {
        font-size: 14px;
      }
    }



















.paragon-container {
    text-align: center;
    /* padding: 20px; */
    margin: 0 auto;
}

.paragon-heading {
  text-align: start;
    color: #444;
    margin: 30px;
    font-size: 2.2em;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.paragon-subheading {
  text-align: start;
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #666;
    max-width: 800px;
    margin: 30px;
}

.paragon-product-carousel {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.paragon-product-track {
    display: flex;
    transition: transform 0.5s ease;
    
    will-change: transform;
}

.paragon-product-card {
    border-radius: 12px;
    text-align: center;
    margin: 0 10px;
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.paragon-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.paragon-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.paragon-hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.4em;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: bold;
}

.paragon-product-card:hover .paragon-hover-text {
    opacity: 1;
}

.paragon-product-card:hover .paragon-product-image {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .paragon-product-card {
        min-width: 220px;
        max-width: 220px;
    }

    .paragon-hover-text {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .paragon-product-card {
        min-width: 180px;
        max-width: 180px;
    }

    .paragon-hover-text {
        font-size: 1em;
    }
}
        .content-container {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .content-container h2 {
          text-align: start;
            font-size: 2em;
            color: #70d3f7;
            /* margin-bottom: 20px; */
        }

        .content-container p {
          text-align: start;
            font-size: 1.2em;
            color: #333;
            margin-bottom: 20px;
        }

        .content-container a {
            text-decoration: none;
            color: #fff;
            background-color: #70d3f7;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 1em;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .content-container a:hover {
            background-color: #03b7f9;
            transform: translateY(-3px);
        }
        body {
            font-family: Arial, sans-serif;
            background-color: #f8f8f8;
            margin: 0;
            padding: 0;
        }
        .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }
        .product-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            overflow: hidden;
            width: 200px;
            text-align: center;
            transition: transform 0.2s;
        }
        .product-card:hover {
            transform: scale(1.05);
        }
        .product-card img {
            width: 100%;
            height: auto;
        }
        .product-info {
            padding: 15px;
        }
        .product-info h3 {
            margin: 10px 0;
            font-size: 18px;
            color: #333;
        }
        .product-info p {
            margin: 5px 0;
            color: #777;
            font-size: 14px;
        }
        .product-info a {
            display: inline-block;
            margin-top: 10px;
            padding: 10px 15px;
            background-color: #d3a4cc;
            color: white;
            border-radius: 5px;
            text-decoration: none;
        }
        .product-info a:hover {
            background-color: #b287af;
        }
        .card {
  background: #70d3f7;
  position: relative;
  max-width: 350px;
  height: 400px;
  border-radius: 5px;
  padding: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7.5px;
  transition: 0.5s ease;
  color: white;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
        35.36% 35.36% at 100% 25%,
        #0000 66%,
        #c79013 68% 70%,
        #0000 72%
      )
      32px 32px / calc(2 * 32px) calc(2 * 32px),
    radial-gradient(
        35.36% 35.36% at 0 75%,
        #0000 66%,
        #c79013 68% 70%,
        #0000 72%
      )
      32px 32px / calc(2 * 32px) calc(2 * 32px),
    radial-gradient(
        35.36% 35.36% at 100% 25%,
        #0000 66%,
        #c79013 68% 70%,
        #0000 72%
      )
      0 0 / calc(2 * 32px) calc(2 * 32px),
    radial-gradient(
        35.36% 35.36% at 0 75%,
        #0000 66%,
        #c79013 68% 70%,
        #0000 72%
      )
      0 0 / calc(2 * 32px) calc(2 * 32px),
    repeating-conic-gradient(#295b3f 0 25%, #0000 0 50%) 0 0 / calc(2 * 32px)
      calc(2 * 32px),
    radial-gradient(#0000 66%, #c79013 68% 70%, #0000 72%) 0 calc(32px / 2) /
      32px 32px #295b3f;
  opacity: 0.5;
  transition: 0.3s ease;
}

.card:hover::after {
  opacity: 0.25;
}

.cardHeader {
  text-transform: uppercase;
  position: relative;
  width: max-content;
  font-weight: bold;
  transition: all 0.5s ease;
}
.cardHeader::after {
  content: "";
  width: calc(100% + 1rem);
  height: 2.5px;
  transform: translateX(calc(-100% - 1rem));
  background: aqua;
  bottom: -2px;
  left: 0;
  position: absolute;
  opacity: 0;
}

.details {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform: translateY(95%);
  transition: all 0.5s ease;
}

.button {
  background-color: aqua;
  color: black;
  padding: 2.5px 5px;
  width: max-content;
  border-radius: 2.5px;
}
.card:hover .details {
  transform: translateY(0%);
  transition-delay: 0.5s;
}
.card:hover .cardHeader::after {
  transform: translateX(-1rem);
  transition: 0.5s ease;
  opacity: 1;
}
.card:hover {
  transform: scale(1.1);
  border-radius: 15px;
}
/* testimonial */
.testimonial-section-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px;
    color: white;
    animation: fadeIn 2s ease-in-out;
    margin-bottom: 100px;
    background-color: #8DB9FF;
    /* background-image: linear-gradient(#70d3f7, #01abe9); */
    /* border-radius: 30px; */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.logos-new {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    animation: slideInLeft 1.5s ease-out;
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.logos-new img {
    margin: 15px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #16018c46;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.logos-new img:hover {
    transform: scale(1.1);
}

.testimonial-slider-new {
    flex: 1;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

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

.testimonial-slider-new .slide-new {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    /* background-color: rgba(255, 255, 255, 0.1); */
    border-radius: 15px;
    text-align: left;
}

.testimonial-slider-new .slide-new h2 {
    margin-bottom: 20px;
}

.testimonial-slider-new .slide-new p {
    line-height: 1.6;
}

.testimonial-slider-new .client-new {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.testimonial-slider-new .client-new img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    animation: rotateIn 2s ease-in-out;
}

@keyframes rotateIn {
    from { transform: rotate(-360deg); }
    to { transform: rotate(0deg); }
}

.testimonial-slider-new .client-new span {
    font-weight: bold;
}

.testimonial-slider-controls-new {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.testimonial-slider-controls-new button {
  
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.testimonial-slider-controls-new button:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .testimonial-section-new {
        padding: 40px;
    }

    .logos-new img {
        width: 80px;
        height: 80px;
    }

    .testimonial-slider-new {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .testimonial-section-new {
        flex-direction: column;
        padding: 30px;
    }

    .logos-new {
        justify-content: center;
    }

    .logos-new img {
        width: 70px;
        height: 70px;
    }

    .testimonial-slider-new {
        max-width: 100%;
    }

    .testimonial-slider-controls-new button {
        padding: 8px;
    }
}

@media (max-width: 576px) {
    .testimonial-section-new {
        padding: 20px;
    }

    .logos-new img {
        width: 60px;
        height: 60px;
    }

    .testimonial-slider-new .slide-new {
        padding: 15px;
    }

    .testimonial-slider-controls-new button {
        padding: 6px;
    }
}

@media (max-width: 375px) {
    .testimonial-section-new {
        padding: 15px;
    }

    .logos-new img {
        width: 50px;
        height: 50px;
    }

    .testimonial-slider-new .slide-new {
        padding: 10px;
    }

    .testimonial-slider-controls-new button {
        padding: 5px;
    }
}
        /* Hero section styling */
        .hero-section {
            /* margin-top: 100px; */
            /* margin: 100px; */
            position: relative; /* Ensure absolute positioning of background shape works */
            padding: 50px 0;
            overflow: hidden; /* Hide overflowing elements */
        }

        /* Main container for hero content */
        .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative; /* Contain absolute elements */
            z-index: 1; /* In front of the background shape */
        }

        /* Left side content */
        .hero-content {
            max-width: 600px;
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            color: #58585A;
        }

        .highlight p {
            font-size: 24px;
            font-weight: bold;
            color: black;
            background: #e0f7f1;
            display: inline-block;
            padding: 5px 10px;
            border-radius: 5px;
            margin-top: 20px;
        }

        .description {
            margin-top: 20px;
            font-size: 18px;
            color: #666666;
            line-height: 1.6;
        }

        .buttons {
            margin-top: 30px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: #98CA3F;
            color: white;
            margin-right: 20px;
        }

        .btn-primary:hover {
            background-color: #ccfd79;
        }

        .btn-secondary {
            background-color: transparent;
            color: #98CA3F;
            border: 2px solid #c0ff54;
        }

        .btn-secondary:hover {
            background-color: #98CA3F;
            color: white;
        }
        
        /* Right side image styling */
        .hero-image {
            position: relative;
        }

        .circle-bg {
            width: 450px; /* Size of the circular image */
            height: auto; /* Size of the circular image */
            background-color: transparent;
            /* border-radius: 50%; */
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .circle-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Oval with a blue border */
        .oval-bg {
            position: absolute;
            top: 50%; /* Center vertically */
            left: 50%; /* Center horizontally */
            width: 600px; /* Width of the oval */
            height: 300px; /* Height of the oval */
            border: 2px dotted #01abe9; /* Blue border for the oval */
            
            border-radius: 50%; /* Create an oval shape */
            transform: translate(-50%, -50%); /* Center the oval */
            z-index: -1; /* Ensure it stays behind the circle */
            animation: rotateOval 11s linear infinite; /* Rotate animation */
        }

        /* Keyframes for the oval rotation animation */
        @keyframes rotateOval {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        /* Responsive styling */
        @media (max-width: 1024px) {
            .container {
                flex-direction: column;
                text-align: center;
            }

            .hero-content {
                margin-bottom: 40px;
            }

            .circle-bg {
                width: 350px; /* Responsive adjustment */
                height: 350px; /* Responsive adjustment */
            }

            .oval-bg {
                width: 450px; /* Responsive adjustment */
                height: 200px; /* Responsive adjustment */
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 36px;
            }

            .highlight p {
                font-size: 20px;
            }

            .description {
                font-size: 16px;
            }

            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .circle-bg {
                width: 300px; /* Responsive adjustment */
                height: 300px; /* Responsive adjustment */
            }

            .oval-bg {
                width: 400px; /* Responsive adjustment */
                height: 150px; /* Responsive adjustment */
            }
        }
        .services{
            margin-left: 45%;
        }
        /* Flex container for the services section */














/* === Animated Modern Footer with Floating Circles === */
.animated-footer {
  position: relative;
  background: #16018C ;
  color: #fff;
  overflow: hidden;
  padding: 80px 20px 40px;
  font-family: 'Segoe UI', sans-serif;
  z-index: 1;
}

/* Animated Circles */
.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
  animation: floatY 20s infinite ease-in-out alternate;
}

.circle1 {
  width: 300px;
  height: 300px;
  background: #4235FF;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.circle2 {
  width: 200px;
  height: 200px;
  background: #3b82f6;
  bottom: 50px;
  right: 60px;
  animation-delay: 2s;
}

.circle3 {
  width: 150px;
  height: 150px;
  background: #1e40af;
  top: 100px;
  right: 150px;
  animation-delay: 4s;
}

@keyframes floatY {
  0% {
    transform: translateY(0px) scale(1);
  }
  100% {
    transform: translateY(-50px) scale(1.05);
  }
}

/* Footer Main Content */
.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-column h3::after {
  content: '';
  display: block;
  height: 3px;
  width: 40px;
  background-color: #60a5fa;
  margin-top: 6px;
  border-radius: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ffffffcc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  color: #facc15;
}

.logo-column img {
  max-width: 300px;
  margin-bottom: 10px;
}

.logo-column p {
  color: #e2e8f0;
  max-width: 280px;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ffffff22;
  padding-top: 20px;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.footer-bottom a {
  color: #60a5fa;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #facc15;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .logo-column p {
    margin: 0 auto;
  }
}


















        /* category */
        .e-card {
  margin: 100px auto;
  background: transparent;
  box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
  position: relative;
  width: 240px;
  height: 330px;
  border-radius: 16px;
  overflow: hidden;
}

.wave {
  position: absolute;
  width: 540px;
  height: 700px;
  opacity: 0.6;
  left: 0;
  top: 0;
  margin-left: -50%;
  margin-top: -70%;
  background: linear-gradient(744deg,#4046ff,#429bf3 60%,#55b0d6);
}

.icon {
  width: 3em;
  margin-top: -1em;
  padding-bottom: 1em;
}

.infotop {
  text-align: center;
  font-size: 20px;
  position: absolute;
  top: 5.6em;
  left: 0;
  right: 0;
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.name {
  font-size: 14px;
  font-weight: 100;
  position: relative;
  top: 1em;
  /* text-transform: lowercase; */
}

.wave:nth-child(2),
.wave:nth-child(3) {
  top: 210px;
}

.playing .wave {
  border-radius: 40%;
  animation: wave 3000ms infinite linear;
}

.wave {
  border-radius: 40%;
  animation: wave 55s infinite linear;
}

.playing .wave:nth-child(2) {
  animation-duration: 4000ms;
}

.wave:nth-child(2) {
  animation-duration: 50s;
}

.playing .wave:nth-child(3) {
  animation-duration: 5000ms;
}

.wave:nth-child(3) {
  animation-duration: 45s;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* paragon product on home */
.video-banner {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .video-banner video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            z-index: -1;
        }

        .banner-content {
            position: relative;
            z-index: 1;
            text-align: center;
            padding-top: 40vh;
            color: white;
        }
        