* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff; 
}

h1, h2, h3 {
  font-weight: 700;
}

h1 {
  font-size: 40px;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff; 
}

.button {
  font-size: 16px;
  font-weight: 600;
  background-color: #000; 
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  padding: 25px 30px;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo img {
  height: 25px;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  display: block;
}

/* Show hamburger and stack menu in mobile */
@media (max-width: 768px) {
 .hamburger {
    display: flex;
    position: static; 
    margin-left: auto; 
    align-items: center;
  }

  .nav-links-wrapper {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
    position: absolute;
    top: 80px; 
    right: 0;
    left: 0;
    z-index: 999;
    transition: all 0.3s ease;
  }

  .nav-links-wrapper.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    z-index: 999;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .sign-in-btn {
    margin-top: 20px;
  }

  .navbar {
    padding: 15px 20px;
  }
}

@media (min-width: 769px) {
  .nav-links-wrapper {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    position: static;
    background: none;
    padding: 0;
  }
}

.nav-links-wrapper {
  display: none;
  align-items: center;
  gap: 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: red;
}

.sign-in-btn {
  padding: 10px 25px;
  background-color: white;
  color: black;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sign-in-btn:hover {
  background-color: #007bff;
  color: white;
}

.solution-dropdown {
  position: relative;
  z-index: 1000; 
}

#solutionDropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%; 
  transform: translateX(-50%);
  background: white;
  width: 600px;
  max-width: 90vw;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  border: 1px solid #e5e5e5; 
}

#solutionDropdown.active {
  display: block;
  position: static;
  transform: none;
  background: white;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  box-shadow: none;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.solution-dropdown:hover #solutionDropdown {
  display: block;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-item {
  cursor: pointer;
  pointer-events: auto;
  display: block;
  text-decoration: none;
  background: transparent;
  border-radius: 8px;
  padding: 8px;
  transition: background 0.3s ease;
  color: inherit;
}

.feature-item:hover {
  background: #ecf5ff;
}

.feature-item h4,
.feature-item p {
  color: inherit;
}

.feature-item img {
  width: 32px;
  height: 32px;
}

.feature-item h4 {
  font-size: 14px;
  color: #3f3f3f;
  margin: 8px 0 4px;
}

.feature-item p {
  font-size: 12px;
  color: #555;
  margin: 0;
}

.feature-icon {
  width: 40px;
  height: 40px;
  fill: #0160c6; 
}

.hero, .banner, .main-content {
  position: relative;
  z-index: 1;
}

/* Mobile layout */
@media (max-width: 768px) {
  #solutionDropdown {
    display: none; 
    position: static;
    transform: none;
    background: white;
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border-radius: 0;        
    box-shadow: none;        
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
  }

  #solutionDropdown.active {
    display: block;
    position: static;
    transform: none;
    background: white;
    width: 100%;
    padding: 10px 15px;
    border-radius: 0; 
    box-shadow: none; 
  }
}

@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop hover behavior */
@media (min-width: 769px) {
  .solution-dropdown:hover #solutionDropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 780px;
    max-width: 90vw;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }
}

/* Adjust feature grid for smaller devices */
@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-item h4 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 13px;
  }

  /* Navbar adjustments for better spacing */
  .navbar {
    padding: 12px 16px;
  }

  .logo img {
    height: 22px;
  }

  .hamburger span {
    width: 22px;
  }

  .sign-in-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  /* Smaller logo and tighter spacing for very small devices */
  .logo img {
    height: 20px;
  }

  .nav-links {
    gap: 15px;
  }

  .feature-item img {
    width: 28px;
    height: 28px;
  }

  .feature-item h4 {
    font-size: 14px;
  }

  .feature-item p {
    font-size: 12px;
  }

  /* Dropdown padding reduction */
  #solutionDropdown,
  #solutionDropdown.active {
    padding: 10px;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  padding-top: 140px;
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)); 
  z-index: 2;
  display: flex;
  align-items: center;
  padding-left: 5%;
}

.hero-content {
  max-width: 1000px;
  z-index: 3;
}

.hero-content h1 {
  font-size: 55px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 150px;
  margin-left: 40px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 70px;
  margin-left: 40px;
  margin-top: 10px;
}

.cta-button {
  padding: 20px 32px;
  background-color: #ff3d3d;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  margin-left: 40px;
  margin-top: -30px;
}

.cta-button:hover {
  background-color: #e60000;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 4;
  padding: 0;
  line-height: 1;
}

.nav-arrow.left {
  left: 20px;
}

.nav-arrow.right {
  right: 20px;
}

.hero-section {
  background-color: #ddeafc;
  padding: 80px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 500px;
  padding-right: 30px;
}

.hero-subtitle {
  color: #0060e6;
  font-weight: 600;
  font-size: 14px;
}

.hero-text h1 {
  font-size: 36px;
  margin: 30px 0;
  color: #4f4f4f;
  margin-top: 20px;
  font-weight: 700;
}

.hero-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 50px;
  margin-bottom: 50px;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;        
}

.store-badge img {
  width: 160px;               
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.store-badge1 img {
  width: 160px;               
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.store-badge img:hover,
.store-badge1 img:hover {
  transform: scale(1.05);
}

.hero-images {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.hero-images img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .hero-text {
    padding-right: 15px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .hero-images img {
    max-width: 400px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
  }

  .hero-text h1 {
    font-size: 26px;
    margin-top: 15px;
  }

  .hero-text p {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 25px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-images {
    margin-top: 20px;
  }

  .hero-images img {
    max-width: 300px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-section {
    padding: 50px 15px;
  }

  .hero-text h1 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.5;
  }

  .store-badge img,
  .store-badge1 img {
    width: 140px;
  }

  .hero-images img {
    max-width: 260px;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 42px;
    margin-left: 20px;
    margin-top: 100px;
  }

  .hero-content p {
    font-size: 18px;
    margin-left: 20px;
  }

  .cta-button {
    padding: 16px 28px;
    font-size: 14px;
    margin-left: 20px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    height: auto;
    min-height: 100vh;
    text-align: center;
    justify-content: center;
  }

  .overlay {
    padding-left: 0;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 32px;
    margin: 80px 0 10px 0;
  }

  .hero-content p {
    font-size: 16px;
    margin: 0 auto 30px auto;
  }

  .cta-button {
    display: inline-block;
    padding: 14px 24px;
    font-size: 14px;
    margin: 0 auto;
  }

  .nav-arrow {
    font-size: 36px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
    margin-top: 60px;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-button {
    padding: 12px 20px;
    font-size: 13px;
  }

  .nav-arrow {
    font-size: 28px;
  }
}

/* Features Section */
.features-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #ffffff;
}

.icon-circles {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 20px 0;
}

.circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  text-align: center;
  text-decoration: none;
}

.circle {
  width: 90px;
  height: 90px;
  background-color: #f5fcff;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.circle img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.section-header {
  margin-bottom: 40px;
}

.section-header .subtitle {
  color: #0060e6;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-header .title {
  font-size: 36px;
  font-weight: 700;
  color: #4f4f4f;
  line-height: 1.4;
}

.feature-label {
  font-size: 16px;
  font-weight: 600;
  color: #606060;
  margin-top: 15px;
  word-break: break-word;
}

/* Hover states */
.circle-item:hover .circle {
  transform: scale(1.05);
  background-color: #f0f6ff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.circle-item:hover .circle img {
  filter: brightness(0.4);
}

/* Active state */
.circle-item.active .circle {
  background-color: #ef2b2d;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.circle-item.active .circle img {
  filter: brightness(0) invert(1);
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablets */
@media (max-width: 992px) {
  .section-header .title {
    font-size: 28px;
  }
  .circle-item {
    width: 100px;
  }
  .circle {
    width: 75px;
    height: 75px;
  }
  .circle img {
    width: 38px;
    height: 38px;
  }
  .feature-label {
    font-size: 14px;
    margin-top: 12px;
  }
}

/* Phones */
@media (max-width: 576px) {
  .features-section {
    padding: 50px 15px;
  }
  .section-header .subtitle {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .section-header .title {
    font-size: 22px;
    line-height: 1.3;
  }
  .icon-circles {
    gap: 20px;
  }
  .circle-item {
    width: 80px;
  }
  .circle {
    width: 60px;
    height: 60px;
  }
  .circle img {
    width: 30px;
    height: 30px;
  }
  .feature-label {
    font-size: 12px;
    margin-top: 10px;
  }
}

/* Start: How Solution Works Section */
.solution-steps {
  padding: 100px 20px 60px 20px;
  background-color: #29579d;
  text-align: center;
  margin-top: 60px;
  padding: 120px 20px;
}

.solution-steps .container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 50px;
}

.solution-steps .section-header {
  text-align: center;
  margin-bottom: 80px;
  width: 100%;
}

.solution-steps .subtitle {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}

section.solution-steps .container .section-header .subtitle {
  color: #ededed;
}

.solution-steps .title {
  font-size: 36px;
  font-weight: 700;
  color: #f6f6f6;
}

.steps-grid {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  overflow-x: auto; 
}

.step-card {
  background: transparent;
  position: relative;
  overflow: hidden;
  border: 0.5px solid rgb(194, 194, 194);
  border-radius: 25px;
  padding: 40px 10px;
  width: 300px; 
  height: 300px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  transition: 0.3s ease;
}

.step-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-icon i {
  font-size: 20px;
  color: #fff;
  border: 1.5px solid #ffffff;
  border-radius: 25px;
  padding: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  z-index: 0;
  transition: 0.3s ease;
}

.step-card:hover::before {
  background: rgba(255, 255, 255, 0.12); 
}

.step-card * {
  position: relative;
  z-index: 1; 
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.step-card p {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .solution-steps .title {
    font-size: 30px;
  }

  .step-card {
    width: 260px;
    height: auto;
    padding: 30px 15px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-card p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .steps-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    overflow-x: unset; /* remove horizontal scroll for mobile */
  }

  .step-card {
    width: 45%;
    min-width: 220px;
    height: auto;
  }

  .solution-steps .title {
    font-size: 26px;
  }

  .solution-steps .subtitle {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .step-card {
    width: 100%;
    height: auto;
  }

  .step-title {
    font-size: 16px;
  }

  .step-card p {
    font-size: 14px;
  }

  .solution-steps {
    padding: 60px 15px;
  }

  .solution-steps .title {
    font-size: 22px;
  }
}

/* Business Size Section 
.hr-solutions {
  padding: 60px 20px;
  background-color: #e9f4ff;
  font-family: 'Inter', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  font-size: 14px;
  color: #0060e6;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header .time {
  font-size: 40px;
  font-weight: 700;
  color: #4f4f4f;
  margin-top: 10px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
} */

/* INDIVIDUAL CARD 
.solution-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 50px;
  max-width: 600px;
  margin: 20px auto;
}

.card-horizontal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.solution-card:hover {
  background-color: #0e63da;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.solution-card:hover h3,
.solution-card:hover p,
.solution-card:hover span,
.solution-card:hover a {
  color: #ffffff;
}

.card-circle-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.card-content {
  flex: 1;
}

.solution-range {
  font-size: 14px;
  color: #007bff; 
  margin: 0;
  font-weight: bold;
}

.card-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #5b5b5b;
  margin-bottom: 20px;
  margin-top: 15px;
  line-height: 1.5;
}

.card-content a {
  font-size: 12px;
  color: #007bff;
  font-weight: bold;
}

.card-heading {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0;
  color: #111827;
} */

/* Info-Grid Section */
.info-section {
  padding: 100px 20px;
  background: #fff;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.info-left {
  flex: 1;
  min-width: 300px;
}

.video-wrapper {
  position: relative;
}

.video-img {
  width: 100%;
  border-radius: 12px;
}

.info-right {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 300px;
}

.top-boxes {
  display: flex;
  gap: 20px;
  align-items: stretch;
  height: 240px; 
  margin-top: 70px;
  margin-bottom: 10px;
}

.info-item {
  padding: 25px;
  border-radius: 12px;
  box-sizing: border-box;
}

.red-box {
  background-color: #ed3426;
  color: white;
  flex: 1;
  text-align: center;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.red-box h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.red-box a {
  display: inline-block;
  margin-top: 50px;
  color: white;
  text-decoration: underline;
  font-weight: bold;
  font-size: 13px;
}

.image-box {
  flex: 1.2;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  padding: 0; 
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.newsletter-box {
  background: #0155d3;
  color: white;
  text-align: center;
  padding: 50px;
  margin-top: -10px;
}

.newsletter-box h3 {
  margin-bottom: 30px;
  font-size: 18px;
  text-align: left;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -60px;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 25px;
  min-width: 200px;
  width: 60%;
}

.newsletter-form button {
  background: #f44336;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: #000000;
}

/* Base styles remain as you provided */

/* Responsive styles */
@media (max-width: 1024px) {
  .top-boxes {
    height: auto;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .red-box h3 {
    font-size: 26px;
  }

  .newsletter-box h3 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    gap: 30px;
  }

  .top-boxes {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .image-box img {
    height: auto;
  }

  .newsletter-box {
    padding: 30px 20px;
    margin-top: 0;
  }

  .newsletter-box h3 {
    text-align: center;
    font-size: 16px;
  }

  .newsletter-form {
    margin-left: 0;
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .red-box h3 {
    font-size: 22px;
  }

  .newsletter-box h3 {
    font-size: 15px;
  }

  .newsletter-box {
    padding: 25px 15px;
  }

  .info-section {
    padding: 60px 15px;
  }
}

/* Hero Section */
.hero-section {
  background-color: #ddeafc;
  padding: 20px 20px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 500px;
  padding-right: 30px;
}

.hero-subtitle {
  color: #0060e6;
  font-weight: 600;
  font-size: 14px;
}

.hero-text h1 {
  font-size: 36px;
  margin: 30px 0 20px;
  color: #4f4f4f;
  font-weight: 700;
}

.hero-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 30px 0 40px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.store-badge img,
.store-badge1 img {
  width: 160px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.store-badge img:hover,
.store-badge1 img:hover {
  transform: scale(1.05);
}

.hero-images {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.hero-images img {
  max-width: 100%;
  height: auto;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .hero-text {
    padding-right: 15px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 15px;
    margin: 20px 0 30px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    margin-bottom: 0;
  }

  .hero-text {
    padding-right: 0;
  }

  .hero-text h1 {
    font-size: 26px;
    margin-top: 15px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-text p { margin-bottom: 5px; }
  .hero-images { margin-top: 5px; }

  .hero-images img {
    max-width: 300px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-section {
    padding: 50px 15px;
  }

  .hero-text h1 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.5;
  }

  .store-badge img,
  .store-badge1 img {
    width: 140px;
  }
}

/* Blog Section 
.blog-section {
  padding: 80px 20px;
  background-color: #f9fbff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  max-width: 1500px;
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  text-align: center;
  margin-bottom: 100px;
  margin-top: 10px;
  max-width: 2000px;
  margin-right: -100px;
}

.section-title h5 {
  color: #0060e6;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #4f4f4f;
  margin-top: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  width: 100%;
  max-width: 1000px;
  margin-top: -30px;
}

.blog-card {
  background-color: #eaf1ff;
  padding: 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 330px;
}

.blog-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background-color: #0e63da;
  color: #ffffff;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.blog-card:hover .meta,
.blog-card:hover .title,
.blog-card:hover .read-more {
  color: #ffffff;
}

.blog-card .meta {
  font-size: 14px;
  color: #3371e3;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.blog-card .title {
  font-size: 16px;
  font-weight: 600;
  color: #606060;
  margin-bottom: 30px;
  text-align: center;
}

.blog-card .read-more {
  font-size: 12px;
  color: #0056d2;
  font-weight: bold;
  text-align: center;
  display: block;
}

.blog-card .read-more:hover {
  text-decoration: underline;
}

.image-card {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  margin-top: -20px;
}

.image-card img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  height: 220px;
}

.image-card img:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;
} */

.consultation-prompt-section {
  background-color: #edf3fb;
  padding: 40px 30px;
}

.consultation-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px; /* space between text and image on wrap */
}

.consultation-text {
  flex: 1;
  max-width: 600px;
}

.consultation-subtitle {
  color: #0060e6;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.consultation-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #4f4f4f;
  margin-bottom: 40px;
}

.consultation-btn {
  background-color: #ef2b2d;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.consultation-btn:hover {
  background-color: #d62023;
}

.consultation-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.consultation-image img {
  max-width: 100%;
  height: auto;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .consultation-text h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .consultation-btn {
    padding: 12px 25px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .consultation-container {
    flex-direction: column;
    text-align: center;
  }

  .consultation-text {
    max-width: 100%;
  }

  .consultation-text h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .consultation-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .consultation-image {
    margin-top: 20px;
  }

  .consultation-image img {
    max-width: 80%;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .consultation-text h2 {
    font-size: 22px;
  }

  .consultation-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .consultation-image img {
    max-width: 100%;
  }
}

.site-footer {
    background-color: #0c213b;
    color: rgb(209, 224, 251);
    padding: 50px 20px 30px;
    font-family: Arial, sans-serif;
}

/* Layout */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

/* Left */
.footer-left {
    flex: 1.5;
    min-width: 220px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Social */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

/* Middle */
.footer-middle {
    flex: 1.5;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    margin-left: 100px;
}

.footer-middle h4,
.footer-right h4 {
    color: #e9f9ff;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-middle ul,
.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-middle li,
.footer-right li {
    font-size: 14px;
    margin-bottom: 10px;
}

/* Link Styling */
.footer-middle li a,
.footer-right li a,
.footer-links-bottom a {
    color: #d6e5ff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-middle li a:hover,
.footer-right li a:hover,
.footer-links-bottom a:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* Right */
.footer-right {
    flex: 1;
    min-width: 200px;
    margin-left: 120px;
}

.company-details li {
    line-height: 1.8;
}

/* Divider */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    text-align: center;
}

.footer-links-bottom a {
    margin-left: 20px;
    font-size: 13px;
}

.footer-copy {
    color: #d6e5ff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    margin-left: -10px;
}

.footer-copy:hover {
    text-decoration: underline;
    color: #ffffff;
}

.footer-links-bottom a:first-child {
    margin-left: 0;
}

/* Responsive Footer Improvements */
@media (max-width: 1024px) {
  .footer-middle {
    margin-left: 0;
    gap: 40px;
  }
  .footer-right {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    margin-left: 0;
  }

  .footer-middle {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-links-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-links-bottom a {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    width: 130px;
  }

  .description {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-middle h4,
  .footer-right h4 {
    font-size: 16px;
  }

  .footer-middle li,
  .footer-right li {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 14px;
  }
}

