 /* Global Styles */
        :root {
            --primary: #FE7743; /* Orange */
            --secondary: #000000; /* Black */
            --light: #ffffff; /* White */
            --gray: #f5f5f5;
            --dark-gray: #333333;
        }
        * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.topbar {
  width: 100%;
  background: var(--primary); /* uses your theme orange */
  color: var(--light); /* uses your theme white */
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.topbar-left span, .topbar-right span {
  margin-right: 10px;
}

.topbar-social {
  display: inline-block;
  color: var(--light);
  margin-right: 10px;
  transition: color 0.2s;
  font-size: 1.3em;
}

.topbar-social:hover {
  color: #000000;
}

.topbar-right span {
  margin-left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 1em;
}

@media (max-width: 600px) {
  .topbar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95em;
  }
  .topbar-right span {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .btn,
  .btn-primary,
  .btn-secondary,
  .hero-btn,
  .popup-btn {
    padding: 8px 18px !important;
    font-size: 0.92rem !important;
    border-radius: 18px !important;
    min-width: 100px;
    box-shadow: 0 1.5px 5px rgba(254,119,67,0.05);
  }
}

header {
  background: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center; /* keeps items vertically centered */
  width: 100%;
  height: 70px; /* reduce from existing height for thinner bar */
  padding: 0 20px; /* reduce padding for less height */
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--secondary);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  font-weight: 500; 
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--light);
}

.nav-links li {
  position: relative;
}


/* Dropdown menu styling */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* Start exactly at bottom of parent nav item */
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(249, 110, 52, 0.13);
  z-index: 99;
  padding-left: 0px;  /* Reduced from 12px or more */
  padding-right: 0px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1.5px solid rgba(249, 110, 52, 0.20);
  margin: 0;
  list-style: none;
  animation: fadeInDropdown 0.25s ease forwards;
  opacity: 0;
  transform: translateY(0); /* remove translateY to prevent gap */
}


@keyframes fadeInDropdown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show dropdown */
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Dropdown list item links */
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  padding-left: 14px;  /* Reduced from 22px or more */
  padding-right: 14px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
}

/* Dropdown hover/focus effect */
.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
  background: rgba(249, 110, 52, 0.1);
  color: var(--primary);
}

/* Optional: separator lines */
.dropdown-menu li:not(:last-child) a {
  border-bottom: 1px solid #f3e1d9;
}

/* Ensure main nav link changes color on hover when dropdown open */
.nav-links > li.dropdown > a {
  transition: color 0.3s ease;
}

.nav-links > li.dropdown:hover > a,
.nav-links > li.dropdown:focus-within > a {
  color: var(--primary);
}

/* Logo image styling */
.logo img {
    height: 50px; /* Adjust based on your logo's aspect ratio */
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Adjust header height for logo */
header nav {
    height: 80px; /* Slightly increased to accommodate logo */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo img {
        height: 40px; /* Smaller logo on mobile */
    }
    
    header nav {
        height: 70px; /* Adjusted height for mobile */
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px; /* Even smaller for very small screens */
    }
}

.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.popup-content {
  background: var(--light);
  padding: 36px 40px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(249, 110, 52, 0.25);
  max-width: 700px;
  width: 100%;
  display: flex;
  gap: 30px;
  text-align: left;
  color: var(--dark-gray);
  position: relative;
  font-family: 'Poppins', sans-serif;
  align-items: center;
}

.popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
}

.popup-close:hover,
.popup-close:focus {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.diwali-gif {
  width: 380px; /* bigger size */
  border-radius: 12px;

  flex-shrink: 0;
}

.popup-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-text h2 {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 2.1rem; /* bigger heading */
  font-weight: 700;
}

.popup-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #333;
}

.popup-btn {
  padding: 14px 34px;
  background: var(--primary);
  color: var(--light);
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  align-self: flex-start;
  box-shadow: 0 2px 10px rgba(249,110,52,0.22);
}

.popup-btn:hover,
.popup-btn:focus {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

@media (max-width: 600px) {
  .popup-content {
    flex-direction: column !important;
    max-width: 96vw !important;
    width: 96vw !important;
    padding: 12px 8px !important;
    border-radius: 16px !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .diwali-gif {
    width: 90vw !important;
    max-width: 300px !important;
    height: auto !important;
    margin: 0 auto 8px auto !important;
  }
  .popup-text h2 {
    font-size: 1.5rem !important;
    text-align: center !important;
  }
  .popup-text p {
    font-size: 1rem !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }
  .popup-btn {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 1rem !important;
    margin-top: 12px !important;
  }
  .popup-close {
    top: 10px !important;
    right: 10px !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 1.4rem !important;
  }
}

/* Keep existing popup-close and popup-btn styles unchanged */




/* Hamburger icon for mobile */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary);
}

/* Hamburger button core styling */
.hamburger {
  display: block;
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 2002;
  background: var(--primary);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.11);
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3.5px;
  transition: all 0.32s cubic-bezier(0.58, 0.13, 0.48, 0.99);
}
.hamburger-inner {
  top: 18px;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  top: 10px;
}

/* Hamburger "active" state for animation (add "is-active" class via JS on menu open) */
.hamburger.is-active .hamburger-inner {
  background: transparent;
}
.hamburger.is-active .hamburger-inner::before {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.is-active .hamburger-inner::after {
  transform: translateY(-10px) rotate(-45deg);
}


/* Hero Section */

.hero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  color: var(--light);
}

.slider-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  filter: brightness(0.75);
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  top: 0;
  left: 0;
  z-index: 0;
}

.slider img.active {
  opacity: 1;
}

/* Container to align card left and vertically center */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 64px;
  box-sizing: border-box;
}

.hero-card {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 24px;
  width: 425px;
  height: 540px;
  padding: 40px 36px 32px 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center content */
  text-align: left;
  position: relative;
  overflow: hidden; /* prevents content overflow */
}


.hero-logo {
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--primary);
  letter-spacing: -2px;
}

.hero-title {
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--light);
  letter-spacing: 0.5px;
  margin-left: 8px;
}

.hero-logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.hero-card h1 {
  font-size: 2.06rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-subtext {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffeedd;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.hero-btn {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 11px 30px;
  font-weight: 600;
  font-size: 0.99rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.18s;
  text-align: center;
  display: inline-block;
}

.hero-btn:hover {
  background: #ff944d;
}

#hero-typing {
  display: inline-block;
  max-width: 100%; /* never overflow card */
  white-space: normal; /* allow wrapping */
  overflow-wrap: break-word;
  
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-card {
    width: 90%;       /* reduce width to fit smaller screens */
    height: 360px;  
    padding: 30px 20px; /* smaller padding */
    border-radius: 16px;
  }

  .hero-card h1 {
    font-size: 1.5rem; /* smaller heading on mobile */
  }

  .hero-subtext {
    font-size: 0.85rem; /* smaller subtext */
  }

  .hero-btn {
    padding: 9px 20px;
    font-size: 0.9rem;
  }

  .hero-content-wrapper {
    padding-left: 20px; /* less left padding */
    justify-content: center; /* center card on mobile */
  }
}




/* Grid Layouts */


.services .services-grid,
.blog .blog-grid,
.testimonials .testimonials-grid,
.pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card,
.blog-card,
.testimonial-card,
.pricing-card {
  border-radius: 10px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s, transform 0.3s ease;
}

.blog-card:hover,
.service-card:hover,
.service-card:hover,
.testimonial-card:hover,
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: var(--dark-gray);
  box-shadow: 0 1.5px 4px 0 rgba(33, 71, 153, 0.09); /* subtle base shadow */
  transition: 
    color 0.3s cubic-bezier(.9, .2, .1, 1.3), 
    background 0.3s cubic-bezier(.9, .2, .1, 1.3), 
    transform 0.35s cubic-bezier(.9, .2, .1, 1.3),
    box-shadow 0.4s cubic-bezier(.86, 0, .07, 1);
  z-index: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8px -8px -8px 8px; /* offset for shadow */
  border-radius: inherit;
  background: transparent;
  box-shadow: 4px 6px 0 2px #FE7743; /* orange shadow matching brand */
  opacity: 0;
  transition: 
    opacity 0.24s cubic-bezier(.86, 0, .07, 1),
    box-shadow 0.34s cubic-bezier(.9, .2, .1, 1.3);
}

.service-card:hover,.h3:hover,
.service-card:focus-visible {
  color: #FE7743; /* text color changes to brand orange */
  background: #373737; /* subtle light orange background */
  transform: translateY( -6px ) scale(1.04);
  box-shadow: 0 3px 22px 0 rgba(254, 119, 67, 0.13); /* orange tinted shadow */
}

.service-card:hover::after,
.service-card:focus-visible::after {
  opacity: 1;
  box-shadow: 8px 10px 0 2px #FE7743; /* stronger orange shadow on hover */
}

.service-card .service-icon {
  background: #feeee2; /* very light orange background */
  color: #FE7743;
  box-shadow: 0 2px 8px rgba(254, 119, 67, 0.15);
  transition: background 0.3s, color 0.3s, box-shadow 0.4s;
}

.service-card:hover .service-icon {
  background: #FE7743;
  color: #fff;
  box-shadow: 0 7px 16px rgba(254, 119, 67, 0.25);
}

.service-card:hover h3,
.service-card:focus-visible h3 {
  color: white;
}


.service-card h3 {
  margin: 20px 0 12px;
  font-size: 1.3rem;
  font-weight: 700;
  transition: color 0.3s;
}

.services p {
  font-size: 1.;     /* optional: softer text color */
}

/* Portfolio Section */
.portfolio-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 20px 0;
}




.portfolio-item {
  width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(237, 65, 126, 0.15);
  background: #4a4949;
  opacity: 1;
  transition: transform 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(237, 65, 126, 0.25);
}

.portfolio-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-bottom: 4px solid var(--primary);
  transition: opacity 0.7s ease;
  opacity: 1;
}



.portfolio-caption {
  background: var(--primary);
  color: white;
  padding: 5px 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.portfolio-item:hover .portfolio-caption {
  background-color: #000; /* brighter shade on hover */
  transform: scale(1.05); /* slight zoom */
  color:var(--primary);
  cursor: pointer;
}


.portfolio-caption h3 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.portfolio-caption p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 400;
}


.portfolio-caption h3, .portfolio-caption p {
  margin: 0;
  font-family: Poppins, sans-serif;
}

@media (max-width: 600px) {
  .portfolio-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .portfolio-item {
    width: 95vw;
    max-width: 380px;
    min-height: 350px;   /* Extra height for text */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Remove fixed height! */
  }
  .portfolio-item img {
    width: 100%;
    height: 290px;       /* Slightly smaller to leave room for caption */
    object-fit: cover;
    flex-shrink: 0;
  }
  .portfolio-caption {
    min-height: 40px;
    font-size: 1rem;
    padding: 8px 0 5px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

/* Campanies Section */
.companies-section {
  padding: 64px 0 48px 0;
  background: var(--gray);
  text-align: center;
}

.section-title {
  font-family: Poppins, sans-serif;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  justify-items: center;
  align-items: center;
}

.company-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 16px rgba(237, 65, 126, 0.09);
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
  height: 124px;
  min-width: 200px;
}

.company-card:hover {
  box-shadow: 0 8px 32px rgba(237, 65, 126, 0.18);
  transform: translateY(-6px) scale(1.04);
}

.company-card img {
  max-width: 120px;
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.2s;
}

.company-card:hover img {
  filter: grayscale(10%) brightness(0.92); /* subtle effect */
}

/* Workflow Section */
.workflow {
  background: #f9f9f9;
  position: relative;
}

.workflow-timeline {
  position: relative;
  margin: 50px auto;
  padding: 0 20px;
  max-width: 1000px;
}

.workflow-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #000);
  animation: flow 3s linear infinite;
  transform: translateX(-50%);
  border-radius: 2px;
}

@keyframes flow {
  0% { background-position: 0 0; }
  100% { background-position: 0 200%; }
}

.workflow-item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin: 40px 0;
  position: relative;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120px);
  transition: opacity 0.7s cubic-bezier(0.6, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.6, 0, 0.2, 1);
}

.workflow-item.right {
  justify-content: flex-end;
  transform: translateX(120px);
}

.workflow-item.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
/* Timeline step arrows */
.workflow-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #FE7743;
  border: 3px solid #FE7743; /* orange color */
  border-radius: 3px;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 10;
}

/* Left side arrows (pointing right) */
.workflow-item.left::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* Right side arrows (pointing left) */
.workflow-item.right::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.workflow-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 1.5px 4px rgba(33, 71, 153, 0.09);
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 420px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  color: #374151;
  transition: 
    color 0.3s cubic-bezier(.9, .2, .1, 1.3), 
    background 0.3s cubic-bezier(.9, .2, .1, 1.3), 
    transform 0.35s cubic-bezier(.9, .2, .1, 1.3),
    box-shadow 0.4s cubic-bezier(.86, 0, .07, 1);
  border: 2px solid #FE7743;
  cursor: pointer;
  z-index: 1;
}

.workflow-content:hover {
  color: #FE7743;
  background: #373737;
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 3px 22px rgba(254, 119, 67, 0.13);x.workflow {
  background: #f9f9f9;
  position: relative;
}

.workflow-timeline {
  position: relative;
  margin: 50px auto;
  padding: 0 20px;
  max-width: 1000px;
}

.workflow-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #000);
  animation: flow 3s linear infinite;
  transform: translateX(-50%);
  border-radius: 2px;
}

@keyframes flow {
  0% { background-position: 0 0; }
  100% { background-position: 0 200%; }
}

.workflow-item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin: 40px 0;
  position: relative;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120px);
  transition: opacity 0.7s cubic-bezier(0.6, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.6, 0, 0.2, 1);
}

.workflow-item.right {
  justify-content: flex-end;
  transform: translateX(120px);
}

.workflow-item.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.workflow-content {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 1.5px 4px rgba(33, 71, 153, 0.09);
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 420px;
  border: 2px solid #FE7743;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  color: #374151;
  transition: 
    color 0.3s cubic-bezier(.9, .2, .1, 1.3), 
    background 0.3s cubic-bezier(.9, .2, .1, 1.3), 
    transform 0.35s cubic-bezier(.9, .2, .1, 1.3),
    box-shadow 0.4s cubic-bezier(.86, 0, .07, 1);
  cursor: pointer;
  z-index: 1;
}

.workflow-content::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8px -8px -8px 8px;
  border-radius: inherit;
  background: transparent;
  box-shadow: 4px 6px 0 2px #FE7743;
  opacity: 0;
  transition: 
    opacity 0.24s cubic-bezier(.86, 0, .07, 1),
    box-shadow 0.34s cubic-bezier(.9, .2, .1, 1.3);
}

.workflow-content:hover, 
.workflow-content:focus-visible {
  color: #FE7743;
  background: #373737;
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 3px 22px rgba(254, 119, 67, 0.13);
  border-color: #FE7743;
}

.workflow-content:hover::after, 
.workflow-content:focus-visible::after {
  opacity: 1;
  box-shadow: 8px 10px 0 2px #FE7743;
}

.workflow-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #FE7743;
  padding: 15px;
  box-sizing: border-box;
  stroke: #FE7743;
  background: #feeee2;
  transition: background 0.3s ease, stroke 0.3s ease, box-shadow 0.4s ease;
}

.workflow-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #Fff;
  margin-bottom: 12px;
  line-height: 1.2;
  cursor: default;
  transition: none;
}

/* Step Indicators (Arrows) */
.workflow-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #FFF;
  border: 3px solid #FE7743; /* or your timeline accent color */
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 4;
}

.workflow-item.left::before {
  transform: translate(-50%, -50%) rotate(45deg); /* Arrow points right */
}

.workflow-item.right::before {
  transform: translate(-50%, -50%) rotate(-135deg); /* Arrow points left */
}


.workflow-text p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.6;
  margin: 0;
}

@media(max-width: 768px) {
  .workflow-timeline::before {
    left: 10px;
  }
  .workflow-item,
  .workflow-item.right {
    justify-content: flex-start;
  }
  .workflow-content {
    flex-direction: column;
    max-width: 100%;
    text-align: center;
  }
  .workflow-icon {
    margin-bottom: 15px;
  }
  .workflow-text h3 {
    font-size: 1.3rem;
  }
  .workflow-text p {
    font-size: 0.9rem;
  }
}

}

.workflow-content:hover .workflow-icon {
  background: #FE7743;
  stroke: #fff;
  box-shadow: 0 7px 16px rgba(254, 119, 67, 0.25);
  transition: background 0.3s, stroke 0.3s, box-shadow 0.4s;
}

.workflow-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #FE7743;
  padding: 15px;
  box-sizing: border-box;
  stroke: #FE7743;
  background: #feeee2;
  transition: background 0.3s ease, stroke 0.3s ease, box-shadow 0.4s ease;
}

.workflow-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FE7743;
  margin-bottom: 12px;
  line-height: 1.2;
  cursor: pointer;
}

.workflow-text p {
  font-size: 1rem;
  font-weight: 400;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

@media(max-width: 768px) {
  .workflow-timeline::before {
    left: 10px;
  }
  .workflow-item,
  .workflow-item.right {
    justify-content: flex-start;
  }
  .workflow-content {
    flex-direction: column;
    max-width: 100%;
    text-align: center;
  }
  .workflow-icon {
    margin-bottom: 15px;
  }
}
.workflow-content {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 1.5px 4px rgba(33, 71, 153, 0.09); /* subtle base shadow */
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 420px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  color: #374151;
  transition: 
    color 0.3s cubic-bezier(.9, .2, .1, 1.3), 
    background 0.3s cubic-bezier(.9, .2, .1, 1.3), 
    transform 0.35s cubic-bezier(.9, .2, .1, 1.3),
    box-shadow 0.4s cubic-bezier(.86, 0, .07, 1);
  border: 2px solid #FE7743;
  cursor: pointer;
  z-index: 1;
}

.workflow-content::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8px -8px -8px 8px; /* offset for shadow */
  border-radius: inherit;
  background: transparent;
  box-shadow: 4px 6px 0 2px #FE7743; /* orange shadow matching brand */
  opacity: 0;
  transition: 
    opacity 0.24s cubic-bezier(.86, 0, .07, 1),
    box-shadow 0.34s cubic-bezier(.9, .2, .1, 1.3);
}

.workflow-content:hover, 
.workflow-content:focus-visible {
  color: #FE7743; /* text color changes to brand orange */
  background: #373737; /* subtle light orange background */
  transform: translateY(-6px) scale(1.04);
    border: 2px solid transparent ;
  box-shadow: 0 3px 22px 0 rgba(254, 119, 67, 0.13); /* orange tinted shadow */

}

.workflow-content:hover::after, 
.workflow-content:focus-visible::after {
  opacity: 1;
  box-shadow: 8px 10px 0 2px #FE7743; /* stronger orange shadow on hover */
}

@media (max-width: 600px) {
  .workflow-item::before,
  .workflow-item.left::before,
  .workflow-item.right::before {
    left: 1px !important;
    right: auto !important;
    /* Optional: adjust top position for vertical alignment */
    /* top: 50%; (keep your existing value or tweak as needed) */
  }
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s, font-size 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

/* Active state: keep orange + increase font size */
.faq-item.active .faq-question {
  color: var(--primary);
  font-size: 1.25rem; /* slightly larger when active */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  font-size: 0.95rem;
  color: #555;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* enough for text */
  padding: 15px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* FAQ Section Title */
.faq .section-title h2 {
  font-size: 3rem;          /* bigger main title */
  font-weight: 700;
  color: #000;              /* or var(--secondary) if you’re using theme colors */
  margin-bottom: 10px;
}

.faq .section-title p {
  font-size: 1.3rem;       /* smaller subtitle */
  font-weight: 400;
   color: var(--primary);             /* lighter gray for contrast */
  margin-bottom: 25px;
}


.tools-section {
  background: #fff;
  padding: 60px 0 40px;
}

.tools-title {
  text-align: center;
  margin-bottom: 36px;
}

.tools-title h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
}

.tools-underline {
  display: block;
  width: 60px;
  height: 4px;
  background: #fe7743;
  border-radius: 2px;
  margin: 0 auto;
}

.tools-swiper {
  width: 100%;
  padding: 30px 0 45px;
}

.swiper-wrapper {
  align-items: center;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Remove rounding, makes it square */
  background: #fff;
  width: 140px;      /* Make width and height exactly the same */
  height: 140px;
  box-shadow: 0 2px 10px rgba(254, 119, 67, 0.07);
  padding: 14px 10px;
  transition: box-shadow 0.3s, border-color 0.3s;
}


.tool-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin: 0 auto 8px auto;  /* centers image horizontally */
  display: block;
}

.tool-card span {
  display: block;
  text-align: center;
  color: #FE7743;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}



@media (max-width: 768px) {
  .tool-card {
    width: 120px;
    height: 90px;
  }
  .tool-card img {
    width: 36px;
    height: 36px;
  }
  .tools-title h2 {
    font-size: 1.5rem;
  }
}


/* Footer */

footer {
  background: var(--secondary);
  color: var(--light);
  padding: 60px 0 30px;
}

footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

footer .footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

footer .footer-logo span {
  color: var(--primary);
}

footer .footer-links ul {
  list-style: none;
}

footer .footer-links li {
  margin-bottom: 10px;
}

footer .footer-links a {
  color: #ffffffcc;
  transition: color 0.3s ease;
}

footer .footer-links a:hover {
  color: var(--primary);
}

/* Responsive improvements */

@media (max-width: 992px) {
  /* Navigation */

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    z-index: 9999;
    transition: left 0.3s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .hamburger {
    display: block;
  }

  /* Footer Map Styling */
.footer-newsletter iframe {
  width: 100%;
  height: 150px;   /* You can change to 120px / 180px if needed */
  border: 0;
  border-radius: 6px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.15); /* soft shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-newsletter iframe:hover {
  transform: scale(1.02); /* slight zoom on hover */
  box-shadow: 0px 4px 12px rgba(0,0,0,0.25);
}

.footer-newsletter h4 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #fff; /* adjust based on footer bg */
}

.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ddd; /* lighter text for description */
}

  /* Hero Section adjustments */
  .hero {
    min-height: 60vh;
  }

  .hero-content-wrapper {
    padding-left: 20px;
  }

  .hero-card {
    max-width: 90vw;
    padding: 24px 20px;
  }

  /* Grids convert to flex column */
  .services .services-grid,
  .blog .blog-grid,
  .testimonials .testimonials-grid,
  .pricing .pricing-grid {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 50vh;
  }

  .hero-card {
    font-size: 0.9rem;
    max-width: 95vw;
    padding: 16px 15px;
  }

  .hero-card h1 {
    font-size: 1.5rem;
  }

  .hero-logo {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 1rem;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
            .hero {
      position: relative;
      min-height: 70vh;
      color: var(--light);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: flex-start; /* Shift content to left */
      padding-top: 0;
      padding-bottom: 0;
    }

    .slider-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      filter: brightness(0.85);
      overflow: hidden;
    }

    .slider {
      width: 100%;
      height: 100%;
      position: relative;
    }

    .slider img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 1;
    }

    .slider img.active {
      opacity: 1;
    }

    /* Wrapper to align hero card on left and vertically center */
    .hero-content-wrapper {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-start; /* left align */
      padding-left: 64px; /* spacing from left edge */
      box-sizing: border-box;
    }

    /* Your original hero card styling - unchanged */
    .hero-card {
      background: rgba(0, 0, 0, 0.85);
      border-radius: 24px;
      color: var(--primary);
      padding: 40px 36px 32px 36px;
      max-width: 425px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      position: relative;
    }

    .hero-logo-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .hero-logo {
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--primary);
      letter-spacing: -2px;
    }

    .hero-title {
      font-size: 1.16rem;
      font-weight: 700;
      color: var(--light);
      letter-spacing: 0.5px;
    }

    .hero-card h1 {
      font-size: 2.06rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 12px;
      line-height: 1.1;
      text-transform: uppercase;
    }

    .hero-subtext {
      color: #ffeadd;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      margin-bottom: 18px;
    }

    .hero-btn {
      padding: 11px 30px;
      background: var(--primary);
      color: var(--light);
      border: none;
      border-radius: 8px;
      font-size: 0.99rem;
      font-weight: 600;
      box-shadow: 0 2px 14px rgba(254, 119, 67, 0.09);
      text-decoration: none;
      cursor: pointer;
      transition: background 0.18s;
      margin-top: 6px;
      text-align: center;
      display: inline-block;
    }

    .hero-btn:hover {
      background: #ffffff;
      color: var(--primary);
    }

    /* Responsive Adjustments */
    @media (max-width: 900px) {
      .hero-content-wrapper {
        padding-left: 20px;
      }

      .hero-card {
        max-width: 90vw;
        padding: 24px 20px 20px 20px;
      }
    }

    @media (max-width: 600px) {
      .hero {
        min-height: 50vh;
      }
      .hero-card {
        font-size: 0.9rem;
        padding: 16px 16px 12px 16px;
        max-width: 90vw;
      }
      .hero-card h1 {
        font-size: 1.5rem;
      }
      .hero-logo {
        font-size: 1.8rem;
      }
      .hero-title {
        font-size: 1rem;
      }
    }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .btn-primary {
            background: var(--primary);
            color: var(--light);
            border: 2px solid var(--primary);
        }
        
        .btn-primary:hover {
            background: transparent;
            color: var(--primary);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: var(--light);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
        }
        
        /* Header & Navigation */
        header {
            background: var(--light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary);
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin: 0 15px;
        }
        
        .nav-links a {
            font-weight: 500;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-btns {
            display: flex;
            align-items: center;
        }
        
        .nav-btns .btn {
            margin-left: 15px;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        /* Hero Section */
        .hero {
            padding-top: 150px;
            padding-bottom: 100px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1200x800?text=Digital+Marketing+Team') no-repeat center center/cover;
            color: var(--light);
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-btns {
            animation: fadeIn 1.5s ease;
        }
        
        .hero-btns .btn {
            margin: 0 10px;
        }
        
       /* Services Section */
.services {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;

  /* Hidden initially for animation */
  opacity: 0;
  transform: translateX(-50px);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: var(--light);
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--secondary);
}

@media (max-width: 768px) {
  .service-card {
    box-shadow: #ff6600 0px 10px 20px -10px
  }
}

.span{
  color: var(--primary);
  font-weight: 700;
}
/* === Animation Keyframes === */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
 
}


.section-title h2 span {
    background: linear-gradient(90deg, 
        var(--primary), 
        #0745a7, 
        var(--primary), 
        #29ad18);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


/* CSS */
.gradient-text {
  background: linear-gradient(90deg, 
    var(--primary),
    #0745a7, 
    var(--primary), 
    #29ad18);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}


/* Class added by JS */
.service-card.animate {
  animation: slideInLeft 0.8s ease forwards;
}


#chatbotWidget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 380px;
  height: 350px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
  animation: fadeInPop 0.35s ease forwards;
}

@keyframes fadeInPop {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hidden {
  display: none !important;
}

#chatbotWidget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 380px;
  height: 480px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
  animation: fadeInPop 0.35s ease forwards;
}

@keyframes fadeInPop {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#chatbotHeader {
  background: #ff6600;
  color: white;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

#chatbotHeader button {
  background: transparent;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#chatbotHeader button:hover {
  transform: rotate(90deg);
}

#chatMessages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f9f9f9;
  color: #1a1a1a;
  font-size: 15px;
  word-wrap: break-word;
  scrollbar-width: thin;
  scrollbar-color: #ff6600 transparent;
}

#chatMessages::-webkit-scrollbar {
  width: 8px;
}

#chatMessages::-webkit-scrollbar-thumb {
  background-color: #ff6600;
  border-radius: 6px;
}

#chatForm {
  display: flex;
  padding: 14px 20px;
  border-top: 1px solid #e0e0e0;
  background: white;
}

#chatInput {
  flex: 1;
  font-size: 15px;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 25px;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

#chatInput:focus {
  border-color: #ff6600;
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
}

#chatForm button {
  background: #ff6600;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 25px;
  margin-left: 12px;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 3px 8px rgba(255, 102, 0, 0.6);
  transition: background-color 0.3s ease;
}

#chatForm button:hover {
  background: #fff;
  color: #ff6600;
  border: 2px solid #ff6600;
}

.msg-bubble {
  margin: 10px 0;
  padding: 12px 18px;
  border-radius: 20px;
  max-width: 70%;
  font-weight: 500;
  line-height: 1.4;
  display: block;
  clear: both;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  word-wrap: break-word;
}

.user-msg {
  background: #ff6600;
  color: white;
  float: right;
  text-align: right;
  margin-left: 30%;
  margin-right: 0;
  border-bottom-right-radius: 4px;
}

.bot-msg {
  background: #e4e4e4;
  color: #222;
  float: left;
  text-align: left;
  margin-right: 30%;
  margin-left: 0;
  border-bottom-left-radius: 4px;
}

#chatToggleBtn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ff6600;
  color: white;
  font-size: 28px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(255,102,0,0.7);
  z-index: 10000;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#chatToggleBtn:hover {
  background: #000;
  color: #ff6600;
  border: 2px solid #ff6600;
  transform: scale(1.1);
}

/* Service button container under message bubble */
#serviceOptions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  width: 100%;
}

#serviceOptions button {
  flex: 1 1 calc(50% - 10px);
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(255, 102, 0, 0.4);
  white-space: nowrap;
  text-align: center;
  user-select: none;
  transition: background-color 0.25s ease;
}

#serviceOptions button {
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(255,102,0,0.15);
  transition: background 0.2s;
  width: 90%;
  align-self: center;
}

#serviceOptions button:hover, #serviceOptions button:focus {
  background: #fff;
  color: #ff6600;
  border: 2px solid #ff6600;
}
        
        /* About Section */
        .about {
            background: var(--gray);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h2 {
            margin-bottom: 20px;
            font-size: 2.5rem;
            color: var(--secondary);
        }
        
        .about-text p {
            margin-bottom: 20px;
        }
        
 

.animated-counter .count {
  font-size: 2.3rem;
  color: var(--primary); /* Theme orange, or use #ED417E for pink */
  font-weight: 700;
  font-family: Poppins, sans-serif;
}

.stats {
  display: flex;
  gap: 40px;
  justify-content: relative;
  margin-top: 24px;
}

.symbol {
  color: var(--primary); /* same as numbers */
  font-size: 2.3rem;     /* match the count font size */
  font-weight: 700;
  font-family: Poppins, sans-serif;
  vertical-align: top;   /* aligns nicely with number */
  margin-left: 4px;      /* spacing from number */
  line-height: 1;        /* tightly fit height */
}
.counter-wrap {
  display: inline-flex;
  align-items: baseline; /* aligns numbers and symbols nicely */
  gap: 2px;             /* small spacing between number and sign */
}

.count, .symbol {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary); /* or theme orange */
  font-family: Poppins, sans-serif;
  line-height: 1;
}

.symbol {
  margin-left: 2px;
}

.stat {
  text-align: center;
}

        @media (max-width: 600px) {
  .about-text {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .about-text h2 {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
  .about-text .btn,
  .about-text .btn-primary {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    text-align: center;
    align-self: center;
    float: none;
  }
}

        /* Pricing Section */
        .pricing {
            background: var(--light);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background: #fff;
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }
        
        .pricing-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: 15px;
            right: -35px;
            background: var(--primary);
            color: var(--light);
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .price-tag {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 20px 0;
        }
        
        .price-tag span {
            font-size: 0.8rem;
            font-weight: 400;
        }
        
        .pricing-features {
            list-style: none;
            margin: 20px 0 30px;
            text-align: left;
        }
        
        .pricing-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .pricing-features li i {
            color: var(--primary);
            margin-right: 10px;
        }
        
        /* Testimonials Section */
        .testimonials {
            background: var(--gray);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: #fff;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-content::before {
            content: '"';
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: -10px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        /* Blog Section */
        .blog {
            background: var(--light);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
        }
        
        .blog-image {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .blog-date {
            font-size: 0.8rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .blog-content h3 {
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .blog-content a {
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }
        
        .blog-content a i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .blog-content a:hover i {
            transform: translateX(5px);
        }
        
        /* Contact Section */
        .contact {
            background: var(--gray);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info h3 {
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .contact-details {
            list-style: none;
            margin-top: 30px;
        }
        
        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        } 
        
        .contact-details li i {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .contact-form .form-group {
            margin-bottom: 20px;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

.contact-form select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  height: 52px; /* Matches the height of text inputs and textarea */
  background: white url("data:image/svg+xml;utf8,<svg fill='%23f96e34' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 15px center;
  background-size: 16px 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.contact-form select:focus {
  border-color: #f96e34;
  outline: none;
}

/* Existing styles for inputs and textarea, refined for uniformity */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f96e34;
  outline: none;
}

/* Button style consistent with theme */

.themed-btn {
  background-color: #f96e34;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 30 px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.themed-btn:hover,
.themed-btn:focus {
  background-color: #fff; /* A slightly darker orange for hover */
  outline: #f96e34 solid 2px; 
}

.contact-form select {
  color: #888; /* Match the gray of input placeholders */
}

/* When an actual option is selected, change color to default */
.contact-form select:valid {
  color: #191919; /* Or whatever is your main text color */
}

/* Optional: for browsers that support styled placeholder options */
.contact-form select option[disabled][selected] {
  color: #888;
}

.promo-bar {
  width: 100%;
  background: #fff;  /* fixed: proper white background */
  color: #f96e34;
  font-weight: 700;
  font-size: 1.1em;
  overflow: hidden;
  position: relative;
  z-index: 1001;
  height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee; /* optional: subtle separator */
}



.promo-track {
  display: flex;
  width: max-content;
  animation: promoScroll 30s linear infinite;
}

.promo-msg {
  white-space: nowrap;
  padding-right: 80px;
}

@keyframes promoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-66.66%); }
}



      
        /* Footer */
        footer {
            background: var(--secondary);
            color: var(--light);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--primary);
        }
        
        .footer-about p {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary);
        }
        
        .footer-links h4 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--primary);
        }
        
        .footer-newsletter p {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-family: inherit;
        }
        
        .newsletter-form button {
            background: var(--primary);
            color: var(--light);
            border: none;
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
        }
        
/* Footer styling */
.footer {
  background: #f9f9f9; /* Your footer background */
  padding: 40px 20px;
}

/* Copyright section styling */
.copyright {
  background: #000; /* Optional background */
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
  color: #fff;
}

/* Orange separator line */
.separator {
  width: 100%;
  height: 3px; /* Thickness of line */
  background: #f96e34 ; /* Line color */
  margin-bottom: 10px; /* Space below the line */
}

        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--light);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-image, .about-text {
                flex: none;
                width: 100%;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero {
                padding-top: 120px;
                padding-bottom: 80px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                border-radius: 30px;
                margin-bottom: 10px;
            }
            
            .newsletter-form button {
                border-radius: 30px;
                padding: 12px;
            }
        }

  /* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 100px;   /* Move it above the chat button, adjust as needed */
  right: 25px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: 0.3s;
  z-index: 1000;
}


.whatsapp-btn:hover {
  background-color: #20b954;
  transform: scale(1.1);
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 170px; /* Increased to be above WhatsApp button */
  right: 30px;
  background-color: #FE7743;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  z-index: 1000;
}

#backToTop:hover {
  background-color:#fff; /* Slightly darker shade of theme */
  color:#FE7743;
  transform: scale(1.1);
  border: 2px solid #FE7743;
}


@media (max-width: 600px) {
  /* Chatbot launcher button */
  #chatToggleBtn {
    width: 44px !important;
    height: 44px !important;
    font-size: 20px !important;
    bottom: 18px !important;
    right: 18px !important;
  }
  /* Chatbot widget panel */
  #chatbotWidget {
    width: 95vw !important;
    max-width: 320px !important;
    height: 340px !important;
    right: 8px !important;
    bottom: 72px !important; /* Put above buttons */
    border-radius: 12px !important;
  }

  /* WhatsApp floating button */
  .whatsapp-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
    bottom: 68px !important; /* stack above chat */
    right: 18px !important;
  }

  /* Back To Top Button */
  #backToTop {
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
    bottom: 118px !important; /* highest */
    right: 18px !important;
  }

  /* Adjust icon alignment if needed */
  #chatToggleBtn i, .whatsapp-btn i, #backToTop i {
    font-size: 1em !important;
    line-height: 1 !important;
  }
}

.home-btn {
  position: fixed;
  bottom: 90px;                /* Just above the WhatsApp button */
  right: 20px;
  background-color: #ff6600;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transition: 0.3s;
  z-index: 1000;
}
.home-btn:hover {
  background-color:#fff;
  border: 2px solid #ff6600;
  color :#ff6600;
  transform: scale(1.1);
}


.home-btn {
  display: none; /* Hide on desktop and tablet */
}
@media (max-width: 600px) {
  .home-btn {
    display: flex; /* Show only on phone screens */
    width: 40px;
    height: 40px;
    font-size: 22px;
    bottom: 25px;
    right: 16px;
  }
}




.footer-about {
    display: flex;
    flex-direction: column;
    align-items: center; /* This centers everything horizontally */
    text-align: center; /* Ensures text is centered under the video */
}

.footer-video {
    display: block;
    margin: 0 auto 10px; /* Center and space below */
    width: 200px; /* Adjust size as needed */
    height: auto;
    border-radius: 6px; /* Optional: rounded corners */
    object-fit: cover; /* Ensures video maintains aspect ratio */
   
}
/* Copyright Section */
footer .copyright {
  text-align: center;
  margin-top: 20px;
  padding: 15px 0;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #000; /* adjust based on footer background */
}

footer .copyright p {
  margin: 0;
  color: #ccc;
}

.copyright a {
  color: #FE7743; /* your theme orange */
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}
