   * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     /* overflow-x: clip; */
   }

   body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
     overflow-x: hidden;
   }

   /* navbar */

   .navbar {
     display: none;
     justify-content: space-evenly;
     align-items: center;
     background-color: rgba(255, 255, 255, 0.616);
     padding: 10px 20px;
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 100;
     box-shadow: 0 4px 20px rgba(0.15, 0, 0, 0);
     width: 100%;
     max-width: 800px;
     margin: 5px auto;
     border-radius: 25px;
   }

   .logo img {
     width: 100%;
     height: 80px;
   }

   .nav-links {
     list-style: none;
     display: flex;
   }

   .nav-links li {
     margin: 0 20px;
   }

   .nav-links a {
     text-decoration: none;
     color: #23465D;
     font-size: 22px;
     font-weight: 600;
     display: flex;
     align-items: center;
   }

   .nav-links a i {
     margin-right: 8px;
   }

   .menu-toggle {
     display: none;
     font-size: 24px;
     cursor: pointer;
     background: none;
     border: none;
     color: #23465D;
   }

   .close-btn {
     display: none;
   }

   @media (max-width: 1024px) {
     .nav-links a {
       font-size: 17px;
     }

     .nav-links li {
       margin: 0 15px;
     }
   }

   @media (max-width: 768px) {
     .navbar {
       display: none;
     }

     .menu-toggle {
       display: block;
     }

     .nav-links {
       display: flex;
       flex-direction: column;
       position: fixed;
       top: 0;
       right: -250px;
       width: 250px;
       height: 100vh;
       background-color: white;
       box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
       padding-top: 60px;
       transition: right 0.3s ease-in-out;
     }

     .nav-links.active {
       right: 0;
     }
#section3 {
  height: 100vh;
  overflow: hidden;
}

     .close-btn {
       display: block;
       position: absolute;
       top: 10px;
       right: 15px;
       font-size: 24px;
       background: none;
       border: none;
       cursor: pointer;
     }

     .nav-links li {
       text-align: left;
       padding: 15px 20px;
     }
   }

   @media (max-width: 425px) {
     .logo img {
       max-height: 70px;
     }

     .nav-links {
       width: 175px;
     }
   }

   @media (max-width: 320px) {
     .logo img {
       max-height: 50px;
     }

     .nav-links {
       width: 175px;
     }
   }

   /* section 1 */

   .container1 {
     min-height: 100vh;
  background: linear-gradient(135deg,
    #151515 0%,
    #0F0F0F 50%,
    #000000 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 2rem;
     overflow-x: hidden;
     position: relative;
   }

   .main {
     max-width: 1400px;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 3rem;
     position: relative;
   }

   .side-images {
     display: flex;
     flex-direction: column;
     gap: 2rem;
     flex-shrink: 0;
   }

   .side-image {
     width: 200px;
     height: 280px;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(44, 82, 130, 0.4);
     transition: all 0.3s ease;
     position: relative;
     border: 2px solid rgba(255, 140, 66, 0.3);
   }

   .side-image img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     transition: transform 0.3s ease;
   }

   .side-image:hover {
     transform: translateY(-10px) scale(1.02);
     box-shadow: 0 25px 50px rgba(255, 140, 66, 0.5);
     border-color: rgba(255, 140, 66, 0.8);
   }

   .side-image:hover img {
     transform: scale(1.1);
   }

   .left-images .side-image:nth-child(1) {
     animation: fadeInLeft 1s ease-out 0.2s both;
   }

   .left-images .side-image:nth-child(2) {
     animation: fadeInLeft 1s ease-out 0.4s both;
   }

   .right-images .side-image:nth-child(1) {
     animation: fadeInRight 1s ease-out 0.6s both;
   }

   .right-images .side-image:nth-child(2) {
     animation: fadeInRight 1s ease-out 0.8s both;
   }

   .card {
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(20px);
     border-radius: 24px;
     padding: 4rem 3rem;
     box-shadow:
       0 25px 50px rgba(44, 82, 130, 0.3),
       0 0 0 1px rgba(255, 140, 66, 0.2),
       inset 0 1px 0 rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 140, 66, 0.2);
     max-width: 600px;
     min-width: 500px;
     text-align: center;
     color: white;
     position: relative;
     overflow: hidden;
     flex-shrink: 0;
   }

   .card::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.15), transparent);
     animation: shimmer 3s infinite;
   }

   @keyframes shimmer {
     0% {
       left: -100%;
     }

     100% {
       left: 100%;
     }
   }

   .logo {
     margin-bottom: 2rem;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
   }

   .logo-text {
     font-size: 2.5rem;
     font-weight: 800;
     letter-spacing: -0.02em;
     color: #2C5282;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   }

   .logo-accent {
     color: #FF8C42;
   }

   .hero-sectionn {
     padding: 0;
   }

   .main-title {
     font-size: clamp(2.2rem, 4vw, 3.5rem);
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 2rem;
     letter-spacing: -0.02em;
     background: linear-gradient(135deg, #ffffff 0%, #E2E8F0 50%, #CBD5E0 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   }

   .subtitle {
     font-size: clamp(1rem, 2vw, 1.2rem);
     font-weight: 400;
     /* line-height: 1.6; */
     margin-bottom: 3rem;
     opacity: 0.95;
     color: rgba(255, 255, 255, 0.9);
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
   }

   .cta-button {
     display: inline-block;
     background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
     color: white;
     text-decoration: none;
     padding: 1rem 2.5rem;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 600;
     transition: all 0.3s ease;
     box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
     border: none;
     cursor: pointer;
     position: relative;
     overflow: hidden;
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
   }

   .cta-button::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: left 0.5s;
   }

   .cta-button:hover::before {
     left: 100%;
   }

   .cta-button:hover {
     background: linear-gradient(135deg, #E67E22 0%, #D63031 100%);
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(255, 140, 66, 0.6);
   }

   .cta-button:active {
     transform: translateY(-1px);
   }

   .cta-button-secondary {
     display: inline-block;
     background: linear-gradient(135deg, #2C5282 0%, #2A4365 100%);
     color: white;
     text-decoration: none;
     padding: 1rem 2.5rem;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 600;
     transition: all 0.3s ease;
     box-shadow: 0 8px 25px rgba(44, 82, 130, 0.4);
     border: 2px solid rgba(255, 140, 66, 0.3);
     cursor: pointer;
     position: relative;
     overflow: hidden;
     margin-left: 1rem;
     text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);

   }

   .cta-button-secondary:hover {
     background: linear-gradient(135deg, #2A4365 0%, #1A365D 100%);
     border-color: rgba(255, 140, 66, 0.6);
     transform: translateY(-3px);
     box-shadow: 0 12px 35px rgba(44, 82, 130, 0.5);
   }

   /* Animations */
   @keyframes fadeInUp {
     from {
       opacity: 0;
       transform: translateY(30px);
     }

     to {
       opacity: 1;
       transform: translateY(0);
     }
   }

   @keyframes fadeInLeft {
     from {
       opacity: 0;
       transform: translateX(-50px);
     }

     to {
       opacity: 1;
       transform: translateX(0);
     }
   }

   @keyframes fadeInRight {
     from {
       opacity: 0;
       transform: translateX(50px);
     }

     to {
       opacity: 1;
       transform: translateX(0);
     }
   }

   .card {
     animation: fadeInUp 0.8s ease-out 0.1s both;
   }

   .logo {
     animation: fadeInUp 0.8s ease-out 0.2s both;
   }

   .main-title {
     animation: fadeInUp 0.8s ease-out 0.4s both;
   }

   .subtitle {
     animation: fadeInUp 0.8s ease-out 0.6s both;
   }

   .cta-button {
     animation: fadeInUp 0.8s ease-out 0.8s both;
   }

   .cta-button-secondary {
     animation: fadeInUp 0.8s ease-out 0.9s both;
   }

   /* Floating animation for images */
   @keyframes float {

     0%,
     100% {
       transform: translateY(0px);
     }

     50% {
       transform: translateY(-15px);
     }
   }

   .left-images .side-image:nth-child(1) {
     animation: fadeInLeft 1s ease-out 0.2s both, float 6s ease-in-out 2s infinite;
   }

   .left-images .side-image:nth-child(2) {
     animation: fadeInLeft 1s ease-out 0.4s both, float 6s ease-in-out 3s infinite;
   }

   .right-images .side-image:nth-child(1) {
     animation: fadeInRight 1s ease-out 0.6s both, float 6s ease-in-out 2.5s infinite;
   }

   .right-images .side-image:nth-child(2) {
     animation: fadeInRight 1s ease-out 0.8s both, float 6s ease-in-out 3.5s infinite;
   }

   /* Responsive Design */
   @media (max-width: 1200px) {
     .main {
       gap: 2rem;
     }

     .side-image {
       width: 160px;
       height: 220px;
     }

     .card {
       min-width: 400px;
       padding: 3rem 2rem;
     }

     .logo-text {
       font-size: 2rem;
     }
   }

   @media (max-width: 968px) {
     .main {
       flex-direction: column;
       gap: 3rem;
     }

     .side-images {
       flex-direction: row;
       gap: 1.5rem;
     }

     .side-image {
       width: 140px;
       height: 200px;
     }

     .card {
       min-width: auto;
       max-width: 500px;
       order: 2;
     }

     .left-images {
       order: 1;
     }

     .right-images {
       order: 3;
     }

     .cta-button-secondary {
       margin-left: 0;
       margin-top: 1rem;
       display: block;
     }
   }

   @media (max-width: 768px) {
     .container1 {
       padding: 1rem;
     }

     .card {
       padding: 2.5rem 1.5rem;
       border-radius: 20px;
     }

     .side-image {
       width: 120px;
       height: 180px;
       border-radius: 16px;
     }

     .main-title {
       margin-bottom: 1.5rem;
     }

     .subtitle {
       margin-bottom: 2.5rem;
     }

     .cta-button {
       padding: 0.9rem 2rem;
       font-size: 1rem;
     }

     .cta-button-secondary {
       padding: 0.9rem 2rem;
       font-size: 1rem;
       width: 200px;
       margin: 5px auto;
     }

     .logo-text {
       font-size: 1.8rem;
     }
   }

   @media (max-width: 480px) {
     .side-images {
       gap: 1rem;
     }

     .side-image {
       width: 100px;
       height: 140px;
       border-radius: 12px;
     }

     .card {
       padding: 2rem 1rem;
       border-radius: 16px;
     }

     .cta-button {
       padding: 0.8rem 1.8rem;
       font-size: 0.95rem;
     }

     .cta-button-secondary {
       padding: 0.8rem 1.8rem;
       font-size: 0.95rem;
     }

     .logo-text {
       font-size: 1.5rem;
     }
   }

   @media (min-width: 1400px) {
     .main {
       gap: 4rem;
     }

     .side-image {
       width: 240px;
       height: 320px;
     }

     .card {
       padding: 5rem 4rem;
       min-width: 600px;
     }

     .logo-text {
       font-size: 3rem;
     }
   }


   /* section 2 */

.hero1-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the last value (0.5) for darkness */
    z-index: 1; /* Make sure it's above the background but below content */
}

   .scroll-section-wrapper {
     height: 100vh;
     overflow: hidden;
     position: relative;
     background: url(./Images/indraq_back.webp);
     background-size: contain;
     background-position-x: -100px;
     width: 100vw !important;
     max-width: 100vw !important;
   }

   .horizontal-scroll-wrapper {
     display: flex;
     height: 100vh;
   }
/* Base styles - assuming these are already defined or part of your existing CSS */
.hero1-section {
    flex: 0 0 100vw;
    height: 100vh;
    width: 100vw;
    gap: 4rem;
    padding: 0 5vw;
    box-sizing: border-box;
    align-items: center;
    display: flex;
    justify-content: space-between; /* Added to spread content and image */
    overflow: hidden; /* Prevent horizontal scroll for images overflowing */
    position: relative; /* For absolute positioning of images if needed, or for z-index context */
}

.hero1-content {
    z-index: 2;
    width: 50%;
    /* Ensure text is readable against the background */
    color: #ffffff; 
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: #F79875;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #e07155 0%, #ee9052 100%);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Specific styles for phone mockups */
.phone-mockup_1, .phone-mockup_2 {
    display: flex;
    justify-content: center; /* Center the image within its container */
    align-items: center; /* Center the image within its container */
    width: 300px;
    height: 500px;
    flex-shrink: 0; /* Prevent shrinking on larger screens */
      z-index: 100;
}

.phone-mockup_1 {
    margin-left: 100px; /* Original margin */
    order: 2; /* Ensure it comes after content on desktop */
  
}

/* .phone-mockup_2 {
    display: none; 
} */

.phone-image {
    max-width: 100%; /* Ensure image fits within its container */
    max-height: 100%; /* Ensure image fits within its container */
    object-fit: contain; /* Maintain aspect ratio */
}

/* Media Queries for Responsiveness */

/* Adjustments for screens smaller than 1400px (Your original media query) */
@media screen and (max-width: 1400px) {
    .phone-mockup_1 {
        width: 200px; /* Increased from 150px for better visibility */
        height: 400px;
        margin-left: 50px; /* Reduce margin for smaller screens */
    }

    .hero-subtitle {
        font-size: 1.1rem; /* Slightly smaller than 1.2rem original */
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem); /* Adjusted clamp for better scaling */
    }
}

/* Adjustments for screens smaller than 1000px (Your original media query) */
@media screen and (max-width: 1000px) {
    .hero1-section {
        flex-direction: column-reverse;
        height: auto; /* Allow height to adjust based on content */
        padding: 5vh 5vw; /* Add vertical padding */
        text-align: center; /* Center content for stacked layout */
        gap: 2rem; /* Reduce gap when stacked */
    }

    .hero1-content {
        width: 100%; /* Take full width */
        order: 1; /* Ensure content is first */
    }

    .hero-title {
        font-size: clamp(2.2rem, 7vw, 3.5rem); /* Make title more responsive for very small screens */
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem); /* Smaller subtitle for small screens */
        margin-bottom: 2rem;
    }

    .cta-buttons {
        justify-content: center; /* Center buttons when stacked */
    }

    .phone-mockup_1 {
        width: 70%; /* Make mockup take more width */
        max-width: 250px; /* Cap max width */
        height: auto; /* Allow height to adjust */
        margin-left: 0; /* Remove left margin */
        order: 2; /* Keep it after content */
    }

    .phone-mockup_2 {
        display: block !important; /* Show second mockup on smaller screens */
        width: 70%; /* Make mockup take more width */
        max-width: 250px; /* Cap max width */
        height: auto; /* Allow height to adjust */
        margin-top: 1rem; /* Add some space between mockups */
        order: 3; /* Position after the first mockup */
    }

    .phone-image {
        width: 100%; /* Ensure images fill their containers */
        height: auto; /* Maintain aspect ratio */
    }

}

/* Further adjustments for very small screens (e.g., mobile portrait) */
@media screen and (max-width: 600px) {

.scroll-section-wrapper{
  background-size: cover;
}

    .hero1-section {
        padding: 3vh 3vw;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        width: 89vw;
    }

    .btn-primary, .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center stacked buttons */
    }

    .phone-mockup_1{
        width: 85%; /* Make mockups larger on very small screens */
        max-width: 280px; /* Increase max width */
    }
.phone-mockup_2  {
  display: none !important;
}

}

.flex-1 {
  display: flex;
  justify-content: center;
}


   /* section 3 */

   .cb-main-container {
     max-width: 1800px;
     margin: 0 auto;
     padding: 0 20px;
   }

   /* Hero Section */
   .cb-hero-section {
     min-height: 100vh;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
     color: #ffffff;
     background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);

   }

   .cb-hero-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
     animation: cb-pulse-anim 4s ease-in-out infinite;
   }

   @keyframes cb-pulse-anim {

     0%,
     100% {
       opacity: 0.3;
     }

     50% {
       opacity: 0.6;
     }
   }

   .cb-hero-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     position: relative;
     z-index: 2;
   }

   .cb-hero-text h1 {
     font-size: 52px;
     font-weight: 700;
     margin-bottom: 24px;
     background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: cb-fadeInUp 1s ease-out;
   }

   .cb-hero-text p {
     font-size: 1.2rem;
     color: #d1d5db;
     margin-bottom: 32px;
     animation: cb-fadeInUp 1s ease-out 0.2s both;
   }

   .cb-primary-btn {
     display: inline-block;
     padding: 16px 32px;
     background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
     color: white;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
     animation: cb-fadeInUp 1s ease-out 0.4s both;
     border: none;
     cursor: pointer;
   }

   .cb-primary-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
     background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
   }

   .cb-hero-visual {
     position: relative;
     animation: cb-fadeInRight 1s ease-out 0.6s both;
   }

   .cb-laptop-wrapper {
     /* background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%); */
     border-radius: 20px;
     padding: 40px;
     /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3); */
     position: relative;
     overflow: hidden;
   }

   .cb-laptop-wrapper img {
     width: 120%;
     max-width: 800px;
   }



   /* Responsive Design */
   @media (max-width: 1024px) {


     .cb-products-layout {
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 25px;
     }
   }

   @media (max-width: 768px) {
     .cb-hero-content {
       grid-template-columns: 1fr;
       gap: 40px;
       text-align: center;
     }

     .cb-hero-visual {
       order: -1;
     }

     .cb-laptop-wrapper {
       padding: 20px;
       width: 100%;
       max-width: 600px;
       margin: auto;
     }



     .cb-products-layout {
       grid-template-columns: 1fr 1fr;
       gap: 20px;
     }

     .cb-product-item {
       padding: 20px;
     }

     .cb-main-container {
       padding: 0 15px;
     }


     .cb-primary-btn {
       margin-bottom: 10px;
     }
   }

   @media (max-width: 480px) {
     .cb-hero-text h1 {
       font-size: 2rem;
     }

     .cb-hero-text p {
       font-size: 1rem;
     }

     .cb-primary-btn {
       padding: 12px 24px;
       font-size: 1rem;
     }



     .cb-section-text {
       font-size: 1rem;
     }

     .cb-products-layout {
       grid-template-columns: 1fr;
     }

     .cb-product-preview {
       height: 120px;
     }

     .cb-product-name {
       font-size: 1.2rem;
     }

     .cb-product-info {
       font-size: 0.9rem;
     }
   }




   /* section 4 */

   .app-scroll-wrapper {
     height: 100vh;
     overflow: hidden;
     position: relative;
     background: linear-gradient(135deg, #888787 0%, #c5c5c5 100%);
   }

   /* Horizontal Flex Layout */
   .app-horizontal-scroll {
     display: flex;
     height: 100vh;
   }

   /* Each Slide */
   .app-slide {
     flex: 0 0 100vw;
     width: 100vw;
     height: 100vh;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     padding: 0 5vw;
     box-sizing: border-box;
     align-items: center;
   }

   /* Hero Content */
   .hero-content1 {
     z-index: 2;
   }

   .hero-title1 {
     font-size: clamp(2.5rem, 6vw, 4.5rem);
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 1.5rem;
     background: linear-gradient(135deg, #1d1b1b 0%, #818181 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
   }

   .hero-subtitle1 {
     font-size: clamp(1rem, 2.5vw, 1.5rem);
     color: #000;
     margin-bottom: 3rem;
     line-height: 1.6;
   }

   /* CTA Buttons */
   .cta-buttons1 {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
   }

   /* Buttons */
   .btn-primary1 {
     background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
     color: white;
     padding: 1rem 2rem;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.3s ease;
     border: none;
     box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
   }

   .btn-secondary1 {
     background: rgba(255, 255, 255, 0.1);
     color: white;
     padding: 1rem 2rem;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 600;
     text-decoration: none;
     border: 2px solid rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
   }

   .btn-primary1:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
   }

   .btn-secondary1:hover {
     background: rgba(255, 255, 255, 0.2);
     border-color: rgba(255, 255, 255, 0.4);
     transform: translateY(-3px);
   }

   /* Phone Mockup */
   .phone-mockup1 {
     display: flex;
     justify-content: center;
     align-items: center;
   }

   .phone-container1 {
     background: linear-gradient(145deg, #2c3e50, #34495e);
     border-radius: 40px;
     padding: 25px;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
       inset 0 1px 2px rgba(255, 255, 255, 0.1);
     width: 300px;
     height: 500px;
     transform: perspective(1000px) rotateY(-15deg);
   }

   .phone-screen1 {
     background: #000;
     border-radius: 35px;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
   }

   .phone-image1 {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 35px;
   }

   /* Responsive Adjustments */
   @media (max-width: 1024px) {
     .app-slide {
       grid-template-columns: 1fr;
       padding: 0 8vw;
       text-align: center;
     }

     .phone-mockup1 {
       margin-top: 2rem;
     }

     .cta-buttons1 {
       justify-content: center;
     }
   }

   @media (max-width: 480px) {
     .phone-container1 {
       width: 220px;
       height: 400px;
       transform: none;
     }
   }




   /* section scroll 2 */

   /* CSS Variables - Defined here as a group, not in :root */
  /* body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: clamp(0.5rem, 2vw, 2rem);
        } */

        .uni-slider-wrapper {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --success-color: #10b981;
            --text-primary: #ffffff;
            --text-secondary: #a1a1aa;
            --bg-primary: rgba(15, 15, 15, 0.95);
            --bg-secondary: rgba(25, 25, 25, 0.8);
            --bg-glass: rgba(255, 255, 255, 0.1);
            --border-color: rgba(255, 255, 255, 0.1);
            --shadow-primary: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            --shadow-secondary: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
            --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);

            width: 100%;
            /* max-width: 1400px; */
            height: 100vh;
            background: var(--bg-primary);
            backdrop-filter: blur(20px);
            /* border-radius: clamp(16px, 3vw, 32px); */
            /* border: 1px solid var(--border-color); */
            box-shadow: var(--shadow-primary);
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
            
        }

        .uni-slider-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--primary-gradient);
            z-index: 10;
        }

        .uni-hero-slider {
            flex: 1;
            display: flex;
            position: relative;
            overflow: hidden;
        }

        .uni-slider-content {
            flex: 1;
            padding: clamp(1.5rem, 4vw, 4rem);
            display: flex;
            align-items: center;
            position: relative;
            z-index: 10;
            background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(25, 25, 25, 0.9) 100%);
            min-width: 0; /* Prevents flex item from overflowing */
        }

        .uni-content-text {
            max-width: 600px;
            width: 100%;
            transform: translateY(0);
            opacity: 1;
            transition: var(--transition-smooth);
        }

        .uni-content-text.animating-out {
            transform: translateY(30px);
            opacity: 0;
        }

        .uni-location-region {
            font-size: clamp(0.75rem, 2vw, 0.875rem);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: clamp(1px, 0.2vw, 2px);
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
            position: relative;
            line-height: 1.3;
        }

        .uni-location-region::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: clamp(40px, 8vw, 60px);
            height: 2px;
            background: var(--accent-gradient);
            border-radius: 1px;
        }

        .uni-location-title {
            font-size: 3rem;
            font-weight: 900;
            /* line-height: 1; */
            margin-bottom: clamp(1rem, 2vw, 1.5rem);
            background: linear-gradient(135deg, var(--text-primary) 0%, #a1a1aa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            word-break: break-word;
        }

        .uni-location-description {
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: clamp(1rem, 2vw, 2rem);
            font-weight: 400;
        }

        .uni-feature-list {
            list-style: none;
            margin: clamp(1rem, 2vw, 2rem) 0;
            display: grid;
            gap: clamp(0.5rem, 1.5vw, 1rem);
        }

        .uni-feature-list li {
            display: flex;
            align-items: center;
            font-size: clamp(0.875rem, 1.8vw, 1rem);
            color: var(--text-primary);
            font-weight: 500;
            transition: var(--transition-smooth);
        }

        .uni-feature-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: clamp(20px, 3vw, 24px);
            height: clamp(20px, 3vw, 24px);
            background: var(--success-color);
            border-radius: 50%;
            color: white;
            font-size: clamp(0.625rem, 1.5vw, 0.75rem);
            font-weight: 700;
            margin-right: clamp(0.75rem, 1.5vw, 1rem);
            flex-shrink: 0;
        }

        .uni-feature-list li:hover {
            transform: translateX(8px);
            color: var(--text-primary);
        }

        .uni-discover-btn {
            display: inline-flex;
            align-items: center;
            padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
            background: var(--primary-gradient);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: clamp(0.875rem, 1.8vw, 1rem);
            letter-spacing: 0.5px;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-secondary);
            min-height: 44px; /* Touch-friendly minimum */
            justify-content: center;
        }

        .uni-discover-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
        }

        .uni-discover-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px -10px rgba(102, 126, 234, 0.4);
        }

        .uni-discover-btn:hover::before {
            left: 100%;
        }

        .uni-slides-container {
            flex: 1;
            position: relative;
            overflow: hidden;
            min-height: 250px;
        }

        .uni-slide {
            position: absolute;
            inset: 0;
            background-size: contain;
            background-position: center;
            opacity: 0;
            transform: scale(1.1);
            transition: var(--transition-smooth);
            background-repeat: no-repeat;
        }

        .uni-slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .uni-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
            z-index: 1;
        }

        .uni-slider-navigation {
            padding: clamp(1rem, 3vw, 2rem) clamp(1.5rem, 4vw, 4rem);
            background: var(--bg-secondary);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: clamp(1rem, 3vw, 2rem);
            flex-wrap: wrap;
        }

        .uni-thumbnail-carousel {
            flex: 1;
            overflow: hidden;
            position: relative;
            min-width: 0;
        }

        .uni-thumbnail-wrapper {
            display: flex;
            gap: clamp(0.5rem, 1.5vw, 1rem);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .uni-thumbnail-card {
            min-width: clamp(100px, 15vw, 140px);
            height: clamp(70px, 10vw, 100px);
            border-radius: clamp(12px, 2vw, 16px);
            background-size: cover;
            background-position: center;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            flex-shrink: 0;
            border: 2px solid transparent;
            transition: var(--transition-smooth);
        }

        .uni-thumbnail-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
            transition: var(--transition-smooth);
        }

        .uni-thumbnail-card:hover {
            transform: translateY(-4px) scale(1.05);
            border-color: var(--border-color);
            transform: none;
        }

        .uni-thumbnail-card.active {
            border-color: orange;
            /* background: var(--primary-gradient); */
            padding: 2px;
        }

        .uni-thumbnail-card.active::after {
            content: '';
            position: absolute;
            inset: 2px;
            background-size: cover;
            background-position: center;
            border-radius: clamp(10px, 1.8vw, 14px);
        }

        .uni-thumbnail-title {
            position: absolute;
            bottom: clamp(0.5rem, 1vw, 0.75rem);
            left: clamp(0.5rem, 1vw, 0.75rem);
            right: clamp(0.5rem, 1vw, 0.75rem);
            font-size: clamp(0.7rem, 1.5vw, 0.875rem);
            font-weight: 600;
            color: white;
            z-index: 2;
            text-shadow: 0 2px 8px rgba(0,0,0,0.8);
            line-height: 1.2;
        }

        .uni-controls-container {
            display: flex;
            align-items: center;
            gap: clamp(0.75rem, 2vw, 1.5rem);
            flex-shrink: 0;
        }

        .uni-nav-arrow {
            width: clamp(40px, 6vw, 48px);
            height: clamp(40px, 6vw, 48px);
            border-radius: 50%;
            background: var(--bg-glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1rem, 2vw, 1.25rem);
            transition: var(--transition-smooth);
            user-select: none;
            -webkit-tap-highlight-color: transparent;
        }

        .uni-nav-arrow:hover {
            background: var(--primary-gradient);
            transform: scale(1.1);
            box-shadow: var(--shadow-secondary);
        }

        .uni-nav-arrow:active {
            transform: scale(0.95);
        }

        .uni-progress-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(0.25rem, 0.5vw, 0.5rem);
        }

        .uni-progress-bar-container {
            width: clamp(60px, 12vw, 100px);
            height: clamp(3px, 0.5vw, 4px);
            background: var(--bg-glass);
            border-radius: 2px;
            overflow: hidden;
        }

        .uni-progress-bar {
            height: 100%;
            background: var(--primary-gradient);
            border-radius: 2px;
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .uni-slide-counter {
            font-size: clamp(1.25rem, 3vw, 2rem);
            font-weight: 800;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: clamp(0.25rem, 0.5vw, 0.5rem);
        }

        .uni-current-slide-num {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .uni-total-slides {
            color: var(--text-secondary);
            font-size: clamp(1rem, 2.5vw, 1.5rem);
        }

        /* Floating elements animation */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(2deg); }
        }

        .uni-slider-wrapper::after {
            content: '';
            position: absolute;
            top: 10%;
            right: 5%;
            width: clamp(60px, 8vw, 100px);
            height: clamp(60px, 8vw, 100px);
            background: var(--accent-gradient);
            /* border-radius: 50%; */
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
            z-index: 1;
        }

        /* Enhanced Responsive Design */
        
        /* Large tablets and small desktops */
        @media (max-width: 1200px) {
            .uni-slider-wrapper {
                height: clamp(550px, 80vh, 750px);
            }
            
            .uni-location-title {
                font-size: clamp(2rem, 5.5vw, 3.5rem);
            }
        }

        /* Tablets */
        @media (max-width: 1024px) {
            .uni-hero-slider {
                flex-direction: column;
            }

            .uni-slider-content {
                flex: none;
                min-height: 50%;
                /* Added for better mobile padding */
                padding: clamp(1.5rem, 6vw, 3rem); /* Adjusted padding for top section on tablets */
            }

            .uni-slides-container {
                flex: 1;
                min-height: 300px;
            }

            .uni-slider-navigation {
                flex-direction: column;
                gap: 1.5rem;
                align-items: stretch;
            }

            .uni-thumbnail-carousel {
                order: 1;
            }

            .uni-controls-container {
                order: 2;
                justify-content: center;
                /* Added for better mobile spacing of controls */
                padding: 0 1rem; /* Add horizontal padding to controls container */
            }

            .uni-thumbnail-wrapper {
                justify-content: center;
                overflow-x: auto;
                scrollbar-width: none;
                -ms-overflow-style: none;
                /* Added for better mobile padding */
                padding: 0 1rem; /* Add horizontal padding to thumbnail wrapper for scrolling */
            }

            .uni-thumbnail-wrapper::-webkit-scrollbar {
                display: none;
            }
        }

        /* Mobile landscape and small tablets */
        @media (max-width: 768px) {
            body {

                align-items: flex-start;
          
            }

            .uni-slider-wrapper {
                height: auto;
                min-height: 600px;
                /* max-height: 90vh; */
                /* Added to slightly reduce border radius on smaller screens */
                /* border-radius: 16px; */
            }

            .uni-hero-slider {
                min-height: 0;
            }

            .uni-slider-content {
                text-align: center;
                justify-content: center;
                min-height: auto;
                flex: none;
                /* Adjusted padding for general mobile */
                padding: 1.5rem 1rem;
            }

            .uni-slider-wrapper {
              height: 200% !important;
            }

            .uni-slides-container {
                min-height: 300px;
                flex: 1;
            }

            .uni-content-text {
                max-width: 100%;
            }

            .uni-location-region::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .uni-feature-list {
                text-align: left;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
                /* Ensure features don't get too small */
                font-size: 0.95rem; 
            }

            .uni-thumbnail-wrapper {
                padding: 0 1rem;
            }

            .uni-controls-container {
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
                gap: 1rem;
                /* Adjusted padding for controls container */
                padding: 0 0.5rem;
            }

            .uni-progress-container {
                order: 1;
                flex: 1;
                max-width: 120px;
            }

            .uni-slide-counter {
                order: 2;
            }

            .uni-nav-arrow {
                order: 3;
            }
            /* Added for better button sizing on small mobiles */
            .uni-discover-btn {
                width: 100%; /* Make button full width */
                max-width: 300px; /* Limit button width */
                margin: 0 auto; /* Center button */
            }
        }

        /* Mobile portrait */
        @media (max-width: 480px) {
            .uni-slider-wrapper {
                /* border-radius: 12px; */
                min-height: 550px;
            }

            .uni-slider-content {
                padding: 1.5rem 1rem;
            }

            .uni-slider-navigation {
                padding: 1rem;
                gap: 1rem;
            }

            .uni-thumbnail-card {
                min-width: 90px;
                height: 60px;
                /* Added to slightly reduce thumbnail border radius */
                border-radius: 10px;
            }

            .uni-thumbnail-title {
                font-size: 0.625rem;
                bottom: 0.25rem;
                left: 0.25rem;
                right: 0.25rem;
            }

            .uni-controls-container {
                justify-content: center;
                gap: 0.75rem;
            }

            .uni-nav-arrow {
                width: 36px;
                height: 36px;
                font-size: 0.875rem;
            }

            .uni-slide-counter {
                font-size: 1rem;
            }

            .uni-progress-bar-container {
                width: 60px;
                height: 3px;
            }
            /* Further refine button sizing for very small screens */
            .uni-discover-btn {
                padding: 0.75rem 1.25rem;
                font-size: 0.875rem;
            }
        }

        /* Extra small screens */
        @media (max-width: 360px) {
            .uni-slider-wrapper {
                min-height: 500px;
                /* border-radius: 10px; Even smaller radius for tiny screens */
            }

            .uni-location-title {
                font-size: 1.5rem;
                line-height: 1.2;
            }

            .uni-feature-list li {
                font-size: 0.8rem;
            }

            .uni-discover-btn {
                padding: 0.625rem 1rem; /* Slightly smaller padding for smallest screens */
                font-size: 0.8rem;
            }

            .uni-thumbnail-card {
                min-width: 80px;
                height: 55px;
            }
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus styles for better accessibility */
        .uni-nav-arrow:focus,
        .uni-thumbnail-card:focus,
        .uni-discover-btn:focus {
            outline: 2px solid #667eea;
            outline-offset: 2px;
        }

        /* Touch device optimizations */
        @media (hover: none) {
            .uni-nav-arrow:hover {
                transform: none;
            }
            
            .uni-thumbnail-card:hover {
                transform: none;
            }
            
            .uni-feature-list li:hover {
                transform: none;
            }
            
            .uni-discover-btn:hover {
                transform: none;
            }
        }

        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .uni-slider-wrapper {
                backdrop-filter: blur(25px);
            }
        }

        /* Landscape orientation on mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .uni-slider-wrapper {
                height: 95vh;
                max-height: none;
                /* Ensure full height utilization */
                /* border-radius: 16px; Reset radius if it was smaller */
            }
            
            .uni-hero-slider {
                flex-direction: row;
            }
            
            .uni-slider-content {
                min-height: auto;
                padding: 1.5rem;
                /* Ensure full height of content in landscape */
                flex: 1; /* Allow content to grow */
                width: 50%; /* Explicitly set width to enforce two columns */
            }
            
            .uni-slides-container {
                min-height: 200px;
                /* Ensure image container takes its half */
                flex: 1; /* Allow image container to grow */
                width: 50%; /* Explicitly set width to enforce two columns */
            }
            
            .uni-slider-navigation {
                padding: 1rem;
                flex-direction: row;
                gap: 1rem;
                /* Adjust padding for landscape nav */
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
            /* Ensure thumbnails scroll horizontally in landscape mode if needed */
            .uni-thumbnail-wrapper {
                overflow-x: auto;
                justify-content: flex-start; /* Align thumbnails to start when wide */
            }
            .uni-controls-container {
                flex-wrap: nowrap; /* Prevent controls from wrapping in landscape */
                justify-content: flex-end; /* Align controls to the end */
            }
        }

   /* popup  */

    .popup-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(10px);
      justify-content: center;
      align-items: center;
      z-index: 10000;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideIn {
      from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
      }
      to { 
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .popup-box {
      background: linear-gradient(145deg, #ffffff, #f8f9fa);
      width: 90%;
      max-width: 550px;
      padding: 40px;
      border-radius: 20px;
      position: relative;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      animation: slideIn 0.4s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
      max-height: 90vh;
      overflow-y: auto;
    }

    .close-bttn {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      cursor: pointer;
      color: #666;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.8);
    }

    .close-bttn:hover {
      background: #ff4757;
      color: white;
      transform: rotate(90deg);
    }

    .stepper {
      display: flex;
      justify-content: center;
      margin: 30px 0 40px 0;
      position: relative;
    }

    .stepper::before {
      content: '';
      position: absolute;
      top: 20px;
      left: 25%;
      right: 25%;
      height: 3px;
      background: linear-gradient(90deg, #ddd 50%, #FF8C42 50%);
      z-index: 1;
    }

    .step {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: #ddd;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 16px;
      position: relative;
      z-index: 2;
      transition: all 0.3s ease;
      margin: 0 20px;
    }

    .step.active {
background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
      transform: scale(1.1);
      box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
    }

    .step span {
      position: absolute;
      top: 55px;
      font-size: 12px;
      color: #666;
      white-space: nowrap;
      font-weight: 500;
    }

    .step.active span {
      color: #666;
      font-weight: 600;
    }

    .form-step {
      text-align: left;
      animation: slideIn 0.3s ease;
    }

    .form-step label {
      display: block;
      font-weight: 600;
      margin-top: 15px;
      margin-bottom: 8px;
      color: #2c3e50;
      font-size: 14px;
    }

    .form-step input,
    .form-step select {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid #e1e8ed;
      border-radius: 12px;
      font-size: 14px;
      transition: all 0.3s ease;
      background: #fff;
      outline: none;
    }

    .form-step input:focus,
    .form-step select:focus {
      border-color: #4ecdc4;
      box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
      transform: translateY(-1px);
    }

    input[readonly] {
      background: linear-gradient(45deg, #f8f9fa, #e9ecef);
      cursor: not-allowed;
      color: #666;
    }

    .form-row {
      display: flex;
      gap: 15px;
    }

    .form-row>div {
      flex: 1;
    }

    .next-btn {
      width: 100%;
      margin-top: 30px;
background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
      color: white;
      border: none;
      padding: 16px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
    }

    .next-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(78, 205, 196, 0.4);
    }

    .otp-buttons button {
      width: 100%;
      padding: 14px;
background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
      color: white;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      margin: 15px 0;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    }

    .otp-buttons button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }

    .success-message {
      margin-top: 12px;
      color: #FF8C42;
      font-weight: 600;
      display: none;
      padding: 10px;
      background: rgba(39, 174, 96, 0.1);
      border-radius: 8px;
      border-left: 4px solid #27ae60;
    }

    .input-error {
      border-color: #FF8C42 !important;
      box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
      animation: shake 0.5s ease;
    }

    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-5px); }
      75% { transform: translateX(5px); }
    }

    .error-msg {
      color: #FF8C42;
      font-size: 12px;
      margin-top: 5px;
      display: none;
      text-align: left;
      padding: 5px 10px;
      background: rgba(231, 76, 60, 0.1);
      border-radius: 6px;
      border-left: 3px solid #FF8C42;
    }

    #otpSection {
      background: linear-gradient(145deg, #f8f9fa, #ffffff);
      padding: 20px;
      border-radius: 15px;
      margin-top: 20px;
      border: 2px dashed #FF8C42;
    }

    #otpResultCard {
      background: linear-gradient(145deg, #ffffff, #f8f9fa);
      border-radius: 20px;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    #otpResultCard img {
      filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
      margin-bottom: 15px;
    }

    #otpResultCard h2 {
      margin: 15px 0 10px 0;
      font-weight: 700;
    }

    #otpResultCard p {
      color: #666;
      font-size: 14px;
      line-height: 1.5;
    }

    #webhookErrorContainer {
      background: rgba(231, 76, 60, 0.1);
      border: 2px solid #FF8C42;
      border-radius: 15px;
      padding: 20px;
      margin-top: 20px;
    }

    #webhookErrorContainer h3 {
      margin-top: 0;
      color: #FF8C42;
    }

    pre {
      background: rgba(0, 0, 0, 0.05);
      padding: 15px;
      border-radius: 10px;
      font-size: 12px;
      border: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* Mobile responsiveness */
    /* @media (max-width: 768px) {
      .popup-box {
        width: 95%;
        padding: 25px;
        margin: 10px;
      }
      
      .form-row {
        flex-direction: column;
        gap: 0;
      }
      
      .stepper {
        margin: 20px 0 30px 0;
      }
      
      .step {
        margin: 0 10px;
      }
    } */

    /* Loading animation */
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    #otpLoader img {
      animation: spin 2s linear infinite;
    }
   @media (min-width: 1200px) {
      .popup-box {
        max-width: 600px;
        padding: 40px;
      }
      
      .form-step input,
      .form-step select {
        padding: 16px 18px;
        font-size: 15px;
      }
    }

    /* Desktop/Laptop (992px - 1199px) */
    @media (max-width: 1199px) and (min-width: 992px) {
      .popup-box {
        max-width: 520px;
        padding: 35px;
      }
    }

    /* Tablet Landscape (768px - 991px) */
    @media (max-width: 991px) and (min-width: 768px) {
      .popup-box {
        max-width: 480px;
        padding: 30px;
      }
      
      .form-row {
        gap: 12px;
      }
      
      .step {
        width: 40px;
        height: 40px;
        font-size: 13px;
        margin: 0 12px;
      }
      
      .step span {
        font-size: 10px;
        top: 50px;
      }
    }

    .footer{
      height: 30vh;
      box-shadow: rgb(255, 255, 255) 20px 20px 24px;
      background: black;
    }

    .foot-logo {
      margin: auto;
      text-align: center;
   
    }

    .foot-logo img {
      width: 250px;
         margin-top: 30px;
    }

    .footer p {
      margin: auto;
      text-align: center;
      position: relative;
      /* bottom: -40px; */
      margin-top: 20px;
      color: white;
          padding: 0 30px;
    font-size: 12px;
    }

    .footer a {
      color: rgb(255, 136, 0);
      text-decoration: none;
    }

    .foot-info {
      text-align: center;
      font-size: 22px;
      color: #ffffff;
    }

    .start-trial-btn {
      text-decoration: none;
    }

    .uni-feature-list {
    list-style: none;
    padding: 0 0 0 14px;
    margin: 10px 0 0 0;
}
.uni-feature-list li {
    margin-bottom: 5px;
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    position: relative;
    padding-left: 40px;
}
.uni-feature-list li::before {
    content: '✓';
    color: #ffffff;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1em;
    
}
.uni-description-main {
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.05em;
}


