body {
  font-family: "Lexend", sans-serif;
  line-height: 1.6;
  /* color: #333; */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
/* Reset some default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */
.header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-inner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 60px;
}

/* Right section (nav + button + search) */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Navigation */
.nav {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: #494949;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #333;
}

/* Free Trial Button */
.header-btn {
  padding: 10px 20px;
  background-color: #f80035;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1px;
  text-shadow: rgba(0, 0, 0, 0.3) 0px 0px 0px;
  transform: scale(1);
  transition: all 0.3s ease;
}

.header-btn:hover {
  color: #170644;
}

/* Search Icon */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.search-icon {
  font-size: 20px;
}

.search-input {
  display: none;
  position: absolute;
  top: 30px;
  right: 0;
  background: white;
  padding: 5px;
  border-radius: 4px;
}

.search-input input {
  padding: 6px;
  width: 180px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-container.active .search-input {
  display: block;
}

/* Hide menu-toggle on large screens */
.menu-toggle {
  display: none;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .nav {
    gap: 20px;
  }

  .logo img {
    height: 50px;
  }

  .header-btn {
    padding: 8px 16px;
    font-size: 11px;
  }
}

/* ✅ Mobile (max-width: 768px) - Combined & Cleaned */
@media (max-width: 768px) {
  .header-inner-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .header-right {
    position: fixed;
    top: 70px;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 20px;
    width: 100%;
    max-width: 250px;
    height: 100vh;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .header-right.active {
    transform: translateX(0);
  }

  .nav {
    flex-direction: column;
    gap: 20px;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
    color: #494949;
    z-index: 1001;
  }

  .header-btn {
    width: 100%;
    text-align: center;
  }

  .search-container {
    justify-content: flex-start;
    width: 100%;
  }

  .search-input {
    position: relative;
    width: 100%;
  }

  .search-input input {
    width: 100%;
  }
}


/* Hero Section Start */
.hero-sec {
  background: #ffffff;
  padding: 100px 0 50px 0;
  text-align: center;
}

.hero-sec h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 50px;
  line-height: 1.3em;
  color: #170644;
}

.hero-sec p {
  font-size: 18px;
  color: #494949;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  padding: 20px 30px;
  background-color: #170644;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1px;
  word-spacing: 0px;
  text-shadow: rgba(0, 0, 0, 0.3) 0px 0px 0px;
  transform: scale(1);
  transition: all 0.3s ease; /* snappier easing */
}

.hero-btn:hover {
  color: #f80035;
  transform: scale(1.05);
}

/* Hero Section End */

/* domain age */
.domain-age-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  padding: 20px;
  margin: 60px auto 10px auto;
  max-width: 750px;
  background-color: #edfaff;
  /* border: none; */
  border-radius: 5px;
  font-size: 16px;
  color: #000;
  text-align: center;
  border: 1px solid #6ec1e4;
  text-transform: capitalize;
}

.domain-age-container i.fa-bullhorn {
  color: #f80035;
  font-size: 20px;
  flex-shrink: 0;
}

.domain-age-container a {
  font-weight: 600;
  font-size: 12px;
}

.verify-box {
  padding: 10px 15px;
  background-color: #f80035;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  text-shadow: rgba(0, 0, 0, 0.3) 0px 0px 0px;
  transform: scale(1);
  transition: all 0.3s ease;
  color: #ffffff;
}

.verify-box:hover {
  color: #170644;
  transition: all 0.3s ease;
}
/* domain age */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-sec h1 {
    font-size: 3rem;
  }

  .hero-sec p {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .hero-btn {
    padding: 16px 24px;
    font-size: 11px;
  }

  .domain-age-container {
    gap: 40px;
    padding: 15px;
    font-size: 14px;
  }

  .verify-box {
    padding: 8px 12px;
    font-size: 11px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .hero-sec {
    padding: 60px 20px 30px 20px;
  }

  .hero-sec h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-sec p {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .hero-btn {
    padding: 14px 20px;
    font-size: 11px;
  }

  .domain-age-container {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    text-align: center;
    font-size: 14px;
  }

  .verify-box {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* Curve SVG Section Start */

/* .svg-container {
  position: relative;
  width: 100%;
  height: 50px;
  background: #f4f4f4;
  border: 0px solid #000;
  overflow: hidden;
}

.curve {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 45px;
  pointer-events: none;
} */

/* Curve SVG Section Start */

.svg-container {
  position: relative;
  width: 100%;
  height: 50px;
  background: #f4f4f4;
  overflow: hidden;
}

.curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .svg-container {
    height: 35px;
  }

  .curve {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .svg-container {
    height: 25px;
  }

  .curve {
    height: 25px;
  }
}

/* Curve SVG Section End */

/* Curve SVG Section End */

/* Testimonials Section Start */
.testimonials {
  background: #f3f4f6;
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header-1 {
  text-align: center;
  margin-bottom: 60px;
  margin-top: -50px;
}

.section-header-2 {
  text-align: center;
  margin-bottom: 30px;
}

.badge {
  text-align: center;
  color: #f80035;
  font-family: "Lexend", Sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 2px;
  word-spacing: 2px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 30px;
  margin-top: 20px;
  color: #170644;
  font-weight: 600;
  line-height: 1.1666em;
}

.section-description {
  text-align: center;
  color: #494949;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.3px;
  max-width: 800px;
  margin: 0 auto 20px;
}

.client-section-description {
  text-align: center;
  color: #494949;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.3px;
  max-width: 800px;
  margin: 0 auto 20px;
  padding-top: 60px;
}

/* v0 logo Start */

.logo-carousel-container {
  margin-top: -30px;
}
/* Desktop Carousel */
.desktop-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 0px 0px 0px;
  /* background-color: var(--e-global-color-14ccfb8f); */
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #dbdbdb;
  border-radius: 5px 5px 5px 5px;
}

.carousel-container {
  position: relative;
  width: 100%;
  background-color: #ffffff;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 1rem;
}

.carousel-item {
  flex: 0 0 calc(25% - 0.75rem);
  min-width: 0;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2/1;
  padding: 1.5rem;
  background: transparent;
  border-radius: 0.5rem;
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* opacity: 0.6;
  filter: grayscale(100%); */
  transition: all 0.3s ease;
}

/* .logo-img:hover {
  opacity: 1;
  filter: grayscale(0%);
} */

.carousel-btn {
  background: white;
  border: 0px solid #e5e7eb;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #170644;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: #f3f4f6;
  color: #374151;
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #170644;
}

/* Mobile Carousel */
.mobile-carousel {
  display: none;
  margin-top: 2rem;
}

.auto-scroll-container {
  overflow: hidden;
  width: 100%;
}

.auto-scroll-track {
  display: flex;
  gap: 2rem;
  animation: scroll 20s linear infinite;
}

.auto-scroll-item {
  flex-shrink: 0;
  width: 8rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auto-scroll-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(33.333% - 0.667rem);
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 15px !important;
  }

  .desktop-carousel {
    display: none;
  }

  .mobile-carousel {
    display: block;
  }

  .carousel-item {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .logo-carousel-section {
    padding: 1rem 0 1rem;
  }

  .text-center {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.75rem;
  }

  .container {
    padding: 0 0.75rem;
  }
}

/* v0 logo end */

.testimonials-container {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 100px;
}

.testimonial-wrapper {
  display: flex;
  flex-direction: column;
}

.testimonial-card {
  background: #f3f3f3;
  border: 1px solid #bbb;
  padding: 20px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 30px;
  width: 15px;
  height: 15px;
  background: #f3f3f3;
  border-left: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  transform: rotate(-45deg);
}

.testimonial-text {
  font-style: italic;
  color: #54595f;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 500;
}

.profile-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
  margin-left: 15px;
}

.profile-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.profile-name {
  font-weight: 600;
  color: #170644;
  font-size: 16px;
  margin-bottom: 2px;
}

.profile-title {
  color: #f80035;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 25px;
  }
}

.client-anouncement {
  background-color: #a9d3a747;
  border: none;
  border-radius: 5px;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1020px;
  margin: 30px auto 20px auto;
  color: #000;
  font-size: 16px;
  text-align: center;
}

.client-anouncement i.fa-bullhorn {
  color: #f80035;
  font-size: 20px;
  flex-shrink: 0;
}

.client-anouncement p {
  margin: 0;
  flex: 1;
  text-align: center;
  font-weight: 300;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.4rem;
  }

  .section-description,
  .client-section-description {
    font-size: 16px;
    line-height: 26px;
    padding: 0 20px;
  }

  .testimonial-card {
    padding: 22px;
  }

  .client-anouncement {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    font-size: 15px;
  }

  .profile-section {
    flex-direction: row;
    align-items: center;
    margin-left: 0;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .testimonials {
    background: #f3f4f6;
    padding: 10px 0;
  }

  .section-description,
  .client-section-description {
    font-size: 15px;
    padding: 0 15px;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
    margin-bottom: 50px;
  }

  .testimonial-card {
    padding: 20px;
    margin-bottom: 10px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .profile-section {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
  }

  .profile-name {
    font-size: 14px;
  }

  .profile-title {
    font-size: 11px;
  }

  .client-anouncement {
    flex-direction: column;
    font-size: 14px;
    padding: 15px;
    text-align: center;
    gap: 20px;
  }

  .client-anouncement i.fa-bullhorn {
    font-size: 18px;
  }

  .client-anouncement p {
    font-size: 14px;
    text-align: center;
  }
}

/* Testimonials Section End */

.dashed-line {
  border-top: 1px dashed #494949;
  max-width: 1050px;
  margin: auto;
  margin-bottom: -40px;
}

@media (max-width: 768px) {
  .dashed-line {
    border-top: 1px dashed #494949;
    max-width: 360px;
    margin: auto;
    margin-bottom: -40px;
  }
}

/* Numbers Section Start */

.numbers-sec {
  background-color: #f5f5f5;
  line-height: 1.6;
  color: #333;
}

.inner-numbers-sec {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.main-heading {
  font-size: 50px;
  font-weight: 600;
  color: #170644;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 18px;
  color: #000000;
  max-width: 990px;
  margin: 20px auto 40px auto;
  line-height: 1.7;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: left;
  width: 100%;
  max-width: 1075px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 4rem;
  margin-left: auto;
}

.point {
  display: flex;
  flex-direction: column;
}

.point-number {
  font-size: 55px;
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.point:nth-child(1) .point-number {
  color: #8b5cf6;
}

.point:nth-child(2) .point-number {
  color: #06b6d4;
}

.point:nth-child(3) .point-number {
  color: #84cc16;
}

.point:nth-child(4) .point-number {
  color: #ef4444;
}

.point:nth-child(5) .point-number {
  color: #22c55e;
}

.point-title {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75rem;
}

.point-description {
  font-size: 14px;
  color: #444444;
  line-height: 1.6;
  font-weight: 600;
}

.cta-button {
  background-color: #170644;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
  font-family: "Lexend", sans-serif;
  line-height: 25px;
  letter-spacing: 1px;
}

.cta-button:hover {
  color: #f80035;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 2.5rem;
  }

  .points-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .container {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 2rem;
  }

  .point-number {
    font-size: 3rem;
  }
}

/* Numbers Section End */

.bottom-svg {
  overflow: hidden;
}

.svg-shape-fill {
  fill: #f3f3f3;
}

.svg-shape-fill-2 {
  width: calc(200% + 1.3px);
  height: 10px;
  display: block;
  /* width: calc(100% + 1.3px); */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* Google-certificate Section Start */

.google-certificate {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top: 60px;
}

.certificate-card {
  background: #00b4f8;
  border-radius: 5px;
  padding: 10px;
  max-width: 780px;
  height: 318px;
  width: 100%;
  color: white;
  position: relative;
  display: grid;
  grid-template-columns: 10px 1fr 390px;
  gap: 20px;
  align-items: center;
  box-shadow: 0px 0px 41px 2px rgba(142.8, 142.8, 142.8, 0.5);
}

.card-icon svg {
  width: 40px;
  height: 40px;
  transform: translateY(-50px); /* Moves it 20px up */
}

.certificate-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  color: white;
  max-width: 288px;
  margin-left: 30px;
}

.certificate-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.certificate-card-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.certificate-card-image img {
  /* max-width: 100px; */
  /* height: auto; */
  width: 370px;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .certificate-card {
    grid-template-columns: 1fr 1fr;
    height: auto;
    padding: 20px;
    gap: 30px;
  }

  .certificate-card-image img {
    width: 100%;
    max-width: 100%;
  }

  .certificate-card p {
    font-size: 15px;
    margin-left: 0;
    max-width: 100%;
  }

  .card-icon svg {
    transform: translateY(-30px);
  }

  .certificate-icon {
    display: none;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .google-certificate {
    margin-top: 20px;
  }

  .certificate-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .card-icon svg {
    transform: translateY(0);
    margin-bottom: 10px;
  }

  .certificate-card-content {
    align-items: center;
  }

  .certificate-card p {
    font-size: 14px;
    max-width: 100%;
    margin: 0 auto;
  }

  .certificate-card-image img {
    width: 100%;
    max-width: 300px;
  }

  .certificate-icon {
    display: none;
  }
}

/* Google-certificate Section End */



/* Brand logo carousal start */
.brand-partner-section {
  background-color: #f3f3f3;
  padding: 40px 0;
  overflow: hidden;
  border-bottom: 1px solid #000000;
}

.brand-carousel-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

.brand-carousel {
  overflow: hidden;
  white-space: nowrap;
}

.brand-carousel:hover .brand-carousel-track {
  animation-play-state: paused;
}

.brand-logo {
  flex: 0 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  height: 120px;
  object-fit: contain;
  transition: filter 0.3s;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .brand-logo {
    padding: 0 20px;
  }

  .brand-logo img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    padding: 0 15px;
  }

  .brand-logo img {
    height: 50px;
  }
}

/* Brand logo carousal end */



/* Blog Section Start */
.blog {
  background: #ffffff;
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-image {
  background: #d1d5db;
}

.box-inside-blog-image {
  width: 100%; /* Makes image responsive to container */
  height: auto; /* Maintains aspect ratio */
  max-width: 800px; /* Optional: restricts large images */
  display: block;
  margin: 0 auto; /* Center image */
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}
.box-inside-blog-image:hover {
  transform: scale(1.10);
}

.blog-content {
  padding: 30px;
}

.blog-category {
  background: #f80035;
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  display: block; /* Make it a block so margin auto works */
  width: fit-content; /* Shrink to fit its content */
  margin: 0 auto 15px; /* Center horizontally and add bottom margin */
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #170644;
  text-align: center;
}

.blog-content a {
  text-decoration: none;
}

.blog-title:hover {
  color: #f80035;
}

@media (max-width: 768px) {
  .blog {
    padding: 0px 0;
  }
}

/* Blog Section End */

/* Footer Start */
.footer {
  background: #f3f3f3;
  padding: 60px 0 20px;
  /* margin-top: 80px; */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-content h4 {
  color: #f80035;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-description {
  color: #494949;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.facebook {
  background: #0078d2;
}
.twitter {
  background: #000000;
}
.youtube {
  background: #ff0000;
}
.linkedin {
  background: #0077b5;
}
.instagram {
  background: #f71a43;
}

.footer-section h4 {
  color: #e53e3e;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-our-company {
  padding-left: 25px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #170644;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.footer-links a:hover {
  color: #f80035;
}

.contact-info-footer {
  color: #444444;
  line-height: 1.8;
}

.contact-info-footer div {
  margin-bottom: 8px;
}

.copyright {
  text-align: center;
  color: #494949;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 2.5rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr; /* 2 columns for tablets */
    gap: 30px;
  }

  .footer-our-company {
    padding-left: 0;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
    margin-top: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr; /* Stack vertically for mobile */
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }

  .footer-description {
    max-width: 100%;
  }

  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-our-company {
    padding-left: 0;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .contact-info-footer {
    text-align: center;
  }
}

/* Footer End */
