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

body {
  font-family: "Albert Sans", sans-serif;
  background: #f9ffff;
  overflow-x: hidden;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 3%;
  background: #f9ffff;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  animation: slideDown 0.8s ease-out;
}

.nav-section{
  display: flex;
}
.nav {
  display: flex;
  gap: 10px;
}

.nav a {
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 6px 14px;

}

.nav a.active {
  color: #43a1af;
text-decoration:none ;
}

.nav a:hover {
  color: #43a1af;
}

/* CTA Button */
.free-trial-btn {
  background: linear-gradient(45deg, #43a1af);
  color: white;
  padding: 8px 22px;
  border-radius: 5px;
  font-family: "Albert Sans", sans-serif;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.2);
}

.free-trial-btn:hover {
  transform: translateY(-2px);
}

.free-trial-btn .icon {
  background: white;
  color: #44a08d;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-40deg);
  transition: transform 0.3s ease;
}

.free-trial-btn:hover .icon {
  transform: rotate(0deg);
}

/* Hero Section */
.main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 120px 5% 60px;
}

.content-left {
  flex: 1;
  max-width: 600px;
}

.features-section {
  text-align: center;
  margin: 50px 0;
  font-family: "Poppins", sans-serif;
}

.features-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.feature-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card i {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* Colors */
.feature-card.blue {
  background: #f0f7ff;
  color: #007bff;
}

.feature-card.green {
  background: #f4fff6;
  color: #28a745;
}

.feature-card.red {
  background: #fff5f5;
  color: #e63946;
}

.feature-card.purple {
  background: #f9f5ff;
  color: #8a2be2;
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Link */
.explore-link {
  display: block;
  margin-top: 25px;
  font-size: 14px;
  color: #007bff;
  text-decoration: underline;
}


.main-heading {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 25px;
  color: black;
  font-family: 'Poppins', sans-serif;
}

.highlight {
  position: relative;
  padding: 1%;
  color: #43a1af
}

.description {
  font-size: 1.1rem;
  color: black;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.btn-secondary {
  background: transparent;
  color: #44a08d;
  border: 2px solid #44a08d;
  padding: 10px 24px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #44a08d;
  color: white;
  transform: translateY(-2px);
}

/* Illustration */
.illustration {
  max-width: 480px;
  animation: float 6s ease-in-out infinite;
}

.laptop {
  width: 500px;
  height: auto;
}

@media (max-width: 768px) {
  .laptop {
    width: 320px;
  }
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Particles */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Responsive */
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 150px 5% 40px;
  }

  .main-heading {
    font-size: 2.3rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .illustration {
    max-width: 300px;
  }

  .nav {
    display: none;
  }
}

/* Section Wrapper */
.services-section {
  padding: 80px 5%;
  background: #ffffff;
  text-align: center;
}

/* Header */
.section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}

.section-header p {
  font-size: 1rem;
  text-align: center;
  color: #000000;
  max-width: 400px;
  margin-bottom: 50px;
  line-height: 1.6;
}
/* Section */
.services-section {
  padding: 80px 5%;
  background: #ffffff;
  text-align: center;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* Middle column with 2 stacked cards */
.middle-column {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
}

/* Cards */
.service-card {
  background: #ecfdff;
  border-radius: 12px;
  padding: 20px 40px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 180px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}

.service-card p {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .middle-column {
    grid-template-rows: auto;
  }
}

/* mksnf */

.how-we-work {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  font-family: "Albert Sans", sans-serif;
}

.how-we-work h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.how-we-work .subtitle {
  font-size: 16px;
  color: #000000;
  max-width: 300px;
  text-align: center;
  margin-bottom: 40px;
}
.how-we-work-win {
  justify-items: center;
}
.services-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  position: relative;
  padding: 0 60px;
}

.services-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}
.services-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.service-item {
  position: relative;
  flex: 0 0 280px;
  background: #fff;
  border-radius: 35px;
  padding: 40px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: left;
}

/* corner border lines */
.service-item::before,
.service-item::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 5px solid transparent;
  transition: all 0.4s ease;
}

.service-item::before {
  top: -2px;
  left: -2px;
  border-top-left-radius: 35px;
  border-top-color: var(--clr, #44a08d);
  border-left-color: var(--clr, #44a08d);
}

.service-item::after {
  bottom: -2px;
  right: -2px;
  border-bottom-right-radius: 35px;
  border-bottom-color: var(--clr, #44a08d);
  border-right-color: var(--clr, #44a08d);
}

/* hover full border */
.service-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-item:hover::before,
.service-item:hover::after {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.service-item h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  color: #111;
  font-family: 'Poppins', sans-serif;
}

.service-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Navigation buttons */
.services-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}

.services-btn:hover {
  background: #44a08d;
  color: #fff;
}

.services-btn.left {
  left: 15px;
}

.services-btn.right {
  right: 15px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .service-item {
    flex: 0 0 45%; /* 2 per row on tablets */
  }
  .services-wrapper {
    padding: 0 30px;
  }
}

@media (max-width: 600px) {
  .service-item {
    flex: 0 0 100%; /* 1 per row on mobile */
  }
  .services-wrapper {
    padding: 0 20px;
  }
  .services-btn {
    display: none; /* Hide arrows, allow swipe */
  }
}

.compliance-section {
  padding: 50px 5%;
  background: #f1fcfd;
}

.compliance-section h2{
  font-family: 'Poppins', sans-serif;
}

.compliance-section-top {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.cta-top {
  margin-top: 30px;
}

.compliance-container {
  display: flex;

  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
}

.compliance-left {
  flex: 1;
}

.compliance-left h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
  
  
}

.features-list {
  list-style: none;
  margin-top: 60px;
}

.features-list li {
  margin-bottom: 20px;
  text-align: left;
  position: relative;
  padding-left: 24px;
}

.features-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  color: #43a1af;
  font-size: 24px;
}

.features-list strong {
  color: #000;
  font-family: 'Poppins', sans-serif;
}

.features-list p {
  margin-top: 5px;
  color: #000;
  font-size: 0.95rem;
}

.compliance-right {
  flex: 1;
  text-align: center;
}

.compliance-right img {
  max-width: 420px;
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .compliance-container {
    flex-direction: column;
    text-align: center;
  }
  .features-list {
    margin-top: 0px;
  }
  .features-list li {
    text-align: left;
  }
}

/* CSS */
.penalty-structure {
  text-align: center;
  padding: 40px 250px;
  font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
  .penalty-structure {
    padding: 40px 0px;
  }
}

.penalty-header h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.penalty-header p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 30px;
}

.penalty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 30px;
  justify-items: center;
}

@media (max-width: 992px) {
  .penalty-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

@media (max-width: 576px) {
  .penalty-grid {
    grid-template-columns: 1fr; /* 1 per row */
  }
}

.penalty-card {
  background: #43a1af0f;
  border: 1px solid #d7e3eb;
  border-radius: 120px 120px 12px 12px;
  padding: 80px 5px 30px;
  max-width: 260px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out;
}

.penalty-card:hover {
  transform: translateY(-6px);
}

.penalty-card h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.penalty-card h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.penalty-card p {
  font-size: 13px;
  color: #000000;
  line-height: 1.4;
}

footer {
  background: #43A1AF;
  color: #fff;
  padding: 50px 30px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
}

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

.footer-left p {
  font-size: 14px;
  margin: 8px 0;
}

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

.footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #000;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin: 0 8px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #000;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  padding-top: 20px;
}


/* Contact Section */
.contact-section {
  display: flex;
  justify-content: center;
  padding: 20px 0px;
  background: #f9ffff;
  text-align: center;
}

.contact-title {
  margin-top: 120px;
  text-align: center;
}

.contact-container {
  background: #ecfdff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  width: 70%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

/* Left Side (Form) */
.contact-left h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.contact-left p {
  color: #666;
  font-size: 15px;
  margin-bottom: 25px;
}

.contact-left input,
.contact-left textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-left input:focus,
.contact-left textarea:focus {
  border-color: #0891b2;
  box-shadow: 0 0 6px rgba(8, 145, 178, 0.3);
  outline: none;
}

.contact-left button {
  width: 100%;
  background: linear-gradient(135deg, #0891b2, #00bcd4);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-left button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 188, 212, 0.3);
}

/* Right Side (Info + Image) */
.contact-right {
  display: flex;
  flex-direction: column;
  align-items: flex-cent; /* align everything to start (left) */
  justify-content: center;
  text-align: left; /* text also left aligned */
}

.info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
  color: #444;
  font-size: 15px;
}

.contact-right img {
  width: 240px;
  margin-bottom: 20px;
  animation: float 5s ease-in-out infinite;
}

.contact-right i {
  border: 1px solid #43a1af;
  border-radius: 50%; /* make it perfectly round */
  color: #43a1af;
  width: 32px; /* fixed size */
  height: 32px;
  display: flex; /* center icon inside circle */
  align-items: center;
  justify-content: center;
  font-size: 14px; /* adjust icon size */
}

/* Social Icons */
.social-icons-contact {
  position: absolute;
  right: 0px;
  top: 70%;
  display: flex;
  flex-direction: column;
  background: #0891b2;
  border-bottom-right-radius: 50px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.social-icons-contact a {
  color: #fff;
  padding: 14px;

  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons-contact a:hover {
  background: #094757;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
  .social-icons-contact {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -60px;
    flex-direction: row;
    transform: translateX(-50%);
  }
}



.compliance-section {
  text-align: center;
  font-family: "Poppins", sans-serif;
  padding: 60px 20px;
}

.compliance-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.compliance-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
}

.feature-card .icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
}


.why-section {
  text-align: center;
  font-family: "Poppins", sans-serif;
  padding: 60px 20px;
}

.why-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.why-card .icon {
  font-size: 22px;
  color: green;
  margin-top: 5px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.cta-section {
  background: #507685; 
  color: white;
  text-align: center;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.cta-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}


.logo-footer{
  width: 100px;
}