* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6366f1;
  --secondary: #f1c40f;
  --text-dark: #0f172a;
  --text-light: #cbd5e1;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0f172a;
  color: #fff;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1px 0;
  position: sticky;
  top: 0;
  
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;

 
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--text-dark);
}

.logo img {
  /* height: 50px; */
  width: auto;
  margin-right: 10px;
}

.logo .highlight {
  color: var(--secondary);
}

.nav-links a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Media Query for Mobile View */
@media (max-width: 768px) {
  .hamburger {
    display: block; /* Show hamburger icon on mobile */
  }

  .nav-links {
    display: none; /* Hide nav links by default */
    width: 100%;
    position: absolute;
    top: 80px; /* Below navbar */
    left: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .nav-links.active {
    display: flex; /* Show nav links when active */
  }

  .nav-links a {
    margin: 10px 0; /* Vertical spacing for links */
    font-size: 1.1rem;
  }
}

.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.hero-content .highlight {
  color: var(--primary);
}

.hero-content p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
  margin: 70px auto;
  display: block;
}

.btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn.primary:hover {
  background: #4f46e5;
}

.btn.secondary {
  background: #334155;
  color: #fff;
}

.btn.secondary:hover {
  background: #1e293b;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  height: 100vh;
  max-width: 500px;
  width: 90%;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  color: var(--text-dark);
}
.modal-content::-webkit-scrollbar {
  display: none;
}
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}

.close:hover {
  color: var(--primary);
}

.modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

#quoteForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#quoteForm label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
}

#quoteForm input,
#quoteForm select,
#quoteForm textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
}

#quoteForm textarea {
  resize: vertical;
}

#quoteForm button {
  margin-top: 10px;
  padding: 12px;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .modal-content {
    padding: 20px;
    width: 95%;
  }

  .modal-content h2 {
    font-size: 1.5rem;
  }
  .services {
  padding: 60px 0px;
  background-color: #f7f9fc;
  text-align: center;
}

}


.services h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: white;
}

.section-description {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
}

.card {
  background-color: #fff;
  padding: 0 0 20px 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.15);
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.25);
}

.card img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.card p {
  padding: 0 20px;
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  .hamburger {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}

.benefits {
  padding: 60px 20px;
  background-color: #f7f9fc;
  text-align: center;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.benefit-card p {
  font-size: 0.95rem;
  color: #666;
}

.how-it-works {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.work-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.work-step {
  max-width: 300px;
  text-align: center;
}

.work-step img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.work-step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.work-step p {
  font-size: 0.95rem;
  color: #666;
}

.arrow-right {
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%236366f1"><path d="M10 6l6 6-6 6-1.4-1.4 4.6-4.6H4v-2h9.2l-4.6-4.6z"/></svg>')
    no-repeat center;
  background-size: contain;
  background-color: transparent;
  align-self: center;
  margin: auto 0;
}

@media (max-width: 768px) {
  .work-steps {
    flex-direction: column;
    align-items: center;
  }
  .arrow-right {
    display: none;
  }
  .work-step {
    width: 100%;
    max-width: 100%;
  }
}

.work-steps > *:nth-child(odd) {
  margin-top: 20px;
}

.partners {
  padding: 60px 20px;
  background-color: #f7f9fc;
  text-align: center;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.partner-logos img {
  height: 60px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-logos img:hover {
  filter: grayscale(0);
}

@media (max-width: 768px) {
  .benefit-cards,
  .work-steps,
  .partner-logos {
    flex-direction: column;
    align-items: center;
  }
  .benefit-card,
  .work-step {
    width: 100%;
    max-width: 100%;
  }
  .partner-logos img {
    height: 40px;
  }
}

.footer {
  background-color: #2d3748;
  color: #fff;
  padding: 3rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column {
  padding: 1rem;
}

.footer-logo {
  font-family: "Pacifico", cursive;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-text {
  color: #a0aec0;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #4a5568;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: #3b82f6;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
}

.footer-link {
  text-decoration: none;
  color: #a0aec0;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
}

.email-input {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px 0 0 8px;
  flex-grow: 1;
  outline: none;
  color: #2d3748;
}

.subscribe-btn {
  background-color: #3b82f6;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #2563eb;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: #a0aec0;
  font-size: 0.875rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.partners-section {
  padding: 4rem 0;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
}

.partner-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.category-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: #4a90e2;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.category-btn:hover {
  background-color: #357abd;
}

.partner-list {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.partner-item {
  background-color: #ebe6e6;
  color: black;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  display: none;
}

.partner-item.active {
  display: block;
}

.no-partners {
  color: #666;
  font-style: italic;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .footer{
      /*border: 2px solid red !important;*/
      width: 100% !important;
  }
    .services {
        padding: 60px 0px;
        background-color: #f7f9fc;
        text-align: center;
        
    }

.footer-column{
    padding: 0 !important;
}
.footer-text{
    width: 90%;
    margin:auto auto;
    /*border: 2px solid red;*/
}
 
  .category-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
