/* General Styles */
:root {
  --primary-color: #d10000;
  --secondary-color: #000000;
  --light-color: #f8f9fa;
  --dark-color: #212529;
}

body {
  font-family: "Roboto", sans-serif;
  color: #333;
  overflow-x: hidden;
  padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}

/* Navigation Bar Styles */
.custom-navbar {
  background-color: var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  transition: all 0.3s;
}

.custom-navbar.scrolled {
  padding: 5px 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.custom-navbar .navbar-brand img {
  transition: transform 0.3s ease;
}

.custom-navbar .navbar-brand img:hover {
  transform: scale(1.05);
}

.custom-navbar .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  padding: 8px 15px;
  margin: 0 5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.custom-navbar .nav-link:hover {
  color: #ffffff !important;
  background-color: var(--primary-color);
}

.custom-navbar .nav-link.active {
  background-color: var(--primary-color);
  color: #ffffff !important;
}

.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover::after {
  width: 100%;
}

/* Emergency Link Styling */
.custom-navbar .emergency-link {
  background-color: var(--primary-color);
  border-radius: 30px;
  margin-left: 10px !important;
  animation: pulse 2s infinite;
}

.custom-navbar .emergency-link:hover {
  background-color: #ff0000;
  transform: scale(1.05);
}

/* Emergency Banner */
.emergency-banner {
  background-color: var(--primary-color);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.emergency-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  padding: 8px 15px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 30px;
}

.emergency-alert .btn {
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 30px;
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../assets/images/MainCover1.png") no-repeat center center/cover;
  color: white;
  position: relative;
}

/* Hero Section
.hero-section {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1601362840469-51e4d8d58785?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80")
      no-repeat center center/cover;
  color: white;
  position: relative;
} */

.hero-section .hero-content {
  z-index: 2;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section h1 span {
  display: inline;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 30px;
}

.feature-item i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.hero-buttons {
  margin-top: 30px;
}

/* Services Section */
.services-section {
  background-color: var(--secondary-color);
  color: white;
}

.section-header {
  position: relative;
  padding-bottom: 15px;
}

.section-header h2 {
  font-weight: 700;
  color: inherit;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.service-card {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-bottom-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  transform: rotateY(180deg);
  background-color: white;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.service-image {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 8px;
}

.service-image img {
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

/* What We Provide Section */
.provide-section {
  background-color: var(--light-color);
}

.provide-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.provide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.provide-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.provide-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

/* Why Choose Us Section */
.choose-section {
  background-color: var(--secondary-color);
  color: white;
}

.choose-reasons {
  margin-top: 30px;
}

.reason-item {
  display: flex;
  margin-bottom: 25px;
}

.reason-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.reason-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: white;
}

/* How It Works Section */
.process-section {
  background-color: white;
}

.process-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
  position: relative;
  border-top: 3px solid var(--primary-color);
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.process-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.process-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.emergency-callout {
  background-color: var(--primary-color);
  color: white;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--light-color);
}

.stars-large {
  font-size: 1.5rem;
  letter-spacing: 3px;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: rgba(209, 0, 0, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

/* Pricing Section */
.pricing-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  z-index: 1;
}

.pricing-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: bold;
  width: 120px;
  text-align: center;
}

.pricing-header {
  padding: 30px 20px;
  text-align: center;
  background-color: #f8f9fa;
  border-bottom: 1px solid #eee;
}

.pricing-header h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 15px 0;
}

.price .small {
  font-size: 1rem;
  font-weight: normal;
}

.pricing-features {
  padding: 20px;
  list-style: none;
}

.pricing-features li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #eee;
}

.pricing-footer {
  padding: 20px;
  text-align: center;
}

/* Map Section */
.map-container {
  overflow: hidden;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.service-area-card {
  padding: 30px;
}

.area-list {
  list-style: none;
  padding-left: 0;
}

.area-list li {
  margin-bottom: 10px;
}

.area-note {
  font-size: 0.9rem;
}

/* Contact Section */
.contact-form .form-control,
.contact-form .form-select {
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(209, 0, 0, 0.25);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.contact-form label {
  color: white;
}

.contact-info-card {
  height: 100%;
  padding: 30px;
}

.contact-info-item {
  display: flex;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-details h5 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Emergency Footer Banner */
.emergency-footer-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  padding-bottom: 100px !important;
}

.footer h5 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h5::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact-info {
  list-style: none;
  padding-left: 0;
}

.footer-contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-info i {
  margin-top: 3px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
  margin-right: 10px;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 90px;
}

.back-to-top:hover {
  background-color: #b00000;
  color: white;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(209, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(209, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(209, 0, 0, 0);
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .custom-navbar .navbar-collapse {
    background-color: var(--secondary-color);
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
  }

  .custom-navbar .nav-link {
    margin: 5px 0;
  }

  .custom-navbar .emergency-link {
    margin-top: 10px !important;
    margin-left: 0 !important;
    display: inline-block;
  }

  .hero-section {
    padding: 60px 0;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 767.98px) {
  .emergency-alert {
    flex-direction: column;
    text-align: center;
  }

  .emergency-alert .btn {
    margin-top: 10px;
  }

  .hero-features {
    justify-content: center;
  }
}
/* Style the select element */
select.form-select {
  background-color: #fff; /* normal background */
  color: #000;
}

/* Try to style the dropdown (limited browser support) */
select.form-select option {
  background-color: #333; /* light black */
  color: #fff;
}

/* Auto Export Page Specific Styles */
.export-hero-section {
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1583&q=80")
      no-repeat center center/cover;
  color: white;
  position: relative;
}

.export-process-section {
  background-color: white;
}

.country-card {
  text-align: center;
  padding: 15px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.country-card img {
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s;
}

.country-card:hover img {
  transform: scale(1.1);
}

.country-card h5 {
  font-size: 1rem;
  margin-bottom: 0;
}

.faq-section .accordion-button {
  font-weight: 500;
  padding: 15px 20px;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: rgba(209, 0, 0, 0.1);
  color: var(--primary-color);
}

.faq-section .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(209, 0, 0, 0.25);
}

.faq-section .accordion-body {
  padding: 20px;
}

/* Responsive Adjustments for Export Page */
@media (max-width: 767.98px) {
  .export-hero-section {
    padding: 80px 0;
    text-align: center;
  }

  .export-hero-section h1 {
    font-size: 2.2rem;
  }

  .country-card {
    padding: 10px;
  }

  .country-card img {
    height: 50px;
  }
}
/* Quotes Section Styles */
.quotes-section {
  background: linear-gradient(to right, #000000, #1a0000);
  color: white;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #ff0000;
}

.quotes-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff0000, #ff5e5e, #ff0000);
  animation: gradientMove 3s infinite linear;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}

.quote-highlight {
  background: #ff0000;
  color: white;
  font-weight: 700;
  padding: 15px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.quote-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: linear-gradient(to right, #ff5e5e, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.quote-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
}

.quote-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.quote-feature {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid #ff0000;
  border-radius: 10px;
  padding: 15px;
  width: 220px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.quote-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.quote-feature i {
  color: #ff0000;
  font-size: 2rem;
  margin-bottom: 10px;
}

.quote-feature h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #ff5e5e;
}

.quote-feature p {
  font-size: 0.9rem;
  color: #ccc;
}

.quote-btn {
  background: #ff0000;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.quote-btn:hover {
  background: #ff3333;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* Animations */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quote-features {
    flex-direction: column;
    align-items: center;
  }

  .quote-title {
    font-size: 1.8rem;
  }

  .quote-highlight {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

.quote-request-section {
  background: linear-gradient(to right, #000000, #1a0000);
  color: white;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #ff0000;
  margin-top: 10%;
}

.quote-request-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff0000, #ff5e5e, #ff0000);
  animation: gradientMove 3s infinite linear;
}

.quote-request-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #ff0000;
}

.quote-highlight {
  background: #ff0000;
  color: white;
  font-weight: 700;
  padding: 15px 25px;
  border-radius: 50px;
  margin-bottom: 25px;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.quote-form-container {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
  border: 1px solid #ff0000;
}

.form-control,
.form-select {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #444;
  color: white;
  padding: 12px 15px;
  border-radius: 5px;
  transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ff0000;
  box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
  color: white;
}

.form-control::placeholder {
  color: #aaa;
}

label {
  color: #ff5e5e;
  font-weight: 600;
  margin-bottom: 8px;
}

.quote-btn {
  background: #ff0000;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  margin-top: 10px;
}

.quote-btn:hover {
  background: #ff3333;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.contact-info-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
  border: 1px solid #ff0000;
  height: 100%;
}

.contact-info-card h3 {
  color: #ff5e5e;
  border-bottom: 2px solid #ff0000;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.contact-info-card div {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.contact-info-card i {
  color: #ff0000;
  font-size: 1.2rem;
  width: 30px;
}

.contact-info-card a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-card a:hover {
  color: #ff5e5e;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ff0000;
  border-radius: 50%;
  margin-right: 15px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: #ff5e5e;
  transform: translateY(-3px);
}

/* Animations */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quote-form-container,
  .contact-info-card {
    padding: 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .quote-highlight {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

#about,
#services,
#pricing,
#process,
#contact {
  scroll-margin-top: 115px;
}
