header {
  background-color: #000000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}
.logo {
display: flex;
align-items: center;
gap: 0.8rem;
}
.logo img {
height: 100px;
width: 300px;
border-radius: 6px;
}
.logo2 {
/* display: flex; */
align-items: center;
gap: 0.8rem;
}
.logo2 img {
height: 200px;
width: 200px;
border-radius: 6px;
}
.logo h1 {
margin: 0;
font-size: 1.8rem;
}
/* Basic styling for the page */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
/* Styling for the nav bar */
.navbar {
    position: relative;
    z-index: 1;
    background-color: #080000;
    overflow: visible;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    justify-content: space-between;
}

.nav-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* Styling for the nav items */
.navbar .nav-items {
    display: flex;
    justify-content: left;
    flex: 3;
}

.navbar .nav-items a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    margin: 0 18px; /* Added margin to increase the gap */
}

.navbar .nav-items a:hover {
    background-color: #ddd;
    color: rgb(0, 0, 0);
}

/* Drop-down styling */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Drop-down button (the "Product" tab) */
.dropbtn {
    color: white;
    padding: 10px 12px;
    font-size: 12px;
    background-color: #000000;
    text-align: center;
    cursor: pointer;
    margin: 0 18px; /* Same margin as other tabs to keep alignment */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* below the nav */
    left: 0;
    background-color: #000000;
    min-width: 20px;
    transition: all 0.2s ease-in-out;
    border: solid grey;
    border-radius: 3px;
    z-index: 1;
    /* z-index: 999; make sure it's on top */
    /* box-shadow: 0px 8px 16px rgba(0,0,0,0.4); */
    padding: 5px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown .dropdown-content a {
    font-size: 14px !important;
}

.dropdown-content a {
    color: white;
    padding: 10px 16px;
    font-size: 7px;
    text-decoration: none;
    display: block;
    width: 100%;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #222;
    color: #000000;
} 

.vision-section {
    position: relative;
    height: 80vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }
  
  .vision-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
  }
  
  .vision-overlay {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin: 18px;
  }
  
  .vision-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .vision-overlay p {
    font-size: 1.2rem;
    line-height: 1.6;
  }  

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgb(0, 0, 0), rgb(102, 97, 120), rgb(176, 176, 233));
    color: white;
    padding: 3rem 4rem;
    animation: fadeIn 2s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

/* .hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1581090700227-1e8d3f86eeb5?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
} */

@media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
      max-width: 100%;
    }
  
    .hero-text, .hero-image {
      max-width: 300px;
    }
  
    .hero-text {
      text-align: justify;
    }

    .product-description{
      max-width: 300px;
    }
  }

.hero-text {
    flex: 1;
    /* z-index: 1; */
    padding: 9rem;
    max-width: 700px;
    text-align: justify;
    align-items: left;
    font-size: 18px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 1rem;
    position: relative;
    z-index: 1; /* Ensures it's above the ::after background */
}

.hero-image img {
    width: 100%;
    max-width: 600px; /* limits image width for large screens */
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Optional: subtle shadow */
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
}

.hero2 {
    display: flex;
    flex-direction: row-reverse; /* 👈 This flips image to the right */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* optional for responsiveness */
    /* background: #dddddd; */
    /* background: linear-gradient(135deg, #bdbe7d, #2a8b98); */
    background: linear-gradient(rgb(176, 176, 233), rgb(102, 97, 120), rgb(0, 0, 0));
    color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    animation: fadeIn 2s ease-in-out;
    z-index: 0;
}

.hero2-text {
    flex: 1;
    z-index: 1;
    padding: 9rem;
    max-width: 800px;
}

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

.hero2-text p {
    /* font-size: 24px; */
    line-height: 1.6;
    text-align: justify;
    font-size: 18px;
}

.hero2-image {
    flex: 1;
    display: flex;
    justify-content: left;
    align-items: right;
    padding: 1rem;
    position: relative;
    z-index: 1; /* Ensures it's above the ::after background */
}

.hero2-image img {
    width: 100%;
    max-width: 600px; /* limits image width for large screens */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Optional: subtle shadow */
}

.hero2::after {
    content: '';
    background: url('https://images.unsplash.com/photo-1581090700227-1e8d3f86eeb5?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
    opacity: 0.1;
    max-width: 400px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 0;
}

.about-section {
    position: relative;
    /* background-color: #1a6f94; */
    /* background: url('image3.png') no-repeat center center/cover; */
    padding: 6rem 2rem;
    color: rgb(253, 253, 253);
    background: linear-gradient(rgb(0, 0, 0), rgb(102, 97, 120), rgb(176, 176, 233));
    text-align: center;
    z-index: 0;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
}

.terms-section {
    position: relative;
    padding: 6rem 2rem;
    color: #000000;
    background: #f7f7f7;
    text-align: center;
    z-index: 0;
    overflow: hidden;
}

.terms-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: justify;
    /* justify-content: left; */
    align-items: center;
}

.terms-content p {
    font-size: 1.0rem;
    line-height: 1.2;
    text-align: justify;
}

.product-showcase {
    padding: 4rem 2rem;
    background-color: #f3e066;
    text-align: center;
}

.product-buttons {
    margin-bottom: 2rem;
}

.product-buttons button {
    padding: 0.75rem 1.5rem;
    margin: 0 1rem;
    border: none;
    background-color: #1a6f94;
    color: white;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-buttons button:hover,
.product-buttons button.active {
    background-color: #06711d;
}

.product-display {
    display: flex;
    /* align-items: center; */
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;  /* ensure responsive stacking */
    padding: 4rem 2rem;
    animation: fadeIn 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.product-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.product-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  padding: 1rem;
  object-fit: contain;
    /* width: 500px;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    padding: 1rem 1rem; */
}

.product-introduction {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    animation: fadeIn 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.product-introduction p {
    flex: 2;
    max-width: 1100px;
    padding: 1rem 1rem;
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: justify;
}

.product-description {
  flex: 1 1 400px;
  max-width: 600px;
  padding: 1rem;
  text-align: justify;
}

/* .product-description {
    flex: 2;
    max-width: 500px;
    text-align: justify;
} */

.product-description h2 {
    padding: 1rem 1rem;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-description h2 a {
    color: black;
    text-decoration: none;
    cursor: default;
    transition: color 0.3s ease, text-decoration 0.3s ease;
  }

.product-description h2 a:hover {
    color: #0e838c;  /* or any accent color */
    text-decoration: underline;
    cursor: pointer;
  }

.product-description p {
    padding: 1rem 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.2em; 
}

.product-benefits {
  margin-top: 2rem;
}

.product-benefits h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.benefit-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.benefit-card {
  background: #f2e172;
  color: rgb(82, 82, 82);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 4px 4px 6px 4px rgba(0,0,0,0.1);
  flex: 1 1 200px;
  transition: transform 0.2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

@media (max-width: 950px) {
  .product-display {
    flex-direction: column;
    align-items: center;
  }

  .product-image img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }

  .product-description {
    max-width: 100%;
    /* padding: 0 1rem; */
  }

  .product-description h2,
  .product-description p {
    text-align: justify;
    /* padding: 0.5rem 1rem; */
  }
}

.contact-section {
    background-color: #ffffff;
    text-align: center;
    padding: 4rem 1rem;
    color: #a1a1fc;
}

.contact-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-section a {
    padding-top: 100px;
    color: #0105ff;
    text-decoration: none;
    font-weight: bold;
}

.contact-section a:hover {
    text-decoration: underline;
}

.site-footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #ffffff;
    background-color: #000000;
}

/* New changes 2nd July 2025 */
@media (max-width: 820px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .logo img {
      height: auto;
      max-width: 200px;
    }
  
    .nav-items {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      width: 100%;
      padding-left: 10px;
    }
  
    .navbar .nav-items a,
    .dropbtn {
      font-size: 16px;
      margin: 5px 0;
      padding: 10px 15px;
    }
  
    .dropdown-content a {
      font-size: 14px !important;
      padding: 8px 12px;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000000; /* or your desired bg */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  /* body {
    scroll-padding-top: 100px; 
  } */

  body { 
    padding-top: 100px; /* Adjust based on navbar height */
  }
  
.demo-section {
    background-color: #e3f2fd;
    text-align: center;
    padding: 4rem 2rem;
    color: #003c71;
}

.demo-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demo-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.tech-section, .testimonial-section, .team-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f6faff;
}

.tech-section .arch-image {
    max-width: 800px;
    width: 100%;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.tech-highlights {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    color: #333;
}

.tech-highlights li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.testimonial-section blockquote {
    font-size: 1.3rem;
    font-style: italic;
    max-width: 800px;
    margin: 2rem auto;
    color: #222;
}

.testimonial-section span {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #555;
}

.team-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
  }

  .team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0e838c;
  }

  .row {
    width: 90%;
    background: #ffe501;
    /* margin: 4% auto; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .col {
    flex-basis: 25%;
    text-align: left;
    overflow: hidden;
    position: relative;
  }

  .col img{
    /* max-width: 80%;
    height:auto; */
    /* flex: 0 0 200px; */
    /* text-align: left; */
    width: 150px;
    height: 150px;
    object-fit: fill;
    border-radius: 5%;
    display: block;
    margin: 5% 5%;
    /* margin: 4px 4px; */
    cursor: pointer;
    transition: 1s;
  }

  .col:hover img{
    transform: scale(1.1);
  }

  .col p{
    margin: 10px;
  }

  .col span {
    width: 20px;
    border-top: 20px solid transparent;
    border-bottom: 20px border transparent;
    border-right: 15px #ffe501;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
  }

  .col .arrow{
    border-left: 15px solid #ffe501;
    border-right: 15px solid transparent;
  }

  .col-2 {
    flex-basis: 25%;
    text-align: right;
    overflow: hidden;
  }

  .col-2 img{
    /* max-width: 80%;
    height:auto; */
    /* flex: 0 0 200px; */
    /* text-align: left; */
    width: 150px;
    height: 150px;
    object-fit: fill;
    border-radius: 5%;
    display: block;
    margin: 5% 20%;
    /* margin: 0 0 4px 4px; */
    cursor: pointer;
    transition: 1s;
  }

  .col-2:hover img{
    transform: scale(1.1);
  }

  .team-member {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 28px;
    flex-wrap: wrap;
  }

  .member-photo {
    flex: 0 0 200px;
    text-align: center;
  }

  .member-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 8px;
  }

  .member-photo h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #0081d7;
  }

  .member-photo p {
    font-size: 0.75rem;
    color: #3995d2;
  }

  .member-info {
    flex: 1;
    min-width: 200px;
  }

  .member-info p {
    margin: 0;
    font-size: 1rem;
    text-align: left;
    color: #555;
    line-height: 1.6;
  }

.cta-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #003c71;
  color: white;
}

@media (max-width: 900px) {
  .cta-section {
    margin-top: 50px;
  }
}

.cta-button {
    background-color: #f4c542;
    color: #000;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1.5rem;
}

.why-love-section {
    /* background: linear-gradient(135deg, #ff4668, #a646ff); */
    background: linear-gradient(rgb(176, 176, 233), rgb(102, 97, 120), rgb(0, 0, 0));
    /* background: #f9f9f9; */
    padding: 80px 20px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white; /* #fbfb23 */
    font-weight: bold;
  }
  
  .why-slider {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .why-slide {
    padding: 0 15px;
  }
  
  .why-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px;
  }
  
  .why-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }
  
  .why-card .icon {
    font-size: 40px;
    color: #007BFF;
    margin-bottom: 20px;
    animation: floatIcon 3s ease-in-out infinite;
  }
  
  @keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }
  
  .why-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .why-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0;
    flex-grow: 1; /* fills available vertical space */
    /* text-align: center; */
  } 
  
  .why-love-section, .why-slider {
    overflow: visible !important;
    position: relative; /* ensure containing context */
  }

  /* Customize slick dots */
.slick-dots {
    position: relative !important;
    z-index: 10 !important;
    bottom: -30px !important;
    display: block !important;
  }

  .slick-dots li button {
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
  }
  
  .slick-dots li button:before {
    font-size: 16px !important;
    color: #ffffff !important;
    opacity: 1 !important;
  }
  
  .slick-dots li.slick-active button:before {
    color: #00bfff !important;
    opacity: 1 !important;
  }
  
  /* Optional: increase spacing between dots */
  .slick-dots li {
    margin: 0 10px !important;
  } 

  .usecase-section {
    background: #003c71;
    padding: 80px 20px;
  }

  .usecase-section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #fff;
  }

  .usecase-container {
    max-width: 760px;
    width: 100%; 
    margin: 0 auto;
    justify-content: center;
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(20px, 5vw, 60px);
  }

  .usecase-intro {
    max-width: 1050px;
    background: #003c71;
    width: 100%;
    /* padding: 24px 28px; */
    border-radius: 10px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
    justify-content: center;
    text-align: justify;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  .usecase-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .usecase-item {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .usecase-card {
    background: #016dcc;
    border-radius: 16px;
    padding: 30px 40px;
    /* align-self: center; */
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 300px;
    max-width: 400px;
    flex: 1;
  }
  
  .usecase-card h3 {
    font-size: 1.8rem;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  
  .usecase-card h3 i {
    font-size: 2.4rem;
    color: #ffffff;
  }
  
  .usecase-description {
    flex: 2;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
    text-align: justify;
    padding: 16px;
    max-width: 500px;
  }  

  .site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.95rem;
  }
  
  .footer-content {
    max-width: 960px;
    margin: 0 auto;
  }
  
  .footer-links {
    margin-top: 10px;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: underline;
    margin: 0 8px;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #c0f0ef;
  }
  
  .footer-links span {
    color: #ffffff;
  }  
