.read-more {
  display: inline-block;
  color: #ffffff; /* Always white text */
  background-color: #0057ff; /* Brand blue */
  padding: 0.5rem 0.75rem; /* py-2 px-3 */
  border-radius: 9999px; /* rounded-full */
  font-weight: 500; /* font-medium */
  transition: background-color 0.3s ease;
  margin-top: auto;
  text-decoration: none; /* remove underline */
}
  
.read-more:hover {
  color: #ffffff; /* Keep text white */
  background-color: #003bbd; /* Darker blue on hover */
}

/* Home hero section css */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 1.2s ease forwards;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-200 {
  animation-delay: 0.2s;
}

.gradient-wave {
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(96, 165, 250, 0.25),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 40%,
      rgba(167, 139, 250, 0.25),
      transparent 40%
    ),
    radial-gradient(
      circle at 60% 80%,
      rgba(139, 92, 246, 0.25),
      transparent 40%
    );
  animation: wave-shift 40s ease-in-out infinite alternate,
    wave-float 60s ease-in-out infinite alternate;
  filter: blur(60px);
}

@keyframes wave-shift {
  0% {
    transform: translate(-10%, -10%) scale(1);
  }

  100% {
    transform: translate(10%, 10%) scale(1.2);
  }
}

@keyframes wave-float {
  0% {
    transform: translate(0%, 0%) rotate(0deg);
  }

  100% {
    transform: translate(5%, 5%) rotate(3deg);
  }
}

/*Home hero section css disabled*/

.py-20 {
  padding-top: 10px !important;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 53px !important;
}

/* Default Theme Colors */
:root {
  --primary-color: #0057ff;
  /* Primary theme color (blue) */
  --secondary-color: #ff7f00;
  /* Secondary color (orange) */
  --background-color: #f9fafb;
  /* Background color */
  --text-color: #333;
  /* Main text color */
  --heading-color: #222;
  /* Heading text color */
  --link-color: #0057ff;
  /* Link color */
  --hover-color: #0066cc;
  /* Hover effect color */
  --card-bg-color: #ffffff;
  /* Background color for cards */
  --cta-bg-color: #ff7f00;
  /* Call-to-action button background color */
  --cta-text-color: #ffffff;
  /* Call-to-action button text color */
  --footer-bg-color: #333;
  /* Footer background color */
  --footer-text-color: #fff;
  /* Footer text color */
}

/* Body */
body,
p,
li {
  font-family: "Inter", sans-serif;
  /* best for body */
  font-weight: 400;
  font-size: 1rem;
  /* ~16px */
  line-height: 1.7;
  color: #444;
  overflow-x: hidden;
}

/* Heading Styles */
h1,
h2,
h3,
.content-title {
  font-family: "Poppins", sans-serif;
  /* or 'Montserrat' */
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #111;
}

body,
p,
li,
span {
  font-family: "Inter", sans-serif;
  /* best for body */
  font-weight: 400;
  font-size: 1rem;
  /* ~16px */
  line-height: 1.7;
  color: #444;
}

/* Links */
a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--hover-color);
}

/* Hero Section */
.hero-section {
  background: var(--primary-color);
  color: var(--cta-text-color);
  padding: 4rem 2rem;
  text-align: center;
}

/* Button (CTA) */
.button-cta {
  background-color: var(--cta-bg-color);
  color: var(--cta-text-color);
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.button-cta:hover {
  background-color: var(--hover-color);
}

/*paragraph heading*/

.sub {
  font-size: 20px;
  /* text-xl */

  font-weight: 600;
  /* font-semibold */
  color: #1f2937;
}

/* Services Section */
.services-section {
  background-color: var(--card-bg-color);
  padding: 3rem 1.5rem;
}

.service-item {
  background-color: var(--card-bg-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-icon {
  background-color: var(--primary-color);
  color: var(--cta-text-color);
  padding: 0.75rem;
  border-radius: 50%;
}

.service-heading {
  font-weight: 600;
  margin-top: 1rem;
  color: var(--heading-color);
}

.service-description {
  color: var(--text-color);
}

/* Footer */
footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: 3rem 1rem;
  text-align: center;
}

/* FAQ Css Start here */

/* Section background */
.faq-section {
  background: linear-gradient(to bottom right, #eff6ff, #ffffff, #faf5ff);
}

/* Heading */
.faq-heading {
  font-size: 2.25rem;
  /* text-4xl */
  font-weight: 800;
  /* font-extrabold */
  color: #111827;
  /* gray-900 */
  margin-bottom: 3rem;
  /* text-shadow: 2px 2px 8px rgba(59, 130, 246, 0.6); */
}

/* FAQ item container */
.faq-item {
  border-radius: 1rem;
  /* rounded-2xl */
  border: 1px solid #e5e7eb;
  /* border-gray-200 */
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.01);
}

/* Summary (button part) */
.faq-summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  /* px-6 py-5 */
  font-size: 1.125rem;
  /* text-lg */
  font-weight: 600;
  /* font-semibold */
  color: #374151;
  /* gray-700 */
  background-color: #0057ff;
  /* gray-100 */
  transition: all 0.3s ease;
  list-style: none;
}

/* Opened state of summary */
.faq-item[open] .faq-summary {
  background: linear-gradient(to right, #4f46e5, #9333ea);
  /* indigo to purple */
  color: #fff;
}

/* Icon */
.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #6b7280;
  /* gray-500 */
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: #fff;
}

/* Answer animation wrapper */
.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-in-out;
}

.faq-item[open] .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

/* Answer content */
.faq-answer {
  overflow: hidden;
  padding: 1rem 1.5rem 1.5rem;
  margin-top: 0.75rem;
  border-radius: 0.75rem;
  /* rounded-xl */
  background: #f9fafb;
  /* gray-50 */
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid;
  animation: fadeIn 0.4s ease-in-out;
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

/* FAQ Css End Here */

/* Hero section */
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  text-align: center;
  padding: 19px 11px 95px;
  position: relative;
}

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

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: white;
}

.cta-btn:hover {
  background: #eab308;
}

.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60px;
  background: #fff;
  border-top-left-radius: 100% 60px;
  border-top-right-radius: 100% 60px;
}

/* SEO Content */
.seo-content {
  padding: 5px 16px;
  background: #fff;
}

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

.seo-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 10px;
}

.seo-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #374151;
}

.seo-content strong {
  color: #2563eb;
}

/* hero section end */

/* Why choose Us */

/* ========== WHY CHOOSE SECTION ========== */
/* --- WHY CHOOSE US SECTION --- */
/* --- WHY CHOOSE US SECTION --- */
.why-choose-us {
  background: linear-gradient(135deg, #f9fafb, #eef2f7);
  padding: 27px 12px;
  text-align: center;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 7px;
  position: relative;
  padding-bottom: 4px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #9333ea);
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #4b5563;
  max-width: 720px;
  margin: 0 auto 70px auto;
  line-height: 1.7;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.feature-card {
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.feature-card .icon {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1f2937;
}

.feature-card p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

/* Responsive Design */
@media (min-width: 768px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Why Choose us **/

/* header section below hero */
/* Universal Content Section */
.content-section {
  padding: 60px 20px;
  background: #fff;
}

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

.content-text {
  flex: 1 1 50%;
}

.content-title {
  font-size: 30px;
  margin-bottom: 15px;
  color: #222;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  letter-spacing: -0.3px;
  background: linear-gradient(90deg, #0f172a, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-title-dark-bg {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
  font-weight: 700;
  line-height: 32px;
  color: white;
  letter-spacing: -0.3px;
  background: linear-gradient(90deg, #0f172a, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-subtitle {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 32px;
  color: #1e293b;
  /* Solid dark gray-blue for professional look */
  letter-spacing: -0.2px;
}

.content-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.content-image {
  flex: 1 1 45%;
  text-align: right;
}

.content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

  .content-image {
    text-align: center;
    margin-top: 20px;
  }

  .content-text {
    flex: 1 1 100%;
  }
}

.cta-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(90deg, #2563eb, #9333ea);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Secondary Button */
.btn-secondary {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background: #2563eb;
  color: #fff;
  transform: translateY(-2px);
}

.cta-buttons a:hover {
  color: white;
}

.tech-list {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.tech-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #374151;
  transition: color 0.3s ease;
}

.tech-list li:hover {
  color: #2563eb;
}

.tech-list .tech-icon {
  position: absolute;
  left: 0;
  top: 2px;
  color: #2563eb;
  font-size: 1.5rem;
  line-height: 1;
}

/* CTA Section Background */
.cta {
  position: relative;
  padding: 6rem 1rem;
  background: linear-gradient(to right, #1e3a8a, #312e81, #581c87);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Blurred Background Circles */
.cta-overlay::before,
.cta-overlay::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

.cta-overlay::before {
  width: 280px;
  height: 280px;
  background: #6366f1;
  top: -80px;
  left: -100px;
}

.cta-overlay::after {
  width: 400px;
  height: 400px;
  background: #ec4899;
  bottom: -100px;
  right: -100px;
}

/* Content */
.cta-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
  padding: 0 1rem;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: white;
}

.cta-content p span {
  /* font-weight: 600; */
}

/* Modern CTA Button */
.cta-btn-dark {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #ec4899, #fbbf24);
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #121111;
  background: linear-gradient(90deg, #ff8900, #f1d463);
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(45deg, #fbbf24, #ec4899);
}

/* Responsive Design */
@media (min-width: 640px) {
  .cta-content h2 {
    font-size: 2.5rem;
  }

  .cta-content p {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .cta {
    padding: 2rem 2rem;
  }

  .cta-content h2 {
    font-size: 3rem;
  }

  .cta-content p {
    font-size: 1.5rem;
  }
}

/* tech section  strat */
/* Section Wrapper */
.tech-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, #f9fafb, #eef2ff);
  text-align: center;
}

/* Container */
.tech-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */

.tech-container p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.tech-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  justify-content: center; /* Centers grid tracks */
  justify-items: center; /* Centers items inside cells */
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 1200px;
}

@media (max-width: 640px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1025px) {
  .tech-grid {
    grid-template-columns: repeat(8, 1fr);
    min-height: 110px;
  }
}

/* Tech Card */

.tech-card {
  position: relative;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  text-align: center;
  min-height: 140px;
  margin-bottom: 0.4rem;
  /* keeps them neat */
}

.tech-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.tech-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Background Glow */
.tech-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(30px);
  transition: opacity 0.3s ease;
}

.tech-card:hover .tech-bg {
  opacity: 0.2;
}

.tech-card img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin: 0 auto 0.5rem;
  position: relative;
  z-index: 2;
}

.tech-card h3 {
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.tech-card:hover h3 {
  color: #2563eb;
}

.tech-bg.blue {
  background: #3b82f6;
}

.tech-bg.pink {
  background: #ec4899;
}

.tech-bg.purple {
  background: #8b5cf6;
}

.tech-bg.yellow {
  background: #f59e0b;
}

/* Image */
.tech-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}

/* Title */
.tech-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  transition: color 0.3s ease;
}

.tech-card:hover h3 {
  color: #2563eb;
}

/* CTA Button */
.cta-wrapper {
  margin-top: 3rem;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

/* Responsive */
@media (max-width: 640px) {
  .tech-container h2 {
    font-size: 2rem;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 0.85rem 2rem;
  }
}

/* tech section  end */

/* navbar page */

/* Floating CTA container */
.floating-cta {
  position: fixed;
  right: 15px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1000;
}

/* Wrapper */
.cta-item {
  position: relative;
  width: 55px;
  height: 55px;
}

/* Button */
.cta-item a {
  position: absolute;
  top: 0;
  right: 0;
  /* stick to right */
  width: 55px;
  height: 55px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  transition: width 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

/* Icon always visible */
.cta-item .icon {
  flex-shrink: 0;
  font-size: 22px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-left: 10px;
}

/* Text (hidden initially) */
.cta-item .text {
  opacity: 0;
  margin-right: 10px;
  transition: opacity 0.25s ease;
}

/* Hover expands inward (to left) */
.cta-item:hover a {
  width: 220px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.cta-item:hover .text {
  opacity: 1;
}

/* Colors */
.cta-item.call a {
  background: linear-gradient(135deg, #ffe706, #f9a727);
}

.cta-item.email a {
  background: linear-gradient(135deg, #ff7a18, #ff3c00);
}

.cta-item.whatsapp a {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Responsive */
@media (max-width: 480px) {
  .cta-item {
    width: 48px;
    height: 48px;
  }

  .cta-item a {
    width: 48px;
    height: 48px;
    font-size: 14px;
    padding: 0 12px;
  }

  .cta-item .icon {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  .cta-item:hover a {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .floating-cta {
    display: none;
  }
}

/* CTA css end */

/* ================= Footer Cards ================= */
.footer-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-blur: 12px;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

.footer-card:hover {
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
  transform: translateY(-2px);
}

/* Gradient top bar for cards */
.footer-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background: linear-gradient(to right, #6366f1, #a78bfa, #ec4899);
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

/* Card title */
.footer-card-title {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(99, 102, 241, 0.3);
  padding-bottom: 0.5rem;
  text-align: left;
}

/* Lists inside cards */
.footer-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-card-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-card-list li a {
  color: #e5e7eb;
  /* gray-200 */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-card-list li a:hover {
  color: #818cf8;
  /* Indigo hover */
}

/* Card icons */
.footer-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6366f1;
  /* Default Indigo */
  color: #fff;
  font-size: 1rem;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-card-icon svg,
.footer-card-icon img {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-card-icon:hover {
  transform: scale(1.1);
}

/* ================= Social Icons Grid ================= */
.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-items: center;
}

@media (min-width: 640px) {
  .footer-social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Social icon cards */
.footer-social-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f2937;
  /* gray-800 */
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.footer-social-grid a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Social icon images */
.footer-social-grid a img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

/* ================= Footer General ================= */
footer {
  position: relative;
  background: linear-gradient(135deg, #111827, #1f2937, #111827);
  color: #d1d5db;
  /* gray-300 */
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

/* Decorative glow orbs */
footer .glow-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(6rem);
  opacity: 0.1;
}

/* Bottom copyright */
footer .footer-bottom {
  margin-top: 4rem;
  border-top: 1px solid #1f2937;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
}

footer .footer-bottom span {
  color: #fff;
  font-weight: 600;
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  .footer-card {
    margin-bottom: 2rem;
  }

  .footer-card-title {
    text-align: center;
  }

  .footer-social-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

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

  .footer-card-icon {
    width: 2rem;
    height: 2rem;
  }

  .footer-card-icon svg,
  .footer-card-icon img {
    width: 1rem;
    height: 1rem;
  }
}

/* footer card css end */

/* get quote css start */

/* Background with animated gradient */
/* .quote-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 11px;
  /* background: linear-gradient(270deg, #0057ff, #00c6ff, #0047cc); */
/* background-size: 600% 600%;
  animation: gradientShift 10s ease infinite;
} */

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Card */
.quote-card {
  background: #fff;
  width: 100%;
  max-width: 720px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px; /* keeps card consistent */
  position: relative;
  overflow: hidden;
}

/* Urgency badge (optional) */
.quote-card::before {
  content: "⚡ Limited Time Offer!";
  position: absolute;
  top: 15px;
  right: -70px;
  transform: rotate(30deg);
  background: #ff4444;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 60px;
  border-radius: 4px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Title */
.quote-title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #333;
  margin-bottom: 25px;
}
.quote-title span {
  color: #0057ff;
}

/* Grid for inputs */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-group.full-width {
    grid-column: span 2;
  }
}

/* Form elements */
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0057ff;
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.2);
}

/* Button */
.submit-btn {
  width: 100%;
  background: #0057ff;
  color: white;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}
.submit-btn:hover {
  background: #0047cc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 87, 255, 0.3);
}

/* get quote css end */

/* Quick Connect button css */

.quick-connect-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  transform: translateX(100%);
  animation: slideIn 0.6s forwards;
}

.quick-connect-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.quick-connect-btn .icon {
  width: 28px;
  height: 28px;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

/* quick connect button css end */


/* Responsive tech-grid and small-screen tweaks */

/* ensure images inside cards scale */
.tech-card img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* layout container for tech cards */
.tech-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  align-items: start;
  margin: 0 auto;
  padding: 0.5rem;
}

/* unify card inner layout but keep your .tech-card styles */
.tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.9rem;
  background: #fff; /* optional: keep cards readable on mobile */
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(16,24,40,0.04);
  min-height: 120px;
}

/* card title responsive */
.tech-card h3 {
  font-size: 14px;
  margin-top: 0.6rem;
  line-height: 1.1;
}

/* make tab contents breathe on small screens */
.tab-content {
  padding: 0 1rem 1.5rem;
}

/* tabs: keep horizontal scroll but make items smaller on tiny screens */
.tabs {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  padding: 0 0.5rem;
}

/* ensure active underline doesn't overflow on small labels */
.tab-btn {
  white-space: nowrap;
  padding: 0.5rem 0.25rem;
  margin: 0 0.25rem;
  font-size: 18px;
  line-height: 1;
}

/* media queries for very small devices */
@media (max-width: 420px) {
  .tech-grid { gap: 0.9rem; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
  .tab-btn { font-size: 16px; padding: 0.45rem 0.25rem; }
  .tech-card { padding: 0.7rem; min-height: 100px; }
  .tech-card h3 { font-size: 13px; }
}

/* tablet / small desktop */
@media (min-width: 641px) and (max-width: 1024px) {
  .tech-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
  .tab-btn { font-size: 20px; }
}

