/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* Top Navigation Bar Styling */

.topnav-bar {
  background-color: #ff6600;
  padding: 10px 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  /* Above header */
  transition: top 0.3s ease-in-out;
}



.topnav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.topnav-left {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
}

.topnav-left i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.topnav-phone-number {
  white-space: nowrap;
}

.topnav-right {
  display: flex;
  gap: 12px;
}

.topnav-icon {
  background-color: #fff;
  color: orange;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.topnav-icon:hover {
  transform: scale(1.1);
  background-color: #ffe0c2;
}

/* Responsive for Mobile */
@media (max-width: 600px) {
  .topnav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .topnav-right {
    justify-content: flex-start;
  }
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #3a5073;
  font-weight: 600;
  line-height: 1.2;
}


.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  /* margin-top: 5px; */
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 700px;
}

/* Buttons */
.btn-primary {
  background-color: #f97316;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-primary:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #f97316;
  padding: 12px 24px;
  border: 2px solid #f97316;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-secondary:hover {
  background-color: #f97316;
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
  background: white;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 80px;
}

.nav-logo img {
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.menulinkanchor {
  color: white;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #f97316;
  transform: translateY(-2px);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f97316;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #f97316;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #fb923c;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  color: black;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #374151;
  transition: 0.3s;
  border-radius: 2px;
}

/* Dropdown container */
.nav-dropdown {
  position: relative;
}

/* Caret styling */
.caret {
  font-size: 0.75rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Show on hover */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate caret on hover */
.nav-dropdown:hover .caret {
  transform: rotate(180deg);
}

/* Dropdown items */
.dropdown-item {
  padding: 12px 20px;
  text-decoration: none;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.dropdown-item:hover {
  background-color: #f97316;
  color: white;
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px 0;
    display: none;
    /* hidden by default */
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link,
  .btn-primary {
    padding: 10px 20px;
    width: 100%;
    text-align: left;
  }

  .hamburger {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: none;
  }

  .nav-dropdown:hover .dropdown-menu {
    /* prevent hover behavior on mobile */
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 1rem;
  }

  .nav-dropdown.open .dropdown-menu {
    display: flex;
  }
}


/* Subdropdown container */
.nav-subdropdown {
  position: relative;
}

/* Submenu */
.subdropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

/* Show submenu on hover */
.nav-subdropdown:hover .subdropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Rotate caret on hover */
.nav-subdropdown:hover .caret {
  transform: rotate(90deg);
}

/* Responsive: display submenu as stacked list */
@media (max-width: 768px) {
  .subdropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1.5rem;
    background: none;
  }

  .nav-subdropdown {
    display: flex;
    flex-direction: column;
  }
}



/* Hero Section */
.hero {
  /* margin-top: 10px; */
  background: linear-gradient(135deg, #fef3e2 0%, #ffffff 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Page Header */
.page-header {
  margin-top: 70px;
  padding: 20px 0;
  background: linear-gradient(135deg, #fef3e2 0%, #ffffff 100%);
  text-align: center;
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
}

/* services style start here  */


body.modal-open {
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 147, 41, 0.95);
  /* Orange translucent */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.cards-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
}

.service-card {
  background: #fffaf5;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  flex: 1 1 45%;
  max-height: 80vh;
  overflow-y: auto;
}

.service-card h2 {
  font-size: 1.8rem;
  color: #d35400;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  margin-bottom: 0.5rem;
  background: #ffe3cc;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  font-weight: bold;
  color: #d35400;
  transition: background 0.3s ease;
  position: relative;
}

.service-list li:hover {
  background: #ffc187;
}

.service-content {
  margin-top: 0.5rem;
  padding-left: 1rem;
  font-size: 0.95rem;
  color: #444;
  display: none;
}

.service-list li.active .service-content {
  display: block;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #d35400;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10000;
}

@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
  }


  .service-card {
    flex: 1 1 100%;
  }
}

/* Why Choose Us */
.why-choose-us {
  padding: 10px 0;
  background: #f9fafb;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /* margin-top: 2rem; */
  margin: 20px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: #f97316;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.feature-item p {
  color: #6b7280;
  font-size: 0.95rem;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.process-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.process-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.background-videoabout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Container */
.bookkeeping-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Sections */
.bookkeeping-section {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.bookkeeping-section:nth-child(even) {
  background: #FEF8EE;
  flex-direction: row-reverse;
}

.bookkeeping-section:nth-child(odd) {
  background: #FEF8EE;
}

.bookkeeping-content {
  flex: 1;
}

.bookkeeping-image {
  flex: 1;
  text-align: center;
}

.bookkeeping-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
  transition: transform 0.3s ease;
}

.bookkeeping-image img:hover {
  transform: scale(1.05);
}

.bookkeeping-section-title {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
}

.bookkeeping-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #f7931e;
  border-radius: 2px;
}

.bookkeeping-section-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.8;
}

.bookkeeping-features-list {
  list-style: none;
  margin: 30px 0;
}

.bookkeeping-feature-item {
  background: white;
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #ff6b35;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bookkeeping-feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.bookkeeping-feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.bookkeeping-feature-title::before {
  content: '✓';
  background: #ff6b35;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  margin-right: 15px;
}

.bookkeeping-feature-description {
  color: #666;
  line-height: 1.6;
}

/* Why Trust Section */
.bookkeeping-why-trust {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.bookkeeping-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.bookkeeping-trust-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.bookkeeping-trust-item:hover {
  transform: translateY(-10px);
}

/* Clients and Tools Section */
.bookkeeping-clients-tools {
  background: white;
  padding: 80px 0;
  text-align: center;
}

.bookkeeping-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.bookkeeping-tool-item {
  background: #fff5f0;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  color: #ff6b35;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.bookkeeping-tool-item:hover {
  border-color: #ff6b35;
  transform: scale(1.05);
}

/* CTA Section */
.bookkeeping-cta {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.bookkeeping-cta-button {
  display: inline-block;
  background: #ff6b35;
  color: white;
  padding: 20px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.bookkeeping-cta-button:hover {
  background: #f7931e;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.bookkeeping-emoji {
  font-size: 1.5rem;
  margin-right: 10px;
}

/* Mobile Responsiveness - Tablet */
@media (max-width: 1024px) {
  .bookkeeping-container {
    padding: 0 30px;
  }

  .bookkeeping-section {
    gap: 40px;
    padding: 60px 0;
  }

  .title {
    font-size: 3rem;
  }

  .bookkeeping-section-title {
    font-size: 2.2rem;
  }
}

/* Mobile Responsiveness - Phone */
@media (max-width: 750px) {

  /* Hero Section Mobile */
  .hero-section {
    height: 60vh;
  }

  .title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 1rem;
  }

  /* Container Mobile */
  .bookkeeping-container {
    padding: 0 15px;
  }

  /* Main Sections Mobile - Text on top, Image below */
  .bookkeeping-section {
    flex-direction: column !important;
    gap: 30px;
    padding: 50px 0;
    text-align: left;
  }

  /* Override even sections to also stack vertically */
  .bookkeeping-section:nth-child(even) {
    flex-direction: column !important;
  }

  /* Force all section containers to be column layout */
  .bookkeeping-section .bookkeeping-container {
    flex-direction: column !important;
  }

  .bookkeeping-content {
    order: 1;
    width: 100%;
  }

  .bookkeeping-image {
    order: 2;
    width: 100%;
    margin-top: 20px;
  }

  .bookkeeping-section-title {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 20px;
  }

  .bookkeeping-section-title::after {
    width: 40px;
    height: 3px;
  }

  .bookkeeping-section-text {
    font-size: 1rem;
    margin-bottom: 25px;
    text-align: left;
  }

  /* Feature Items Mobile */
  .bookkeeping-feature-item {
    padding: 15px;
    margin: 10px 0;
  }

  .bookkeeping-feature-title {
    font-size: 1.1rem;
  }

  .bookkeeping-feature-item:hover {
    transform: translateX(5px);
  }

  /* Trust Section Mobile */
  .bookkeeping-why-trust {
    padding: 60px 0;
  }

  .bookkeeping-trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bookkeeping-trust-item {
    padding: 30px 20px;
  }

  /* Tools Grid Mobile */
  .bookkeeping-tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .bookkeeping-tool-item {
    padding: 15px 10px;
    font-size: 0.9rem;
  }

  /* CTA Mobile */
  .bookkeeping-cta {
    padding: 60px 0;
  }

  .bookkeeping-cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    display: block;
    max-width: 300px;
    margin: 20px auto 0;
  }

  /* Emoji Size Mobile */
  .bookkeeping-emoji {
    font-size: 1.3rem;
    margin-right: 8px;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .hero-content {
    padding: 0 15px;
  }

  .title {
    font-size: 1.8rem;
  }

  .bookkeeping-section-title {
    font-size: 1.5rem;
  }

  .bookkeeping-section-text {
    font-size: 0.95rem;
  }

  .bookkeeping-tools-grid {
    grid-template-columns: 1fr;
  }

  .bookkeeping-feature-title {
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .bookkeeping-feature-title::before {
    margin-bottom: 5px;
    margin-right: 0;
  }
}




/* Mission & Vision */
.mission-vision {
  padding: 10px 0;
  background: #f9fafb;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.mv-card {
  background: white;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.mv-icon svg {
  width: 36px;
  height: 36px;
  color: white;
}

.mv-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.mv-description {
  color: #6b7280;
  line-height: 1.7;
  font-size: 1rem;
}

/* Values Section */
.values-section {
  padding: 20px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.value-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.value-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Pricing Section  */

.price-container {
  max-width: 950px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Headings */
.price-subtitle {
  color: #f35b04;
  font-weight: bold;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.price-title {
  font-size: 1.5rem;
  color: #ea580c;
  margin-bottom: 2rem;
}

/* Slider Container */
.price-slider-container {
  position: relative;
  margin: 2rem 0 5rem;
  padding: 0 1rem;
}

.price-label-left,
.price-label-right {
  position: absolute;
  top: -30px;
  font-weight: bold;
  color: #fff;
  background-color: #f35b04;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.price-label-left {
  left: 0;
}

.price-label-right {
  right: 0;
}

/* Slider */
.price-slider {
  width: 100%;
  height: 18px;
  border-radius: 50px;
  appearance: none;
  background: #f35b04;
  outline: none;
}

.price-slider::-webkit-slider-thumb {
  appearance: none;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.price-slider::-moz-range-thumb {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background: #000;
  cursor: pointer;
}

/* Value Bubble */
.price-value-bubble {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #f35b04;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.price-bubble-tail {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid white;
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
}

/* Card */
.price-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  align-items: center;
  flex-wrap: wrap;
}

.price-img {
  max-width: 200px;
  flex-shrink: 0;
}

.price-content {
  flex: 1;
  text-align: left;
}

.price-content h2 {
  margin: 0 0 0.5rem;
}

.price-content p {
  margin: 0 0 1rem;
  color: #444;
  line-height: 1.5;
}

.price-btn {
  background-color: #ea580c;
  width: 200px;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.price-btn:hover {
  background-color: #ea580c;
}

/* Responsive */
@media (max-width: 768px) {
  .price-card {
    flex-direction: column;
    text-align: center;
  }

  .price-content {
    text-align: center;
  }
}


/* Experties Style starat here  */

.expertise-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 10px;
}

.expertise-title {
  color: orange !important;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 25px 0;
  color: #111;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.expertise-card {
  background-color: #f58220;
  color: white;
  font-size: 1rem;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.expertise-card i {
  font-size: 1.2rem;
}

.expertise-card:hover {
  transform: translateY(-4px);
  background-color: #e66f11;
}

.expertise-card.wide {
  grid-column: span 4;
}

@media (max-width: 600px) {
  .expertise-card.wide {
    grid-column: span 1;
  }

  .expertise-title {
    font-size: 1.5rem;
  }
}

/* Contact Section Redesign */
.contact-section-one {
  padding: 20px 20px;
  background-color: #f9fafb;
}

.contact-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.form-column,
.info-column {
  flex: 1 1 500px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #6b7280;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #374151;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #f97316;
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.contact-form button {
  margin-top: 1rem;
}

.info-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-box {
  background: #fff7ed;
  padding: 1.5rem;
  border-left: 6px solid #f97316;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.info-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #1f2937;
}

.info-box p {
  color: #374151;
  margin: 2px 0;
}

.info-box span {
  font-size: 0.95rem;
  color: #6b7280;
}

.map-link {
  color: #f97316;
  font-weight: 600;
  display: inline-block;
  margin-top: 8px;
}

.cta-box {
  background: #fff3e0;
  text-align: center;
}

.cta-box a {
  margin-top: 1rem;
  display: inline-block;
}

@media (max-width: 768px) {
  .contact-content-wrapper {
    flex-direction: column;
  }

  .form-column,
  .info-column {
    padding: 1.5rem;
  }
}


/* Map Section */
.map-section {
  padding: 80px 0;
  background: #f9fafb;
}

.map-container {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
  padding: 4rem;
  text-align: center;
  background: linear-gradient(135deg, #fef3e2 0%, #ffffff 100%);
}

.map-placeholder h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.map-placeholder p {
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #f3f4f6;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question h3 {
  font-size: 1.1rem;
  color: #1f2937;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #f97316;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 20px 0;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-container {
  background: linear-gradient(rgba(0, 71, 119, 0.9), rgba(0, 71, 119, 0.9)),
    url('/mnt/data/ee0d03e5-1dab-4b70-a485-199aefa60046.png') no-repeat center center/cover;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  gap: 30px;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 1 1;
  min-width: 200px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  color: orange;
}

.footer-link {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 8px 0;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #00bcd4;
}

.contact-info p {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}

.footer-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 28px;
  /* Adjust for icon width */
  font-size: 1.1rem;
}



/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .service-detail-content,
  .why-choose-content,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail-card.reverse .service-detail-content {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }


  .hero-title {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .service-card,
  .value-card,
  .team-card {
    margin-bottom: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .hero {
    padding: 20px 0;
  }

  .services-overview,
  .process-section,
  .mission-vision,
  .values-section,
  .stats-section,
  .team-section,
  .contact-section-one,
  .map-section,
  .faq-section,
  .cta-section {
    padding: 60px 0;
  }

  .why-choose-us {
    padding: 10px 0;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}



/* pricing section  */
/* Pricing Section */
.pricing-section {
  background-color: #f9fafb;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.pricing-header h2 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Container with responsive grid */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual plan cards */
.plan {
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan:hover {
  border: 2px solid orange;
  transform: scale(1.03);
}

.plan h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1f2937;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #111827;
}

.billing {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 20px;
}

/* Features list */
.plan ul {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
  padding: 0;
}

.plan ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: #374151;
}

.plan ul li::before {
  content: '✔';
  color: orange;
  position: absolute;
  left: 0;
  font-size: 1rem;
}

/* Button styles */
button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: orange;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: darkorange;
}

/* Badge on Pro Plan */
.plan .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #f97316;
  color: white;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Typography */
@media (max-width: 600px) {
  .pricing-header h2 {
    font-size: 2rem;
  }

  .price {
    font-size: 1.8rem;
  }

  button {
    font-size: 0.95rem;
  }
}

/* Special styles */
.pro .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: orange;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.enterprise {
  /* background-color: #444; */
  color: #111;
}

.enterprise .price,
.enterprise .billing,
.enterprise ul li::before {
  color: white;
}

.enterprise button {
  background-color: white;
  color: orange;
}

.enterprise button:hover {
  background-color: #eee;
}

/* video section starts here */

/* video section starts here */
.hero-section {
  position: relative;
  height: 50vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroabout-section {
  position: relative;
  height: 60vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.background-videoabout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0vh;
  /* background-color: rgba(0, 0, 0, 0.4); Adjust fade opacity here */
  z-index: 2;
}

.hero-content {
  z-index: 3;
  color: white;
  text-align: center;
  padding: 20px;
}

.subtitle {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }
}
 
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.aboutpage-section {
  background-color: #fff;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.aboutpage-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1200px;
}

.aboutpage-text {
  flex: 1 1 50%;
  padding: 10px 30px;
  order: 1;
}

.aboutpage-image {
  flex: 1 1 45%;
  text-align: center;
  padding: 10px 0px;
  order: 2;
}

.aboutpage-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.aboutpage-text h1 {
  text-align: center;
  color: #000;
  font-size: 2rem;
  font-weight: bolder;
  margin-bottom: 15px;
}

.aboutpage-text p {
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: justify;
  color: #6b7280;
  line-height: 1.7;
  font-size: 0.9;
}

.aboutpage-text b {
  font-weight: bold;
  color: #000;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .aboutpage-section {
    padding: 0;
    margin: 0;
  }

  .aboutpage-container {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: none;
  }

  .aboutpage-text {
    padding: 10px 15px;
    order: 1;
    width: 100%;
      color: #6b7280;
  line-height: 1.7;
  font-size: 1rem;
  }

  .aboutpage-text h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
    color: #000;
  }

  .aboutpage-text p { 
    margin-bottom: 8px;
    text-align: left;
    word-wrap: break-word;
    hyphens: auto; 


      color: #6b7280;
  line-height: 1.7;
  font-size: 1rem;
  }

  .aboutpage-image {
    width: 100%;
    order: 2;
    margin: 0;
    padding: 10px 0 15px 0;
    text-align: center;
    overflow: hidden;
  }

  .aboutpage-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
  }
}

/* craousel code start here  */

.carousel-container {
  overflow: hidden;
  padding: 0px 20px;
  background-color: white;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  flex-wrap: nowrap;
}

.carousel-slide {
  min-width: 16.66%;
  /* Show 6 logos at a time on desktop */
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.carousel-slide img {
  height: 40px;
  /* Uniform logo height */
  width: auto;
  /* Keep aspect ratio */
  display: block;
  margin: 0 auto;
  /* Center inside slide */
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.carousel-slide img:hover {
  transform: scale(1.05);
}

.craousel-heading {
  color: orange;
  font-weight: bold;
  text-align: center;
  margin-top: 5px;
  font-size: 25px;
}

/* Responsive */
@media (max-width: 1024px) {
  .carousel-slide {
    min-width: 25%;
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    min-width: 33.33%;
  }

  .craousel-heading {
    margin-top: 8px;
    ;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    min-width: 50%;
  }
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #111;
}

/* services in usa page start  */




/* Hero section */
.services-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 102, 0, 0.45);
  z-index: 2;
}

.content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.heading {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #ffffff;
}

.whatsapp-button {
  padding: 12px 30px;
  background-color: transparent;
  border: 2px solid #fff;
  color: white;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background-color: white;
  color: #ff6600;
}


/* Reverse layout on alternate items */
.reverse {
  flex-direction: row-reverse;
}

/* Responsive layout */
@media (max-width: 768px) {
  .heading {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }

  .whatsapp-button {
    padding: 10px 25px;
    font-size: 0.95rem;
  }

  .service-item {
    flex-direction: column !important;
  }

  .text-content {
    text-align: center;
  }
}

/* contact section  */

.contact-section {
  background: linear-gradient(to bottom, #f5f5f5 0%, #fff 100%);
  padding: 20px 20px;
}

.contact-container {
  max-width: 900px;
  margin: auto;
}

.contact-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-title {
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 15px;
}

.contact-subtitle {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #444;
}

.contact-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ff6600;
  border-radius: 15px;
  padding: 15px 10px;
  background-color: #fefefe;
  transition: transform 0.2s ease;
}

.contact-box:hover {
  transform: translateY(-3px);
}

.flag-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.contact-link {
  text-decoration: none;
  color: #ff6600;
  font-weight: bold;
  font-size: 1rem;
  word-break: break-word;
}

@media (max-width: 600px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-description {
    font-size: 0.95rem;
  }

  .contact-box {
    padding: 12px 8px;
  }

  .contact-link {
    font-size: 0.95rem;
  }
}


/* testimonial style start here  */
.testimonial-section {
  text-align: center;
  padding: 20px 20px;
}

.testimonial-heading {
  font-size: 1.5rem;
  color: #ea580c;
  margin-bottom: 10px;
  margin-top: 20px;
}

.testimonial-subtext {
  font-size: 0.9;
  color: #666;
  /* margin-bottom: 40px; */
}

.testimonial-para {
  font-family: sans-serif;
  color: red;
  margin-top: 5px;
}

.carousel-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 10px;
}

.testimonial {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 5px;
  width: 30%;
  transition: transform 0.3s ease;
  position: relative;
}

.testimonial h4 {
  margin-top: 10px;
  font-size: 1rem;
  color: #ff6600;
}

.testimonial p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #333;
}

.testimonial.highlight {
  background: #ff6600;
  color: #fff;
  transform: scale(1.05);
}

.testimonial.highlight p,
.testimonial.highlight h4 {
  color: #fff;
}

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff6600;
  color: #fff;
  font-size: 24px;
  border: none;
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.nav-arrow:hover {
  background: #d94e00;
}

.nav-arrow.left {
  left: 10px;
}

.nav-arrow.right {
  right: 10px;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: center;
  }

  .testimonial {
    width: 80%;
    margin-bottom: 20px;
  }

  .testimonial.highlight {
    transform: scale(1.02);
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* canada one page start  */


.canadaservice-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

/* Header Section */
.canadaservice-hero {
  background-color: #fff;
  padding: 20px 40px;
  border-bottom: 3px solid #f97316;
  text-align: center;
}

.canadaservice-hero h1 {
  font-size: 2.8rem;
  color: #f97316;
  margin-bottom: 20px;
}

.canadaservice-hero p {
  font-size: 1.1rem;
  color: #374151;
}

/* Main Content */
.canadaservice-content {
  padding: 50px 0;
}

.canadaservice-content h2 {
  color: #f97316;
  font-size: 2rem;
  margin-bottom: 20px;
}

.canadaservice-content h3 {
  color: #374151;
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.canadaservice-content p {
  margin-bottom: 20px;
  color: #4b5563;
}

.canadaservice-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.canadaservice-content li {
  margin-bottom: 10px;
  color: #4b5563;
}

/* Image Section */
.canadaservice-image-block {
  margin: 40px 0;
  text-align: center;
}

.canadaservice-image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #f97316;
}

/* Footer */

/* Responsive Design */
@media (max-width: 768px) {
  .canadaservice-hero h1 {
    font-size: 2rem;
  }

  .canadaservice-content h2 {
    font-size: 1.5rem;
  }
}