
.blog-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

.blog-filters {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  flex: 1 1 300px;
}

.sidebar-widget h3 {
  margin-top: 0;
  border-bottom: 2px solid #009688;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

#search-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

#category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-btn {
  background: #f0f0f0;
  color: #333;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.category-btn.active, .category-btn:hover {
  background: #009688;
  color: #fff;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

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

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-content h2 {
  margin-top: 0;
  font-size: 1.4rem;
}

.blog-card-content h2 a {
  text-decoration: none;
  color: #333;
}

.blog-meta {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.blog-excerpt {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.read-more {
  color: #009688;
  font-weight: bold;
  text-decoration: none;
  align-self: flex-start;
}

body {
  font-family: 'Poppins', sans-serif;
}

.blog-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid #e0e0e0;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.blog-card h2 {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.blog-card h2 a {
  text-decoration: none;
  color: #003366;
  transition: color 0.3s;
}

.blog-card h2 a:hover {
  color: #009688;
}

.blog-card .blog-meta {
  color: #757575;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.blog-card .blog-excerpt {
  color: #424242;
  line-height: 1.8;
  flex-grow: 1;
}

.blog-card .read-more {
  display: inline-block;
  margin-top: 1.5rem;
  background: #009688;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.3s;
  align-self: flex-start;
}

.blog-card .read-more:hover {
  background: #00796b;
  transform: translateY(-2px);
}

/* --- ITR Filing Side-by-Side Section Layout --- */
.itr-sidebyside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.itr-sidebyside-col {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px #00968811;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.itr-sidebyside-col.itr-benefits {
  background: linear-gradient(120deg, #e0f7fa 60%, #b2ebf2 100%);
}
.itr-sidebyside-grid::before {
  content: '';
  display: block;
  grid-row: 1 / span 2;
  grid-column: 2;
  width: 2px;
  background: linear-gradient(180deg, #e0f7fa 0%, #b2ebf2 100%);
  margin: 0 0 0 -20px;
  border-radius: 2px;
  min-height: 80%;
  align-self: center;
}
@media (max-width: 900px) {
  .itr-sidebyside-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .itr-sidebyside-grid::before {
    display: none;
  }
  .itr-sidebyside-col {
    padding: 22px 10px 18px 10px;
  }
}
/* --- ITR Filing Page Further Visual Improvements --- */
.section-bg {
  border-radius: 18px;
  margin-bottom: 32px;
  box-shadow: 0 2px 16px #0096880a;
  position: relative;
  overflow: hidden;
}
.section-bg:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #e0f7fa 0%, #b2ebf2 100%);
  opacity: 0.7;
  border-radius: 2px;
}
.section-bg-accent {
  background: linear-gradient(120deg, #e0f7fa 60%, #b2ebf2 100%) !important;
}
.section-bg {
  animation: fadeInSection 0.9s ease;
}
@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.process-steps > div, .why-choose-grid > div, .benefits-grid > div {
  box-shadow: 0 2px 10px #00968811, 0 1.5px 0 #e0f7fa;
  border-radius: 16px;
  transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
  background: #fff;
}
.process-steps > div:hover, .why-choose-grid > div:hover, .benefits-grid > div:hover {
  box-shadow: 0 8px 32px #00968833, 0 0 0 2px #43cea244;
  background: #f5fafd;
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.process-icon, .why-choose-icon, .benefit-icon {
  filter: drop-shadow(0 2px 4px #00968822);
}
/* --- ITR Filing Page Professional Color Palette & Section Styling --- */
.heading-primary {
  color: #002060;
  letter-spacing: 0.5px;
}
.heading-accent {
  color: #00796b;
  letter-spacing: 0.5px;
}
.section-bg-accent {
  background: #e0f7fa !important;
}
.section-desc {
  color: #37474f;
  font-size: 1.13em;
  text-align: center;
  margin-bottom: 8px;
}
.section-highlight {
  color: #00796b;
  font-size: 1.08em;
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
}
.section-highlight-accent {
  color: #00897b;
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}
.process-icon {
  color: #1565c0;
  font-size: 2.5em;
  margin-bottom: 6px;
}
.process-step-title {
  color: #0d3559;
  font-weight: 600;
  margin-top: 8px;
}
.process-step-desc {
  color: #607d8b;
  font-size: 0.98em;
}
.mistakes-list li {
  color: #c62828;
  font-weight: 500;
  margin-bottom: 7px;
  text-align: left;
}
.why-choose-icon {
  color: #00796b;
  font-size: 2em;
  margin-bottom: 6px;
}
.why-choose-title {
  color: #0d3559;
  font-weight: 600;
  margin-top: 8px;
}
.why-choose-desc {
  color: #607d8b;
  font-size: 0.98em;
}
.benefit-icon {
  color: #388e3c;
  font-size: 1.4em;
  margin-right: 8px;
}
.benefit-card {
  color: #0d3559;
  font-weight: 500;
}
.cta-desc {
  color: #37474f;
  font-size: 1.13em;
  margin-bottom: 18px;
}
.cta-phones {
  color: #00796b;
  font-size: 1.12em;
  font-weight: 600;
  margin-bottom: 10px;
}
.cta-phones a {
  color: #00796b;
  font-weight: bold;
  text-decoration: underline;
}
.cta-locations {
  color: #607d8b;
  font-size: 1.05em;
  margin-top: 10px;
}
/* --- ITR Filing Page New Sections --- */
.process-steps, .why-choose-grid, .benefits-grid {
  margin-top: 18px;
}
.process-steps > div, .why-choose-grid > div, .benefits-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px #00968811;
  padding: 22px 12px 16px 12px;
  margin-bottom: 0;
  transition: box-shadow 0.18s, transform 0.18s;
}
.process-steps > div:hover, .why-choose-grid > div:hover, .benefits-grid > div:hover {
  box-shadow: 0 6px 24px #00968822;
  transform: translateY(-2px) scale(1.025);
}
.process-steps div div[style*="font-size:2.2em"], .why-choose-grid div div[style*="font-size:2em"] {
  font-size: 2.5em !important;
  margin-bottom: 6px;
}
.benefits-grid span {
  font-size: 1.4em !important;
}
.benefits-grid > div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fffd;
  font-weight: 500;
}
.section-bg ul {
  margin: 0 auto 0 auto;
  padding: 0 0 0 0;
  list-style: none;
}
.section-bg ul li {
  padding: 7px 0 7px 0;
  font-size: 1.08em;
  border-bottom: 1px solid #e0f7fa;
}
.section-bg ul li:last-child {
  border-bottom: none;
}
.section-bg .contact-cta-btn.whatsapp {
  margin: 0 auto 0 auto;
  display: inline-flex;
  min-width: 220px;
  justify-content: center;
}
@media (max-width: 900px) {
  .process-steps, .why-choose-grid, .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .process-steps, .why-choose-grid, .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process-steps > div, .why-choose-grid > div, .benefits-grid > div {
    padding: 16px 8px 12px 8px;
  }
}
.service-card, .package-card {
  box-shadow: 0 4px 18px #00968822, 0 1.5px 0 #e0f7fa;
  border-radius: 16px;
  border: 1.5px solid #e0f7fa;
  transition: box-shadow 0.18s, transform 0.18s;
  background: #fff;
}
.service-card:hover, .service-card:focus, .package-card:hover, .package-card:focus {
  box-shadow: 0 8px 32px #00968833, 0 0 0 2px #00968844;
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
/* --- IMPROVED FOOTER COLUMNS & LISTS --- */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 3px;
  color: #e0f7fa;
  font-size: 0.95em;
  line-height: 1.3;
}
.footer-list a {
  color: var(--accent-teal, #43cea2);
  text-decoration: underline;
  font-weight: 500;
}
.footer-list a:hover, .footer-list a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-cta {
  background: linear-gradient(90deg, #43cea2 0%, #009688 100%);
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  margin: 10px auto 6px auto;
  max-width: 900px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px #00968822;
/* Reduce heading and text spacing in footer */
.footer-col h4 {
  margin-bottom: 6px !important;
  font-size: 1rem !important;
}
.footer-col div, .footer-col ul, .footer-col li {
  margin-bottom: 2px !important;
}
}
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 0;
  }
  .footer-col {
    margin-bottom: 24px;
  }
  .footer-cta {
    font-size: 1rem;
    padding: 12px 8px;
  }
}
/* --- ORIGINAL FOOTER STYLES RESTORED --- */
.footer {
  background: var(--primary-blue);
  color: #fff;
  padding: 30px 20px;
}
.footer a {
  color: var(--accent-teal);
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo img {
  width: 150px;
}
/* Core Services & Special Packages Section Title */
.section-title {
  text-align: center;
  margin-bottom: 30px;
  color: #003366;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* Card summary text for package cards */
.package-summary {
  font-weight: 600;
  color: #009688;
  margin-bottom: 8px;
  text-align: center;
  font-size: 1.05em;
}
/* ABOUT US MODERN CARD DESIGN */
.about-section-modern {
  background: #f5fafd;
  padding: 56px 0 56px 0;
}
.about-card {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px #00968818;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
  flex-wrap: wrap;
}
.about-img-wrap {
  flex: 1 1 380px;
  min-width: 280px;
  position: relative;
  display: flex;
  align-items: stretch;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  display: block;
}
.about-img-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, rgba(0,150,136,0.18) 0%, rgba(67,206,162,0.12) 100%);
  pointer-events: none;
  border-radius: 0;
}
.about-content {
  flex: 2 1 480px;
  padding: 48px 38px 38px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content h2 {
  color: #009688;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.about-subheading {
  color: #333;
  font-size: 1.18rem;
  margin-bottom: 18px;
  font-weight: 500;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.about-stats div {
  background: #f5fafd;
  border-radius: 10px;
  padding: 12px 22px;
  color: #009688;
  font-weight: 700;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}
.about-stats span {
  font-size: 1.35em;
  font-weight: 800;
  color: #003366;
}
.about-features {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.feature-card {
  background: #e0f7fa;
  border-radius: 10px;
  box-shadow: 0 2px 8px #00968811;
  padding: 10px 18px;
  color: #009688;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-card i {
  font-size: 1.2em;
}
.about-btn {
  font-size: 1.13rem;
  padding: 14px 38px;
  border-radius: 30px;
  background: linear-gradient(90deg,#43cea2,#009688);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 12px #00968833;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.18s, box-shadow 0.18s;
  display: inline-block;
}
.about-btn:hover, .about-btn:focus {
  background: #009688;
  color: #fff;
  box-shadow: 0 4px 18px #00968833;
}
@media (max-width: 900px) {
  .about-card {
    flex-direction: column;
    max-width: 98vw;
  }
  .about-img-wrap img {
    min-height: 180px;
    max-width: 100vw;
  }
  .about-content {
    padding: 32px 12px 24px 12px;
  }
  .about-stats {
    gap: 12px;
  }
}
/* ABOUT US SECTION MODERN DESIGN */
.about-section {
  background: #f5fafd;
  padding: 48px 0;
}
.about-flex {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.about-img-col {
  flex: 1 1 400px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 280px;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
  min-height: 260px;
}
.about-content-col {
  flex: 2 1 400px;
}
.about-title {
  color: #009688;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.about-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg,#43cea2,#009688);
  border-radius: 2px;
  margin-bottom: 18px;
}
.about-desc {
  color: #333;
  font-size: 1.13rem;
  margin-bottom: 18px;
}
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.about-highlights li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px #00968811;
  padding: 10px 18px;
  color: #009688;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-btn {
  font-size: 1.13rem;
  padding: 14px 38px;
  border-radius: 30px;
}
@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    gap: 28px;
  }
  .about-img {
    max-width: 90vw;
  }
}
/* Main Section Background */
.section-bg {
  background: #f5fafd;
  margin-top: 16px;
}
/* HERO SECTION BACKGROUND IMAGE */
.hero-section.hero-bg {
  background-image: linear-gradient(90deg, rgba(0,51,102,0.85) 0%, rgba(0,150,136,0.75) 100%), url('../images/office.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* HERO SECTION REFINED */
.hero-section {
  background: var(--header-gradient);
  padding: 60px 0 40px 0;
  margin-bottom: 48px;
}
.hero-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-content-col {
  flex: 1 1 350px;
  min-width: 300px;
}
.hero-title {
  font-size: 2.7rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-desc {
  font-size: 1.25rem;
  color: #e0f7fa;
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-btn {
  font-size: 1.15rem;
  padding: 16px 36px;
}
.hero-img-col {
  flex: 1 1 350px;
  min-width: 280px;
  display: flex;
  justify-content: center;
}
.hero-img {
  max-width: 370px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
  background: #fff;
  padding: 12px;
}
@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
  .hero-desc {
    font-size: 1rem;
    text-align: center;
  }
  .hero-img {
    max-width: 90vw;
    margin: 0 auto;
  }
}

/* FAQ & NEWSLETTER FLEX */
.faq-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.faq-col {
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 500px;
}
.newsletter-box {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 420px;
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 32px 24px;
}
@media (max-width: 768px) {
  .faq-flex {
    flex-direction: column;
    gap: 18px;
  }
}

/* WHY CHOOSE US FLEX */
.why-choose-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.why-choose-card {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 260px;
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 28px 18px;
  text-align: center;
}
@media (max-width: 768px) {
  .why-choose-flex {
    flex-direction: column;
    gap: 18px;
  }
}

/* CALLBACK FORM FLEX */
.callback-form-container {
  max-width: 600px;
  margin: 0 auto;
}
.callback-form-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.callback-input {
  flex: 1 1 160px;
  min-width: 120px;
  padding: 12px 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
}
.callback-btn {
  padding: 12px 24px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .callback-form-flex {
    flex-direction: column;
    gap: 10px;
  }
}
/* Learn More Button for Service Cards */
.learn-more-btn {
  display: inline-block;
  margin: 12px auto 0 auto;
  background: #009688;
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 22px;
  text-decoration: none;
  box-shadow: 0 2px 8px #00968822;
  transition: background 0.18s, box-shadow 0.18s;
  border: none;
  cursor: pointer;
}
.learn-more-btn:hover, .learn-more-btn:focus {
  background: #43cea2;
  color: #fff;
  box-shadow: 0 4px 18px #00968833;
}
/* Show More Button for Service Grid */
.show-more-container {
  display: flex;
  justify-content: center;
  margin: 32px 0 0 0;
}
.show-more-btn {
  background: #fff;
  color: #009688;
  font-size: 1.08em;
  font-weight: 700;
  padding: 12px 38px;
  border-radius: 30px;
  border: 2px solid #43cea2;
  box-shadow: 0 2px 8px #00968811;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.show-more-btn:hover, .show-more-btn:focus {
  background: #43cea2;
  color: #fff;
  box-shadow: 0 4px 18px #00968833;
}
/* Why Choose Section */
.why-choose-section {
  background: #f5fafd;
  border-radius: 18px;
  box-shadow: 0 4px 24px #00968811;
  padding: 36px 18px 32px 18px;
  margin: 38px auto 0 auto;
  max-width: 900px;
}
.why-choose-title {
  color: #009688;
  font-size: 1.35em;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 0.01em;
}
.why-choose-comparison {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.why-choose-col {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px #00968808;
  padding: 22px 18px 18px 18px;
  min-width: 260px;
  max-width: 400px;
}
.why-choose-col h3 {
  color: #009688;
  font-size: 1.08em;
  margin-bottom: 12px;
  text-align: center;
}
.why-choose-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-choose-col li {
  font-size: 1.04em;
  margin-bottom: 10px;
  padding-left: 0.5em;
  position: relative;
}
.why-choose-diy li::before {
  content: "❌ ";
  color: #e53935;
  font-size: 1.1em;
  position: absolute;
  left: -1.2em;
}
.why-choose-pro li::before {
  content: "✅ ";
  color: #43cea2;
  font-size: 1.1em;
  position: absolute;
  left: -1.2em;
}
.why-choose-bad {
  color: #e53935;
  font-weight: 600;
}
.why-choose-good {
  color: #43cea2;
  font-weight: 600;
}
@media (max-width: 900px) {
  .why-choose-comparison {
    flex-direction: column;
    gap: 18px;
  }
}
/* CTA / Contact Box Section */
.cta-contact-box {
  background: linear-gradient(90deg, #e0f7fa 0%, #f5fafd 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px #00968822;
  padding: 32px 18px 28px 18px;
  margin: 38px auto 0 auto;
  max-width: 600px;
  text-align: center;
}
.cta-contact-title {
  color: #009688;
  font-size: 1.45em;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.cta-contact-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-contact-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #009688;
  border: 2px solid #43cea2;
  border-radius: 30px;
  font-size: 1.08em;
  font-weight: 600;
  padding: 12px 26px;
  text-decoration: none;
  box-shadow: 0 2px 8px #00968811;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-bottom: 8px;
}
.cta-contact-btn:hover, .cta-contact-btn:focus {
  background: #43cea2;
  color: #fff;
  box-shadow: 0 4px 18px #00968833;
}
.cta-contact-btn.whatsapp {
  border-color: #25d366;
  color: #25d366;
}
.cta-contact-btn.whatsapp:hover, .cta-contact-btn.whatsapp:focus {
  background: #25d366;
  color: #fff;
}
.cta-contact-btn.call {
  border-color: #009688;
}
.cta-contact-btn.book {
  border-color: #43cea2;
}
@media (max-width: 600px) {
  .cta-contact-actions {
    flex-direction: column;
    gap: 10px;
  }
  .cta-contact-box {
    padding: 18px 4px 16px 4px;
  }
}
/* Horizontal Contact CTA */
.contact-cta-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
/* removed stray closing brace */
@media (max-width: 600px) {
  .contact-cta-horizontal {
    flex-direction: column;
    gap: 6px;
  }
}
/* --- SERVICES PAGE ENHANCEMENTS --- */
.service-card {
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
}
.service-card:focus-within, .service-card:hover {
  box-shadow: 0 8px 32px #00968833, 0 0 0 2px #00968844;
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}
.service-card.featured {
  border: 2.5px solid #43cea2;
  box-shadow: 0 8px 32px #43cea244;
}
.service-card .featured-badge {
  position: absolute;
  top: 12px;
  right: 18px;
  background: #43cea2;
  color: #fff;
  font-size: 0.92em;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
  letter-spacing: 0.03em;
  z-index: 3;
}
.service-card-header h3 {
  margin-bottom: 2px;
}
.service-card-summary {
  font-size: 0.98em;
  color: #009688;
  margin-bottom: 7px;
  margin-top: -2px;
  text-align: center;
  font-weight: 600;
}
.service-link:focus {
  outline: 2px solid #009688;
  border-radius: 8px;
}
.service-card .about-icon, .service-card .service-icon {
  font-size: 2.4rem !important;
  width: 2.4em;
  height: 2.4em;
  display: inline-block;
  margin-bottom: 2px;
}
.contact-cta {
  display: flex;
  justify-content: center;
  margin: 36px 0 18px 0;
}
.contact-cta-btn {
  background: linear-gradient(90deg, #43cea2 0%, #009688 100%);
  color: #fff;
  font-size: 1.13em;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 2px 12px #00968833;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
}
.contact-cta-btn:hover, .contact-cta-btn:focus {
  background: #009688;
  box-shadow: 0 4px 24px #00968844;
}
.faq-section {
  max-width: 800px;
  margin: 36px auto 0 auto;
  background: #f5fafd;
  border-radius: 14px;
  box-shadow: 0 2px 12px #00968811;
  padding: 24px 18px;
}
.faq-section h2 {
  color: #009688;
  font-size: 1.18em;
  margin-bottom: 18px;
}
.faq-list details {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 10px 16px;
  transition: box-shadow 0.2s;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  outline: none;
}
.faq-list details[open] {
  box-shadow: 0 2px 8px #00968822;
}
.testimonials-section {
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 10px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #43cea233;
  border-left: 5px solid #43cea2;
  padding: 24px 20px;
  margin-bottom: 24px;
  font-style: italic;
  transition: box-shadow 0.2s;
}
.testimonial-card .testimonial-author {
  font-weight: bold;
  color: #009688;
  margin-top: 8px;
  display: block;
}
@media (max-width: 700px) {
  .testimonials-section {
    padding: 0 2px;
  }
  .faq-section {
    padding: 14px 2px;
  }
  .contact-cta-btn {
    font-size: 1em;
    padding: 12px 18px;
  }
}
/* --- SERVICES PAGE CARD REFINEMENTS --- */
.service-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #00968818;
  padding: 28px 22px 22px 22px;
  margin-bottom: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.service-icon {
  margin-bottom: 2px;
}
.service-card-desc {
  font-size: 1.04em;
  color: #444;
  text-align: center;
  margin-bottom: 12px;
  margin-top: 2px;
}
.service-divider {
  border: none;
  border-top: 1.5px dashed #e0f7fa;
  margin: 0 0 14px 0;
}
.service-list {
  padding-left: 1.1em;
  margin: 0;
  font-size: 1.01em;
}
.service-list li {
  margin-bottom: 0.5em;
  color: #222;
}
@media (max-width: 700px) {
  .service-card {
    padding: 14px 6px 12px 6px;
    min-height: 0;
  }
  .service-card-header h3 {
    font-size: 1.08rem;
  }
  .service-card-desc {
    font-size: 0.97em;
    margin-bottom: 8px;
  }
  .service-divider {
    margin-bottom: 8px;
  }
  .service-list {
    font-size: 0.97em;
  }
}
/* --- ABOUT PAGE ADVANCED VISUAL UPGRADES --- */
.about-section-bg1 {
  background: #f5fafd;
}
.about-section-bg2 {
  background: #fff;
}
.about-section-bg3 {
  background: linear-gradient(90deg, #e0f7fa 0%, #fff 100%);
}
.about-content, .container section, .container > section, .about-details {
  padding-top: 18px;
  padding-bottom: 18px;
}
.about-content h2, .about-content h3, .container h2, .container h3 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-weight: 800;
    .about-content, .container {
      padding: 0 4px;
    }
    .hero-section h1 {
      font-size: 1.08rem;
      margin-bottom: 10px;
    }
    .about-content h2, .container h2 {
      font-size: 1.08rem;
      margin-top: 10px;
      margin-bottom: 10px;
    }
    .about-content h3, .container h3 {
      font-size: 1rem;
      margin-top: 8px;
      margin-bottom: 8px;
    }
    .about-content p, .container p, .about-content li, .container li {
      font-size: 0.98em;
    }
    .about-content .card, .container .card {
      padding: 14px 8px;
      margin-bottom: 10px;
    }
    .about-icon {
      font-size: 2.5rem !important;
      width: 44px;
      height: 44px;
      margin-bottom: 6px;
    }
    .section-divider, .about-content .section-divider, .container .section-divider {
      display: none;
    }
    [style*="grid-template-columns"] {
      gap: 10px !important;
    }
    .sticky-cta-bar {
      font-size: 1rem;
      padding: 10px 0;
      bottom: 0;
      left: 0;
      width: 100vw;
      z-index: 10000;
    }
    a, button, .cta-btn, .nav-links a {
      min-height: 44px;
      min-width: 44px;
      font-size: 1em;
      padding: 12px 0;
    }
  will-change: transform;
}
.about-content .card:hover, .container .card:hover {
    .floating-buttons {
      position: fixed !important;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100vw;
      display: flex !important;
      flex-direction: row !important;
      justify-content: space-evenly;
      align-items: center;
      gap: 0;
      background: #fff;
      box-shadow: 0 -4px 18px rgba(0,0,0,0.13);
      z-index: 9999;
      padding: 0;
      margin: 0;
      height: 54px;
      border-top: 1px solid #e0e0e0;
    }
    .floating-buttons a {
      flex: 1 1 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2.3rem;
      height: 54px;
      border-radius: 0;
      background: none;
      color: #009688;
      border: none;
      margin: 0;
      transition: background 0.18s, color 0.18s;
      touch-action: manipulation;
      -webkit-tap-highlight-color: #e0f7fa;
    }
    .floating-buttons a.call-btn { color: #388e3c; }
    .floating-buttons a.whatsapp-btn { color: #43cea2; }
    .floating-buttons a:active, .floating-buttons a:focus {
      background: #e0f7fa;
      color: #003366;
      outline: none;
    }
    .about-content, .container {
      padding: 0 2px;
    }
    .about-content h2, .container h2 {
      font-size: 1rem;
      margin-top: 8px;
      margin-bottom: 8px;
    }
    .about-content h3, .container h3 {
      font-size: 0.98rem;
      margin-top: 6px;
      margin-bottom: 6px;
    }
    .about-content p, .container p, .about-content li, .container li {
      font-size: 0.93em;
    }
    .about-content .card, .container .card {
      padding: 10px 4px;
      margin-bottom: 8px;
    }
    .about-icon {
      font-size: 2.7rem !important;
      width: 48px;
      height: 48px;
      margin-bottom: 4px;
    }
    [style*="grid-template-columns"] {
      gap: 6px !important;
    }
  }
  .about-content h2, .container h2 {
    font-size: 1.15rem;
  }
  .about-content h3, .container h3 {
    font-size: 1.02rem;
  }
}
/* --- ABOUT PAGE ENHANCEMENTS --- */
.about-content h2, .about-content h3, .container h2, .container h3 {
  font-family: 'Inter', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #009688;
  margin-bottom: 0.5em;
}
.about-content, .container {
  font-family: 'Inter', 'Roboto', Arial, sans-serif;
  color: #222;
}
.section-divider {
  border: none;
  border-top: 2px solid #e0f7fa;
  margin: 20px 0 12px 0;
}
.about-details, .about-content, .container section, .container > section {
  margin-bottom: 12px;
}
.about-content ul, .container ul {
  padding-left: 1.2em;
}
.about-content li, .container li {
  margin-bottom: 0.5em;
  font-size: 1.08em;
}
.hero-section {
  position: relative;
  background: #f5fafd url('../images/office-bg.jpg') center/cover no-repeat;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,150,136,0.08);
  z-index: 1;
}
.hero-section > .container {
  position: relative;
  z-index: 2;
}
.cta-btn {
  transition: background 0.2s, box-shadow 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #009688;
  box-shadow: 0 4px 16px #00968844;
}
.about-content img[alt*="Founder"], .about-content img[alt*="Varry"] {
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.about-content img[alt*="Founder"]:hover, .about-content img[alt*="Varry"]:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 24px #00968855;
}
.card, .testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px #00968811;
  padding: 24px 20px;
  margin-bottom: 24px;
}
.testimonial-card {
  border-left: 4px solid #43cea2;
  font-style: italic;
}
.faq-list details {
  background: #f7f7f7;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 10px 16px;
  transition: box-shadow 0.2s;
}
.faq-list details[open] {
  box-shadow: 0 2px 8px #00968822;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  outline: none;
}
.sticky-cta-bar {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: #009688;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  z-index: 1000;
  box-shadow: 0 -2px 8px #00968833;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sticky-cta-bar .close-cta {
  margin-left: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.sticky-cta-bar .close-cta:hover, .sticky-cta-bar .close-cta:focus {
  opacity: 1;
}
@media (max-width: 700px) {
  .about-content, .container {
    padding: 0 8px;
  }
  .hero-section h1 {
    font-size: 1.3rem;
  }
  .about-content h2, .container h2 {
    font-size: 1.2rem;
  }
  .about-content h3, .container h3 {
    font-size: 1.05rem;
  }
  .sticky-cta-bar {
    font-size: 1rem;
    padding: 10px 0;
  }
}
@media (max-width: 600px) {
  .floating-buttons {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-evenly;
    align-items: center;
    gap: 0;
    background: #fff;
    box-shadow: 0 -4px 18px rgba(0,0,0,0.13);
    z-index: 9999;
    padding: 0;
    margin: 0;
    height: 60px;
    border-top: 1px solid #e0e0e0;
  }
  .floating-buttons a {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.1rem;
    height: 60px;
    border-radius: 0;
    background: none;
    color: #009688;
    border: none;
    margin: 0;
    transition: background 0.18s, color 0.18s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: #e0f7fa;
  }
  .floating-buttons a.call-btn { color: #388e3c; }
  .floating-buttons a.whatsapp-btn { color: #43cea2; }
  .floating-buttons a:active, .floating-buttons a:focus {
    background: #e0f7fa;
    color: #003366;
    outline: none;
  }
}
@media (max-width: 600px) {
  body, html {
    font-size: 16px;
    line-height: 1.6;
    padding: 0;
    margin: 0;
  }
  .container, .page-header, .footer-container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .navbar, .footer {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links {
    flex-direction: column;
    gap: 0;
  }
  .nav-links li {
    margin: 0.5em 0;
  }
  .blog-grid, .service-grid, .package-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .card, .blog-card, .contact-card {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 0 18px 0 !important;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  h1, h2, h3 {
    font-size: 1.3em;
    word-break: break-word;
  }
  button, .btn, .legal-toggle-btn {
    font-size: 1em;
    padding: 12px 18px;
    width: 100%;
  }
  .floating-buttons {
    right: 10px;
    bottom: 10px;
    flex-direction: column;
    gap: 10px;
  }
}
/* Accessibility: skip link focus style */
.skip-link:focus {
  left: 12px !important;
  top: 12px !important;
  width: auto !important;
  height: auto !important;
  background: #003366;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  z-index: 9999;
  outline: 2px solid #26c6da;
}
/* Accessibility: skip link focus style */
.skip-link:focus {
  left: 12px !important;
  top: 12px !important;
  width: auto !important;
  height: auto !important;
  background: #003366;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  z-index: 9999;
  outline: 2px solid #26c6da;
}
/* Remove default arrows from details/summary */
details > summary::-webkit-details-marker {
  display: none;
}
details > summary {
  list-style: none;
}
details > summary {
  cursor: pointer;
}
/* Accessibility: skip link focus style */
.skip-link:focus {
  left: 12px !important;
  top: 12px !important;
  width: auto !important;
  height: auto !important;
  background: #003366;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  z-index: 9999;
  outline: 2px solid #26c6da;
}
/* Sticky Table of Contents for Terms page */
@media (min-width: 992px) {
  .toc-sticky {
    position: sticky;
    top: 32px;
    background: #f8fafc;
    z-index: 10;
    padding: 12px 0 12px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  }
}
/* =======================
   ADVANCED SERVICE CARD INTERACTIVITY
======================= */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(38,198,218,0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.5s cubic-bezier(.4,0,.2,1), height 0.5s cubic-bezier(.4,0,.2,1), opacity 0.5s;
  opacity: 0;
  z-index: 2;
}
.service-card.ripple:after {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition: width 0.5s cubic-bezier(.4,0,.2,1), height 0.5s cubic-bezier(.4,0,.2,1), opacity 0.5s;
}
.service-card {
  perspective: 700px;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.025) rotateY(6deg);
  box-shadow: 0 6px 32px 0 rgba(38,198,218,0.18), 0 0 0 4px #26c6da22;
}
.service-card:focus {
  box-shadow: 0 0 0 3px #26c6da55, 0 6px 32px 0 rgba(38,198,218,0.18);
  border-color: var(--accent-teal);
}
.service-icon-gradient {
  transition: background 0.3s, color 0.3s, filter 0.3s;
  filter: drop-shadow(0 2px 8px #26c6da33);
}
.service-card:hover .service-icon-gradient {
  filter: drop-shadow(0 6px 18px #26c6da66);
  background: linear-gradient(135deg, #43cea2 0%, #26c6da 100%) !important;
  color: #fff;
}
/* =======================
   FURTHER SERVICE CARD ENHANCEMENTS
======================= */
.service-card {
  background-image: repeating-linear-gradient(135deg, #f4f8fb 0 2px, transparent 2px 24px);
  outline: none;
}
.service-card:focus {
  box-shadow: 0 0 0 3px #26c6da55, 0 6px 24px rgba(0,150,136,0.13);
  border-color: var(--accent-teal);
}
.service-card:not(:last-child)::after {
  content: "";
  display: block;
  height: 2px;
  width: 60%;
  margin: 32px auto 0 auto;
  background: linear-gradient(90deg, #e0f7fa 0%, #43cea2 100%);
  border-radius: 2px;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}
.service-icon-gradient {
  animation: icon-bounce 1.6s cubic-bezier(.68,-0.55,.27,1.55) infinite alternate;
}
@keyframes icon-bounce {
  0% { transform: scale(1) translateY(0); }
  60% { transform: scale(1.08) translateY(-6px); }
  100% { transform: scale(1) translateY(0); }
}
.service-card:focus .service-icon-gradient {
  box-shadow: 0 0 0 4px #26c6da55, 0 4px 16px rgba(0,150,136,0.18);
}
/* =======================
   MODERN SERVICE CARDS (HOME PAGE)
======================= */
.modern-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.service-card {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 32px 24px 28px 24px;
  text-align: left;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
  overflow: hidden;
  border: 1.5px solid #e0f7fa;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 6px 24px rgba(0,150,136,0.13);
  border-color: var(--primary-teal);
}
.service-icon-gradient {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border: 2.5px solid #fff;
  transition: box-shadow 0.18s;
  background: none;
  color: inherit;
}
.service-card:hover .service-icon-gradient {
  box-shadow: 0 4px 16px rgba(0,150,136,0.18);
}
.service-card h3 {
  color: var(--primary-teal);
  font-size: 1.22rem;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.service-card p {
  color: var(--gray-text);
  font-size: 1.01rem;
  margin-bottom: 12px;
  min-height: 44px;
}
.service-card ul {
  padding-left: 18px;
  margin-bottom: 0;
  margin-top: 8px;
}
.service-card ul li {
  color: var(--primary-blue);
  font-size: 0.98rem;
  margin-bottom: 7px;
  position: relative;
  padding-left: 18px;
}
.service-card ul li::before {
  content: "✔";
  color: var(--primary-teal);
  position: absolute;
  left: 0;
  font-size: 1rem;
  top: 0;
}
/* Service card accent borders for each category */
.service-taxation { border-top: 4px solid #26c6da; }
.service-business { border-top: 4px solid #43cea2; }
.service-advisory { border-top: 4px solid #003366; }
.service-licenses { border-top: 4px solid #009688; }
.service-accounting { border-top: 4px solid #26c6da; }
.service-other { border-top: 4px solid #43cea2; }

@media (max-width: 600px) {
  .modern-service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-card {
    padding: 22px 10px 18px 10px;
  }
  .service-icon-gradient {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero-section .container,
  .why-choose-us .container {
    flex-direction: column !important;
    gap: 24px !important;
    align-items: center !important;
  }
  .hero-section h1 {
    font-size: 2rem !important;
    text-align: center;
  }
  .hero-section p {
    font-size: 1rem !important;
    text-align: center;
  }
  .hero-section img {
    max-width: 90vw !important;
    margin: 0 auto;
  }
  .quick-contact-form form {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .why-choose-us h2 {
    font-size: 1.2rem !important;
  }
  .why-choose-us > .container > div {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .trust-social-proof h2,
  .testimonials h2,
  .faq-newsletter h2 {
    font-size: 1.1rem !important;
  }
  .testimonial-card {
    min-width: 95vw !important;
    max-width: 98vw !important;
  }
  .faq-newsletter .container {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .footer-container {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
  }
  .floating-buttons {
    right: 10px !important;
    bottom: 10px !important;
  }
  #scrollTopBtn {
    right: 10px !important;
    bottom: 70px !important;
  }
}
:root {
  --primary-blue: #003366;
  --primary-teal: #009688;
  --accent-teal: #26c6da;
  --light-bg: #f4f8fb;
  --card-bg: #fff;
  --gray-text: #555;
  --header-gradient: linear-gradient(90deg, #003366 0%, #009688 100%);
  --section-gradient: linear-gradient(90deg, #e0f7fa 0%, #f4f8fb 100%);
  --btn-gradient: linear-gradient(90deg, #009688 0%, #26c6da 100%);
  --btn-hover: linear-gradient(90deg, #26c6da 0%, #009688 100%);
}
/* =======================
  CONTACT PAGE EXTRAS
======================= */
:root {
  --primary-blue: #003366;
  --primary-teal: #009688;
  --accent-teal: #26c6da;
  --light-bg: #f4f8fb;
  --card-bg: #fff;
  --gray-text: #555;
  --header-gradient: linear-gradient(90deg, #003366 0%, #009688 100%);
  --section-gradient: linear-gradient(90deg, #e0f7fa 0%, #f4f8fb 100%);
  --btn-gradient: linear-gradient(90deg, #009688 0%, #26c6da 100%);
  --btn-hover: linear-gradient(90deg, #26c6da 0%, #009688 100%);
}

/* =======================
  CONTACT PAGE EXTRAS
======================= */
.faq-section {
  margin-top: 32px;
  background: var(--light-bg);
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.faq-item {
  margin-bottom: 12px;
}
.faq-question {
  background: var(--primary-teal);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--accent-teal);
  color: var(--primary-blue);
}
.faq-answer {
  display: none;
  background: var(--card-bg);
  color: var(--primary-blue);
  border-radius: 6px;
  margin-top: 6px;
  padding: 10px 14px;
  font-size: 0.98rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.whatsapp-chat-btn {
  display: block;
  margin: 24px auto 0 auto;
  background: var(--primary-teal);
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
}
.whatsapp-chat-btn:hover {
  background: var(--accent-teal);
  color: #fff;
}
.contact-info-block a span {
  margin-right: 8px;
  vertical-align: middle;
}
.contact-info-block iframe {
  margin-top: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
/* =======================
   MODERN CONTACT PAGE
======================= */
.modern-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px auto 60px auto;
  justify-content: center;
}
.contact-card {
  background: var(--header-gradient);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  padding: 32px 28px;
  min-width: 300px;
  max-width: 350px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info-block {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.contact-icon {
  font-size: 2.1rem;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-block h3 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  color: #fff;
}
.contact-info-block p, .contact-info-block a {
  color: #fff;
  font-size: 1rem;
}
.contact-form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  padding: 32px 28px;
  min-width: 300px;
  max-width: 400px;
  flex: 1 1 340px;
}
.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.input-group {
  display: flex;
  align-items: center;
  background: var(--light-bg);
  border-radius: 8px;
  padding: 8px 12px;
  gap: 10px;
}
.input-group span {
  font-size: 1.3rem;
  color: #ff6600;
}
.input-group input,
.input-group textarea {
  border: none;
  background: transparent;
  font-size: 1rem;
  width: 100%;
  padding: 8px 0;
  outline: none;
  resize: none;
}
.modern-btn {
  background: var(--btn-gradient);
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
  border: none;
  text-align: center;
}
.modern-btn:hover {
  background: var(--btn-hover);
  color: #fff;
}
@media (max-width: 900px) {
  .modern-contact {
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }
  .contact-card, .contact-form-card {
    max-width: 100%;
    min-width: 0;
  }
}
.site-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* =======================
   SPECIAL PACKAGES CARD COLORS & BUTTONS
======================= */
.package-card {
  position: relative;
  overflow: hidden;
}
.package-emoji {
  font-size: 2.5rem;
  margin-bottom: 10px;
  margin-top: -10px;
}
.package-separator {
  width: 60px;
  height: 5px;
  border-radius: 3px;
  margin: 12px auto 18px auto;
  background: linear-gradient(90deg, var(--primary-teal) 0%, var(--accent-teal) 100%);
}
.vibrant1 { background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-teal) 100%); }
.vibrant2 { background: linear-gradient(135deg, #24c6dc 0%, #003366 100%); }
.vibrant3 { background: linear-gradient(135deg, #26c6da 0%, #009688 100%); }
.vibrant4 { background: linear-gradient(135deg, #009688 0%, #26c6da 100%); }
.vibrant5 { background: linear-gradient(135deg, #43cea2 0%, #003366 100%); }
.vibrant6 { background: linear-gradient(135deg, #26c6da 0%, #003366 100%); }
.vibrant7 { background: linear-gradient(135deg, #009688 0%, #43cea2 100%); }
.vibrant8 { background: linear-gradient(135deg, #003366 0%, #26c6da 100%); }
.vibrant9 { background: linear-gradient(135deg, #26c6da 0%, #43cea2 100%); }
.package-card {
  color: #fff;
}
.package-card h3, .package-card ul li, .package-card .package-price {
  color: var(--primary-teal);
}
.package-card .package-price {
  background: rgba(0,0,0,0.15);
  color: #fff;
}
.get-started-btn {
  display: block;
  margin: 18px auto 0 auto;
  background: var(--primary-blue);
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
  border: none;
  text-align: center;
}
.get-started-btn:hover {
  background: var(--accent-teal);
  color: var(--primary-blue);
}
/* =======================
   SPECIAL PACKAGES SECTION
======================= */
.special-packages {
  background: #f6f9fc;
  padding: 60px 0;
}

.special-packages .package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.package-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.2s;
}
.package-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.package-card h3 {
  color: #ff6600;
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.package-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}
.package-card ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--primary-blue);
}
.package-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-blue);
  margin-top: 10px;
  background: #e0f7fa;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
}
/* =======================
   TESTIMONIALS CAROUSEL
======================= */
.testimonial-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: scroll-left 0.5s;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 320px;
  max-width: 340px;
  flex: 0 0 auto;
}

@media (max-width: 600px) {
  .testimonial-card {
    min-width: 90vw;
    max-width: 95vw;
  }
}
/* =======================
   TESTIMONIALS SECTION
======================= */
.testimonials {
  background: var(--section-gradient);
  padding: 60px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 30px 25px;
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  position: relative;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
}

.client-name {
  display: block;
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 1rem;
}
/* =======================
   RESET & BASE STYLES
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--primary-blue);
  background-color: var(--light-bg);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =======================
   CONTAINER
======================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* =======================
   NAVBAR
======================= */
.navbar {
  background: var(--primary-blue);
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links li a:hover,
  .nav-links li a.active {
  color: var(--accent-teal);
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* =======================
   PAGE HEADER
======================= */
.page-header {
  padding: 60px 0;
  background: var(--section-gradient);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.page-header p {
  font-size: 1.1rem;
  color: var(--gray-text);
}

/* =======================
   SERVICES / PACKAGES / BLOG GRIDS
======================= */
/* Static grid: 4 columns desktop, 2 tablet, 1 mobile */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
  margin-top: 32px;
}
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px 0;
  }
}

.card,
.blog-card,
.contact-info {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.card:hover,
.blog-card:hover {
  transform: translateY(-5px);
}

/* =======================
   CARD STYLING
======================= */
.card h3,
.blog-card h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.card ul,
.blog-card .blog-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.card ul li,
.blog-card .blog-content ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.card ul li::before,
.blog-card .blog-content ul li::before {
  content: "✔";
  color: var(--primary-teal);
  position: absolute;
  left: 0;
}

/* =======================
   BLOG CARD
======================= */
.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px 0 0 0;
}

.blog-content .meta {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 15px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

/* =======================
   BUTTONS
======================= */
.btn {
  display: inline-block;
  background: var(--primary-teal);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--accent-teal);
}

.btn.small {
  padding: 8px 15px;
  font-size: 14px;
}

/* =======================
   CONTACT PAGE
======================= */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}

.contact-form button {
  background: var(--primary-teal);
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: var(--accent-teal);
}

/* =======================
   LEGAL PAGES (TERMS & PRIVACY)
======================= */
.legal-page {
  padding: 40px 20px;
  line-height: 1.7;
}

.legal-page h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--primary-blue);
}

.legal-page p {
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--gray-text);
}

/* =======================
   FOOTER
======================= */


/* =======================
   FLOATING CALL & WHATSAPP BUTTONS
======================= */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-teal);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background 0.2s;
}

.floating-buttons a:hover {
  background: var(--accent-teal);
}

/* =======================
   MEDIA QUERIES (RESPONSIVE)
======================= */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: #003366;
    position: absolute;
    right: 20px;
    top: 65px;
    padding: 15px;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }
}
.social-share {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}
.social-share a {
  color: #fff;
  padding: 0.5rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.social-share .facebook { background: #3b5998; }
.social-share .twitter { background: #1da1f2; }
.social-share .linkedin { background: #0077b5; }
.social-share .whatsapp { background: #25d366; }