/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif !important;
  line-height: 1.6;
}

.container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Banner Component */
.hero-banner {
  background-color: #0a1530;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-banner .container {
  width: 100%;
}

.hero-banner h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
}

.feature i {
  color: #ff4444;
}

.cta-button {
  background-color: #ff4444;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
  margin-bottom: 2rem;
}

.cta-button:hover {
  background-color: #ff2222;
  transform: scale(1.05);
}

.trust-text {
  font-size: 1.1rem;
  opacity: 0.9;
}

.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials__content {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
}

.testimonials__title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #1a1a1a;
  line-height: 1.2;
}

.testimonials__slider {
  position: relative;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials__wrapper {
  display: flex;
  gap: 24px;
  overflow-x: hidden;
}

.review-box {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 24px;
  min-width: 280px;
  flex: 1;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.review-stars .star {
  color: #00b67a;
  font-size: 20px;
}

.review-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.review-text {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.review-author {
  font-size: 14px;
  color: #666;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.slider-btn:hover {
  background: #f5f5f5;
}

.rating-summary {
  text-align: center;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.rating-text {
  color: #666;
  font-size: 15px;
}

.trustpilot-brand {
  display: flex;
  align-items: center;
  gap: 4px;
}

.trustpilot-star {
  color: #00b67a;
  font-size: 20px;
}

.trustpilot-text {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 15px;
}

.testimonials__description {
  max-width: 900px;
  margin: 60px auto 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: #666;
}

.review-box {
  position: relative;
}

.verified-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(0, 0, 0, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
}

.verified-badge span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.verified-badge span::before {
  content: "✓";
  font-size: 14px;
  color: #00b67a;
}

@media (max-width: 768px) {
  .testimonials__title {
    font-size: 32px;
    padding: 0 20px;
  }

  .testimonials__wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
  }

  .review-box {
    scroll-snap-align: start;
  }

  .slider-btn {
    display: none;
  }

  .testimonials__description {
    padding: 0 20px;
    font-size: 16px;
  }
}

/* pricing-section.css */
.pricing-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  position: relative;
  border-radius: 8px;
  padding: 30px;
  padding-top: 30%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-icon {
  position: absolute;
  width: 100px;
  top: -2%;
  left: 35%;
  z-index: 10;
}

.pricing-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pricing-title {
  font-size: 18px;
  font-weight: 700;
  color: #4f4f4f;
  text-align: center;
  margin-bottom: 15px;
}
.amount{
  color: #1422a5;
}
.pricing-amount {
  text-align: center;
  margin-bottom: 20px;
}

.price-label {
  color: #666;
  font-size: 16px;
  margin-bottom: 5px;
}

.price {
  font-size: 36px;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1;
}

.currency {
  font-size: 24px;
  vertical-align: top;
  margin-right: 2px;
  color: #1422a5;
}

.period {
  font-size: 16px;
  color: #666;
}

.tax-info {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
}

.pricing-description {
  text-align: center;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  min-height: 48px;
}

/* .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #e0e0e0;
  color: #666;
  font-size: 15px;
}

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

.feature-value {
  font-weight: 600;
  color: #1a1a1a;
  margin-right: 5px;
} */
.feature-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #999;
  position: relative;
}

/* The text container that holds both the value and feature text */
.feature-text {
  position: relative;
  padding-bottom: 3px; /* Space for the underline */
}

/* The single dashed underline */
.feature-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px dashed #999;
}

.feature-item img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.feature-value {
  font-weight: 500;
  color: #222;
  margin-right: 5px;
}

.order-button {
  display: block;
  background-color: #dc3545;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

.order-button:hover {
  background-color: #c82333;
}

/* Media Queries */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .pricing-card {
    padding: 20px;
  }

  .pricing-title {
    font-size: 20px;
  }

  .price {
    font-size: 32px;
  }

  .pricing-description {
    font-size: 14px;
  }
}

/* domain-search-section.css */
.domain-search {
  padding: 80px 0;
  text-align: center;
  background-color: #ffffff;
}

.domain-search__title {
  font-size: 48px;
  font-weight: 900;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.2;
}

.domain-search__form-wrapper {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.domain-search__input-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.domain-search__icon {
  padding: 0 15px;
  color: #666666;
  display: flex;
  align-items: center;
}

.domain-search__input {
  flex: 1;
  border: none;
  padding: 15px;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.domain-search__input::placeholder {
  color: #999999;
}

.domain-search__button {
  background-color: #dc3545;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.domain-search__button:hover {
  background-color: #c82333;
}

.domain-search__transfer {
  margin-bottom: 40px;
}

.domain-search__transfer-link {
  color: #dc3545;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease;
}

.domain-search__transfer-link:hover {
  color: #c82333;
}

.domain-search__description {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
  padding: 0 20px;
}

/* Media Queries */
@media (max-width: 768px) {
  .domain-search {
    padding: 60px 0;
  }

  .domain-search__title {
    font-size: 36px;
    padding: 0 20px;
  }

  .domain-search__input-group {
    flex-direction: column;
    padding: 10px;
  }

  .domain-search__input {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }

  .domain-search__button {
    width: 100%;
  }

  .domain-search__description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .domain-search__title {
    font-size: 28px;
  }
}

/* migration-section.css */
.migration {
  background-color: #0a1426;
  padding: 80px 0;
  color: #ffffff;
  overflow: hidden;
}

.migration__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.migration__text {
  flex: 1;
  max-width: 600px;
}

.migration__title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.2;
}

.migration__description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.migration__description p {
  margin-bottom: 20px;
}

.migration__description p:last-child {
  margin-bottom: 0;
}

.migration__contact {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.migration__phone,
.migration__chat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.migration__phone img,
.migration__chat img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.migration__phone:hover,
.migration__chat:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.migration__illustration {
  flex: 1;
  max-width: 500px;
}

.migration__illustration img {
  width: 100%;
  height: auto;
  display: block;
}

/* Media Queries */
@media (max-width: 1024px) {
  .migration__content {
    flex-direction: column;
    text-align: center;
  }

  .migration__contact {
    justify-content: center;
  }

  .migration__illustration {
    order: -1;
    margin-bottom: 40px;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .migration {
    padding: 60px 0;
  }

  .migration__title {
    font-size: 32px;
  }

  .migration__description {
    font-size: 16px;
    padding: 0 20px;
  }

  .migration__contact {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .migration__phone,
  .migration__chat {
    font-size: 16px;
  }

  .migration__illustration {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .migration__title {
    font-size: 28px;
    padding: 0 20px;
  }

  .migration__illustration {
    max-width: 280px;
  }
}
/* features-section.css */
.features-section {
  padding: 80px 0;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.trust-badge {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
  min-width: 320px;
}

.trust-badge__content {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 12px;
}

.trust-badge__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

/* Google specific styles */
.google-text {
  font-family: sans-serif;
  font-size: 24px;
  font-weight: 400;
  background: linear-gradient(to right, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 5px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 20px;
}

/* Google stars color */
.trust-badge:first-child .star {
  color: #ffa500;
}

/* Trustpilot specific styles */
.trustpilot-logo {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trustpilot-icon {
  color: #00b67a;
  font-size: 24px;
}

.trustpilot-text {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
}

.trustpilot-stars .star {
  color: #00b67a;
}

.trust-badge__text {
  font-size: 15px;
  color: #333333;
  line-height: 1.4;
}

/* Media Queries */
@media (max-width: 768px) {
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
  }

  .trust-badge {
    width: 100%;
    max-width: 400px;
  }
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
}

.feature-card__icon {
  margin: 0 auto 20px;
}

/* Add this new rule to control the image size */
.feature-card__icon img {
  width: 80px; /* Adjust this value to your desired size */
  height: auto; /* Maintain aspect ratio */
  max-width: 100%; /* Ensure it doesn't overflow its container */
}

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.feature-card__description {
  font-size: 16px;
  line-height: 1.5;
  color: #666666;
}

/* Media Queries */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 60px 0;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
  }

  .trust-badge {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .trust-badge__logo {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .trust-badge__text {
    font-size: 14px;
  }

  .feature-card__title {
    font-size: 18px;
  }

  .feature-card__description {
    font-size: 14px;
  }
}

.reviews-section {
  padding: 60px 5px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.reviews-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.reviewer {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #d4d4d4;
  font-size: 18px;
}

.star.active {
  color: #ffb33e;
}

.trustpilot-logo {
  height: 20px;
  width: auto;
}

.trustpilot-star {
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-trust-text {
  font-size: 15px;
}

.review-text {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-link {
  color: #dc3545;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.review-date {
  color: #666;
  font-size: 14px;
}

.reviews-action {
  text-align: center;
  margin-top: 40px;
}

.read-more-btn {
  border: 1px solid #dc3545;
  color: #dc3545;
  background: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #dc3545;
  color: #fff;
}

/* Media Queries */
@media (max-width: 1200px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-title {
    font-size: 28px;
  }
}

/* efficiency-section.css */
.efficiency {
  background-color: #0a1426;
  padding: 80px 0;
  color: #ffffff;
}

.efficiency__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.efficiency__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.efficiency__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.efficiency__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.efficiency-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.efficiency-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.08);
}

.efficiency-card__icon {
  margin-bottom: 10px;
}

.efficiency-card-icon-image {
  width: 40px;
  height: 40px;
}

.efficiency-card__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.efficiency-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Media Queries */
@media (max-width: 1024px) {
  .efficiency__grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .efficiency {
    padding: 60px 0;
  }

  .efficiency__header {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .efficiency__title {
    font-size: 32px;
  }

  .efficiency__subtitle {
    font-size: 16px;
  }

  .efficiency__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .efficiency-card {
    padding: 24px;
  }

  .efficiency-card__title {
    font-size: 20px;
  }
}

/* faq-section.css */
.faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 60px;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.faq-subtitle {
  font-size: 18px;
  color: #666666;
  line-height: 1.5;
}

.accordion {
  max-width: 100%;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  margin-bottom: 16px;
  background-color: #ffffff;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-trigger:hover {
  background-color: #f8f9fa;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.accordion-panel {
  padding: 0 24px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
}

.accordion-panel p {
  margin-bottom: 16px;
}

.accordion-panel p:last-child {
  margin-bottom: 0;
}

.link-underline {
  color: #dc3545;
  text-decoration: none;
  border-bottom: 1px solid #dc3545;
  transition: all 0.3s ease;
}

.link-underline:hover {
  color: #c82333;
  border-bottom-color: #c82333;
}

/* Media Queries */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-header {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-subtitle {
    font-size: 16px;
  }

  .accordion {
    padding: 0 20px;
  }

  .accordion-trigger {
    padding: 20px;
    font-size: 16px;
  }

  .accordion-panel {
    padding: 0 20px 20px;
    font-size: 15px;
  }
}

/* cta-section.css */
.offer-cta {
  background-color: #0a1426;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.offer-cta__content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offer-cta__title {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.offer-cta__guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.offer-cta__guarantee-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.offer-cta__info-icon {
  color: rgba(255, 255, 255, 0.9);
  cursor: help;
}

.offer-cta__action {
  margin-top: 32px;
}

.offer-cta__button {
  display: inline-block;
  background-color: #dc3545;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #dc3545;
}

.offer-cta__button:hover {
  background-color: #c82333;
  border-color: #c82333;
  transform: translateY(-2px);
}

.offer-cta__button:active {
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
  .offer-cta {
    padding: 60px 0;
  }

  .offer-cta__content {
    padding: 0 20px;
  }

  .offer-cta__title {
    font-size: 36px;
  }

  .offer-cta__guarantee-text {
    font-size: 16px;
  }

  .offer-cta__button {
    width: 100%;
    max-width: 300px;
    padding: 14px 32px;
  }
}

@media (max-width: 480px) {
  .offer-cta__title {
    font-size: 28px;
  }

  .offer-cta__guarantee {
    flex-direction: column;
    margin-bottom: 32px;
  }
}

/* footer css */
.main-footer {
  background-color: #ffffff;
  padding: 60px 0;
  border-top: 1px solid #e6e6e6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-description {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #f5f5f5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #e6e6e6;
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: #666666;
}

.payment-methods {
  display: flex;
  gap: 12px;
  align-items: center;
}

.payment-icon {
  height: 24px;
  width: auto;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-heading {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #666666;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #dc3545;
}

/* Media Queries */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .payment-methods {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* <======= Contact us css =========> */
.contact-container {
  width: 100%;
  margin: 0 auto;
}

/* Support Hero Section */
.support-hero {
  background-color: #0a1530;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  width: 100%;
}

.support-hero .container {
  max-width: 1000px;
  margin: 0 auto;
}

.support-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.support-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .support-hero {
    padding: 60px 15px;
  }

  .support-title {
    font-size: 38px;
  }

  .support-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .support-hero {
    padding: 40px 15px;
  }

  .support-title {
    font-size: 32px;
  }

  .support-description {
    font-size: 15px;
  }
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px 20px;
}

.form-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
  box-sizing: border-box;
}

.form-container h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #000;
  font-weight: 600;
}

.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

.form-row .form-group {
  width: calc(50% - 10px);
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #999;
}

.form-submit {
  text-align: center;
  margin-top: 15px;
}

.submit-btn {
  background-color: #d32f2f;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #b71c1c;
}

/* Responsive adjustments for the form */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-row .form-group {
    width: 100%;
  }

  .form-container {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 30px 15px;
  }

  .form-container {
    padding: 20px;
  }

  .form-container h2 {
    font-size: 24px;
  }

  .submit-btn {
    width: 100%;
  }
}

/* Support Options Section */
.support-options {
  padding: 80px 20px;
  background-color: #fff;
}

.support-options .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.support-intro {
  flex: 0 0 35%;
}

.support-intro h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
}

.support-cards {
  flex: 0 0 50%;
  display: flex;
  gap: 30px;
}

.support-card {
  flex: 1;
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-icon {
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-icon img {
  height: 60px;
  width: auto;
}

.support-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.support-card p {
  color: #666;
  margin-bottom: 25px;
}

.support-btn {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid #d32f2f;
  border-radius: 4px;
  color: #d32f2f;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.support-btn:hover {
  background-color: #d32f2f;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .support-options .container {
    flex-direction: column;
    align-items: stretch;
  }

  .support-intro {
    flex: 0 0 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .support-cards {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .support-options {
    padding: 60px 15px;
  }

  .support-intro h2 {
    font-size: 32px;
  }

  .support-cards {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .support-options {
    padding: 40px 15px;
  }

  .support-intro h2 {
    font-size: 28px;
  }

  .support-card {
    padding: 20px;
  }
}

/* <=========== Domain Search ==========> */
/* Domain Search Section Styles */
.domain-search-container {
  background-color: #0a1530;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.domain-search-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.domain-search-desc {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Search Bar Styles */
.search-bar {
  display: flex;
  max-width: 600px;
  margin: 0 auto 2rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.search-input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: none;
  font-size: 1rem;
  outline: none;
}

.search-button {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.search-button:hover {
  background-color: #c0392b;
}

/* Domain Extensions Styles */
.domain-extensions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.domain-extension-card {
  background-color: #0c1d4d;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 1rem;
  width: 135px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.domain-extension-card:hover {
  transform: translateY(-5px);
}

.extension {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: white;
}

.original-price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #aaa;
  margin-bottom: 0;
}

.sale-price {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

/* Privacy Note and Transfer Domain Styles */
.privacy-note {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.transfer-domain {
  margin-top: 1rem;
}

.transfer-link {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.transfer-link:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .domain-search h1 {
    font-size: 2rem;
  }

  .domain-extension-card {
    width: calc(50% - 1rem);
    max-width: 150px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 1rem;
  }

  .domain-search {
    padding: 2rem 1rem;
  }

  .domain-search h1 {
    font-size: 1.75rem;
  }

  .search-bar {
    flex-direction: column;
  }

  .search-input {
    width: 100%;
    border-radius: 4px 4px 0 0;
  }

  .search-button {
    width: 100%;
    border-radius: 0 0 4px 4px;
  }

  .domain-extension-card {
    width: calc(33% - 1rem);
    min-width: 90px;
    padding: 0.75rem;
  }

  .extension {
    font-size: 1rem;
  }

  .original-price,
  .sale-price {
    font-size: 0.8rem;
  }
}

/* Why Buy Domains Section Styles */
.why-buy-domains {
  padding: 3rem 0;
  text-align: center;
}

.why-buy-domains h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.why-buy-desc {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.benefit-card {
  flex: 1;
  min-width: 250px;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2rem;
  color: #e74c3c;
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-start;
}

.benefit-icon > img {
  width: 40px;
  height: 40px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: left;
  color: #222;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #666;
  text-align: left;
  line-height: 1.6;
}

/* Responsive styles for Why Buy Domains section */
@media (max-width: 992px) {
  .benefits-container {
    gap: 1.5rem;
  }

  .benefit-card {
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .why-buy-domains h2 {
    font-size: 1.8rem;
  }

  .why-buy-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .benefit-card {
    min-width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .why-buy-domains {
    padding: 2rem 0;
  }

  .why-buy-domains h2 {
    font-size: 1.6rem;
  }

  .benefit-icon {
    font-size: 1.8rem;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
  }
}

/* Why Choose Hostrever Section Styles */
.why-choose-hostrever {
  background-color: #071033;
  color: white;
  padding: 4rem 0;
}

.why-choose-hostrever h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.choose-desc {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #e0e0e0;
}

.domain-features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.domain-feature-card {
  flex: 1;
  min-width: 250px;
  max-width: 325px;
  padding: 2rem;
  background-color: #0c1d4d;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.domain-feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 1.5rem;
  height: 50px;
  display: flex;
  align-items: center;
}

.feature-icon img {
  width: auto;
  height: 40px;
}

.domain-feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.domain-feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b0b0;
}

/* Responsive styles for Why Choose Hostrever section */
@media (max-width: 992px) {
  .features-container {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .why-choose-hostrever h2 {
    font-size: 1.8rem;
  }

  .choose-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .domain-feature-card {
    /* min-width: 100%; */
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .domain-features-container {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .why-choose-hostrever {
    padding: 3rem 0;
  }

  .why-choose-hostrever h2 {
    font-size: 1.6rem;
  }

  .feature-card {
    padding: 1.5rem;
  }
}

/* <========= fast-secure.css =========> */
.fast-hero-banner {
  background-color: #0a1530; /* Deep navy blue from the image */
  color: white;
  text-align: center;
  padding: 5rem 1rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fast-hero-banner h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.fast-hero-banner .subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.button-container {
  margin-top: 1rem;
}

.cta-button {
  background-color: #d32f2f; /* Red color from the image */
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #b71c1c;
}

.box-shadow {
  padding: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* <======== Components Styling ==========> */
/* Footer Dark */
.dark-main-footer {
  background-color: #0a1530;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.dark-footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.dark-footer-brand {
  max-width: 400px;
}

.dark-footer-logo {
  height: 40px;
  margin-bottom: 20px;
  object-fit: contain;
}

.dark-footer-description {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.dark-social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.dark-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  background-color: transparent;
}

.dark-social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.dark-social-link:hover {
  transform: translateY(-2px);
  background-color: transparent;
}

.dark-payment-methods {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.dark-payment-icon {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.dark-payment-icon:hover {
  opacity: 0.8;
}

.dark-footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.dark-footer-heading {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.dark-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dark-footer-links li {
  margin-bottom: 12px;
}

.dark-footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.dark-footer-links a:hover {
  color: #dc3545;
}

/* Media Queries */
@media (max-width: 1024px) {
  .dark-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dark-footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .dark-social-links {
    justify-content: center;
  }

  .dark-payment-methods {
    justify-content: center;
    gap: 20px;
  }

  .dark-payment-icon {
    height: 28px;
  }
}

@media (max-width: 768px) {
  .dark-main-footer {
    padding: 40px 0;
  }

  .dark-footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .dark-social-link img {
    width: 20px;
    height: 20px;
  }

  .dark-payment-icon {
    height: 24px;
  }
}

@media (max-width: 480px) {
  .dark-footer-nav {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dark-social-links {
    gap: 20px;
  }

  .dark-payment-methods {
    gap: 12px;
  }

  .dark-payment-icon {
    height: 20px;
  }

  .dark-footer-description {
    font-size: 14px;
  }
}

/* Footer */
.main-footer {
  background-color: #ffffff;
  padding: 60px 0;
  border-top: 1px solid #e6e6e6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
  object-fit: contain;
}

.footer-description {
  color: #666666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: transform 0.3s ease;
  background-color: transparent;
}

.social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-link:hover {
  transform: translateY(-2px);
  background-color: transparent;
}

.payment-methods {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.payment-icon {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.payment-icon:hover {
  opacity: 0.8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-heading {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #666666;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #dc3545;
}

/* Media Queries */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .payment-methods {
    justify-content: center;
    gap: 20px;
  }

  .payment-icon {
    height: 28px;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .social-link img {
    width: 20px;
    height: 20px;
  }

  .payment-icon {
    height: 24px;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    gap: 20px;
  }

  .payment-methods {
    gap: 12px;
  }

  .payment-icon {
    height: 20px;
  }

  .footer-description {
    font-size: 14px;
  }
}





.top-header {
  position: sticky;    /* Sticky positioning */
  top: 0;              /* Stick to the top of the viewport */
  z-index: 999;        /* Ensure it appears above other elements */
  background-color: #0a1530;
  color: white;
  padding: 12px 24px;
  transition: transform 0.3s ease;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  transition: opacity 0.3s ease;
}

.contact-info img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.right-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.right-nav a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  transition: opacity 0.3s ease;
}

.right-nav img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

/* Hover effects */
.contact-info a:hover,
.right-nav a:hover {
  opacity: 0.8;
}

/* Media Queries */
@media (max-width: 768px) {
  .top-header {
    padding: 10px 16px;
  }

  .right-nav {
    gap: 16px;
  }

  .right-nav a {
    font-size: 14px;
  }

  .contact-info a {
    font-size: 14px;
  }

  .right-nav img,
  .contact-info img {
    width: 18px;
    height: 18px;
  }

  /* Hide text on smaller screens, show only icons */
  .live-chat span,
  .contact-us span {
    display: none;
  }
}

@media (max-width: 480px) {
  .top-header {
    padding: 8px 12px;
  }

  .right-nav {
    gap: 12px;
  }

  .right-nav img,
  .contact-info img {
    width: 16px;
    height: 16px;
  }
}

.navbar-main-nav {
  position: sticky;
  top: 40px;         
  z-index: 998;      
  background-color: #0a1530;
  padding: 1rem 0;
}

.navbar-nav-links {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2rem;
}

.navbar-nav-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.navbar-nav-links a:hover {
  color: #ff4444;
}

.navbar-client-area {
  color: white;
  text-decoration: none;
  border: 1px solid #ff4444;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.navbar-client-area:hover {
  background-color: #ff4444;
}

.navbar-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Dropdown menu styles */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Position the dropdown relative to the parent */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #e9eef7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 100;
  margin-top: 0.5rem;
  border-radius: 4px;
  min-width: 180px;
}

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

/* Dropdown list styles */
.dropdown-list {
  list-style: none;
  padding: 10px 0;
}

.dropdown-list li {
  padding: 0;
}

.dropdown-list li a {
  color: #000;
  padding: 12px 20px;
  display: block;
  transition: background-color 0.3s;
  font-size: 13px;
  font-weight: 500;
}

.dropdown-list li a:hover {
  background-color: #d9e1f2;
  color: #ff1a05;
}

/* Media queries for responsive adjustments */
@media (max-width: 992px) {
  .navbar-nav-links {
    display: none;
  }

  .navbar-mobile-menu-btn {
    display: block;
  }
}
