/* styles/style.css */
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #1c1c1c;
  background-color: #f8f9fb;
}

.container {
  width: 90%;
  max-width: 1200px;
 
  margin: 0 auto;
  padding: 20px 0;
}
 .error {
    color: red;
    font-size: 0.9em;
    display: block;
    margin-top: 5px;
  }
  .popup-message {
    display: none;
    padding: 15px 20px;
    background-color: #00d1d1;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    animation: fadeInOut 5s ease-in-out forwards;
    position: relative;
  }

  .popup-message.error {
    background-color: #dc3545;
  }

  @keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10px); }
  }
.header {
  background-color: #fff;
 
 padding-right: 100px;

 padding-left: 100px;
  border-bottom: 1px solid #eaeaea;
   
  
}


.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.navbar {
  display: flex;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  color: black;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;   /* Removes underline */
  border-bottom: none;     /* Just in case border is used */
  color: inherit;          /* Keeps text color consistent */
}

.hamburger {
  display: none;
  font-size: 28px;
  margin-left: 20px;
  cursor: pointer;
  user-select: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-outline {
    margin-top: 10px;
  }
}


.btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #50009A;
  color: white;
}

.btn-primary:hover {
  background-color: #5600cc;
}

.btn-outline {
  border: 2px solid #50009A;
  color: black;
  background: transparent;
}

.btn-outline:hover {
  background-color: #50009A;
  color: white;
}

.btn-secondary {
  background-color: #00d1d1;
  color: white;
}

.hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.hero-bg {
  background: url('../images/background-tech.png') no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  z-index: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.hero-image-wrapper {
  position: relative;
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  overflow: visible;
}

.angled-bg {
  background-color: #50009A;
  position: absolute;
margin-left: 320px;
  width: 100%;
  height: 600%;
 
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-left: 30px;
  max-width: 600px;
  transform: rotate(-1deg); /* Optional: mimic photo angle */
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  border-radius: 28px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

 .angled-bg {
    clip-path: none;
    width: 100%;
    height: 200px;
    margin-left: 0;
    position: absolute;
    top: auto;
    bottom: 0;
    border-radius: 0;
  }

  .hero-image {
    margin-left: 0;
    transform: none;
    max-width: 90%;
    border-radius: 20px;
  }

  .hero-image-wrapper {
    margin-top: 30px;
    width: 100%;
    justify-content: center;
  }
  
}
.why {
  background-color: #fff;
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
}

.why-header {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.left-bar {
  font-style: italic;
  font-weight: 900;
  font-size: 3.2rem;
  color: #50009A;
  margin-right: 10px;
  line-height: 1;
}

.why-header h2 {
  font-size: 2rem;
  color: #0a0a23;
  margin: 0;
}

.features {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.feature {
  flex: 1 1 30%;
  min-width: 280px;
}

.feature h3 {
  color: #50009A;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    gap: 40px;
  }

  .feature {
    flex: 1 1 100%;
  }
}

.how {
  background-color: #1c0033; /* deep purple */
  color: #ffffff;
  padding: 100px 0;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.how-grid {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.how-left {
  flex: 1 1 40%;
}

.how-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.how-bar {
  font-style: italic;
  font-weight: 900;
  font-size: 3.2rem;
  color: #00e0ff;
  margin-right: 12px;
  line-height: 1;
}

.how-left h2 {
  font-size: 2rem;
  margin: 0;
}

.how-left p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.7;
  color: #dcdcdc;
}

.btn-secondary {
  display: inline-block;
  background-color: #5df1ff;
  color: #000;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background-color: #3dd9e9;
}

.how-right {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-card {
  background-color: #ffffff;
  color: #000;
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.solution-card img {
    margin-top: 10px;
  width: 98px;
  height: 98px;
  object-fit: contain;
}

.solution-card h3 {
  color: #50009A;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.solution-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .how-grid {
    flex-direction: column;
  }

  .how-left, .how-right {
    flex: 1 1 100%;
  }
}

.solutions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.solution {
  background: #f0f4ff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 30%;
  min-width: 250px;
}

.trusted {
  background-color: #f9f9ff;
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  text-align: left;
}

.trusted-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.trusted-bar {
  font-style: italic;
  font-weight: 900;
  font-size: 3.2rem;
  color: #50009A;
  margin-right: 10px;
}

.trusted h2 {
  font-size: 1.9rem;
  margin: 0;
  color: #1a1a1a;
}

.trusted p {
  margin-bottom: 30px;
  font-size: 1rem;
  color: #333;
}

.trusted-columns {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trusted-columns ul {
  flex: 1 1 40%;
  list-style: none;
  padding: 0;
}

.trusted-columns li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #220c3c;
}

.trusted-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background-color: #50009A;
  border-radius: 2px;
}

/* Button Style */
.btn-secondary {
  display: inline-block;
  background-color: #5df1ff;
  color: #000;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-secondary:hover {
  background-color: #3dd9e9;
}

/* Responsive */
@media (max-width: 768px) {
  .trusted-columns {
    flex-direction: column;
  }

  .trusted-columns ul {
    flex: 1 1 100%;
  }
}
/* .contact {
  background-color: #f9f9ff;

  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
}

.contact-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.contact-bar {
  font-style: italic;
  font-weight: 900;
font-size: 3.2rem;
  color: #50009A;
  margin-right: 10px;
}

.contact h2 {
  font-size: 1.8rem;
  margin: 0;
  color: #1a1a1a;
}

.contact p {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #1a1a1a;
}

.contact-info .icon {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #50009A;
}

/* Responsive */
@media (max-width: 768px) {
  .contact {
    text-align: left;
  }
} */

.products {
  background-color: #F2F2F2;
  padding: 80px 0;
}

.products-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.products-intro {
  flex: 1 1 45%;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-header .purple-bar {
  font-style: italic;
  font-weight: 900;
  font-size: 3.2rem;
  color: #50009A;
 
}

.section-header h2 {
  font-size: 28px;
  color: black;
}

.products-intro p {
  margin-top: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

.products-list {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product-item {
  background: none;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-title img {
  width: 28px;
  height: 28px;
}

.product-title h3 {
  font-size: 22px;
  color: #1e003b;
}

.product-item p {
  margin: 12px 0;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.product-link {
  font-weight: 600;
  text-decoration: underline;
  color: #1e003b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.product-link .arrow {
  font-size: 18px;
}
@media (max-width: 768px) {
  .products-grid {
    flex-direction: column;
  }

  .products-intro,
  .products-list {
    flex: 1 1 100%;
  }
}
/* Section Styling */
.contact-section {
  background-color: #18002c;
  color: #fff;
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
}

/* Grid Layout */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
}

/* Left Side */
.contact-left {
  flex: 1 1 45%;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-bar {
  color: #00f0ff;
  font-weight: bold;
   font-style: italic;
  font-weight: 900;
font-size: 3.2rem;
 
}

.contact-left h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: white;
}

.contact-left p {
  margin-top: 20px;
  line-height: 1.6;
  color: #ccc;
  font-size: 16px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.contact-info li {
  margin-bottom: 16px;
  font-size: 16px;
  color: #ccc;
  display: flex;
  align-items: center;
}

.contact-info .icon {
  color: #00f0ff;
  margin-right: 10px;
  font-size: 18px;
}

/* Right Side - Form */
.contact-form {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #ddd;
}

.contact-form input,
.contact-form textarea {
  margin-top: 6px;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  width: 100%;
  background-color: #fff;
  color: #333;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #00f0ff;
}

/* Button */
.btn-submit {
  padding: 12px 24px;
  background: none;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
  transition: background 0.3s, color 0.3s;
}

.btn-submit:hover {
  background-color: #fff;
  color: #18002c;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
}

.footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
