/* ===========================================
   FONTS & VARIABLES
   =========================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=TASA+Explorer:wght@400..800&family=TASA+Orbiter:wght@400..800&display=swap');

:root {
  /* Colors */
  --color-red: #e33721;
  --color-purple: #5d45fd;
  --color-d-blue: #033267;
  --color-s-gray: #212d31;
  --color-sub-blue: #488dd2;
  --color-cream: #dedede;
  
  /* Fluid Typography */
  --fs-hero: clamp(3rem, 8vw + 1rem, 6.25rem);          /* 48px -> 100px */
  --fs-h1: clamp(2rem, 5vw + 1rem, 3.125rem);           /* 32px -> 50px */
  --fs-h2: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);        /* 28px -> 40px */
  --fs-h3: clamp(1.5rem, 3vw + 0.5rem, 1.875rem);       /* 24px -> 30px */
  --fs-h4: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);        /* 20px -> 24px */
  --fs-body: clamp(0.875rem, 1vw + 0.5rem, 1rem);       /* 14px -> 16px */
  --fs-small: clamp(0.75rem, 0.5vw + 0.5rem, 0.875rem); /* 12px -> 14px */
  
  /* Spacing */
  --spacing-xs: clamp(0.5rem, 1vw, 0.75rem);
  --spacing-sm: clamp(0.75rem, 1.5vw, 1rem);
  --spacing-md: clamp(1rem, 2vw, 1.5rem);
  --spacing-lg: clamp(1.5rem, 3vw, 2.5rem);
  --spacing-xl: clamp(2rem, 4vw, 5rem);
  --section-padding: clamp(3rem, 6vw, 5rem);
}

/* ===========================================
   GLOBAL RESET & BASE STYLES
   =========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'TASA Orbiter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h2 {
  font-weight: bold;
  font-size: var(--fs-h2);
  color: var(--color-s-gray);
}

p {
  font-size: var(--fs-body);
  line-height: 1.5;
  letter-spacing: 0.7;
  font-weight: 500;
}

/* ===========================================
   TYPOGRAPHY SYSTEM
   =========================================== */

/* Hero/Main Headings */
.section-heading,
.white-heading,
.heading-1 {
  font-size: var(--fs-h1);
  font-weight: 900;
  line-height: 1.16;
  color: var(--color-s-gray);
}

.white-heading {
  color: white;
}

.white-heading-cta {
  font-size: clamp(1.625rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 600;
  line-height: 1;
  color: white;
}

/* Section One Typography */
.section-one-title {
  font-size: var(--fs-hero);
  font-weight: bold;
  color: white;
  line-height: 1.1;
  margin-bottom: 10px;
}

.section-one-subtitle {
  font-size: var(--fs-h2);
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
}

.section-one-description {
  line-height: 1.5;
  font-size: 16px;
  color: white;
}

/* Subheadings */
.section-subheading {
  width: 80%;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: var(--color-sub-blue);
}

.white-subheading {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: white;
}

.white-subheading-cta {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: white;
  max-width: 800px;
}

/* Section Two */
.section-two-heading {
  font-size: 30px;
  font-weight: bold;
  color: var(--color-s-gray);
}

.section-two-desc {
  line-height: 1.5;
  font-size: 16px;
  color: #000;
}

/* Patch Content */
.patch-content h3 {
  font-weight: bold;
  line-height: 58px;
  font-size: 40px;
  color: var(--color-s-gray);
}

.patch-content p {
  line-height: 1.5;
  font-size: 16px;
  color: #383838;
}

/* Process Cards */
.step-number {
  font-weight: bold;
  font-size: 20px;
}

.step-title {
  font-weight: bold;
  font-size: 32px;
}

/* Feature Cards */
.feature-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: #000;
}

.feature-desc {
  font-size: 16px;
  line-height: 1.5;
}

/* General Heading/Info */
.h3-heading {
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-s-gray);
  font-weight: bold;
}

.info {
  font-size: 16px;
  line-height: 1.5;
}

/* Hero Description */
.desc-1 {
  font-size: 18px;
  color: var(--color-s-gray);
  margin-bottom: 2rem;
}

/* Testimonials */
.testimonial-text {
  line-height: 1.5;
  margin-bottom: 40px;
  font-style: italic;
  color: var(--color-d-blue);
}

.testimonial-author {
  padding-top: 10px;
}

.author-name {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  line-height: 26px;
}

.author-title {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

/* Forms */
.form-title {
  font-weight: bold;
  font-size: 30px;
  color: var(--color-s-gray);
}

.form-subtitle {
  font-size: 16px;
  color: #6d6d6d;
  margin-bottom: 30px;
}

/* Footer */
.footer-text {
  color: black;
  padding-inline-end: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #c0c0c0;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.newsletter-heading {
  color: var(--color-s-gray);
  font-weight: bold;
  font-size: 30px;
}

.newsletter-text {

  color: #000;
  font-size: 16px;
  margin-bottom: 20px;
}

.newsletter-disclaimer {
  font-size: 14px;
  color: #73869d;
}

.footer-links h5 {
  color: #333;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 24px;
}

.footer-links ul li a {
  color: var(--color-s-gray);
  font-size: 16px;
}

.contact-info-footer h5 {
  color: var(--color-s-gray);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 24px;
}

.contact-item {
  font-size: 14px;
  color: #6c757d;
}

/* Accordion */
.accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.accordion-body {
  font-size: 15px;
  line-height: 24px;
  color: #383838;
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */
.section-padding {
  padding: 80px 0;
}

.text-red {
  color: var(--color-red);
}

.top-bar-text {
  font-size: 12px;
  color: var(--color-s-gray);
}

/* ===========================================
   BUTTONS
   =========================================== */
button {
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  padding-inline: 32px;
  padding-block: 8px;
  font-size: 16px;
  color: white;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  filter: brightness(1.08);
  letter-spacing: 0.03em;
}

.red-btn {
  background-color: var(--color-red);
  gap: 8px;
}

.purple-btn {
  background-color: var(--color-purple);
  padding-inline: 80px;
  padding-block: 14px;
  gap: 8px;
}

.d-blue-btn {
  background-color: var(--color-d-blue);
  font-weight: 400;
  padding: 8px 42px !important;
}

.white-btn {
  background-color: #fff;
  font-weight: 400;
  padding: 14px 80px !important;
}

.white-btn a {
  color: #000;
}

.section-one-btn {
  background-color: var(--color-red);
  font-weight: 500;
  font-size: 16px;
  padding: 16px 64px !important;
  box-shadow: 0px 0px 40px 10px rgba(227, 55, 33, 0.4);
}

.section-two-btn {
  width: auto !important;
}

.form-submit-btn {
  background-color: var(--color-purple);
  font-weight: 500;
  color: #fff;
  width: 100%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  padding: 16px 64px !important;
  box-shadow: 0px 0px 20px 5px rgba(92, 68, 250, 0.4);
}

/* ===========================================
   FORM ELEMENTS
   =========================================== */
input,
select,
textarea {
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 8px 16px;
  border: 1px solid #ddd;
}

input::placeholder {
  color: #a7a7a7;
  font-weight: medium;
  font-size: 14px;
}

select {
  color: #a7a7a7;
  font-size: 14px;
  font-weight: medium;
}

textarea {
  height: 120px;
  font-weight: medium;
  font-size: 14px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: white;
}

/* ===========================================
   FLIP CARDS
   =========================================== */
.flip-card {
  background-color: transparent;
  perspective: 1000px;
  height: 100%;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flip-card-front {
  z-index: 2;
}

.flip-card-back {
  transform: rotateY(180deg);
  z-index: 1;
}

.flip-card-front img {
  height: 110px;
  width: 110px;
  align-self: center;
  margin-bottom: 20px;
}

.flip-card-back img {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
  align-self: start;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes float1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(-5deg);
  }
}

.floating-image {
  position: absolute;
  z-index: -10;
}

.floating-1 {
  top: 15%;
  left: 2%;
  animation: float1 6s ease-in-out infinite;
}

.floating-2 {
  bottom: 12%;
  left: 45%;
  animation: float2 8s ease-in-out infinite;
}

.floating-3 {
  top: 18%;
  left: 45%;
  animation: float2 4s ease-in-out infinite;
}

.floating-4 {
  bottom: 32%;
  right: 2%;
  animation: float2 10s ease-in-out infinite;
}


/* ===========================================
   HEADER
   =========================================== */
.top-bar-wrapper {
  border-bottom: 1px solid var(--color-cream);
  padding-block: 8px;
}

.top-bar-text {
  color: var(--color-red);
}

.top-bar-wrapper .socials {
  display: inline-flex;
  gap: 16px;
}

.top-bar-wrapper .socials i {
  font-size: 14px;
  color: var(--color-d-blue);
}

.navbar {
  border-bottom: 1px solid var(--color-cream);
}

.navbar-nav {
  gap: 3rem;
}

.navbar-nav .nav-item a {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-s-gray); 
}

.navbar-nav .nav-item a:hover {
  color: var(--color-d-blue);
}

/* Combined Pulse + Glow Animation */
@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(99, 102, 241, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.8), 0 0 30px rgba(99, 102, 241, 0.6);
  }
}

.header-btn {
  animation: pulseGlow 1s ease-in-out infinite;
  
}

/* ===========================================
   MOBILE MENU STYLES
   =========================================== */

/* Hamburger button styling */
.navbar-toggler {
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
}

/* Mobile menu container */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* Menu items */
  .navbar-nav {
    gap: 5px;
  }

  .navbar-nav .nav-link {
    padding: 12px 16px !important;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: background-color 0.2s ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    background-color: #f5f5f5;
    color: var(--color-d-blue, #1a1a6c);
  }

  /* Active state */
  .navbar-nav .nav-link.active {
    background-color: #e3e8ff;
    color: var(--color-d-blue, #1a1a6c);
  }

  /* Dropdown styling */
  .navbar-nav .dropdown-menu {
    border: none;
    box-shadow: none;
    padding: 0 0 0 15px;
    margin: 0;
    background: transparent;
  }

  .navbar-nav .dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
  }

  .navbar-nav .dropdown-item:hover {
    background-color: #f5f5f5;
  }

  /* Services dropdown toggle */
  .navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
  }

  /* CTA Button in mobile menu */
  .navbar-nav .form-submit-btn,
  .navbar-nav .section-two-btn,
  .navbar-nav .btn-talk {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* ===========================================
   DESKTOP DROPDOWN - HOVER & STYLING
   =========================================== */

@media (min-width: 992px) {
  /* Enable hover dropdown */
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Dropdown menu styling */
  .navbar-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    border: none;
    border-radius: 12px;
    padding: 12px 0;
    min-width: 220px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
    margin-top: 0;
  }

  /* Remove default caret, add custom one */
  .dropdown-toggle::after {
    border: none;
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    transition: transform 0.2s ease;
    vertical-align: middle;
  }

  .dropdown:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
  }

  /* Dropdown items */
  .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
  }

  .dropdown-menu .dropdown-item:hover {
    background-color: #f8f9ff;
    color: var(--color-d-blue, #5c44fa);
    border-left-color: var(--color-d-blue, #5c44fa);
    padding-left: 24px;
  }

  /* Optional: add subtle dividers */
  .dropdown-menu .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
  }

  /* Keep dropdown open when hovering menu itself */
  .dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero-section {
  position: relative;
}

.patches-paint {
  color: #fff;
  background-image: url('/assets/images/Paint.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  width: fit-content;
  padding: 0 16px;
}

.gurantee-badge {
  display: inline-block;
  margin: 20px 0;
}

.trust-indicators {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-block: 20px;
}

.bg-circle-1,
.bg-circle-2,
.g-circle-1,
.g-circle-2,
.sm-circle-1,
.sm-circle-2 {
  position: absolute;
  z-index: -10;
}

.bg-circle-1 {
  left: 0;
  top: 30%;
}

.bg-circle-2 {
  right: 0;
  bottom: 0;
}

.g-circle-1 {
  left: 0;
  bottom: 15%;
}

.g-circle-2 {
  right: 0;
  top: 30%;
}

.sm-circle-1 {
  left: 0;
  top: 30%;
}

.sm-circle-2 {
  right: 0;
  bottom: 15%;
}

/* ===========================================
   SECTIONS
   =========================================== */
.section-one {
  background: var(--color-d-blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-two,
.section-four,
.faq-section {
  position: relative;
}

.separator-image {
  width: 100%;
  margin-top: -150px;
  z-index: -20;
}

.separator-image-our-process {
  width: 100%;
  z-index: -20;
}

.patch-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

.patch-item:last-child {
  margin-bottom: 0;
}

.row.gap-large {
  display: flex !important;
  align-items: stretch !important;
}

.row.gap-large .col-lg-6 {
  display: flex !important;
  flex-direction: column !important;
}

/* Process Cards */
.process-card {
  border-radius: 16px;
  border: 1px solid rgba(92, 68, 250, 0.4);
  overflow: hidden;
  height: 100%;

  
}

.process-header {
  background-color: var(--color-d-blue);
  color: #fff;
  padding: 20px;
  text-align: center;
}

.process-content {
  padding: 40px 20px;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.separator {
  margin-top: 60px;
}

/* ===========================================
   TESTIMONIALS
   =========================================== */
.testimonials-section {
  position: relative;
  max-height: 865px;
  max-width: 100%;
  background-color: var(--color-d-blue);
}

.swiper {
  width: 100%;
  height: fit-content;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination {
  margin-top: 80px !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.testimonial-card {
  background-color: white;
  max-width: 630px;
  max-height: 448px;
  border-radius: 28px;
  padding: 30px 60px;
  text-align: start;
  margin-bottom: 60px;
}

.quote-icon {
  margin-bottom: 20px;
}

/* ===========================================
   FAQ SECTION
   =========================================== */
.wave-bg-img {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: -10;
}

.accordion-item {
  border: 1px solid #dbdbdb;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  background: white;
  border: none;
  padding: 20px 25px;
  text-align: left;
  box-shadow: none;
  position: relative;
  padding-right: 70px;
}

.accordion-button:not(.collapsed) {
  background: white;
  color: #333;
  box-shadow: none;
}

.accordion-button::after {
  display: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq-icon {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) .faq-icon {
  transform: translateY(-50%) rotate(180deg);
}

.accordion-body {
  background: #f8f9fa;
  padding: 25px 50px;
  border-top: 1px solid #e9ecef;
}

.accordion-button:hover {
  background: #f8f9fa;
  transition: all 0.3s ease;
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta {
  background: url(/assets/images/wave-bg-cta.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 456px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-container {
  text-align: center;
  max-width: auto;
  max-height: 300px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ===========================================
   FORMS
   =========================================== */
.form-container {
  border-radius: 20px;
  background-color: #f5f7ff;
  padding: 40px;
 filter: drop-shadow(0 8px 22px rgba(175, 185, 225, 0.40));

}

.contact-form {
  padding: 0;
}

.purple-form {
  background-color: var(--color-purple);
}

.purple-form .form-title {
  color: #fff;
}

.purple-form .form-subtitle {
  color: #fff;
}

.purple-form input {
  background-color: rgba(250, 250, 250, 0.205);
}

.purple-form input::placeholder {
  color: #ffffff;
}

.purple-form select {
  background-color: rgba(250, 250, 250, 0.205);
  color: #fff;
}

.purple-form select option {
  color: #000;
}

.purple-form textarea {
  background-color: rgba(250, 250, 250, 0.205);
}

.purple-form textarea::placeholder {
  color: #ffffff;
}

.purple-form .drop-files p {
  color: #fff;
}

.purple-form .form-submit-btn {
  background-color: #fff;
  color: #000;
}

.drop-files {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.drop-files p {
  color: #a7a7a7;
  font-size: 15px;
  margin: 0;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer-section {
  padding: 60px 0 30px;
}

.footer-logo img {
  margin-bottom: 20px;
}

.newsletter-input {
  border: 1px solid #ddd;
  padding: 12px 15px;
  border-radius: 5px;
  background-color: #eef5fe;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--color-red);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  margin-right: 10px;
  margin-top: 2px;
  color: var(--color-d-blue);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-d-blue);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #1e3d6f;
}

.footer-bottom {
  background-color: var(--color-red);
  color: white;
  padding: 15px 0;
  font-size: 14px;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */

/* Large Screens (1200px and down) */
@media only screen and (max-width: 1200px) {
  .navbar-nav {
    gap: 1.5rem;
  }
  
  .top-bar-text {
    font-size: 11px;
  }
  
  .purple-btn,
  .red-btn {
    padding: 8px 16px;
    font-size: 16px;
  }
  
  .section-heading {
    font-size: 45px;
    line-height: 52px;
  }
  
  .section-subheading {
    font-size: 22px;
    line-height: 28px;
  }
  
  .white-heading {
    font-size: 45px;
    line-height: 52px;
  }
  
  .white-subheading {
    font-size: 18px;
    line-height: 24px;
  }
  
  .heading-1 {
    font-size: 45px;
    line-height: 52px;
  }
  
  .desc-1 {
    font-size: 17px;
  }
  
  .section-one-title {
    font-size: 90px;
  }
  
  .section-one-subtitle {
    font-size: 36px;
  }
  
  .section-one-description {
    font-size: 14px;
  }
  
  .section-two-heading {
    font-size: var(--fs-h2);
  }
  
  .section-two-desc {
    font-size: 15px;
  }
  
  .patch-content h3 {
    font-size: 36px;
    line-height: 52px;
  }
  
  .patch-content p {
    font-size: 15px;
    line-height: 21px;
  }
  
  .step-title {
    font-size: 28px;
  }
  
  .step-number {
    font-size: 18px;
  }
  
  .h3-heading {
    font-size: 22px;
    line-height: 32px;
  }
  
  .info {
    font-size: 14px;
    line-height: 21px;
  }
  
  .feature-title {
    font-size: 20px;
    line-height: 28px;
  }
  
  .feature-desc {
    font-size: 15px;
    line-height: 22px;
  }
  
  .testimonial-text {
    line-height: 24px;
  }
  
  .author-name {
    font-size: 15px;
    line-height: 24px;
  }
  
  .author-title {
    font-size: 13px;
    line-height: 24px;
  }
  
  .form-title {
    font-size: 28px;
  }
  
  .form-subtitle {
    font-size: 15px;
  }
  
  .newsletter-heading {
    font-size: 28px;
  }
  
  .newsletter-text {
    font-size: 15px;
  }
  
  .footer-links h5 {
    font-size: 22px;
  }
  
  .footer-links ul li a {
    font-size: 15px;
  }
  
  .contact-info-footer h5 {
    font-size: 22px;
  }
  
  .contact-item {
    font-size: 13px;
  }
  
  .accordion-button {
    font-size: 17px;
  }
  
  .accordion-body {
    font-size: 14px;
  }
}

/* Tablets (992px and down) */
@media only screen and (max-width: 992px) {
  .section-heading {
    font-size: 42px;
    line-height: 50px;
  }
  
  .white-heading {
    font-size: 42px;
    line-height: 50px;
  }
  
  .heading-1 {
    font-size: 42px;
    line-height: 50px;
  }
  
  .section-one-title {
    font-size: 80px;
    line-height: 88px;
  }
  
  .section-subheading {
    width: 100%;
    font-size: 19px;
    line-height: 27px;
  }
  
  .white-subheading {
    font-size: 18px;
    line-height: 24px;
  }
  
  .section-two-heading {
    font-size: 28px;
    line-height: 34px;
  }
  
  .section-one-subtitle {
    font-size: 32px;
    line-height: 40px;
  }
  
  .patch-content h3 {
    font-size: 36px;
    line-height: 48px;
  }
  
  .h3-heading {
    font-size: 22px;
    line-height: 32px;
  }
  
  .feature-title {
    font-size: 20px;
    line-height: 28px;
  }
  
  .step-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .form-title {
    font-size: 28px;
    line-height: 34px;
  }
  
  .newsletter-heading {
    font-size: 28px;
    line-height: 34px;
  }
  
  .footer-links h5 {
    font-size: 22px;
    line-height: 28px;
  }
  
  .contact-info-footer h5 {
    font-size: 22px;
    line-height: 28px;
  }
  
  .desc-1 {
    font-size: 16px;
    line-height: 24px;
  }
  
  .section-two-desc {
    font-size: 15px;
    line-height: 22px;
  }
  
  .section-one-description {
    font-size: 14px;
    line-height: 22px;
  }
  
  .patch-content p {
    font-size: 15px;
    line-height: 21px;
  }
  
  .info {
    font-size: 14px;
    line-height: 21px;
  }
  
  .feature-desc {
    font-size: 15px;
    line-height: 22px;
  }
  
  .form-subtitle {
    font-size: 15px;
    line-height: 22px;
  }
  
  .newsletter-text {
    font-size: 15px;
    line-height: 22px;
  }
  
  .footer-text {
    font-size: 15px;
    line-height: 1.6;
    padding-inline-end: 0;
  }
  
  .footer-links ul li a {
    font-size: 15px;
    line-height: 20px;
  }
  
  .contact-item {
    font-size: 13px;
    line-height: 19px;
  }
  
  .testimonial-text {
    font-size: 15px;
    line-height: 24px;
  }
  
  .author-name {
    font-size: 15px;
    line-height: 24px;
  }
  
  .author-title {
    font-size: 13px;
    line-height: 24px;
  }
  
  .drop-files p {
    font-size: 14px;
    line-height: 20px;
  }
  
  input::placeholder {
    font-size: 13px;
    line-height: 18px;
  }
  
  select {
    font-size: 13px;
    line-height: 18px;
  }
  
  textarea {
    font-size: 13px;
    line-height: 18px;
  }
  
  .accordion-button {
    font-size: 17px;
    line-height: 24px;
  }
  
  .accordion-body {
    font-size: 14px;
    line-height: 22px;
  }
  
  .white-heading-cta {
    font-size: 36px;
    line-height: 44px;
  }
  
  .white-subheading-cta {
    font-size: 15px;
    line-height: 22px;
  }
  
  .top-bar-text {
    font-size: 11px;
    line-height: 16px;
  }
  
  .step-number {
    font-size: 18px;
    line-height: 22px;
  }
  
  .newsletter-disclaimer {
    font-size: 13px;
    line-height: 18px;
  }
  
  .navbar-nav {
    gap: 1rem;
  }
  
  .purple-btn,
  .white-btn {
    padding: 14px 48px;
  }
  
  .trust-indicators {
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 30px 40px;
  }
}

/* Mobile (768px and down) */
@media only screen and (max-width: 768px) {
  .section-heading {
    font-size: 34px;
    line-height: 40px;
  }
  
  .white-heading {
    font-size: 34px;
    line-height: 40px;
  }
  
  .heading-1 {
    font-size: 34px;
    line-height: 40px;
  }
  
  .section-one-title {
    font-size: 56px;
    line-height: 64px;
  }
  
  .section-subheading {
    font-size: 17px;
    line-height: 24px;
  }
  
  .white-subheading {
    font-size: 16px;
    line-height: 22px;
  }
  
  .section-two-heading {
    font-size: 26px;
    line-height: 32px;
  }
  
  .section-one-subtitle {
    font-size: 24px;
    line-height: 32px;
  }
  
  .patch-content h3 {
    font-size: 28px;
    line-height: 36px;
  }
  
  .h3-heading {
    font-size: 20px;
    line-height: 28px;
  }
  
  .feature-title {
    font-size: 18px;
    line-height: 24px;
  }
  
  .step-title {
    font-size: 24px;
    line-height: 30px;
  }
  
  .form-title {
    font-size: 26px;
    line-height: 32px;
  }
  
  .newsletter-heading {
    font-size: 24px;
    line-height: 30px;
  }
  
  .footer-links h5 {
    font-size: 20px;
    line-height: 26px;
  }
  
  .contact-info-footer h5 {
    font-size: 20px;
    line-height: 26px;
  }
  
  .desc-1 {
    font-size: 15px;
    line-height: 22px;
  }
  
  .section-two-desc {
    font-size: 14px;
    line-height: 21px;
  }
  
  .section-one-description {
    font-size: 13px;
    line-height: 20px;
  }
  
  .patch-content p {
    font-size: 14px;
    line-height: 20px;
  }
  
  .info {
    font-size: 13px;
    line-height: 20px;
  }
  
  .feature-desc {
    font-size: 14px;
    line-height: 20px;
  }
  
  .form-subtitle {
    font-size: 14px;
    line-height: 20px;
  }
  
  .newsletter-text {
    font-size: 14px;
    line-height: 20px;
  }
  
  .footer-text {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .footer-links ul li a {
    font-size: 13px;
    line-height: 19px;
  }
  
  .contact-item {
    font-size: 12px;
    line-height: 18px;
  }
  
  .testimonial-text {
    font-size: 14px;
    line-height: 22px;
  }
  
  .author-name {
    font-size: 14px;
    line-height: 22px;
  }
  
  .author-title {
    font-size: 12px;
    line-height: 22px;
  }
  
  .drop-files p {
    font-size: 13px;
    line-height: 19px;
  }
  
  input::placeholder {
    font-size: 13px;
    line-height: 18px;
  }
  
  select {
    font-size: 13px;
    line-height: 18px;
  }
  
  textarea {
    font-size: 13px;
    line-height: 18px;
  }
  
  .accordion-button {
    font-size: 15px;
    line-height: 22px;
    padding-right: 60px;
  }
  
  .accordion-body {
    font-size: 13px;
    line-height: 20px;
    padding: 20px 25px;
  }
  
  .white-heading-cta {
    font-size: 28px;
    line-height: 36px;
  }
  
  .white-subheading-cta {
    font-size: 14px;
    line-height: 20px;
  }
  
  .top-bar-text {
    font-size: 10px;
    line-height: 14px;
  }
  
  .step-number {
    font-size: 16px;
    line-height: 20px;
  }
  
  .newsletter-disclaimer {
    font-size: 12px;
    line-height: 16px;
  }
  
  .purple-btn,
  .white-btn,
  .section-one-btn,
  .form-submit-btn {
    padding: 12px 32px;
    font-size: 14px;
  }
  
  .patch-item {
    flex-direction: column;
    /* text-align: center; */
    margin-bottom: 60px;
  }
  
  .trust-indicators {
    flex-direction: column;
    /* align-items: flex-start; */
    margin-bottom: 15px;
  }
  
  .process-content {
    min-height: 200px;
    padding: 30px 15px;
  }
  
  .testimonial-card {
    padding: 25px 30px;
  }
}

/* Small Mobile (480px and down) */
@media only screen and (max-width: 480px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .section-heading {
    font-size: 26px;
    line-height: 36px;
  }
  
  .white-heading {
    font-size: 30px;
    line-height: 36px;
  }
  
  .heading-1 {
    font-size: 30px;
    line-height: 36px;
  }
  
  .section-one-title {
    font-size: 48px;
    line-height: 56px;
  }
  
  .section-subheading {
    font-size: 16px;
    line-height: 22px;
  }
  
  .white-subheading {
    font-size: 14px;
    line-height: 20px;
  }
  
  .section-two-heading {
    font-size: 24px;
    line-height: 30px;
  }
  
  .section-one-subtitle {
    font-size: 20px;
    line-height: 28px;
  }
  
  .patch-content h3 {
    font-size: 26px;
    line-height: 32px;
  }
  
  .h3-heading {
    font-size: 18px;
    line-height: 26px;
  }
  
  .feature-title {
    font-size: 16px;
    line-height: 22px;
  }
  
  .step-title {
    font-size: 22px;
    line-height: 28px;
  }
  
  .form-title {
    font-size: 24px;
    line-height: 30px;
  }
  
  .newsletter-heading {
    font-size: 22px;
    line-height: 28px;
  }
  
  .footer-links h5 {
    font-size: 18px;
    line-height: 24px;
  }
  
  .contact-info-footer h5 {
    font-size: 18px;
    line-height: 24px;
  }
  
  .desc-1 {
    font-size: 14px;
    line-height: 20px;
  }
  
  .section-two-desc {
    font-size: 13px;
    line-height: 19px;
  }
  
  .section-one-description {
    font-size: 12px;
    line-height: 18px;
  }
  
  .patch-content p {
    font-size: 13px;
    line-height: 19px;
  }
  
  .info {
    font-size: 12px;
    line-height: 18px;
  }
  
  .feature-desc {
    font-size: 13px;
    line-height: 19px;
  }
  
  .form-subtitle {
    font-size: 13px;
    line-height: 19px;
  }
  
  .newsletter-text {
    font-size: 13px;
    line-height: 19px;
  }
  
  .footer-text {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .footer-links ul li a {
    font-size: 12px;
    line-height: 18px;
  }
  
  .contact-item {
    font-size: 11px;
    line-height: 16px;
  }
  
  .testimonial-text {
    font-size: 13px;
    line-height: 20px;
  }
  
  .author-name {
    font-size: 13px;
    line-height: 20px;
  }
  
  .author-title {
    font-size: 11px;
    line-height: 20px;
  }
  
  .drop-files p {
    font-size: 12px;
    line-height: 18px;
  }
  
  input::placeholder {
    font-size: 12px;
    line-height: 16px;
  }
  
  select {
    font-size: 12px;
    line-height: 16px;
  }
  
  textarea {
    font-size: 12px;
    line-height: 16px;
  }
  
  .accordion-button {
    font-size: 14px;
    line-height: 20px;
    padding: 15px 20px;
    padding-right: 55px;
  }
  
  .accordion-body {
    font-size: 12px;
    line-height: 18px;
    padding: 15px 20px;
  }
  
  .white-heading-cta {
    font-size: 26px;
    line-height: 32px;
  }
  
  .white-subheading-cta {
    font-size: 13px;
    line-height: 19px;
  }
  
  .top-bar-text {
    display: none;
  }
  
  .step-number {
    font-size: 14px;
    line-height: 18px;
  }
  
  .newsletter-disclaimer {
    font-size: 11px;
    line-height: 15px;
  }
  
  button {
    padding: 8px 24px;
    font-size: 11px;
  }


  
  .purple-btn,
  .white-btn {
    padding: 12px 24px;
  }
  
  .flip-card-inner {
    min-height: 240px;
  }
  
  .flip-card-front img {
    height: 80px;
    width: 80px;
  }
  
  .flip-card-back img {
    height: 60px;
  }
  
  .form-container {
    padding: 25px;
  }
  
  .testimonial-card {
    padding: 20px 25px;
  }
}

/* Very Small Mobile (320px and down) */
@media only screen and (max-width: 320px) {
  .section-heading {
    font-size: 26px;
    line-height: 32px;
  }
  
  .white-heading {
    font-size: 26px;
    line-height: 32px;
  }
  
  .heading-1 {
    font-size: 26px;
    line-height: 32px;
  }
  
  .section-one-title {
    font-size: 40px;
    line-height: 48px;
  }
  
  .section-subheading {
    font-size: 14px;
    line-height: 20px;
  }
  
  .white-subheading {
    font-size: 12px;
    line-height: 18px;
  }
  
  .section-two-heading {
    font-size: 22px;
    line-height: 28px;
  }
  
  .section-one-subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  
  .patch-content h3 {
    font-size: 24px;
    line-height: 30px;
  }
  
  .h3-heading {
    font-size: 16px;
    line-height: 24px;
  }
  
  .feature-title {
    font-size: 14px;
    line-height: 20px;
  }
  
  .step-title {
    font-size: 20px;
    line-height: 26px;
  }
  
  .form-title {
    font-size: 22px;
    line-height: 28px;
  }
  
  .newsletter-heading {
    font-size: 20px;
    line-height: 26px;
  }
  
  .footer-links h5 {
    font-size: 16px;
    line-height: 22px;
  }
  
  .contact-info-footer h5 {
    font-size: 16px;
    line-height: 22px;
  }
  
  .desc-1 {
    font-size: 13px;
    line-height: 19px;
  }
  
  .section-two-desc {
    font-size: 12px;
    line-height: 18px;
  }
  
  .section-one-description {
    font-size: 11px;
    line-height: 17px;
  }
  
  .patch-content p {
    font-size: 12px;
    line-height: 18px;
  }
  
  .info {
    font-size: 11px;
    line-height: 17px;
  }
  
  .feature-desc {
    font-size: 12px;
    line-height: 18px;
  }
  
  .form-subtitle {
    font-size: 12px;
    line-height: 18px;
  }
  
  .newsletter-text {
    font-size: 12px;
    line-height: 18px;
  }
  
  .footer-text {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .footer-links ul li a {
    font-size: 11px;
    line-height: 16px;
  }
  
  .contact-item {
    font-size: 10px;
    line-height: 15px;
  }
  
  .testimonial-text {
    font-size: 12px;
    line-height: 18px;
  }
  
  .author-name {
    font-size: 12px;
    line-height: 18px;
  }
  
  .author-title {
    font-size: 10px;
    line-height: 18px;
  }
  
  .drop-files p {
    font-size: 11px;
    line-height: 16px;
  }
  
  input::placeholder {
    font-size: 11px;
    line-height: 15px;
  }
  
  select {
    font-size: 11px;
    line-height: 15px;
  }
  
  textarea {
    font-size: 11px;
    line-height: 15px;
  }
  
  .accordion-button {
    font-size: 13px;
    line-height: 18px;
  }
  
  .accordion-body {
    font-size: 11px;
    line-height: 16px;
  }
  
  .white-heading-cta {
    font-size: 24px;
    line-height: 30px;
  }
  
  .white-subheading-cta {
    font-size: 12px;
    line-height: 18px;
  }
  
  .step-number {
    font-size: 12px;
    line-height: 16px;
  }
  
  .newsletter-disclaimer {
    font-size: 10px;
    line-height: 14px;
  }
}