* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:Arial, Helvetica, sans-serif;
  color: black;

}


.mobile-menu {
  display: none;

}

.mobile-menu.show {
  display: block;

}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 200px;
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.nav-links a:hover {
  color: #0ea5e9;
}


.get-started a {
  color: white;
  text-decoration: none;
}

.get-started {
  background: linear-gradient(66.07deg, #3DB9CB 0%, #175F98 100%);
  padding: 0.8rem 1.5rem;
  width: 150px;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #ffffff40;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.get-started:hover {
  background: linear-gradient(66.07deg, #3DB9CB 0%, #175F98 100%);
  transform: translateY(-2px);
  border: 1px solid #ffffff60;
  box-shadow: 0 4px 15px rgba(11, 116, 214, 0.4);

}

.get-started:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(30, 118, 233, 0.3);
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #0ea5e9;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem;
  background-color: #0ea5e9;
}

.mobile-menu a {
  color: white;
  list-style: none;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }
}

/* navbar end */

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.6;
  /* Aap contrast ke hisaab se adjust kar sakte hain */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 1rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  /* Make hero full screen height */
}

.hero-inner {
  text-align: center;
  z-index: 1;
  max-width: 100%;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-content p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 100%;
}


/* Responsive adjustments */
@media (min-width: 768px) {

  
  .hero-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }


  .hero-content {
    text-align: center;
    max-width: 100%;
    margin: 0;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.4;
    word-break: break-word;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 0.5rem;
  }

}


/* hero section end */

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;

}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
  color: #0ea5e9;
  display: flex;
  justify-content: center;
}

.services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  color: black;
  border-radius: 12px;
  padding: 30px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 160px;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);


}

.service-card:hover {
  transform: translateY(-5px);
}

.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  background: linear-gradient(66.07deg, #3DB9CB 0%, #175F98 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 500;
}


/* Background graphic decorations */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-image: url('https://www.svgrepo.com/show/427208/line-square.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
}

/* Services container end */


.steps-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
}

/* Each Step */
.steps-line {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  min-width: 40px;
  min-height: 40px;
  background: linear-gradient(66.07deg, #3DB9CB 0%, #175F98 100%);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #0ea5e9;

}

.step-content p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.5;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .steps-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    margin-bottom: 10px;
  }
}


/* steps-container end */

.testimonial-section {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.testimonial-section h2 {
  color: #0ea5e9;
  font-size: 2rem;
  margin-bottom: 10px;
}

.sub-text {
  max-width: 700px;
  margin: auto;
  color: #555;
  font-size: 1rem;
}

.testimonial-slider {
  position: relative;
  max-width: 1000px;
  margin: 40px auto;
  overflow: hidden;
}

.slide {
  display: none;
  animation: fade 0.8s ease-in-out;
}

.slide.active {
  display: block;
}

.card {
  background: linear-gradient(135deg #1cbfd8, #1372c0);
  color: black;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  margin: auto;
  margin-top: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.card img {
  width: 150px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 15px;
}

.stars {
  font-size: 1.2rem;
  color: gold;
  margin-bottom: 10px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.card p {
  font-size: 1rem;
  line-height: 1.4;
}

.navigation {
  margin-top: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  display: inline-block;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #0ea5e9;
}

/* Fade animation */
@keyframes fade {
  from {
    opacity: 0.4
  }

  to {
    opacity: 1
  }
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    padding: 20px;
  }
}


/* testimonial-section end */

footer {
  background: linear-gradient(66.07deg, #3DB9CB 0%, #175F98 100%);
  color: white;
  padding: 25px 12px 12px;
  /* Mobile pe kam padding */

}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-container a:hover{
  color: #81f31d;

}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-column {
  flex: 1;
  width: 100%;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s ease;
}

.footer-column.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 120px;
  /* Mobile pe chhota logo */
  background-color: white;
  padding: 4px;
}

.footer-description {
  font-size: 13px;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.social-icons a {
  width: 30px;
  height: 30px;
  background-color: white;
  color: #0B1F45;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  background-color: #81f31d;
  color: #0B1F45;
  box-shadow: 0 0 10px rgba(129, 243, 29, 0.8),
    0 0 20px rgba(129, 243, 29, 0.6);
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0;
  font-size: 12px;
}

.footer-title {
  color: #81f31d;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: white;
  margin: 4px 0;
  font-size: 12px;
}

.cta-button {
  background: linear-gradient(66.07deg, #3DB9CB 0%, #175F98 100%);
  color: white;
  width: 150px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid #ffffff40;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(11, 116, 214, 0.6),
    0 0 20px rgba(61, 185, 203, 0.7);
  border: 1px solid #ffffff60;
}

.footer-bottom {
  text-align: center;
  font-size: 11px;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .footer-container {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* Tablet */
@media (min-width: 600px) {

  .footer-top {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-column {
    max-width: 48%;
  }
}

/* Desktop */
@media (min-width: 992px) {
  footer {
    padding: 40px 15px 15px;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }

  .footer-column {
    max-width: 250px;
  }
}



/* ABOUT PAGE START */

.why-section {
  background-color: var(--bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.why-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.why-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
}

.why-heading {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accu-navy);
  color: #0ea5e9;
}

.why-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
}

.why-content a {
  color: var(--link);
  text-decoration: none;
}

.why-content a:hover {
  text-decoration: underline;
}

.why-image {
  max-width: 500px;
  width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .why-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .why-content {
    align-items: flex-start;
  }

  .why-image {
    margin-bottom: 0;
  }
}

/* why-section end */


.container1 {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  color: #0ea5e9;
  margin-bottom: 40px;
  text-align: center;
}

.timeline {
  position: relative;
  border-left: 3px solid #d0d6f9;
  padding-left: 60px;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 10px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #e0ebff;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

/* Icons for each item */
.timeline-item:nth-child(1)::before {
  background-image: url('https://img.icons8.com/ios-filled/50/000000/communication.png');
}

.timeline-item:nth-child(2)::before {
  background-image: url('https://img.icons8.com/ios-filled/50/000000/idea.png');
}

.timeline-item:nth-child(3)::before {
  background-image: url('https://img.icons8.com/ios-filled/50/000000/combo-chart--v1.png');
}

.timeline-item:nth-child(4)::before {
  background-image: url('https://img.icons8.com/ios-filled/50/000000/robot-2.png');
}

.timeline-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0ea5e9;
}

.timeline-item p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .container1 {
    padding: 15px;
  }

  .timeline {
    padding-left: 40px;
  }

  .timeline-item::before {
    left: -30px;
    width: 36px;
    height: 36px;
    background-size: 55%;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 1.6rem;
  }

  .timeline {
    padding-left: 25px;
    border-left: 2px solid #d0d6f9;
  }

  .timeline-item::before {
    left: -25px;
    width: 30px;
    height: 30px;
    background-size: 50%;
  }

  .timeline-item h3 {
    font-size: 1rem;
  }

  .timeline-item p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.9rem;
  }

  .timeline {
    padding-left: 25px;
    border-left: 2px solid #d0d6f9;
  }

  .timeline-item::before {
    left: -20px;
    width: 26px;
    height: 26px;
    background-size: 50%;
  }

  .timeline-item h3 {
    font-size: 0.95rem;
  }

  .timeline-item p {
    font-size: 0.85rem;
  }
}

/* container1 end */

.commit-icon {
  font-size: 40px;
  color: #0ea5e9;
  margin-bottom: 20px;

}


.commitment-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.commitment-header {
  text-align: center;
  margin-bottom: 50px;
}

.commitment-header h2 {
  font-size: 2.5rem;
  color: #0ea5e9;
  border-bottom: 3px solid #0ea5e9;
  display: inline-block;
  padding-bottom: 10px;
}

/* Cards Container */
.commitment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card Styles */
.commitment-card {
  background-color: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.commitment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Image */
.commitment-card img {
  height: 70px;
  margin-bottom: 20px;
}

/* Title */
.commitment-card h3 {
  font-size: 1.2rem;
  color: #0ea5e9;
  margin-bottom: 15px;
}

/* Description */
.commitment-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .commitment-header h2 {
    font-size: 1.9rem;
  }
}

/* Container end */


.how-it-works-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}

.how-it-works-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.features {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.features img {
  max-width: 100%;
  height: auto;
}

.text-description {
  flex: 1 1 400px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  text-align: left;
}

.text-description h1 {
  color: #0ea5e9;
}

@media (max-width: 768px) {
  .how-it-works-container {
    flex-direction: column;
    text-align: center;
  }

  .text-description {
    padding: 0 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .how-it-works-section {
    padding: 40px 10px;
  }

  .text-description {
    font-size: 14px;
  }
}

/* section end */

/* <!-- Online Bookkeeping Services strt --> */


.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;

}

.main-heading {
  text-align: center;
  color: #0ea5e9;
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
  position: relative;
}

.main-heading::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(66.07deg, #3DB9CB 0%, #175F98 100%);
  border-radius: 2px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0 1rem;
  margin-bottom: 70px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1e40af);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: #3b82f6;
}

.card:hover::before {
  opacity: 1;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: white;
  background-color: #0ea5e9;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 0.875rem;
  box-shadow: 0 6px 14px rgba(59, 130, 246, 0.25);
  flex-shrink: 0;
}

.card-title {
  font-size: clamp(1.2rem, 3vw, 1.375rem);
  font-weight: 600;
  color: #0ea5e9;
  line-height: 1.3;
  margin: 0;
}

.card-content {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.925rem;
  flex-grow: 1;
}

.card-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.card-content li {
  margin-bottom: 0.875rem;
  padding-left: 1.75rem;
  position: relative;
  font-size: clamp(0.875rem, 2vw, 0.925rem);
}

.card-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.125rem;
  color: #3b82f6;
  font-weight: 700;
  width: 1.25rem;
  height: 1.25rem;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.card-content li:last-child {
  margin-bottom: 0;
}

/* Enhanced responsive design */
@media (min-width: 1400px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 0 0.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .card-header {
    margin-bottom: 1rem;
  }

  .card-content li {
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0;
  }

  .card {
    padding: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {

  .main-heading {
    font-size: 1.9rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }

  .card {
    padding: 1.25rem;
    margin: 0 auto;
    max-width: 100%;
  }

  .card-header {
    margin-bottom: 0.875rem;
  }

  .card-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-right: 0.625rem;
  }

  .card-content li {
    margin-bottom: 0.625rem;
    padding-left: 1.25rem;
    font-size: 0.875rem;
  }

  .card-content li::before {
    width: 1.125rem;
    height: 1.125rem;
    font-size: 0.7rem;
  }
}

/* Print styles */
@media print {

  .card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
  }

  .card:hover {
    transform: none;
  }
}

/* how work2 start */

.Bringing {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.Bringing h2 {
  font-size: 2.5rem;
  color: #0ea5e9;
  margin-bottom: 30px;
}

.step {
  background: white;
  border-left: 4px solid #3b82f6;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #0ea5e9;
}

.step ul {
  list-style: none;
  padding-left: 0;
}

.step ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .Bringing h2 {
    font-size: 1.7rem;
  }

}

/* Bringing container end  */




.Simplify-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.Simplify-content {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 300px;
}

.text-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.text-content h2 span {
  color: #0ea5e9;
}

.text-content p {
  font-size: 1rem;
  color: #333;
}

/* Image */
.image-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.image-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .Simplify-content {
    flex-direction: column;
    text-align: center;
  }

  .text-content h2 {
    font-size: 1.75rem;
  }

  .text-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .text-content h2 {
    font-size: 1.5rem;
  }

  .text-content p {
    font-size: 0.9rem;
  }
}

/* Simplify-section end */



/* contact form start */

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 40px);
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.contact-container {
  max-width: 600px;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
}

.contact-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(66.07deg, #3DB9CB 0%, #175F98 100%);
}


.header-section {
  text-align: center;
  margin-bottom: 40px;
}

.header-icon {
  width: 70px;
  height: 70px;
  background-color: #0ea5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
  border: 3px solid rgba(214, 158, 46, 0.2);
}

.header-section h1 {
  color: #0ea5e9;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
  color: #4a5568;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 10px;
}

.form-group {
  position: relative;
  margin-top: 50px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0ea5e9;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #0ea5e9;
  font-size: 16px;
  z-index: 2;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 16px 16px 16px 45px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  background-color: #f8fafc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  color: #2d3748;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #1a365d;
  background-color: white;
  box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.1);
  transform: translateY(-2px);
}

select {
  padding-left: 45px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%231a365d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 16px;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 120px;
  padding: 16px;
}

.form_services_section {
  margin: 50px 0;
}

.services-label {
  font-weight: 600;
  color: #0ea5e9;
  margin-bottom: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.checkbox-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(26, 54, 93, 0.05), transparent);
  transition: left 0.5s;
}

.checkbox-item:hover::before {
  left: 100%;
}

.checkbox-item:hover {
  background: #edf2f7;
  border-color: #1a365d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 54, 93, 0.15);
}

.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #1a365d;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"]:checked+label {
  color: #1a365d;
  font-weight: 700;
}

.checkbox-item:has(input:checked) {
  background: rgba(26, 54, 93, 0.08);
  border-color: #1a365d;
  box-shadow: 0 0 0 1px rgba(26, 54, 93, 0.2);
}

.checkbox-item label {
  margin: 0;
  font-size: 14px;
  color: #4a5568;
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

.submit-btn {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(66.07deg, #3DB9CB 0%, #175F98 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
  margin-top: 30px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(214, 158, 46, 0.3), transparent);
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(26, 54, 93, 0.4);
  background: linear-gradient(135deg, #2d5282 0%, #1a365d 100%);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn .btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* Trust indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5568;
  font-size: 13px;
  font-weight: 500;
}

.trust-item i {
  color: #38a169;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  .contact-container {
    padding: 35px 25px;
    margin: 0;
    border-radius: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-section h1 {
    font-size: 1.9rem;
  }

  .header-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .contact-container {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .header-section h1 {
    font-size: 1.8rem;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    padding: 14px 14px 14px 40px;
    font-size: 14px;
  }

  .input-icon {
    left: 14px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 16px 24px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .contact-container {
    padding: 20px 15px;
  }

  .checkbox-item {
    padding: 12px 15px;
  }

  .checkbox-item label {
    font-size: 13px;
  }
}

/* Animation for form load */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  animation: slideInUp 0.6s ease forwards;
}

.form-group:nth-child(1) {
  animation-delay: 0.1s;
}

.form-group:nth-child(2) {
  animation-delay: 0.2s;
}

.form-group:nth-child(3) {
  animation-delay: 0.3s;
}

.form-group:nth-child(4) {
  animation-delay: 0.4s;
}

/* Loading state for button */
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.submit-btn.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}




/* thank file start */

.thankyou-container {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.back-home {
  display: inline-block;
  padding: 12px 25px;
  background-color: white;
  color: #ff5722;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.back-home:hover {
  background-color: #f5f5f5;
  color: #e64a19;
}


/* SERVICES PAGE START */

/* bookkeeping-section start  */

.bookkeeping-section {
  padding: 60px 20px;
  background: white;

}

.bookkeeping-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;

}

.text-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.text-content h2 {
  font-size: 2rem;
  color: #0ea5e9;
  margin-bottom: 15px;

}

.text-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.image-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 20px;
}

.image-content img {
  width: 400px;
  height: 400px;
  object-fit: fill;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



/* Responsive */
@media (max-width: 768px) {
  .bookkeeping-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .text-content h2 {
    font-size: 1.6rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  .image-content img {
    width: 200px;
    height: 200px;
  }
}

/* bookkeeping-cards start */

.features-section {
  padding: 60px 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.feature-card {
  background: white;
  color: black;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
  font-size: 1.6rem;
  color: #0ea5e9;
  margin-bottom: 18px;
  border-bottom: 2px solid #0ea5e9;
  padding-bottom: 6px;
}

.feature-card ul,
.feature-card ol {
  padding-left: 20px;
  font-size: 1rem;
  color: black;
  line-height: 1.7;
}

.feature-card li {
  margin-bottom: 10px;
}


/* services-section start */

.services-section {
  padding: 60px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-container h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #0ea5e9;
  margin-bottom: 40px;
  position: relative;
}

.services-container h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #0ea5e9;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card Styling */
.service_card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.service_card h2 {
  font-size: 1.2rem;
  color: #0ea5e9;
  margin-bottom: 15px;
}

.service_card p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #475569;
}