.site-header #navbar > ul > .menu-item-has-children > a:before {
    display: none;
}
.header-style-1 #navbar, .header-style-2 #navbar, .header-style-3 #navbar {
  margin-right: 0;
}

/* .container {
  max-width: 1000px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #4776E6, #8E54E9);
} */

.header {
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  color: #333;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  padding: 20px 0 60px;
}

.feature-card {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(71, 118, 230, 0.05), transparent);
  transition: height 0.3s ease;
  z-index: 0;
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
  position: relative;
  z-index: 1;
}

.feature-title {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
  position: relative;
  z-index: 1;
}

.feature-desc {
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes fadeIn {
  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);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Apply different animation delays to the cards */
.feature-card:nth-child(1) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.6s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.8s;
}

.feature-card:nth-child(5) {
  animation-delay: 1s;
}

/* For smaller screens */
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
  
  .header {
    padding: 30px 20px 10px;
  }
  
  .features {
    padding: 10px 20px 40px;
  }
  
  h2 {
    font-size: 2rem;
  }
}


.header {
  padding: 40px 60px 20px;
  text-align: center;
  position: relative;
}

h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease-out;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #5a6a7e;
  line-height: 1.6;
  font-size: 1.1rem;
  animation: fadeIn 1s ease-out 0.5s forwards;
  opacity: 0;
}

.intro-text strong {
  color: #3a7bd5;
  font-weight: 600;
}

.search-methods {
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1250px;
    margin: 0 auto;
    justify-content: center;
}

.search-method {
  background: white;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  animation: slideUp 0.7s ease-out forwards;
}

.search-method-inner {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  height: 100%;
}

.search-method:hover .search-method-inner {
  transform: translateY(-5px);
}

.search-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(58, 123, 213, 0.1), transparent);
  transition: width 0.4s ease;
}

.search-method:hover::before {
  width: 100%;
}

.icon-container {
  width: 70px;
  height: 70px;
  background: rgba(58, 123, 213, 0.1);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.icon-container::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(58, 123, 213, 0.3), rgba(0, 210, 255, 0.3));
  top: 0;
  left: -100%;
  transition: all 0.4s ease;
}

.search-method:hover .icon-container::after {
  left: 0;
}

.icon {
  color: #3a7bd5;
  font-size: 26px;
  position: relative;
  z-index: 2;
}

.search-info {
  flex-grow: 1;
}

.search-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.search-desc {
  color: #6c7a89;
  line-height: 1.5;
}

.footer-text {
  padding: 0 60px 60px;
  text-align: center;
  color: #5a6a7e;
  line-height: 1.6;
  font-size: 1.1rem;
  animation: fadeInUp 1s ease-out 1.5s forwards;
  opacity: 0;
  position: relative;
}

.footer-text strong {
  color: #000;
  font-weight: 600;
}

.glow-effect {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(58, 123, 213, 0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-chip {
  display: inline-flex;
  align-items: center;
  background: #000;
  padding: 5px 12px;
  border-radius: 20px;
  margin: 15px 5px 0;
  animation: pulse 2sg;
}

.ai-chip-icon {
    margin-right: 6px;
    color: #ffffff;
}

.ai-chip-text {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
}

/* Animation delay for search methods */
.search-method:nth-child(1) { animation-delay: 0.2s; }
.search-method:nth-child(2) { animation-delay: 0.4s; }
.search-method:nth-child(3) { animation-delay: 0.6s; }
.search-method:nth-child(4) { animation-delay: 0.8s; }
.search-method:nth-child(5) { animation-delay: 1s; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 100px; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 30px 20px 10px;
  }
  
  .search-methods,
  .footer-text {
    padding: 0 20px 40px;
  }
  
  .search-methods {
    grid-template-columns: 1fr;
  }
  
  h2 {
    font-size: 2rem;
  }
}


.header {
  padding: 40px 60px 20px;
  text-align: center;
  position: relative;
}

h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1250px;
    margin: 0 auto;
}
.feature-card {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px -15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}

.feature-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

/* Special styling for the last feature */
.feature-card:last-child {
  grid-column: 1 / -1;
  /* background: linear-gradient(135deg, #f0f9ff, #e6f7ff);
  border: 2px solid rgba(59, 130, 246, 0.2);
  position: relative; */
}

.feature-card:last-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05)); */
  z-index: 0;
}

.feature-number {
  position: absolute;
  top: 0;
  left: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6, #10b981);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.25);
  z-index: 2;
}

.feature-icon {
  position: relative;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary-color);
  z-index: 2;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.feature-card:hover .feature-icon {
  /* transform: scale(1.2) rotate(10deg); */
  color: var(--secondary-color);
}

.feature-content {
  padding-top: 0;
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  padding-right: 50px;
  margin-top: 22px;
}

.feature-desc {
  color: #64748b;
  line-height: 1.6;
}

.highlight {
  color: #3b82f6;
  font-weight: 600;
}

/* Special styling for the real-time feature */
.real-time-badge {
  display: inline-flex;
  align-items: center;
  background: #000;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 15px 10px 0 0;
  /* animation: pulse 2s infinite; */
}

.badge-icon {
  margin-right: 6px;
  color: var(--secondary-color);
}

.badge-text {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 500;
}

.badge-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.blinking-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  margin-right: 8px;
  animation: blink 1.5s infinite;
}

/* Animation for feature cards */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Background SVG */
.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.03;
  z-index: 0;
}

/* Floating highlight blocks */
.highlight-block {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(16, 185, 129, 0.4));
  filter: blur(50px);
  z-index: 0;
  opacity: 0.3;
  animation: float 10s infinite ease-in-out;
}

.highlight-block:nth-child(1) {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.highlight-block:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: 2.5s;
}

.highlight-block:nth-child(3) {
  bottom: 20%;
  left: 30%;
  animation-delay: 5s;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 80px; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes blink {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}

@keyframes float {
  0% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header {
    padding: 30px 20px 10px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .feature-title {
    font-size: 1.2rem;
    padding-right: 0;
    margin-top: 10px;
  }
  
  .feature-icon {
    top: 15px;
    right: 15px;
  }
  
  .feature-number {
    top: 15px;
    left: 15px;
  }
}


.header {
  padding: 40px 0 20px;
  text-align: center;
  position: relative;
}

h2 {
  font-size: 2.5rem;
  color: #1e293b;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

.benefits-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 40px 0;
  position: relative;
  z-index: 1;
}
section.customerbenefits-Section .header {
    padding: 0;
}

.benefit-card {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  margin: 20px;
  height: 320px;
  perspective: 1000px;
  cursor: pointer;
}

.benefit-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.benefit-card:hover .benefit-inner {
  transform: rotateY(180deg);
}

.benefit-front, .benefit-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.benefit-front {
  background: white;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.6s ease-out forwards;
}

.benefit-back {
  background: #000;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.icon-container {
  width: 80px;
  height: 80px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.icon-container::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(6, 182, 212, 0.2));
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.benefit-front:hover .icon-container::after {
  opacity: 1;
}

.icon {
    color: var(--secondary-color);
    font-size: 43px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.benefit-front:hover .icon {
  transform: scale(1.1);
}

.benefit-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #1e293b;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.benefit-subtitle {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.benefit-back-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.benefit-back-desc {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.flip-hint {
  position: absolute;
  bottom: 15px;
  font-size: 0.8rem;
  color: #64748b;
  opacity: 0.7;
  display: flex;
  align-items: center;
}

.flip-icon {
  margin-right: 5px;
  animation: flipHint 2s infinite;
}

/* Animation delays for the cards */
.benefit-card:nth-child(1) .benefit-front { animation-delay: 0.1s; }
.benefit-card:nth-child(2) .benefit-front { animation-delay: 0.2s; }
.benefit-card:nth-child(3) .benefit-front { animation-delay: 0.3s; }
.benefit-card:nth-child(4) .benefit-front { animation-delay: 0.4s; }

/* Wave background */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f1f5f9' fill-opacity='0.5' d='M0,192L48,186.7C96,181,192,171,288,176C384,181,480,203,576,202.7C672,203,768,181,864,170.7C960,160,1056,160,1152,170.7C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.7;
  z-index: 0;
  animation: waveMove 20s linear infinite;
}

/* Floating elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(6, 182, 212, 0.3));
  filter: blur(20px);
  z-index: 0;
  opacity: 0.3;
}

.float-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 10%;
  animation: float 15s infinite ease-in-out;
}

.float-2 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 10%;
  animation: float 12s infinite ease-in-out 2s;
}

.float-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 50%;
  animation: float 10s infinite ease-in-out 4s;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from { width: 0; }
  to { width: 100px; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(15px, -15px) rotate(5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes waveMove {
  0% { background-position-x: 0; }
  100% { background-position-x: 1440px; }
}

@keyframes flipHint {
  0% { transform: rotateY(0deg); }
  20% { transform: rotateY(90deg); }
  40% { transform: rotateY(180deg); }
  60% { transform: rotateY(270deg); }
  80% { transform: rotateY(360deg); }
  100% { transform: rotateY(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-container {
    padding: 10px;
  }
  
  .benefit-card {
    min-width: 100%;
    margin: 10px 0;
    height: 280px;
  }
  
  h2 {
    font-size: 2rem;
  }
}

.cta-container {
    max-width: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.cta-bg {
  background: #000;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Animated background elements */
.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 15s infinite ease-in-out;
}

.bg-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}

.bg-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -50px;
  animation-delay: 3s;
}

.bg-circle:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 15%;
  animation-delay: 7s;
}

.bg-circle:nth-child(4) {
  width: 150px;
  height: 150px;
  bottom: 30%;
  right: 15%;
  animation-delay: 11s;
}

/* Sparkles */
.sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  animation: twinkle 4s infinite;
}

.s1 { top: 20%; left: 10%; animation-delay: 0s; }
.s2 { top: 30%; left: 25%; animation-delay: 1s; }
.s3 { top: 15%; left: 50%; animation-delay: 2s; }
.s4 { top: 40%; left: 70%; animation-delay: 0.5s; }
.s5 { top: 70%; left: 85%; animation-delay: 1.5s; }
.s6 { top: 75%; left: 40%; animation-delay: 2.5s; }
.s7 { top: 60%; left: 15%; animation-delay: 1.8s; }
.s8 { top: 50%; left: 95%; animation-delay: 0.7s; }
.s9 { top: 80%; left: 60%; animation-delay: 1.3s; }
.s10 { top: 85%; left: 5%; animation-delay: 2.1s; }

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-heading {
    color: white;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.cta-subheading {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards 0.5s;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards 1s;
}

.cta-btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.primary-btn {
  background: white;
  color: #000;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* Button hover effect */
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
}

.cta-btn:hover::before {
  left: 100%;
}

.btn-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.cta-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Pulse animation on primary button */
.pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(79, 70, 229, 0.2);
  border-radius: 50px;
  opacity: 0;
  transform: scale(1);
  animation: pulse 2s infinite;
}

/* Trademark symbol */
.trademark {
  display: inline-block;
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 2px;
}

/* Logo animation */
.logo-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.logo-path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawPath 5s ease-out forwards 1.5s;
  opacity: 0.2;
  stroke: white;
  stroke-width: 1;
  fill: none;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -15px) rotate(5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes twinkle {
  0% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
  100% { opacity: 0.2; transform: scale(1); }
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cta-bg {
    padding: 60px 20px;
  }
  
  .cta-heading {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .cta-subheading {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 20px;
  }
  
  .cta-btn {
    width: 100%;
  }
}

.trademark-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem;
    overflow: hidden;
    position: relative;
    padding: 4rem 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 0;
  position: relative;
}

.brand-name {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.8s forwards;
}

.service-name {
  color: var(--secondary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.8s 0.2s forwards;
}

.tagline {
  font-style: italic;
  color: var(--dark);
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 1.2rem;
  opacity: 0;
  animation: fadeIn 1s 0.4s forwards;
  position: relative;
  display: inline-block;
}

.tagline::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  animation: expandLine 1.2s 0.8s forwards;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.intro-text {
  flex: 1;
  min-width: 100%;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 0.8s 0.6s forwards;
}

.intro-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.intro-text strong {
  color: var(--primary);
  font-weight: 600;
}

.product-showcase {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 0.8s 0.8s forwards;
  position: relative;
  overflow: hidden;
}

.product-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--secondary), var(--accent));
  opacity: 0;
  animation: fadeIn 0.5s 1.2s forwards;
}

.product-title {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.product-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  animation: expandLine 0.8s 1.4s forwards;
}

.product-card {
  background: var(--light);
  padding: 0 0 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  transform: translateX(20px);
  opacity: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.product-card:nth-child(2) {
  animation: fadeInRight 0.6s 1.6s forwards;
}

.product-card:nth-child(3) {
  animation: fadeInRight 0.6s 1.8s forwards;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.product-card h4 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.product-card h4 svg {
  margin-right: 8px;
}

.product-card p {
  color: #000000;
  font-size: 0.95rem;
}

.cta-section {
  margin-top: 3rem;
  text-align: center;
  opacity: 0;
  animation: fadeIn 0.8s 2s forwards;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
  transition: all 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.cta-button:hover::before {
  left: 100%;
}

.highlight {
  color: var(--accent);
  font-weight: 600;
}

.floating-element {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(231, 76, 60, 0.1));
  border-radius: 50%;
  top: -100px;
  right: -100px;
  z-index: -1;
  animation: float 15s infinite ease-in-out;
}

.floating-element-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(52, 152, 219, 0.1));
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  z-index: -1;
  animation: float 18s infinite ease-in-out reverse;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 80%;
  }
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .brand-name {
    font-size: 2rem;
  }
  
  .service-name {
    font-size: 1.5rem;
  }
  
  .content-wrapper {
    flex-direction: column;
  }
  
  .product-showcase {
    width: 100%;
  }
}

.why-choose-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
}
.why-choose-section h2.section-title {
    margin-top: 0;
    padding-bottom: 0;
}
.section-header {
  text-align: center;
  position: relative;
}

.section-title {
  color: var(--primary);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  animation: expandWidth 1.2s 0.4s forwards;
}

.benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
  padding: 0 20px;
}

.benefit-card-panel {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.benefit-card-panel:nth-child(1) { animation: fadeInUp 0.6s 0.2s forwards; }
.benefit-card-panel:nth-child(2) { animation: fadeInUp 0.6s 0.4s forwards; }
.benefit-card-panel:nth-child(3) { animation: fadeInUp 0.6s 0.6s forwards; }
.benefit-card-panel:nth-child(4) { animation: fadeInUp 0.6s 0.8s forwards; }
.benefit-card-panel:nth-child(5) { animation: fadeInUp 0.6s 1.0s forwards; }
.benefit-card-panel:nth-child(6) { animation: fadeInUp 0.6s 1.2s forwards; }

.benefit-card-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-card-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, var(--secondary), var(--accent));
  transition: height 0.4s ease;
}

.benefit-card-panel:hover::before {
  height: 100%;
}

.benefit-icon {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--bg-light);
  border: 2px solid var(--secondary-color);
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.benefit-card-panel .benefit-icon {  
  background: var(--bg-light);
  border: 2px solid var(--secondary-color);
}

.benefit-card-panel:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--secondary-color);
  transition: all 0.3s ease;
}

.benefit-card-panel .benefit-icon svg { 
  stroke: var(--secondary-color); 
}

.benefit-card-panel:hover .benefit-icon svg {
  transform: rotate(10deg);
}

.benefit-title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    line-height: 28px;
}

.benefit-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.4s ease;
}

.benefit-card-panel:hover .benefit-title::after {
  width: 40px;
}

.benefit-desc {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

.benefit-desc strong {
  color: var(--primary);
  font-weight: 600;
}

.background-decoration {
  position: absolute;
  z-index: -1;
  opacity: 0.4;
}

.bg-circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(231, 76, 60, 0.05));
  top: -100px;
  right: -100px;
  animation: float 25s infinite alternate ease-in-out;
}

.bg-circle-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), rgba(52, 152, 219, 0.1));
  bottom: -80px;
  left: -80px;
  animation: float 20s infinite alternate-reverse ease-in-out;
}

.bg-dots {
  width: 180px;
  height: 180px;
  background-image: radial-gradient(var(--secondary) 2px, transparent 2px);
  background-size: 18px 18px;
  top: 20%;
  left: 5%;
  opacity: 0.15;
  animation: float 30s infinite alternate ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .benefits-container {
    grid-template-columns: 1fr;
  }
}
.why-choose-section .section-header {
    margin: 0 0 40px;
}

.products-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-color: #f8f8f8;
}

.section-header {
  text-align: center;
  position: relative;
}

.section-title {
  color: var(--primary);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  padding-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  animation: expandWidth 1.2s 0.4s forwards;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    padding: 0 20px;
}

.product-card {
  background: var(--bg-light);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  padding-bottom: 0;
}

.product-card:nth-child(1) { animation: fadeInUp 0.6s 0.3s forwards; }
.product-card:nth-child(2) { animation: fadeInUp 0.6s 0.6s forwards; }
.product-card:nth-child(3) { animation: fadeInUp 0.6s 0.9s forwards; }

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow);
}

.product-header {
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(0, 43, 91, 0.08) 0%, rgba(0, 43, 91, 0.05) 100%);
  background-color: rgba(0, 43, 91, 0.06);
  color: var(--text-color);
  position: relative;
  overflow: hidden;
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 2px solid var(--secondary-color);
}

.product-header::before {
  content: '';
  position: absolute;
  top: -80%;
  right: -80%;
  width: 150%;
  height: 150%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.product-card:hover .product-header::before {
  top: -40%;
  right: -40%;
}

.product-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.product-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  margin-right: 12px;
  padding: 8px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(67%) sepia(67%) saturate(1234%) hue-rotate(2deg) brightness(102%) contrast(91%);
  transition: all 0.3s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.1) rotate(-5deg);
}

.product-card:hover .product-icon img {
  transform: rotate(10deg);
}

.product-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: #000000;
  position: relative;
  z-index: 1;
}

.product-content {
  padding: 2rem;
  color: #000000;
}

.product-content p,
.product-content li,
.product-content * {
  color: #000000;
}

.feature-list {
    list-style: none;
    margin-top: 0.5rem;
    min-height: 270px;
}

.feature-item {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 2rem;
  transition: all 0.3s ease;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233498db' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.product-card:nth-child(1) .feature-item::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233498db' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.product-card:nth-child(2) .feature-item::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239b59b6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.product-card:nth-child(3) .feature-item::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c3e50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.product-card:hover .feature-item::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

.product-card:hover .feature-item {
  transform: translateX(5px);
}

.feature-item strong {
  font-weight: 600;
  color: var(--primary);
}

.cta-button {
  display: inline-block;
  width: 100%;
  padding: 0.8rem 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  color: white;
  background: var(--secondary);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card:nth-child(1) .cta-button {
    background: #000;
}
.product-card:nth-child(2) .cta-button {
    background: #000;
}
.product-card:nth-child(3) .cta-button {
    background: #000;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.15);
}

.bg-decoration {
  position: absolute;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.bg-shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(155, 89, 182, 0.05));
  border-radius: 62% 38% 70% 30% / 30% 64% 36% 70%;
  top: -100px;
  right: -200px;
  animation: morphing 15s infinite alternate ease-in-out;
}

.bg-shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), rgba(52, 152, 219, 0.05));
  border-radius: 38% 62% 30% 70% / 64% 30% 70% 36%;
  bottom: -80px;
  left: -150px;
  animation: morphing 18s infinite alternate-reverse ease-in-out;
}

@keyframes morphing {
  0% {
    border-radius: 62% 38% 70% 30% / 30% 64% 36% 70%;
  }
  25% {
    border-radius: 43% 57% 27% 73% / 55% 31% 69% 45%;
  }
  50% {
    border-radius: 30% 70% 57% 43% / 67% 30% 70% 33%;
  }
  75% {
    border-radius: 58% 42% 37% 63% / 38% 60% 40% 62%;
  }
  100% {
    border-radius: 62% 38% 70% 30% / 30% 64% 36% 70%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .products-container {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

.process-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 2rem;
    position: relative;
    overflow: hidden;
} 

.section-header {
  text-align: center;
  position: relative;
}

.section-title {
  color: #2c3e50;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
.contact-section-s3 {
    padding-top: 60px;
}
.contact-pg-section {
    padding-bottom: 80px;
}
.key-Features-Section .header {
    padding: 0;
}

.process-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 4px;
  background: #000;
  transform: scaleY(0);
  transform-origin: top;
  animation: growLine 1.5s ease forwards;
}

@keyframes growLine {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

.step-wrapper {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
}

.step-wrapper:nth-child(1) { animation: slideIn 0.5s 0.2s ease-out forwards; }
.step-wrapper:nth-child(2) { animation: slideIn 0.5s 0.6s ease-out forwards; }
.step-wrapper:nth-child(3) { animation: slideIn 0.5s 1.0s ease-out forwards; }
.step-wrapper:nth-child(4) { animation: slideIn 0.5s 1.4s ease-out forwards; }
.step-wrapper:nth-child(5) { animation: slideIn 0.5s 1.8s ease-out forwards; }

.step-number {
  position: relative;
  min-width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  margin-right: 2rem;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-wrapper:nth-child(2) .step-number {
    background: var(--secondary-color);
}
.step-wrapper:nth-child(3) .step-number {
    background: var(--secondary-color);
}
.step-wrapper:nth-child(4) .step-number {
    background: var(--secondary-color);
}
.step-wrapper:nth-child(5) .step-number {
    background: var(--secondary-color);
}

.step-content {
  background: white;
  border-radius: 12px;
  padding: 1.8rem;
  flex: 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.step-wrapper:hover .step-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-title {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.step-wrapper .step-title {
    color: var(--primary-color);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.step-wrapper .step-icon {
    background: var(--secondary-color);
}

.step-wrapper:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.step-wrapper .step-icon svg { 
  stroke: #ffffff;
}

.step-details {
  list-style: none;
}

.step-item {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.step-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ecf0f1;
  border: 1px solid;
  transition: all 0.3s ease;
}

.step-wrapper:nth-child(1) .step-item::before { border-color: #3498db; }
.step-wrapper:nth-child(2) .step-item::before { border-color: #9b59b6; }
.step-wrapper:nth-child(3) .step-item::before { border-color: #e74c3c; }
.step-wrapper:nth-child(4) .step-item::before { border-color: #f39c12; }
.step-wrapper:nth-child(5) .step-item::before { border-color: #27ae60; }

.step-wrapper:hover .step-item::before {
  transform: scale(1.3);
}

.step-wrapper:nth-child(1):hover .step-item::before { background: #3498db; }
.step-wrapper:nth-child(2):hover .step-item::before { background: #9b59b6; }
.step-wrapper:nth-child(3):hover .step-item::before { background: #e74c3c; }
.step-wrapper:nth-child(4):hover .step-item::before { background: #f39c12; }
.step-wrapper:nth-child(5):hover .step-item::before { background: #27ae60; }

.step-item strong {
  font-weight: 600;
}

.step-wrapper:nth-child(1) .step-item strong { color: #3498db; }
.step-wrapper:nth-child(2) .step-item strong { color: #9b59b6; }
.step-wrapper:nth-child(3) .step-item strong { color: #e74c3c; }
.step-wrapper:nth-child(4) .step-item strong { color: #f39c12; }
.step-wrapper:nth-child(5) .step-item strong { color: #27ae60; }

.product-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 0.5rem;
  color: white;
  transition: all 0.3s ease;
}

.tag-markscout {
  background: #3498db;
}

.tag-markguard {
  background: #f39c12;
}

.tag-platform {
  background: #27ae60;
}

.step-wrapper:hover .product-tag {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.bg-decoration {
  position: absolute;
  z-index: -1;
  opacity: 0.3;
  pointer-events: none;
}

.bg-circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
  top: 10%;
  right: -150px;
  animation: float 20s infinite alternate ease-in-out;
}

.bg-circle-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(52, 152, 219, 0.1));
  bottom: 10%;
  left: -100px;
  animation: float 15s infinite alternate-reverse ease-in-out;
}

.process-cta {
  text-align: center;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeIn 0.8s 2.2s forwards;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.cta-button:hover::before {
  left: 100%;
}
.site-footer .social-newsletter-area .social-newsletter-content > div:last-child {
    width: 320px;
    float: right;
    text-align: right;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, 20px) rotate(5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@media (max-width: 768px) {
  .process-line {
    left: 20px;
  }
  
  .step-number {
    min-width: 40px;
    height: 40px;
    margin-right: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .step-title {
    font-size: 1.2rem;
  }
  
  .step-icon {
    width: 36px;
    height: 36px;
  }
}

.features-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-bottom: solid 1px #ddd;
}
.features-section h2.section-title {
    margin-top: 0;
}

.features-section .background-shape {
  position: absolute;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}

.features-section .background-shape.shape1 {
  width: 400px;
  height: 400px;
  border-radius: 43% 57% 52% 48% / 48% 52% 48% 52%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
  top: -150px;
  right: -150px;
  animation: morphShape 20s infinite alternate ease-in-out;
}

.features-section .background-shape.shape2 {
  width: 300px;
  height: 300px;
  border-radius: 52% 48% 48% 52% / 43% 57% 43% 57%;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(52, 152, 219, 0.1));
  bottom: -100px;
  left: -100px;
  animation: morphShape 15s infinite alternate-reverse ease-in-out;
}

@keyframes morphShape {
  0% {
    border-radius: 43% 57% 52% 48% / 48% 52% 48% 52%;
    transform: rotate(0deg);
  }
  50% {
    border-radius: 52% 48% 43% 57% / 57% 43% 57% 43%;
    transform: rotate(5deg);
  }
  100% {
    border-radius: 43% 57% 52% 48% / 48% 52% 48% 52%;
    transform: rotate(0deg);
  }
}


@keyframes expandWidth {
  from { width: 0; }
  to { width: 80px; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.features-section .feature-card {
  background: var(--bg-light);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Icon image styling for secondary color - converts to golden yellow (#D4AF37) */
.icon-img-secondary {
  filter: brightness(0) saturate(100%) invert(67%) sepia(67%) saturate(1234%) hue-rotate(2deg) brightness(102%) contrast(91%);
  -webkit-filter: brightness(0) saturate(100%) invert(67%) sepia(67%) saturate(1234%) hue-rotate(2deg) brightness(102%) contrast(91%);
}

.feature-icon .icon-img-secondary,
.service-icon .icon-img-secondary {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  display: block;
}


.features-section .feature-card:nth-child(1) { animation: fadeInUp 0.6s 0.2s forwards; }
.features-section .feature-card:nth-child(2) { animation: fadeInUp 0.6s 0.4s forwards; }
.features-section .feature-card:nth-child(3) { animation: fadeInUp 0.6s 0.6s forwards; }
.features-section .feature-card:nth-child(4) { animation: fadeInUp 0.6s 0.8s forwards; }
.features-section .feature-card:nth-child(5) { animation: fadeInUp 0.6s 1.0s forwards; }
.features-section .feature-card:nth-child(6) { animation: fadeInUp 0.6s 1.2s forwards; }
.features-section .feature-card:nth-child(7) { animation: fadeInUp 0.6s 1.4s forwards; }

.features-section .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-section .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  transition: height 0.4s ease;
}

.features-section .feature-card:hover::before {
  height: 100%;
}

/* .features-section .feature-card:nth-child(1)::before { 
  Background: #000000; 
}
.features-section .feature-card:nth-child(2)::before { 
  Background: #000000; 
}
.features-section .feature-card:nth-child(3)::before { 
  Background: #000000; 
}
.features-section .feature-card:nth-child(4)::before { 
  Background: #000000; 
}
.features-section .feature-card:nth-child(5)::before { 
  Background: #000000; 
}
.features-section .feature-card:nth-child(6)::before { 
  Background: #000000; 
}
.features-section .feature-card:nth-child(7)::before { 
  Background: #000000; 
} */
.features-section .feature-numberss {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: none;
}

.features-section .feature-card:hover .feature-numberss {
  transform: scale(1.2) rotate(10deg);
  color: rgba(0, 0, 0, 0.05);
}

.features-section .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  background: var(--bg-light);
  border: 2px solid var(--secondary-color);
  padding: 8px;
  box-sizing: border-box;
}

.features-section .feature-icon img,
.feature-icon img,
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(67%) sepia(67%) saturate(1234%) hue-rotate(2deg) brightness(102%) contrast(91%);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--secondary-color);
  stroke-width: 1.5;
  fill: var(--secondary-color);
}

.features-section .feature-card .feature-icon { 
  stroke: var(--secondary-color); 
}

.features-section .feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}


.features-section .feature-card .feature-icon svg { 
  stroke: var(--secondary-color); 
}

.features-section .feature-card:hover .feature-icon svg {
  transform: rotate(10deg);
}

.features-section .feature-title {
  font-size: 1.3rem;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.features-section .feature-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.4s ease;
}

.features-section .feature-card:hover .feature-title::after {
  width: 50px;
}

.features-section .feature-card:nth-child(1) .feature-title::after { background: #3498db; }
.features-section .feature-card:nth-child(2) .feature-title::after { background: #9b59b6; }
.features-section .feature-card:nth-child(3) .feature-title::after { background: #e74c3c; }
.features-section .feature-card:nth-child(4) .feature-title::after { background: #f39c12; }
.features-section .feature-card:nth-child(5) .feature-title::after { background: #27ae60; }
.features-section .feature-card:nth-child(6) .feature-title::after { background: #2c3e50; }
.features-section .feature-card:nth-child(7) .feature-title::after { background: #8e44ad; }

.features-section .feature-description {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.features-section .feature-description strong {
  font-weight: 600;
}

.features-section .feature-card:nth-child(1) .feature-description strong { color: #3498db; }
.features-section .feature-card:nth-child(2) .feature-description strong { color: #9b59b6; }
.features-section .feature-card:nth-child(3) .feature-description strong { color: #e74c3c; }
.features-section .feature-card:nth-child(4) .feature-description strong { color: #f39c12; }
.features-section .feature-card:nth-child(5) .feature-description strong { color: #27ae60; }
.features-section .feature-card:nth-child(6) .feature-description strong { color: #2c3e50; }
.features-section .feature-card:nth-child(7) .feature-description strong { color: #8e44ad; }

@media (max-width: 768px) {
  .features-section .section-title {
    font-size: 1.8rem;
  }
  
  .features-section .features-grid {
    grid-template-columns: 1fr;
  }
  
  .features-section .feature-card {
    padding: 1.5rem;
  }
  
  .features-section .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .features-section .feature-number {
    font-size: 3rem;
    top: 1rem;
    right: 1rem;
  }
}
.features-grid .feature-title {
    margin-top: 0;
}
.section-padding {
    padding: 110px 0 0;
}
.service-section {
    margin: 0 20px;
}
.section-title-s2 .icon{
  line-height: 34px;
}
.partnerwithus .contact-form-col {
    padding-right: 0;
    float: none;
    margin: 0 auto;
}
.customCheckbox {
    display: block;
    margin-bottom: 0;
}

.customCheckbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.customCheckbox label {
  position: relative;
  cursor: pointer;
}

.customCheckbox label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #000000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

.customCheckbox input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.customCheckbox-Flex {
    display: flex;
    gap: 20px;
}
.labelcheckbox{
  margin-bottom: 15px;
}
.header-style-1 .navbar-brand img, .header-style-2 .navbar-brand img, .header-style-3 .navbar-brand img {
    max-width: 130px;
}
.header-style-1 #navbar, .header-style-2 #navbar, .header-style-3 #navbar {
    margin-right: 0;
    margin-top: 10px;
}
.new-feature-section {
    padding-bottom: 50px;
    padding-top: 50px;
    background-color: var(--primary-color);
}
.new-feature-section .feature-grid svg{
    width: 50px;
    height: 50px;
}
.new-feature-section .feature-grid {
    min-height: 340px;
}
.feature-section .feature-grid:hover {
    background-color: #e3b03f;
    border-color: #e3b03f;
}
.theme-btn {
    background-color: var(--primary-color);
}
.theme-btn:hover, .theme-btn:focus, .theme-btn:active {
    background-color: #1c202e;
    color: #fff;
}
.text-center.viewMore-center.mt-3 {
    margin-top: 50px;
}
.service-section .service-grids img {
    position: absolute;
    left: 0;
    top: -8px;
    width: 40px;
    height: 40px;
}
.service-section .service-grids img path {
    stroke: var(--secondary-color);
}
.section-title > span, .section-title-s2 > span, .section-title-s3 > span, .section-title-s6 > span, .section-title-s4 > span {
    color: var(--primary-color);
}
.testimonials-section .owl-theme .owl-dots .owl-dot span {
    background: var(--primary-color);
}
.testimonials-section .grid .fi:before {
    color: var(--primary-color);
}
.blog-section .entry-details .cat, .blog-section-s2 .entry-details .cat {
    background: var(--primary-color);
}
.section-title .more-about, .section-title-s2 .more-about, .section-title-s3 .more-about, .section-title-s6 .more-about, .section-title-s4 .more-about {
    color: #000;
}
.site-footer .social-newsletter-area .logo-area img {
    width: 150px;
}
.history-section .grid-s1 .time-title:before, .history-section .grid-s2 .time-title:before {
    border: 6px solid var(--primary-color);
}
.project-single-section {
    padding: 60px 0 !important;
}
.about-service-section .header {
    padding-top: 0;
}
.advancedSearchoption-section .header h2 {
    margin-top: 0;
    margin-bottom: 10px;
}
.advancedSearchoption-section .footer-text {
    padding-bottom: 0;
}
.testimonials-section {
    padding: 60px 0 !important;
}
section.blog-section.section-padding {
    padding-bottom: 60px;
    padding-top: 60px;
}
section.history-section.section-padding {
    padding: 60px 0;
}
.features-new-sections .feature-card .feature-icon svg {
    fill: var(--secondary-color);
}
.benefit-card .icon-container .icon {
    font-size: 52px;
}
.site-footer .social-newsletter-area .social-area ul a:hover {
    background-color: var(--primary-color);
}
.blog-pg-section .entry-details .cat {
    background: var(--primary-color);
}
.blog-pg-section .format-standard .entry-details .read-more, .blog-pg-section .format-quote .entry-details .read-more {
    font-weight: 700;
    color: #000;
}
.pagination-wrapper .pg-pagination .active a, .pagination-wrapper .pg-pagination li a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.contact-section .contact-info .fi:before, .contact-section-s2 .contact-info .fi:before, .contact-section-s3 .contact-info .fi:before {
    font-size: 50px;
    color: var(--secondary-color);
}
.contact-section-s3 .contact-info h4 {
    color: var(--secondary-color);
}
.site-header #navbar > ul li a:hover, .site-header #navbar > ul li a:focus {
    text-decoration: none;
    color: var(--primary-color) !important;
}
.section-title, .section-title-s2, .section-title-s3, .section-title-s6, .section-title-s4 {
    padding-left: 0;
}
.about-section img {
    width: 100%;
}
/* .container {
    width: 100%;
} */
.container-wrapper{
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}
.project-single-section .img-holder img {
    width: 100%;
}
.contact-section .contact-form, .contact-section-s2 .contact-form, .contact-section-s3 .contact-form {
    padding-left: 0;
}
.contact-section .contact-info-col, .contact-section-s2 .contact-info-col, .contact-section-s3 .contact-info-col {
    width: calc(50% - 85px);
    float: left;
    padding-left: 20px;
}
.contact-section .contact-info-col .contact-info, .contact-section-s2 .contact-info-col .contact-info, .contact-section-s3 .contact-info-col .contact-info {
    width: 100%;
    float: none;
}
.contact-section .contact-form-col, .contact-section-s2 .contact-form-col, .contact-section-s3 .contact-form-col {
    padding-right: 0;
}
/* .lawyer-form-panel {
  background-color: #ffffff;
  padding: 24px 20px;
  position: fixed;
  right: 20px;
  top: 200px;
  z-index: 10;
  border-radius: 10px;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 0 50px #959595;
} */
.lawyer-form-panel input[type="text"], .lawyer-form-panel select, .lawyer-form-panel input[type="email"] {
    border-radius: 0;
    box-shadow: none;
    height: 50px;
}
.lawyer-form-panel button.theme-btn{
    padding: 12px 20px;
    width: 100%;
}
.lawyer-form-panel h3 {
    margin: 0 0 20px;
    color: var(--secondary-color);
}
span#cancelBtn {
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 29px;
    cursor: pointer;
}
.header-style-1 .topbar, .header-style-2 .topbar, .header-style-3 .topbar {
    background-color: var(--primary-color);
}
section.lawyerFormsSections {
    padding-top: 100px;
    padding-bottom: 50px;
    background-color: #ebebeb;
}
.partnerwithus .contact-form-col {
    width: 100%;
    padding: 0 20px;
    max-width: 1250px;
}
.home-new-feature-section .feature-grid {
    cursor: pointer;
    border-radius: 20px;
    background-color: #fff;
    border: solid 1px #fff;
    box-shadow: 0 0 50px #e9b749;
}
.navigation-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.homecall {
    color: #000;
    background-color: var(--primary-color);
    padding: 12px 15px;
}
.lawyerFormsSections .container .row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.lawyer-form-panel {
    border: 0;
    padding: 25px 24px;
    border-radius: 0;
    background-color: #fff;
    box-shadow: none;
}
.hero-style-1 .slide-title h2 {
    font-size: 2.5rem;
    margin-top: 0;
}
/* .hero-style-1 {
    height: calc(65vh - 62px);
} */
.hero-style-1 {
    height: 450px;
}
.slide-inner .row {
    display: flex;
    align-items: center;
}
.law-icons img {
    width: 200px;
    margin: 0 auto;
    display: block;
}
.slide-inner.slide-bg-image {
    padding-top: 120px;
}

@media screen and (min-width: 992px) {
    .header-style-1 .navigation, .header-style-2 .navigation, .header-style-3 .navigation {
        background-color: rgba(255, 255, 255, 0.4) !important;
    }
}
@media screen and (min-width: 992px) {
    .hero-style-1 .container {
        padding-top: 0;
    }
}

@media screen and (min-width: 992px) {
    .site-header #navbar > ul > li:hover > .sub-menu {
        top: 80%;
        visibility: visible;
        opacity: 1;
        left: 33px;
        border-radius: 20px;
        box-shadow: 0 0 60px #505050;
    }
}

@media (max-width: 991px) {
  .site-header .navbar-header button {
      background-color: var(--primary-color);
      width: 40px;
      height: 35px;
      border: 0;
      padding: 5px 10px;
      outline: 0;
      position: absolute;
      right: 15px;
      top: 20px;
      z-index: 20;
  }
  .homecall {
    color: #000;
    background-color: var(--primary-color);
    padding: 12px 15px;
    margin-top: 50px;
}
}
@media screen and (min-width: 992px) {
    .header-style-1 .navigation, .header-style-2 .navigation, .header-style-3 .navigation {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }
}
.container {
    max-width: 1250px;
    width: 100%;
}
.service-section {
    margin: 0;
}
.testimonials-section {
    background-color: rgba(247, 247, 247, 0.9);
}
@media screen and (min-width: 992px) {
    .site-header #navbar > ul > li .sub-menu a {
        border-bottom: solid 1px #ccc;
    }
    .site-header #navbar > ul > li .sub-menu li:last-child .sub-menu a {
        border-bottom: 0;
    }
}
.advancedSearchoption-section {
    background-color: var(--primary-color);
    padding: 60px 0;
}
.about-service-section {
    padding: 60px 0;
}
.key-Features-Section {
    padding: 60px 0 60px;
    background-color: #fafafa;
}
section.customerbenefits-Section .header h2 {
    margin-bottom: 0;
}
nav.navigation.navbar.navbar-default.sticky-header.sticky-on #navbar ul.nav.navbar-nav li.menu-item-has-children a {
    color: #000;
}
section.customerbenefits-Section {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: solid 1px #cfcfcf;
}
.contact-pg-section .content-area.clearfix {
    max-width: 1250px;
    margin: 0 auto;
    width: 100%;
}
.service-section .right-col {
    padding: 110px 120px 40px 60px;
}
.service-section {
    background-color: #262b3e;
    border-bottom: solid 1px #ccc;
    padding: 50px 0 20px;
}
.service-section .right-col-new .section-title-s2 h2 {
    color: #000;
}
.service-section .right-col-new .section-title-s2 p {
    color: #000;
    margin-bottom: 20px;
}
.service-section .right-col-new .blockquote {
    margin-bottom: 20px;
}
.service-section .service-grids p {
    color: #2a2a2a;
    margin: 0;
}
.service-section .service-grids h3 a {
    color: #000;
    font-size: 22px;
}
.service-section .service-grids {
    padding-left: 0;
}
.service-section .service-grids .grid {
    padding-left: 60px;
}
.history-section .details {
    width: 335px;
    float: right;
    border: 2px solid #ebebeb;
    padding: 30px;
    border-radius: 5px;
    background-color: #ebebeb;
}
.site-footer .social-newsletter-area {
    background-color: #f5f5f5;
    padding: 35px 0 35px;
    border-top: solid 1px #ddd;
}
.about-service-section .header h2 {
    color: #fff;
}
section.service-section.new-service-section {
    background-color: #fff;
}
.advancedSearchoption-section .header {
    padding-top: 0;
}

@media (max-width: 991px) {
    .header-style-1 .navigation, .header-style-2 .navigation, .header-style-3 .navigation {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

.header-style-1 .topbar, .header-style-2 .topbar, .header-style-3 .topbar {
    padding: 12px 0;
}

/* Navigation styles */
nav {
    background-color: #ffffff;
    position: relative;
    padding: 6px 0;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    margin: 0;
}
.navbar .logoBrand {
    width: 10%;
}
.navbar .siteNavigation {
    width: 70%;
    display: flex;
    justify-content: center;
}
.navbar .home-header-callNow{
    width: 20%;
    display: flex;
    justify-content: flex-end;
}


.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

/* Main menu styles */
.menu {
    display: flex;
    list-style: none;
}

.menu-item {
    position: relative;
    margin-left: 1.5rem;
}
.menu-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    display: block;
    transition: color 0.3s;
}
.menu-link:focus{
  text-decoration: none;
  color: #000000;
}
.menu-link:hover {
    color: var(--primary-color);
}

/* Dropdown styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.menu-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    list-style: none;
}

.dropdown-link {
    color: #333;
    text-decoration: none;
    padding: 10px 1rem;
    display: block;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #3498db;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: #000000;
    font-size: 2rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .menu {
        position: absolute;
        top: 80%;
        left: 0;
        right: 0;
        background-color: #2c3e50;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        z-index: 1000;
    }

    .menu.active {
        max-height: 600px;
    }

    .menu-item {
        margin: 0;
        width: 100%;
    }

    .menu-link {
        padding: 0.7rem 1.5rem;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background-color: #34495e;
        transform: translateY(0);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0;
    }

    .dropdown-link {
        color: #ecf0f1;
        padding-left: 3rem;
    }

    .dropdown-link:hover {
        background-color: #2c3e50;
        color: #3498db;
    }

    .menu-toggle {
        display: block;
    }

    .menu-item.active .dropdown {
        max-height: 500px;
    }

    .menu-item.has-dropdown .menu-link::after {
        content: '▼';
        display: inline-block;
        margin-left: 0.5rem;
        font-size: 0.7em;
        transition: transform 0.3s;
    }

    .menu-item.active .menu-link::after {
        transform: rotate(180deg);
    }
}
.navbar a.logo img {
    width: 130px;
    margin-top: -77px;
}
.headerinformation .contact-info{
    padding-left: 150px;
}

.open-sidebar-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.3s;
    position: fixed;
    top: 180px;
    right: -2px;
    z-index: 999;
}

.open-sidebar-btn:hover {
    background-color: #000000;
}

.sidebar {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100%;
    background-color: transparent;
    box-shadow: none;
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 0;
    box-sizing: border-box;
}

.sidebar.open {
    right: 13px;
}

.sidebar-header {
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    position: absolute;
    right: 0px;
    top: -30px;
    background-color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    display: block;
}

.cancel-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #555;
    padding: 0;
    transition: color 0.3s;
}

.cancel-btn:hover {
    color: #000;
}

.sidebar-content {
    color: var(--secondary-color);
    margin-top: 138px;
    margin-right: 40px;
    position: relative;
}
.blog-section .blog-grids .grid, .blog-section-s2 .blog-grids .grid {
    margin: 0 15px 0;
}

a.whatsapplink {
    position: relative;
    top: 4px;
}
.home-header-callNow a {
    color: #000;
    background-color: transparent;
    padding: 10px 15px;
    display: inline-block;
    font-size: 14px;
}
.home-new-feature-section.features-section h3.feature-title {
    margin: 0;
}

@media screen and (min-width: 992px) {
    /* .header-style-1, .header-style-2, .header-style-3 {
        position: relative;
    } */
}

@media (max-width:767px) {
  .new-feature-section .feature-grid {
    min-height: auto;
  }
  .hero-style-1 {
    height: calc(70vh - 0px);
  }
  .slide-inner .row {
    display: block;
  }
  .hero-style-1 .slide-title h2 {
    font-size: 2rem;
  }
  .law-icons img {
    width: 200px;
    margin: 0 auto;
    display: block;
  }
  .lawyerFormsSections .container .row {
    display: block;
  }
  .history-section .details {
      width: 100%;
      float: none;
  }
  .history-section .grid-s2 .details {
    float: none;
  }
  .features-section .feature-icon {
    width: 50px;
    height: 50px;
    margin-left: 15px;
    margin-bottom: 30px;
  }
  .feature-list {
    min-height: auto;
  }
  .products-section {
    padding: 50px 0;
  }
  .customCheckbox-Flex {
    display: block;
    gap: 20px;
  }
  .customCheckbox {
    margin-bottom: 15px;
  }
  .contact-section .contact-info-col, .contact-section-s2 .contact-info-col, .contact-section-s3 .contact-info-col{
    width: 100%;
    float: left;
    padding-top: 0;
    padding-left: 0;
  }
  .site-header #navbar > ul .menu-item-has-children > a {
      position: relative;
      pointer-events: auto;
  }
  .headerinformation .contact-info {
    padding-left: 0;
  }
  .navbar .logoBrand {
    width: 30%;
  }
  .navbar a.logo img {
      width: 130px;
      margin-top: 0;
      position: relative;
      z-index: 1000;
  }
  .menu {
      background-color: transparent;
      margin-top: 0;
      box-shadow: none;
      padding-top: 3px;
  }
  .menu-link {
    background-color: #fff;
  }
  .open-sidebar-btn {
    top: 295px;
  }
  .sidebar-header {
    top: 5px;
  }
  .lawyer-form-panel {
    padding: 40px 24px 25px;
  }
  .sidebar {
    width: 100%;
    height: 100%;
  }
  .sidebar-content {
    margin-right: 0;
  }
  .site-footer .social-newsletter-area .social-newsletter-content > div:last-child {
    width: 100%;
    float: none;
    text-align: center;
  }
  .sidebar.open {
    right: 0;
  }
  .navbar .siteNavigation {
    justify-content: end;
  }
  .navbar .home-header-callNow {
    display: none;
  }
}




