/* Base styles for desktop */
.action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e2a30;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Group buttons, text, and icons in flex */
.button-group,
.info-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: border 0.3s ease;
  white-space: nowrap;
}

.btn.select {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.btn.join {
  border-radius: 50px;
  font-weight: bold;
}

.arrow {
  font-size: 0.7rem;
}

/* Text */
.info-text {
  color: white;
  font-size: 1rem;
}

/* Icons */
.social-icons {
  display: flex;
  gap: 0.6rem;
}

.icon {
  font-size: 1.4rem;
  color: white;
  cursor: pointer;
}

/* Mobile view */
@media (max-width: 768px) {
  .action-bar {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
  }

  .button-group {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .info-group {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }
}
/* ==========navigation-bar--- */
/* Main Navbar */

/* Mega Panel Style */
.mega-panel {
  width: 100vw;
  left: 0;
  border-radius: 0;
  padding: 2rem 4rem;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Adjust column layout */
.hover-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Responsive fallback */
@media (max-width: 768px) {
  .hover-columns {
    grid-template-columns: 1fr 1fr;
  }
}
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: white;
  border-bottom: 1px solid #eee;
  font-family: 'Segoe UI', sans-serif;
}
.main-navbar {
  position: relative;
  z-index: 10;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0d1c2e;
    font-family: "Oleo Script", system-ui;
}

.nav-links {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #2c3e50;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #0077cc;
}

.post-project {
  color: #0077cc;
  font-weight: bold;
}

/* Dropdown Panel */
.hover-panel {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  background-image: url('images/Screenshot\ 2025-10-31\ 015750.png');

  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1rem;
  display: none;
  z-index: 10;
  width: 600px;
  border-radius: 20px;
}

.nav-item.dropdown:hover .hover-panel {
  display: block;
}

.hover-columns {
  display: flex;
  justify-content: space-between;
}

.column {
  width: 70%;
}

.column h4 {
  margin-bottom: 0.5rem;
  color: #000000;
  font-size: larger;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.column ul li {
  margin: 0.3rem 0;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.column ul li:hover {
  color: #0077cc;
}

.graphic {
  width: 25%;
  color: white;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.graphic .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  margin-right: 5rem;

}

.graphic .label {
  font-weight: bold;
  text-align: center;
}

/* Smooth link hover transition */
.nav-menu a {
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-menu a:hover {
  color: #0077cc;
  transform: translateY(-2px);
}

/* Dropdown fade-in and slide-up animation */
.hover-panel {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.nav-item.dropdown:hover .hover-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dropdown list item hover effect */
.column ul li {
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.column ul li:hover {
  color: #0077cc;
  padding-left: 5px;
}

/* Graphic panel pulse effect */
.graphic .icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
/* -reponsive--- */
/* Burger button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.burger span {
  display: block;
  height: 3px;
  background-color: #0d1c2e;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    display: none;
    z-index: 99;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 0.5rem 0;
    display: block;
    width: 100%;
  }

  .hover-panel {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 12px;
    background-color: #f9f9f9;
    padding: 1rem;
    margin-top: 0.5rem;
  }

  .hover-columns {
    flex-direction: column;
    gap: 1.5rem;
  }

  .column {
    width: 100%;
    text-align: center;
  }

  .column h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #0077cc;
  }

  .column ul {
    padding: 0;
    margin: 0 auto;
    list-style: none;
  }

  .column ul li {
    font-size: 0.95rem;
    margin: 0.4rem 0;
    color: #333;
    font-weight: 500;
  }

  .graphic {
    display: none;
  }

  .mega-panel {
    padding: 1rem;
  }
}
/* -----------hero-section---- */

.promo-banner {
  position: relative;
  overflow: hidden;
}

.rotating-text {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 150px;
  height: 150px;
  z-index: 1;
}

.rotating-text svg {
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
}

.rotating-text text {
  font-size: 20px;
  fill: #ffffff; /* semi-transparent white */
  letter-spacing: 2px;
}

@keyframes rotateText {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.promo-banner {
  background-image: url('images/original-5fa24180928583c0c3b16bdcbb96ae6e.gif');
  background-attachment: scroll; 
  background-size: cover;      
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  min-height: 400px;             
  color: rgb(0, 0, 0);
  padding: 4rem 2rem;
  text-align: center;

  position: relative;
}
.promo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, 0.611); /* dark blue with 70% opacity */
  z-index: 1;
}
.promo-content {
  position: relative;
  z-index: 2;
}

/* Animate the promo content */
.promo-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

/* Button pulse effect */
.btn-primary {
  animation: pulseButton 2s infinite;
}

/* Search link hover glow */
.search-link:hover {
  text-shadow: 0 0 5px #00c48c;
}

/* Keyframes */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.promo-content h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  /* font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
      font-family: "Oleo Script", system-ui;
      color: #ffffff;;

}

.promo-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  margin: 20px 25%;
  color: rgb(235, 234, 234);
}

.promo-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  background-color: #1e2a30;

  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #00a374;
}

.or-text {
  font-size: 0.9rem;
  color: #ccc;
}

.search-link {
  color: #00c48c;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.search-link:hover {
  text-decoration: underline;
}

.search-icon {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .promo-banner {
    padding: 2rem 1rem;
    min-height: auto;
    background-attachment: scroll;
    text-align: center;
  }

  .promo-content h1 {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .promo-content p {
    font-size: 1rem;
    margin: 1rem 0;
    padding: 0 1rem;
  }

  .promo-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-primary {
    width: auto;
    max-width: 250px;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .rotating-text {
    display: none;
  }
}
/* -------------brand--section----------------- */
.brand-showcase {
  text-align: center;
  padding: 5rem 2rem;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  overflow: hidden;
  color: #1e2a30;
}

.brand-showcase h2 {

  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 0.8;

}

.brand-showcase h2 span {

  font-size: 2rem;
  display: block;
}

.brand-scroll {
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  gap: 2rem;
  animation: scrollLoop 30s linear infinite;
}

.brand-card {
  flex: 0 0 auto;
  width: 250px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.brand-card img {
  max-width: 100%;
  max-height: 80%;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.brand-card:hover img {
  filter: grayscale(0%);
}

.brand-card:hover {
  transform: scale(1.05);
}

/* Hide scrollbar */
.brand-scroll::-webkit-scrollbar {
  display: none;
}
.brand-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Infinite scroll animation */
@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -----cards--- */


.service-partners {
  padding: 7rem 6rem;
  background-color: #f8f9fa;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.service-partners h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1e2a30;
  font-family: "Oleo Script", system-ui;
}

.service-partners p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.service-card i {
  font-size: 2rem;
  color: #00a374;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #1e2a30;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card ul li {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00a374;
  font-weight: bold;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .service-partners h2 {
    font-size: 1.6rem;
  }

  .service-partners p {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 1.5rem 1rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card ul li {
    font-size: 0.9rem;
  }
}

.service-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate cards on load */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon bounce on hover */
.service-card i {
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* List item fade on hover */
.service-card ul li {
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-card ul li:hover {
  color: #00a374;
  transform: translateX(5px);
}
.service-card i {
  transition: transform 0.3s ease;
}

.service-card:hover i {
  animation: pulseIcon 0.6s ease;
}

@keyframes pulseIcon {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.service-card i {
  transition: transform 0.3s ease;
}

.service-card:hover i {
  animation: pulseIcon 0.6s ease;
}

@keyframes pulseIcon {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
/* ==============custom-web================= */
.custom-web-design {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

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

.custom-image {
  flex: 1 1 400px;
  text-align: center;
}

.custom-image img {
  max-width: 100%;
  height: auto;
}

.custom-content {
  flex: 1 1 400px;
}

.custom-content h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #0d1c2e;
}

.custom-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.custom-content ul {
  list-style: none;
  padding: 0;
}

.custom-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: #333;
  font-size: 0.95rem;
}

.custom-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00c48c;
  font-weight: bold;
}

/* Animate container */
.custom-container {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1s ease-out forwards;
  animation-delay: 0.2s;
}

/* Animate image */
.custom-image img {
  opacity: 0;
  transform: scale(0.95);
  animation: fadeZoomIn 1s ease-out forwards;
  animation-delay: 0.4s;
}

/* Animate content */
.custom-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease-out forwards;
  animation-delay: 0.6s;
}

/* Animate list items */
.custom-content ul li {
  opacity: 0;
  transform: translateX(-10px);
  animation: fadeListItem 0.6s ease-out forwards;
  animation-delay: calc(0.7s + var(--i) * 0.1s);
}

/* Assign index to each list item */
.custom-content ul li:nth-child(1) { --i: 1; }
.custom-content ul li:nth-child(2) { --i: 2; }
.custom-content ul li:nth-child(3) { --i: 3; }
.custom-content ul li:nth-child(4) { --i: 4; }
.custom-content ul li:nth-child(5) { --i: 5; }
.custom-content ul li:nth-child(6) { --i: 6; }
.custom-content ul li:nth-child(7) { --i: 7; }
.custom-content ul li:nth-child(8) { --i: 8; }
.custom-content ul li:nth-child(9) { --i: 9; }

/* Keyframes */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeZoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeListItem {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



/* =====================cube section ============== */
.b2b-promo {
  background-color: #0d1c2e;
  color: white;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.b2b-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.b2b-image {
  flex: 1 1 400px;
  position: relative;
}

.team-photo {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.cube-overlay {
  position: absolute;
  top: 50px;
  left: 20px;
  width: 450px;
  z-index: 2;
  color: #FFF;
}

.b2b-content {
  flex: 1 1 400px;
  z-index: 3;
}

.b2b-content h4 {
  color: #00c48c;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.b2b-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.b2b-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.btn-primary {
  background-color: #00c48c;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #00a374;
}

.subtext {
  font-size: 0.9rem;
  color: #aaa;
}

.subtext a {
  color: #00c48c;
  text-decoration: underline;
}

.angled-image {
  width: 100%;
  border-radius: 10px;
  clip-path: polygon(0 20%, 85% 0, 100% 100%, 0% 100%);
  transition: clip-path 0.3s ease;
}
.angled-image:hover {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
/* ------------pricing------- */
.website-investment {
  padding: 4rem 2rem;
  background-color: #fdfdfd;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.website-investment h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
    font-family: "Oleo Script", system-ui;

}

.website-investment .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

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

.comparison-card h3 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 1rem;

}

.comparison-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.comparison-card ul li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #333;
  position: relative;
  padding-left: 1.2rem;
}

.comparison-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00c48c;
  font-size: 1.2rem;
  line-height: 1;
}

.cost-tag {
  background-color: #f0f0f0;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  display: inline-block;
  color: #333;
}

.comparison-card.premium {
  border: 2px solid #00c48c;
  background-color: #eafff6;
}

.cost-tag.premium {
  background-color: #00c48c;
  color: white;
}
/* responsive -pricing */
/* Container responsiveness */
.website-investment {
  padding: 4rem 1rem;
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card styling */
.comparison-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Typography scaling */
.website-investment h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
}

.website-investment .subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.comparison-card h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.comparison-card ul li {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
}

/* Cost tag responsiveness */
.cost-tag {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  align-self: flex-start;
  margin-top: auto;
}

/* Premium styling */
.comparison-card.premium {
  border: 2px solid #00c48c;
  background-color: #eafff6;
}

.cost-tag.premium {
  background-color: #00c48c;
  color: white;
}

/* Mobile spacing */
@media (max-width: 600px) {
  .comparison-card {
    padding: 1rem;
  }

  .cost-tag {
    font-size: 0.85rem;
  }
}

/* Responsive padding for smaller screens */
/* @media (max-width: 600px) {
  .get-started-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-left: 0px;
}

.btn-get-started {
  padding: 0.8rem 5rem;
  background-color: #00c48c;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
} */

 
/* -----------changing card section------------------ */
.highlight-section {
  padding: 3rem 2rem;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.highlight-section h2 {
  font-size: 2rem;
  margin-bottom: 0.9rem;
    font-family: "Oleo Script", system-ui;

}

.tagline {
  background-color: #ffe600;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: bold;
  margin-bottom: 2rem;
  border-radius: 10px ;
}

.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.highlight-card {
  background-color: #fff;
  border: 2px solid #000;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.highlight-card:hover {
  background-color: #f0f0f0;
}

.highlight-content {
  max-width: 900px;
  margin: 0 auto;
}

.content-box {
  display: none;
  background-color: #f9f9f9;
  padding: 5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: left;
}

.content-box h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Animation classes */
.content-box {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: none;
}

.content-box.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.flex-img{
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
  .highlight-section {
    padding: 2rem 1rem;
    text-align: center;
  }

  .highlight-section h2 {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .highlight-grid {
    flex-direction: column;
    gap: 0.8rem;
  }

  .highlight-card {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }

  .highlight-content {
    max-width: 100%;
    padding: 0;
  }

  .content-box {
    padding: 2rem 1rem;
    text-align: center;
  }

  .content-box h3 {
    font-size: 1.1rem;
  }

  .flex-img {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .flex-img img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .flex-img p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: justify;
  }
}
/* -------------blog--section---- */
.blog-section {
  padding: 5rem 2rem;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ebe2d977;
}

.blog-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}



.tagline {
  font-style: italic;
  font-size: 1rem;
  color: #555;
  /* margin-top: 30px; */
}


.blog-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 0;
}

.blog-card {
  min-width: 300px;
  max-width: 300px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex-shrink: 0;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.blog-info {
  padding: 1rem;
}

.blog-info .date {
  font-size: 0.85rem;
  color: #888;
  display: block;
  margin-bottom: 0.5rem;
}

.blog-info h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.blog-info p {
  font-size: 0.9rem;
  color: #333;
}

.scroll-btn {
  background-color: #00c48c;
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 1rem 1rem;
  border-radius: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2;
}

.scroll-btn:hover {
  background-color: #00a374;
}

.scroll-btn.left {
  margin-right: 1rem;
}

.scroll-btn.right {
  margin-left: 1rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .blog-card {
    min-width: 250px;
    max-width: 250px;
  }

  .scroll-btn {
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
  }
}
.blog-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 0;

  /* Hide scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.blog-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* ---------footer-------------- */
.site-footer {
  background-color: #111;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  padding: 2rem;
  position: relative;
  
}

.footer-banner {
  background-color: #00c48c;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 10px;
  flex-wrap: wrap;
}

.banner-text p {
  margin: 0;
  font-size: 1rem;
}

.banner-text h3 {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
}

.banner-stats {
  display: flex;
  gap: 2rem;
  text-align: center;
}

.banner-stats div {
  font-size: 0.9rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 2rem;
}

.footer-col {
  padding-right: 1rem;
  border-right: 1px solid #333;
}

.footer-col:last-child {
  border-right: none;
}
.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #00c48c;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.marketing-icon {
  /* width: 40px; */
  /* margin-bottom: 1rem; */
  /* margin-right: 10%; */
}

.whatsapp-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

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

/* Responsive */
@media (max-width: 600px) {
  .footer-banner {
    flex-direction: column;
    text-align: center;
  }

  .banner-stats {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .whatsapp-icon {
    position: static;
    margin-top: 2rem;
    text-align: center;
  }
}


/* -------------contact---------------- */
.contact-section {
  background-image: url('images/Gemini_Generated_Image_ptu9jzptu9jzptu9.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5em 2rem;
  font-family: 'Segoe UI', sans-serif;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-form {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: fadeSlideUp 0.8s ease-out forwards;
  opacity: 0;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #1e2a30;
}

.contact-form p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  height: 45px; /* Match dropdown height */
  resize: none;
  overflow: hidden;
}

.contact-form button {
  background: linear-gradient(135deg, #293728, #a2f4ad);
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.contact-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.contact-info img {
  /* max-width: 250px; */
  margin-bottom: 1rem;
}

.info-block p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #333;
}




/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    text-align: center;
  }
}

.contact-form select {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: white;
  color: #333;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


