/* Optional Custom Style */
.navbar-nav .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;

}

.navbar-nav .dropdown-menu {
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-link {
  color: #E30613 !important;
}

.navbar-brand span {
  font-weight: normal;
}

.cta-creative-section {
  background: linear-gradient(135deg, #e30613, #ff4d4d);
  border-radius: 0.75rem;
  margin: 40px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-btn {
  background-color: #ffffff;
  color: #e30613;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background-color: #e30613;
  color: #fff;
  transform: scale(1.05);
}

.why-choose-us-section {
  background: linear-gradient(135deg, #fff, #f8f9fa);
}

.why-choose-us-section h3 {
  font-size: 45px;

}

.feature-card {

  backdrop-filter: blur(8px);
  padding: 20px 25px;
  border-radius: 16px;

  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);

}

.feature-card .icon-wrap {
  font-size: 2rem;
  color: #e30613;
  margin-bottom: 10px;
}

.feature-card h5 {
  font-weight: 600;
  color: #e30613;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

.illustration-box {
  border: 4px dashed #e30613;
  padding: 15px;
  border-radius: 20px;
  display: inline-block;
  background: #fff;
}

/* Container */
.projects-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
.project-card {
  width: 300px;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Image inside */
.project-image {
  width: 100%;
  display: block;
  transform: translateY(0);
  transition: transform 6s linear;
}

/* Hover smooth scroll */
.project-card:hover .project-image {
  transform: translateY(calc(-100% + 500px));
}

/* Overlay gradient */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  box-sizing: border-box;
}

/* Text inside overlay */
.overlay-content {
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.project-card:hover .overlay {
  opacity: 1;
}

.project-card:hover .overlay-content {
  transform: translateY(0);
  opacity: 1;
}

.overlay-content h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}




.overlay-content p {
  margin: 5px 0 0 !important;
  font-size: 0.9rem;
  opacity: 0.9;
  color: white !important;
}


.cta-bar {
  background-color: #e30613;
  /* Red background */
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}

.cta-heading {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.input-groups {
  position: relative;
  display: flex;
  align-items: center;
}

.input-groups svg {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 18px;
  fill: #e30613;
}

.input-groups input {
  padding: 12px 12px 12px 40px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-form button {
  background-color: #fff;
  color: #e30613;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-form button:hover {
  background-color: #f9f9f9;
}

@media (max-width: 768px) {
  .cta-form {
    flex-direction: column;
    align-items: center;
  }

  .input-groups input,
  .cta-form button {
    width: 100%;
    max-width: 300px;
  }
}

.process-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.process-section h5 {
  color: #555;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.process-section .highlight {
  color: #E30613;
  font-weight: bold;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.step {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-5px);
}

.circle {
  width: 60px;
  height: 60px;
  background-color: #E30613;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px auto;
}

.step h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.arrow {
  font-size: 2rem;
  color: #E30613;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }
}


body {
  margin: 0;
  padding: 0;
}

.top-bar {
  background: #000000;
  font-size: 14px;
  color: white;
  padding: 5px 0;
}

.top-bar i {
  color: red;
  margin-right: 5px;
}

.main-header {
  background: white;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* Add this to apply hover-based dropdown to the About menu */
.main-header .nav-item.dropdown {
  position: relative;
}

.main-header .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  overflow: hidden;
}

/* Show on hover like others */
.main-header .nav-item.dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.navbar-nav .nav-link {
  color: #000 !important;
  font-weight: 500;
}

.nav-link {
  font-weight: 600;
}




.start-btn {
  background: linear-gradient(25deg, #EC0D2E, #ff0037ff);
  color: #fff !important;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
}

.red-navbar {
  background-color: #E30613;
}

.red-navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.z-index {
  z-index: 9999;
}

/* Creative Dropdown Styling */
.navbar-nav .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 12px;
  padding: 0;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.navbar-nav .dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu .dropdown-item {
  padding: 12px 20px 12px 45px;
  position: relative;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: transparent;
}

.dropdown-menu .dropdown-item:hover {
  background: rgba(236, 13, 46, 0.05);
  color: #EC0D2E;
}

.dropdown-menu .dropdown-item::before {
  content: "\f061";
  /* Font Awesome arrow */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #EC0D2E;
  transition: 0.3s;
  font-size: 12px;
}

/* Hover dropdown for red-navbar */
.red-navbar .nav-item.dropdown {
  position: relative;
}

.red-navbar .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.red-navbar .nav-item.dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}


/* Mobile View */
@media(max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 10px;
  }

  .dropdown-menu {
    position: static !important;
    float: none;
  }
  
  .mob{
      display:none;
  }
}
.offcanvas {
  width: 280px;
  background: #fff;
  border-right: 3px solid #E30613;
}

.offcanvas h6 {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.offcanvas .nav-link {
  color: #E30613;
  font-weight: 600;
  margin-bottom: 8px;
}

.offcanvas .nav-link:hover {
  color: #000;
}

.offcanvas .dropdown-menu {
  background: #fff;
  border: none;
  box-shadow: none;
  padding-left: 10px;
}

.offcanvas .btn-danger {
  background: linear-gradient(45deg, #E30613, #ff4d4d);
  border: none;
  border-radius: 25px;
}

.offcanvas-footer {
  background: #fff;
}

.offcanvas-footer i {
  color: #E30613;
}

@media (min-width: 992px) {
  .offcanvas { display: none !important; }
}


.banner {
  background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=1400&q=80') no-repeat center center;
  background-size: cover;
  position: relative;
  color: #fff;
  padding: 100px 20px;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner h1 {
  font-size: 3rem;
  font-weight: 700;
}

.banner ul {
  list-style: none;
  padding-left: 0;
}

.banner ul li {
  font-size: 17px;
  margin-bottom: 10px;
  position: relative;

}

.banner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  color: #00ff99;
}

.quote-btn {
  background: #E30613;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.quote-btn:hover {
  background: #ff0037;
  transform: translateY(-2px);
}

.form-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px;
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.form-glass .form-control,
.form-glass .form-select {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
}

.form-glass .form-control::placeholder {
  color: #ddd;
}

.form-glass .input-group-text {
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
}

.call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #28a745;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: bold;
  z-index: 999;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.call-btn:hover {
  background-color: #218838;
}

@media (max-width: 768px) {
  .banner h1 {
    font-size: 2rem;
  }
}


.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 50%, #f8f8f8 100%);
}

.section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #111;
}

.highlight {
  color: #E30613;
}


.text-a {
  text-align: center;
}

.about-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.about-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

.feature-box i {
  font-size: 1.4rem;
  color: #E30613;
  margin-right: 15px;
  margin-top: 5px;
}

.btn-danger {
  background-color: #E30613;
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  transition: 0.3s ease-in-out;
}

.btn-danger:hover {
  background-color: #b0000f;
}

.image-container {
  position: relative;
}

.image-container::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-color: #E30613;
  opacity: 0.1;
  border-radius: 10px;
  z-index: -1;
}

.about-img {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 35px;
  color: #E30613;
  margin-bottom: 15px;
}

.service-title {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 20px;
  color: #333;
}

.sub-service {
  padding: 12px 18px;
  background: #f1f1f1;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: background 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-service:hover {
  background: #E30613;
  color: #fff;
}

.sub-service:hover i {
  color: #fff;
}

.sub-service i {
  color: #E30613;
  transition: color 0.3s;
}


.clients-section {
  background: linear-gradient(to right, #ffffff, #f9fbfc);
  padding: 80px 20px;
  text-align: center;
}

.clients-section h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1c1c1e;
}

.clients-section p {
  color: #5f6368;
  font-size: 17px;
  margin-bottom: 50px;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.logo-set {
  display: flex;
}

.marquee-track img {
  height: 60px;
  margin: 0 40px;


  transition: all 0.3s ease;
}

.marquee-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .marquee-track img {
    height: 45px;
    margin: 0 25px;
  }

  .clients-section h2 {
    font-size: 28px;
  }

  .clients-section p {
    font-size: 15px;
  }
}


.section-containers {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  /* 🔥 ensures both child items stretch to same height */
  padding: 60px;
  max-width: 1400px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.marquee-boxs,
.content-boxs {
  flex: 1;
  /* 🧠 ensures both columns take equal width */
  display: flex;
  flex-direction: column;
  /* Needed for consistent child stacking */
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  padding: 30px 40px;
}


.marquee-titles {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 20px;
}

.marquee-containers {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.marquee-tracks {
  display: flex;
  flex-direction: column;
  animation: scrollUp 12s linear infinite;
}

.row {
  display: flex;
  justify-content: space-around;
  /* align-items: center; */
  padding: 30px 0;
}

.tech-icons {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.tech-icons img {
  height: 60px;


}

.tech-icons span {
  margin-top: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #333;
}

.tech-icons:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes scrollUp {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-50%);
  }
}

.content-boxs {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  padding: 40px;
  /* display: flex; */
  flex-direction: column;
  /* justify-content: center; */
}

.content-boxs h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 20px;
}

.content-boxs p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
}

.review-card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.google-logos {
  font-weight: bold;
  font-size: 29px;
}

.google-logos span {
  color: #4285F4;
}

.google-logos span:nth-child(2) {
  color: #EA4335;
}

.google-logos span:nth-child(3) {
  color: #FBBC05;
}

.google-logos span:nth-child(4) {
  color: #4285F4;
}

.google-logos span:nth-child(5) {
  color: #34A853;
}

.google-logos span:nth-child(6) {
  color: #EA4335;
}

.stars {
  color: #f4b400;
  margin: 0 5px;
}

.rating {
  font-size: 18px;
  font-weight: bold;
  margin-left: 15px;
}

.count {
  font-size: 14px;
  color: #666;
  margin-left: 5px;
}

.btn {
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 14px;
  margin-left: auto;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
}

.btn:hover {
  background-color: #155bb5;
}

@media (max-width: 992px) {
  .section-containers {
    flex-direction: column;
    padding: 40px 20px;
  }

  .marquee-containers {
    height: 260px;
  }

  .content-boxs h2 {
    font-size: 26px;
  }

  .content-boxs p {
    font-size: 16px;
  }
}

.industry-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.industry-container h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0f172a;
}

.industry-container p {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 40px;
}


.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.industry-card {
  background-color: #f9fbfd;
  padding: 30px 15px;
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.industry-card:hover {
  background-color: #e6f9f1;
  border-color: #b2e3c1;
}

.industry-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  color: #0f172a;
}

.industry-label {
  font-weight: 600;
  font-size: 15px;
  color: #334155;
}

.industry-card:hover .industry-label {
  color: #00704a;
}

@media (min-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}


.faq-wrapper {
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 1100px;
  margin: auto;
}

.faq-image {
  flex: 1;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=700&q=80') no-repeat center center/cover;
  min-height: 500px;
}

.faq-content {
  flex: 1;
  padding: 40px;
}

.faq-content h2 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #222;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  cursor: pointer;
}

.faq-question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  color: #333;
}

.faq-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-answer {
  display: none;
  padding-top: 10px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-left svg {
  color: red;
}


.faq-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon.rotate {
  transform: rotate(180deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .faq-wrapper {
    flex-direction: column;
  }

  .faq-image {
    min-height: 200px;
  }

  .faq-content {
    padding: 20px;
  }
}


footer {

  position: relative;
  background: rgb(0, 0, 0);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 20px 40px;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 90deg at 50% 50%, #00f5d4, #9f00ff, #00f5d4);
  animation: rotate 20s linear infinite;
  z-index: 0;
  opacity: 0.08;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}


.formcards {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  background-color: rgb(254, 87, 87);

}

.img {
  max-width: inherit;
  min-width: inherit;
  max-height: inherit;
  width: inherit;
  height: inherit;
  min-height: inherit;
  object-fit: cover;
}

.logo {
  width: 160px;
}

.socailmedia a {
  color: white;
  text-decoration: none;
}

.footer-get-started {
  display: inline-block;
  margin-top: 15px;
  padding: 16px 25px;
  background: linear-gradient(45deg, #fc0004, #ff060a);
  color: white;
  font-size: 25px;
  font-weight: bold;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.footer-get-started:hover {
  background: linear-gradient(45deg, #fe023d, #ff4e50);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo {
  font-size: 30px;
  font-weight: bold;
  background: linear-gradient(45deg, #00f5d4, #9f00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.footer-column h4 {
  color: #00f5d4;
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: 0.3s;
  position: relative;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(5px);
}

.contact-info {
  font-size: 14px;
  color: #ccc;
  line-height: 1.8;
}

.map iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 245, 212, 0.15);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .map iframe {
    height: 250px;
  }
}

.blog-container {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.blog-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.blog-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-description {
  font-size: 14px;
  color: #333;
}

.readmore {
  display: inline-block;
  margin-top: 15px;
  font-size: 13px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  transition: 0.3s;
}

.readmore:hover {
  color: #222;
  border-color: transparent;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 36px;
  }
}


.testimonial-section {
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-left 60s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  flex: 0 0 auto;
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.avatar {
  background-color: #0275d8;
  color: white;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 12px;
}

.user-info strong {
  font-size: 16px;
  display: block;
}

.user-info .date {
  font-size: 13px;
  color: #888;
}

.stars {
  font-size: 20px;
  color: #ffc107;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stars img {
  width: 16px;
  height: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.google-logo {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 20px;
}

.view-more {
  text-align: center;
  margin-top: 40px;
}

.view-more button {
  padding: 10px 25px;
  background-color: #0275d8;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.view-more button:hover {
  background-color: #025aa5;
}


.fontweighr-size {
  font-weight: 700;
  font-size: 22px;
}


/* Background */
.cta-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f9f9f9, #e3f2fd, #e8f5e9);
  padding: 20px;
}

/* Card */
.cta-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.8s ease;
}

/* Heading */
.cta-card h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.cta-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 25px;
}

/* Inputs */
.cta-card form input,
.cta-card form select {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 15px;
  border-radius: 50px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cta-card form input:focus,
.cta-card form select:focus {
  border-color: #1a73e8;
  background: #fff;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
  outline: none;
}

/* Button */
.cta-card button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #1a73e8, #34a853);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.3);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 500px) {
  .cta-card {
    padding: 30px 20px;
  }
}




/* Pill container */
.dot-nav {
  position: fixed;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  width: 46px;
  background: #fff;
  border-radius: 25px;
  padding: 26px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Marquee wrapper */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Track that moves */
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 10s linear infinite;
  /* 🔥 change 25s for speed */
}

/* Each set of logos */
.logo-set {
  display: flex;
  gap: 0px;
  /* space between logos */
}

.logo-set img {
  height: 60px;
  /* adjust logo size */
  object-fit: contain;
}

/* Keyframes for animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
    /* moves left */
  }
}

/* Dot link (large clickable circle) */
.dot-nav a {
  width: 30px;
  /* clickable area */
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Small black dot */
.dot-nav a::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Tooltip label (hidden by default) */
.dot-nav a::after {
  content: attr(data-label);
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  color: #000;
  font-size: 16px;
  padding: 3px 8px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Show label on hover */
.dot-nav a:hover::after,
.dot-nav a.active:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Outline effect on hover/active */
.dot-nav a:hover,
.dot-nav a.active {
  box-shadow: 0 0 0 2px #000 inset;
}

/* Dot grows slightly */
.dot-nav a:hover::before,
.dot-nav a.active::before {
  transform: scale(1.3);
}


/* Fix for select box */
/* Transparent select box */
.form-select {
  background-color: rgba(255, 255, 255, 0.2) !important;
  /* transparent box */
  color: #DDDDDD !important;
  /* black text */
  border: 1px solid #ccc;
  /* light border so visible */
}

/* Options inside dropdown */
.form-select option {
  background-color: #fff !important;
  /* white dropdown background */
  color: #000 !important;
  /* black text */
}






.startup-hero {
  background: radial-gradient(circle at top left, #1a1a1a, #000);
  position: relative;
  overflow: hidden;
}

.startup-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -100px;
  right: -200px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse 6s infinite alternate;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.7;
  }

  to {
    transform: scale(1.3);
    opacity: 1;
  }
}

.text-gold {
  color: #E30613;
}

.btn-gold {
  background: linear-gradient(90deg, #E30613, #E30613);
  border: none;
  color: #000;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: linear-gradient(90deg, #E30613, #E30613);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

.startup-glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.startup-glass-card h3 {
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 12px;
}

.startup-glass-card ul li {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.ribbon {
  position: absolute;
  top: 15px;
  right: -50px;
  transform: rotate(45deg);
  background: linear-gradient(90deg, #E30613, #E30613);
  color: #000;
  padding: 6px 60px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}




.text-brand {
  color: #E30613;
}

.glass-card {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(227, 6, 19, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-card {
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(227, 6, 19, 0.2);
}

.icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.counter {
  font-size: 1.6rem;
  font-weight: bold;
}

/* Fix spacing between icons and placeholders */
.input-group-text.soft-icon {
  background: rgba(227, 6, 19, 0.08);
  color: #E30613;
  border: none;
  border-radius: 10px 0 0 10px;
  backdrop-filter: blur(8px);
  padding: 0.5rem 0.7rem;
  /* smaller padding */
  font-size: 1rem;
  /* icon size */
  display: flex;
  align-items: center;
  /* vertical align fix */
  justify-content: center;
  /* center horizontally */
  min-width: 40px;
  /* narrower icon box */
}

.form-control,
.form-select,
textarea {
  border: 1px solid rgba(227, 6, 19, 0.2);
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  padding: 0.6rem 0.75rem;
  /* balanced input padding */
}


.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: #E30613;
  box-shadow: 0 0 0 0.2rem rgba(227, 6, 19, 0.2);
}

.btn-brand {
  background: linear-gradient(90deg, #E30613, #ff444f);
  border: none;
  border-radius: 40px;
  color: #fff;
  transition: all 0.3s ease;
  padding: 12px;
}

.btn-brand:hover {
  background: linear-gradient(90deg, #ff444f, #E30613);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
}