.elementor-11667 .elementor-element.elementor-element-dbd37a6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11667 .elementor-element.elementor-element-2a2918c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11667 .elementor-element.elementor-element-427066b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11667 .elementor-element.elementor-element-9efe077 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-11667 .elementor-element.elementor-element-4547e6a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11667 .elementor-element.elementor-element-5690da9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11667 .elementor-element.elementor-element-a9710fb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11667 .elementor-element.elementor-element-1aea126{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11667 .elementor-element.elementor-element-58fede8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11667 .elementor-element.elementor-element-ed85325{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--background-transition:0.3s;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-a24c64c *//* Custom Header Section */
#custom-header.custom-site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #333333;
  color: #ffffff;
  padding: 15px 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.custom-logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.custom-main-nav {
  flex: 1;
}

.custom-nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.custom-nav-links li {
  display: inline-block;
}

.custom-nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  padding: 10px 15px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.custom-cta-btn {
  background-color: #1E90FF;
  color: #ffffff;
  padding: 8px 20px;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-cta-btn:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

/* Mobile Menu Toggle */
.custom-menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #ffffff;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  #custom-header.custom-site-header {
    position: relative;
  }

  .custom-nav-links {
    display: none; /* Hide menu on mobile */
    flex-direction: column;
    background-color: #333333;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px;
  }

  .custom-nav-links.active {
    display: flex; /* Show menu when toggled */
  }

  .custom-menu-toggle {
    display: block; /* Show hamburger icon on mobile */
  }

  .custom-cta-btn {
    display: none; /* Hide CTA button on mobile */
  }
}

/* Hover effects for navigation links */
.custom-nav-links a:hover {
  color: #1E90FF;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

/* Sticky Header on Scroll */
#custom-header.sticky {
  background-color: #222222;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f5d7e89 *//* Custom Hero Section */
.custom-hero {
  position: relative;
  background-image: url('https://a0.muscache.com/im/pictures/af29d062-210c-4e98-b87d-d15b41d74202.jpg?im_w=720&width=720&quality=70&auto=webp'); /* Replace with actual image */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.custom-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)); /* Gradient overlay */
  z-index: 1;
}

.custom-container {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.custom-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  animation: fadeInDown 1s ease-in-out;
}

.custom-hero-content .custom-subheading {
  font-size: 1.4rem;
  color: #dddddd;
  margin-bottom: 30px;
  animation: fadeInUp 1.5s ease-in-out;
}

/* Modern Animated CTA Button */
.custom-cta-btn {
  display: inline-block;
  background-color: #1E90FF;
  color: #ffffff;
  padding: 12px 35px;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
}

/* Hover Animation */
.custom-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  transform: skewX(-20deg);
  z-index: -1;
}

.custom-cta-btn:hover::before {
  left: 100%;
}

.custom-cta-btn:hover {
  background-color: #0056b3;
  transform: translateY(-3px); /* Lift effect on hover */
  box-shadow: 0 10px 20px rgba(30, 144, 255, 0.3);
}

/* Pulsing Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(30, 144, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(30, 144, 255, 0);
  }
}

.custom-cta-btn {
  animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .custom-hero-content h1 {
    font-size: 3rem;
  }

  .custom-hero-content .custom-subheading {
    font-size: 1.3rem;
  }

  .custom-cta-btn {
    font-size: 1rem;
    padding: 10px 30px;
  }
}

@media (max-width: 768px) {
  .custom-hero-content h1 {
    font-size: 2.5rem;
  }

  .custom-hero-content .custom-subheading {
    font-size: 1.2rem;
  }

  .custom-cta-btn {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .custom-hero-content h1 {
    font-size: 2rem;
  }

  .custom-hero-content .custom-subheading {
    font-size: 1rem;
  }

  .custom-cta-btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}

/* Fade In Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9efe077 *//* About Us Section */
.about-us {
  background-color: #f9f9f9; /* Light background for contrast */
  padding: 100px 20px;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-us h2 {
  font-size: 3rem;
  color: #333333; /* Dark text for headings */
  font-weight: 700;
}

.about-us .subheading {
  font-size: 1.4rem;
  color: #666666;
  margin-top: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.about-text {
  text-align: left;
}

.about-text p {
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.cta-btn {
  background-color: #1E90FF; /* Bright blue for CTA */
  color: #ffffff;
  padding: 12px 30px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #0056b3;
}

/* Value Boxes */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.value-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box:hover {
  transform: translateY(-10px); /* Slight lift effect */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.value-box i {
  font-size: 3rem;
  color: #228B22; /* Forest green for icons */
  margin-bottom: 15px;
}

.value-box h4 {
  font-size: 1.5rem;
  color: #333333;
  margin-bottom: 10px;
}

.value-box p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr; /* Stack grid vertically on small screens */
  }

  .about-values {
    grid-template-columns: 1fr; /* Value boxes stack vertically on small screens */
  }

  .about-us h2 {
    font-size: 2.5rem;
  }

  .about-us .subheading {
    font-size: 1.2rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-99b1260 *//* Product Showcase Section */
.product-showcase {
  background-color: #f9f9f9; /* Light background */
  padding: 80px 20px;
  text-align: center;
}

.product-showcase h2 {
  font-size: 2.8rem;
  color: #333333;
  margin-bottom: 20px;
  font-weight: 700;
}

.product-showcase p {
  font-size: 1.3rem;
  color: #555555;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-box:hover {
  transform: translateY(-10px); /* Lift effect on hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-box img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.product-box h3 {
  font-size: 1.8rem;
  color: #228B22; /* Forest green */
  margin-bottom: 15px;
  font-weight: 600;
}

.product-box p {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cta-btn {
  background-color: #228B22;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #1E90FF; /* Bright blue hover effect */
}

@media (max-width: 768px) {
  .product-showcase h2 {
    font-size: 2.4rem;
  }

  .product-showcase p {
    font-size: 1.2rem;
  }

  .product-box {
    padding: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9e45294 *//* Why Choose Us Section */
.why-choose-us {
  background-color: #ffffff; /* White background for a clean look */
  padding: 80px 20px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.8rem;
  color: #333333; /* Dark gray for headings */
  margin-bottom: 20px;
  font-weight: 700;
}

.why-choose-us p {
  font-size: 1.3rem;
  color: #555555; /* Medium gray for body text */
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px; /* Adds space between the benefit boxes */
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-box {
  background-color: #f9f9f9; /* Light gray to differentiate */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.benefit-box:hover {
  transform: translateY(-10px); /* Lift effect on hover */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Darker shadow on hover */
  background-color: #e0f7fa; /* Light teal background on hover */
}

.benefit-box .icon {
  font-size: 3rem; /* Large icon size */
  color: #228B22; /* Forest green for icons */
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.benefit-box:hover .icon {
  color: #1E90FF; /* Bright blue on hover */
}

.benefit-box h3 {
  font-size: 1.6rem;
  color: #228B22; /* Forest green for benefit headings */
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-box p {
  font-size: 1.1rem;
  color: #666666; /* Slightly darker gray for paragraph text */
  line-height: 1.5;
}

/* Subtle animation on hover */
.benefit-box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background-color: #1E90FF;
  border-radius: 50%;
  opacity: 0.1;
  transition: transform 0.6s ease;
  z-index: -1;
}

.benefit-box:hover::before {
  transform: scale(1.5) translate(150px, 150px);
}

@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 2.4rem;
  }

  .why-choose-us p {
    font-size: 1.2rem;
  }

  .benefit-box {
    padding: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6d5ebf0 *//* Testimonials Section */
.testimonials {
  background-color: #f9f9f9; /* Light background */
  padding: 80px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.6rem;
  color: #333333;
  margin-bottom: 20px;
  font-weight: 700;
}

.testimonials p {
  font-size: 1.2rem;
  color: #555555;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Testimonial Cards */
.testimonial-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  text-align: left;
}

.testimonial-text {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Client Information */
.client-info {
  display: flex;
  align-items: center; /* Vertically center the image and text */
  gap: 15px; /* Add space between the image and the text */
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Circular image */
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
  flex-shrink: 0; /* Prevent image from shrinking in narrow layouts */
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h4 {
  font-size: 1.2rem;
  color: #333333;
  margin: 0;
}

.client-details p {
  font-size: 1rem;
  color: #999999;
  margin: 0; /* Remove margin to avoid extra spacing */
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials h2 {
    font-size: 2.4rem;
  }

  .testimonials p {
    font-size: 1.1rem;
  }

  .testimonial-card {
    padding: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0d7e33c *//* Call to Action Section */
.cta {
  background: linear-gradient(135deg, #2e7d32, #228B22); /* Softer gradient */
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 2.6rem; /* Slightly larger for distinction */
  color: #ffffff; /* White text for heading */
  margin-bottom: 20px;
  font-weight: 800; /* Make the heading bold */
  line-height: 1.4;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); /* Subtle text shadow for pop */
}

.cta p {
  font-size: 1.3rem;
  color: #e0e0e0; /* Lighter gray for subtext */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8; /* Increased line height for better readability */
}

.cta-btn {
  background-color: #007BFF; /* Softer blue */
  color: #ffffff;
  padding: 15px 35px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .cta h2 {
    font-size: 2.2rem;
  }

  .cta p {
    font-size: 1.1rem;
  }

  .cta-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b704570 *//* FAQ Section */
.faq-section {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2.8rem;
  color: #333333;
  margin-bottom: 20px;
  font-weight: 700;
}

.faq-section p {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  cursor: pointer;
  position: relative;
  padding: 10px;
}

.faq-question h4 {
  font-size: 1.4rem;
  color: #228B22;
  margin: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
  margin-top: 10px;
}

/* Accordion Effect */
.faq-item.active .faq-answer {
  max-height: 300px; /* Enough height for the expanded answer */
}

.faq-item.active .faq-question h4 {
  color: #1E90FF; /* Change question color on open */
}

@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 2.4rem;
  }

  .faq-section p {
    font-size: 1.1rem;
  }

  .faq-question h4 {
    font-size: 1.3rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9ecd67d *//* Footer Section */
.footer {
  background-color: #222222; /* Dark background for a clean look */
  color: #dddddd; /* Lighter gray text */
  padding: 80px 20px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px 0;
  padding: 0 20px; /* Padding to add more space between columns */
}

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffffff; /* White for headers */
  font-weight: 700;
}

.footer-column p,
.footer-column ul li {
  font-size: 1rem;
  color: #bbbbbb; /* Softer gray for text */
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #dddddd;
  text-decoration: none;
  font-size: 1rem; /* Slightly smaller for links */
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #1E90FF; /* Blue for hover effect */
}

.footer .social-icons {
  display: flex;
  gap: 20px; /* Increased spacing for cleaner look */
  margin-top: 20px;
}

.footer .social-icons a {
  font-size: 1.3rem; /* Reduced icon size for minimalism */
  color: #bbbbbb; /* Softer gray */
  transition: color 0.3s ease;
}

.footer .social-icons a:hover {
  color: #1E90FF; /* Bright blue on hover */
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background-color: #111111; /* Darker footer bottom */
  color: #999999;
}

.footer-bottom p {
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    text-align: center;
    margin: 20px 0;
  }

  .footer .social-icons {
    justify-content: center;
  }
}/* End custom CSS */