.skip-link {
  position: absolute; /* Removes from normal document flow */
  top: -40px; /* Hides off-screen by default */
  left: 0; /* Aligns to left edge */
  background: var(--primary); /* Uses CSS variable for brand color */
  color: white; /* High contrast text */
  padding: 0.75rem 1.5rem; /* Clickable area spacing */
  z-index: 1001; /* Ensures it appears above other content */
  transition: top 0.3s ease; /* Smooth reveal animation */
  border-radius: 0 0 4px 4px; /* Rounded bottom corners */
}

.skip-link:focus {
  top: 0; /* Brings into view when focused */
  outline: 2px solid white; /* Clear focus indicator */
}
:root {
  /* Keep existing primary/secondary */
  --primary: #5b52e6;
  --primary-dark: #4a40cc;
  --secondary: #e6451a;
  /* New supporting colors */
  --background: #0b1220; /* Deep navy base */
  --surface: #161f30; /* Dark slate surface */
  --surface-light: #212b3d; /* Medium contrast surface */
  --surface-extra: #2d384d; /* Light surface accent */
  /* Text colors */
  --text: #f8fafc; /* Pure white */
  --text-secondary: #a3b2c8; /* Soft blue-gray */
  /* New accent color */
  --accent: #2dd4bf; /* Fresh teal for highlights */
  /* Constants */
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --primary-rgb: 91, 82, 230;
  --secondary-rgb: 230, 69, 26;
  --surface-light-rgb: 51, 65, 85;
}
/* ====================
     BASE & RESET
     ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* For fixed header */
  font-size: 100%; /* 16px base */
}

@media (min-width: 768px) {
  body {
    font-size: 1.125rem; /* 18px for larger screens */
  }
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  /* Existing styles */
  font-weight: 400; /* Explicit regular weight */
  font-size: 1rem; /* Base size (16px equivalent) */
  letter-spacing: 0.01em; /* Slightly improves readability */
  -webkit-font-smoothing: antialiased; /* Better rendering on MacOS */
  text-rendering: optimizeLegibility; /* Careful with performance */
}
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
/* ====================
   UTILITY CLASSES
   ==================== */

/* Modernized screen reader-only utility */
.sr-only:not(:focus):not(:active) {
  clip-path: inset(50%); /* Modern replacement for clip */
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* Add focus state for keyboard users */
.sr-only.focusable:focus {
  clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Enhanced container with accessibility considerations */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem); /* Responsive padding */
  box-sizing: border-box;

  /* Prevent container from shrinking beyond minimum readable width */
  min-width: min(100%, 320px);

  /* Accessibility: */
  position: relative;
  word-wrap: break-word;
  hyphens: auto;
}

/* For reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .container {
    scroll-behavior: auto;
  }
}

/* Fallback for older browsers */
@supports not (clamp(1px, 2px, 3px)) {
  .container {
    padding: 0 1.5rem;
  }
}

/* ====================
     ANIMATED BACKGROUND
     ==================== */
.animated-background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.cube {
  position: absolute;
  background: var(--primary);
  opacity: 0.1;
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

/* Cube positions remain same as before */
.cube:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
}
.cube:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 70%;
  left: 80%;
  background: var(--secondary);
  animation-delay: -2s;
}
.cube:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 60%;
  animation-delay: -4s;
}
.cube:nth-child(4) {
  width: 180px;
  height: 180px;
  top: 80%;
  left: 20%;
  background: var(--secondary);
  animation-delay: -6s;
}
.cube:nth-child(5) {
  width: 160px;
  height: 160px;
  top: 20%;
  left: 80%;
  animation-delay: -8s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-100px) rotate(180deg);
  }
}

/* ====================
     HEADER & NAVIGATION
     ==================== */

.header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 1rem 2rem;
  background: white;
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: space-between; /* Key change */
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 2px 10px 10px rgba(26, 26, 26, 0.25);
}

/* Left-aligned content */
.header-left {
  display: flex;
  align-items: center;
}

/* Right-aligned navigation */
.header-right {
  display: flex;
  align-items: center;
}

/* Remove individual positioning - now handled by parent .header */

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.st0 {
  fill: url(#linear-gradient);
}

.st1 {
  fill: black;
}
/* ====================
     HERO SECTION
     ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  position: relative;
}

/* Content Grid */
.hero-content {
  margin: 1rem 0;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(385px, 0.25fr);
  gap: 2rem; /* Reactivate with smaller gap */
  align-items: center;
  width: 100%;
  max-width: 1200px; /* Prevent over-stretching */
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

/* Text Column */
.hero-text {
  padding-right: 2rem;
}

/* Image Column */
.hero-image {
  /* Remove any width constraints */
  width: auto;
  min-width: 385px; /* Match your intended height */
}

.hero-img {
  width: auto;
  height: 385px; /* Fixed height you want */
  max-width: none; /* Remove max-width restriction */
  object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr; /* Stack on tablets */
  }

  .hero-text {
    padding-right: 0;
    order: 1; /* Text first on mobile */
  }

  .hero-image {
    margin-top: 2rem;
    max-width: 400px; /* Constrain image */
    margin-left: auto;
    margin-right: auto;
    order: 2;
  }
}
@media (max-width: 320px) {
  .hero-image {
    display: none;
  }
  .hero-content {
    margin-top: 4rem;
  }
  .hero-subheading {
    font-size: 0.8rem;
  }
  .next {
    right: -10px;
  }
  .prev {
    left: -10px;
  }
  .carousel-control {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 4rem;
    min-height: auto;
  }
}

.glitch-text {
  position: relative;
}

.glitch-text[data-text]::before,
.glitch-text[data-text]::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch-text[data-text]::before {
  color: var(--primary);
  animation: glitch-top 2.5s infinite linear alternate-reverse;
  z-index: -1;
}

.glitch-text[data-text]::after {
  color: var(--secondary);
  animation: glitch-bottom 2.5s infinite linear alternate-reverse;
  z-index: -2;
}

@keyframes glitch-top {
  0% {
    transform: translate(-2px, -2px);
  }
  100% {
    transform: translate(2px, 2px);
  }
}

@keyframes glitch-bottom {
  0% {
    transform: translate(2px, 2px);
  }
  100% {
    transform: translate(-2px, -2px);
  }
}

.typing-container {
  height: 2.5rem;
  margin-bottom: 2rem;
}

.typing {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 500;
}

.hero-description {
  color: black;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 600px;
}

.circle-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--primary),
    var(--secondary),
    var(--primary)
  );
  animation: rotate 15s linear infinite;
}

.profile-img {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  border-radius: 50%;
  object-fit: contain;
  background: var(--background);
  padding: 1rem;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero-subheading {
  font-size: 1rem;
  color: black;
  margin: 1.5rem 0;
  font-weight: 400;
  line-height: 1.4;
  max-width: 800px;
}

@media (min-width: 768px) {
  .hero-subheading {
    font-size: 1rem;
    margin: 2rem 0;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 1rem; /* Tighter spacing on mobile */
  }
  .logo {
    font-size: 1.2rem; /* Smaller text on mobile */
  }
}
/* ====================
     BUTTONS
     ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn.small {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.btn.primary {
  background: var(--primary);
  color: white;
}

.btn.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(91, 82, 230, 0.3);
}

.btn.secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn.secondary:hover {
  background: rgba(91, 82, 230, 0.1);
  transform: translateY(-3px);
}

/* ====================
   SERVICES SECTION
   ==================== */

/* ===== Services Section Core Styles ===== */
.services {
  padding: 1rem 0;
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--background) 60%,
    rgba(var(--primary-dark-rgb), 0.05)
  );
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
  color: black;
}
.section-subtitle {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 2rem 0rem;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
  color: black;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.section-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* ===== Services Grid Layout ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

/* ===== Service Card Structure ===== */
.service-card {
  background: #404040;
  border-radius: var(--border-radius);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  transition: var(--transition);
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Gradient Overlay Effect */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(var(--primary-rgb), 0.1),
    rgba(var(--secondary-rgb), 0.05)
  );
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

/* ===== Icon Container Styles ===== */
.service-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: rgba(var(--primary-rgb), 0.1);
  transition: transform var(--transition), background var(--transition),
    filter var(--transition);
  position: relative;
  z-index: 2;
}

.service-icon .material-icons {
  font-size: 36px;
  color: var(--primary);
  transition: color var(--transition);
}

/* ===== Content Area Styles ===== */
.service-content {
  flex: 1;
  padding: 0;
  position: relative;
  z-index: 2;
}

.service-content h3 {
  margin-bottom: 0.25rem;
  color: var(--text);
  font-size: 1.3rem;
  position: relative;
}

.service-content h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--secondary);
  margin: 0.5rem 0 1rem;
}

.service-subheader {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.service-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ===== Hover Effects ===== */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(var(--primary-rgb), 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.05);
  filter: brightness(1.05);
  background: rgba(var(--primary-rgb), 0.2);
}

.service-card:hover .service-icon .material-icons {
  color: var(--secondary);
}

/* ===== Responsive Design ===== */
@media (max-width: 480px) {
  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .service-icon .material-icons {
    font-size: 32px;
  }

  .service-content h3::after {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== Button Styles ===== */
.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background:#ff5e14;
  color: white;
  border-radius: 4px;
  transition: filter var(--transition);
}

.btn.small:hover {
  filter: brightness(1.1);
}

/* ====================
   ABOUT SECTION
   ==================== */ /* Custom Styles */
   .title-underline{
    color:white;
   }
.about {
  position: relative;
  padding: 4rem 2rem;
  background:linear-gradient(38deg, #262627 60%, #6951d1 100%);
  overflow: hidden;
}

.about-deco {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-cloud {
  position: absolute;
  width: 120px;
  height: 40px;
  background: #ffffff45;
  border-radius: 20px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  animation: float 6s ease-in-out infinite;
}

.pixel-rocket {
  font-size: 3rem;
  position: absolute;
  right: 10%;
  top: -50px;
  animation: rocketLaunch 8s infinite;
}

.about-card {
  background: rgb(255 255 255 / 16%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 2rem auto;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}
.mission-title {
  color: white;
}
.about-card:hover {
  transform: rotateY(5deg) rotateX(2deg) translateY(-5px);
}

.partner-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.badge {
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: scale(1.05) rotate(2deg);
}

.monday {
  background: #6161ff;
  color: white;
}
.hubspot {
  background: #e98231;
  color: white;
}
.aws {
  background: #f29d3a;
  color: white;
}

.animated-list li {
  padding: 0.5rem;
  margin: 0.5rem 0;
  background: #ff5e1499;
  border-radius: 10px;
  animation: listEntry 0.5s ease-out backwards;
}

@keyframes listEntry {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cta-bubble {
  position: relative;
  background: var(--primary);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 30px;
  width: fit-content;
  margin: 2rem auto;
  animation: pulse 2s ease-in-out infinite;
}

.bubble-tail {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .partner-badges {
    flex-direction: column;
  }
}
/* ====================
     CONTACT SECTION
     ==================== */
.contact {
  padding: 8rem 0;
}
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: 0px 7px 30px rgb(110 107 107 / 65%);
}

.contact-form {
  display: grid;
  gap: 2rem;
}

.form-group {
  position: relative;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 1rem;
  /* background: rgb(209 210 211 / 98%); */
  border: 1px solid rgb(67 61 61);
  border-radius: 8px;
  color: black;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group label {
  position: absolute;
  color: #ff5e14;
  transition: var(--transition);
  pointer-events: none;
  padding: 0 0.5rem;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.phone {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 1rem;
  font-weight: bold;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 1rem;
  font-weight: bold;
  background: white;
}

.line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
}

.form-group input:focus ~ .line,
.form-group textarea:focus ~ .line {
  width: 100%;
}

/* ====================
     RESPONSIVE DESIGN
     ==================== */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 0rem;
    text-align: center;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    max-width: 100%;
  }

  .circle-container {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--surface);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .nav-links[aria-expanded="true"] {
    transform: translateY(0);
  }

  .nav-links a::after {
    display: none;
  }

  .contact-container {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }

  .header {
    padding: 1rem 1.5rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    padding: 1.5rem;
  }
}

/* ====================
     ACCESSIBILITY IMPROVEMENTS
     ==================== */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ====================
     footer settings
     ==================== */
ul {
  margin: 0px;
  padding: 0px;
}
.footer-section {
  background: #151414e3;
  position: relative;
  font-weight: 400;
}
.footer-cta {
  border-bottom: 1px solid #373636;
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #ff5e14;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #ff5e14;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg {
  background: #3b5998;
}
.twitter-bg {
  background: #55acee;
}
.google-bg {
  background: #dd4b39;
}
.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover {
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #ff5e14;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  color: #fff;
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area {
  background: #202020;
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}
.copyright-text p a {
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #878787;
}
.footer-logo {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 4rem;
}
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}
