/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* General Navbar Styling */
.navbar {
  height: 70px; /* Fixed navbar height */
  position: sticky;
  display: flex;
  align-items: center;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar .container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.navbar-logo img {
  width: 200px; /* Increase this for bigger logo */
  height: 80px; /* Maintain aspect ratio */
  max-height: 50px; /* Restrict navbar height */
  object-fit: contain; /* Ensures proper scaling */
}

/* Navbar Links */
.navbar-links ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links ul li a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  padding: 10px 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-links ul li a:hover {
  color: #d10000;
  transform: scale(1.05);
}

.navbar-links ul li a.active {
  color: #d10000;
  border-bottom: 2px solid #d10000;
}

/* Call-to-Action (CTA) Button */
.nav-cta {
  background: #d10000;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-cta:hover {
  background: #a00000;
  transform: translateY(-3px);
}

/* Mobile Menu Button */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333333;
  cursor: pointer;
}

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

  .navbar-links {
    position: fixed;
    top: 60px;
    right: 0;
    background: #ffffff;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: block;
  }

  .navbar-links ul {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }

  .navbar-links ul li {
    text-align: left;
  }

  .navbar-links.active {
    transform: translateX(0);
  }
}

/* Sticky Background on Scroll */
.navbar.scrolled {
  background: #f8f9fa;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Alignment */
@media (max-width: 767px) {
  .navbar .container {
    padding: 0 15px;
  }

  .navbar-links ul li a {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to right, #fff 40%, #ff4b4b 100%);
  position: relative;
  padding: 100px 10%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Text */
.hero-text {
  text-align: left;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #222;
}

.hero-title span {
  color: #d10000;
  background: rgba(209, 0, 0, 0.1);
  padding: 5px 10px;
  border-radius: 5px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin: 20px 0;
  max-width: 550px;
}

/* Buttons */
.hero-buttons .btn {
  padding: 14px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 15px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  background: #d10000;
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background: #ff4b4b;
}

.btn-secondary {
  background: transparent;
  color: #d10000;
  border: 2px solid #d10000;
}

.btn-secondary:hover {
  background: #d10000;
  color: #ffffff;
}

/* Hero Image */
.hero-image img {
  max-width: 100%;
  height: auto;
  animation: float 4s infinite ease-in-out;
}

/* Background Design Elements */
.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(209, 0, 0, 0.8),
    rgba(255, 255, 255, 0)
  );
  z-index: -1;
}

.floating-shape {
  position: absolute;
  z-index: -1;
  opacity: 0.2;
}

/* Floating Circle */
.floating-circle {
  width: 120px;
  height: 120px;
  background: rgba(255, 75, 75, 0.3);
  border-radius: 50%;
  top: 20%;
  left: -30px;
  animation: pulse 4s infinite ease-in-out;
}

/* Floating Triangle */
.floating-triangle {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 100px solid rgba(209, 0, 0, 0.2);
  bottom: 15%;
  right: -30px;
  animation: float 6s infinite ease-in-out;
}

/* Floating Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-buttons .btn {
    font-size: 1rem;
  }
  .hero-image img {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    text-align: center;
    padding: 80px 5%;
  }
  .hero-buttons {
    margin-top: 20px;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    margin-bottom: 10px;
  }
  .hero-image img {
    max-width: 300px;
    margin-top: 30px;
  }
  .floating-shape {
    display: none;
  }
}

/* Ensure the Banner Section Takes Full Width */
.banner-section {
  width: 100%;
  height: 50vh; /* Adjust as needed */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e0e0e0; /* Prevents white/black screen flicker */
}

/* Fix Image Display Without Cropping */
.carousel-item img {
  height: 100%;
  object-fit: contain; /* Ensures full image visibility */
}

/* Center Navigation Buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 5%; /* Keeps buttons closer to images */
}

/* Fix Bottom Gap Issue */
.carousel {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .banner-section {
    height: 10vh;
  }

  /* Adjust button sizes for smaller screens */
  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }
}

/* Navigation Buttons */
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
  z-index: 10;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-section {
    height: 40vh;
  }

  .prev-btn,
  .next-btn {
    font-size: 18px;
    padding: 8px 12px;
  }
}

/* Logo Carousel Section */
/* General Section Styling */
.logo-carousel-section {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

/* Text Styling */
.carousel-text {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.carousel-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d10000; /* Red Theme */
  margin-bottom: 15px;
}

.carousel-text p {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.6;
}

/* Full-Width Logo Carousel */
.logo-carousel {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: #f8f8f8; /* Light background for contrast */
  padding: 30px 0;
}

/* Logo Container */
.logos {
  display: flex;
  gap: 80px;
  width: fit-content;
  animation: scrollLogos 20s linear infinite;
}

/* Logos Styling */
.logos img {
  height: 100px; /* Increased size */
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

/* Hover Effect */
.logos img:hover {
  filter: grayscale(100%);
  transform: scale(1.2);
}

/* Keyframes for Smooth Infinite Scrolling */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* Moves half width left */
}

/* Responsive Design */
@media (max-width: 991px) {
  .carousel-text h2 {
    font-size: 2rem;
  }

  .carousel-text p {
    font-size: 1.2rem;
  }

  .logos img {
    height: 80px; /* Adjusted size for smaller screens */
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .carousel-text {
    padding: 0 20px;
  }

  .carousel-text h2 {
    font-size: 1.8rem;
  }

  .carousel-text p {
    font-size: 1rem;
  }

  .logos img {
    height: 70px;
    max-width: 130px;
  }
}

/* About Us Section */
.about-us-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

/* About Image */
.about-image img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  animation: fadeIn 1.2s ease-in-out;
}

/* Content */
.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d10000;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Stats Section */
.about-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  width: 150px;
}

.stat:hover {
  transform: scale(1.1);
}

.stat h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #d10000;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1rem;
  color: #333;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1.1rem;
  }

  .about-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-us-section {
    text-align: center;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .stat {
    width: 130px;
  }
}

/* Services Section */
/* Services Section */
.featured-services {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

/* Section Heading */
.services-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #d10000;
}

.services-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

/* Service Card */
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Service Icon */
.service-icon {
  font-size: 3rem;
  color: #d10000;
  margin-bottom: 15px;
}

/* Service Title */
.service-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}

/* Service Description */
.service-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

/* View Details Button */
.service-btn {
  background: #d10000;
  color: white;
  font-size: 1rem;
  border: none;
  padding: 10px 15px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 50px;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.service-btn:hover {
  background: #a00000;
}

/* View More Services Button */
.view-more-services-btn {
  background: #d10000;
  color: white;
  font-size: 1.2rem;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.view-more-services-btn:hover {
  background: #a00000;
}

/* Unique Background & Section Layout */
/* Unique Background & Section Layout */
/* Section Background */
.brand-potential-section {
  position: relative;
  background: #f9f9f9; /* Clean white background */
  padding: 100px 20px;
  text-align: center;
  color: #d10000; /* Red branding */
  overflow: hidden;
}

/* Heading & Subheading */
.brand-heading {
  font-size: 3rem;
  font-weight: 800;
  color: #d10000; /* Strong red */
  margin-bottom: 20px;
}

.brand-heading span {
  color: #000; /* Black for contrast */
}

.brand-subheading {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
  color: #333; /* Dark grey for readability */
}

/* Brand Grid Layout */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
  align-items: center;
  position: relative;
}

/* Glowing Core Element */
.glowing-core {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #ff4b4b, #d10000);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(255, 75, 75, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 1 / span 2;
  animation: pulse 3s infinite alternate ease-in-out;
}

/* Floating Cards */
.floating-card {
  width: 280px;
  padding: 25px;
  background: #ffffff; /* White cards */
  border: 2px solid #d10000; /* Red borders */
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 0 15px rgba(209, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.floating-card i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #d10000; /* Red icons */
}

.floating-card:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 75, 75, 0.5);
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .brand-heading {
    font-size: 2.5rem;
  }
  .brand-subheading {
    font-size: 1.1rem;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .glowing-core {
    width: 100px;
    height: 100px;
    grid-column: auto;
    grid-row: auto;
  }

  .floating-card {
    width: 90%;
    margin-bottom: 20px;
  }
}

/* Section Styling */
.who-we-serve {
  background: linear-gradient(to right, #ffffff 50%, #d10000 50%);
  color: #333;
  padding: 80px 0;
}

/* Left Side (Text Content) */
.left-content {
  padding: 50px;
  text-align: left;
}

.left-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.left-content .subheading {
  font-size: 1.2rem;
  color: #555;
}

/* Right Side (Red Background - Service Categories) */
.right-content {
  background: #d10000;
  color: white;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.service-category {
  width: 45%;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.service-category i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.service-category h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-category p {
  font-size: 1rem;
}

/* Hover Effect */
.service-category:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive Layout */
@media (max-width: 991px) {
  .who-we-serve {
    background: #ffffff;
  }

  .left-content,
  .right-content {
    text-align: center;
    padding: 30px;
  }

  .right-content {
    background: #d10000;
    flex-direction: column;
  }

  .service-category {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* Testimonials Section */
.testimonials {
  background: #f8f8f8;
  padding: 80px 0;
  position: relative;
  text-align: center;
}

/* Section Title */
.section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d10000;
}

.section-title p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

/* Testimonial Slider */
/* Testimonials Section */
.testimonials {
  background-color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/testimonial-bg.png") no-repeat center;
  background-size: cover;
  opacity: 0.05;
  transform: translateY(-50%);
}

/* Section Title */
.section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d10000;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

/* Testimonial Box */
.testimonial-box {
  background: white;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Testimonial Text */
.testimonial-content p {
  font-size: 1.3rem;
  font-style: italic;
  color: #444;
}

/* Author */
.testimonial-content h4 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #d10000;
  margin-top: 15px;
}

.testimonial-content span {
  font-size: 1rem;
  color: #666;
}

/* Navigation Arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: #d10000;
  border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* Pagination Dots */
.carousel-indicators button {
  background-color: #d10000;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Industries Section */
.industries-section {
  background: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d10000;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

/* Industries Grid */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: auto;
}

/* Individual Industry Box */
.industry-box {
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.industry-box:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 20px rgba(209, 0, 0, 0.3);
}

/* Industry Icons */
.industry-box .icon {
  font-size: 2rem;
  color: #d10000;
  margin-bottom: 10px;
}

/* Industry Titles */
.industry-box h4 {
  font-size: 1.1rem;
  color: #333;
}

/* Our Process Section */
.our-process {
  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d10000;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

/* Process Flow */
.process-flow {
  max-width: 900px;
  margin: auto;
  position: relative;
}

/* Process Row */
.process-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
}

.process-row.right {
  justify-content: flex-end;
}

/* Connecting Line */
.process-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 5px;
  height: 100%;
  background: #d10000;
  transform: translateX(-50%);
}

/* Process Icon */
.process-icon {
  width: 70px;
  height: 70px;
  background: #d10000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(209, 0, 0, 0.3);
  z-index: 2;
}

.process-row.right .process-icon {
  order: 2;
}

/* Process Content */
.process-content {
  max-width: 400px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.process-content:hover {
  transform: translateY(-5px);
}

.process-content h4 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.process-content p {
  font-size: 1rem;
  color: #555;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #d10000, #ff4b4b);
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* CTA Content */
.cta-content {
  max-width: 700px;
  margin: auto;
}

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-cta {
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Primary Button */
.btn-primary-cta {
  text-decoration: none;
  background: white;
  color: #d10000;
  border: none;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary-cta:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
}

/* Outline Button */
.btn-outline-cta {
  text-decoration: none;
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-cta:hover {
  background: white;
  color: #d10000;
  transform: translateY(-3px);
}

/* Background Abstract Shapes */
.cta-section::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: -50px;
  left: -50px;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  bottom: -40px;
  right: -40px;
}

/* Responsive Design */
@media (max-width: 767px) {
  .cta-content h2 {
    font-size: 2.2rem;
  }

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

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Footer Section */
.footer-section {
  background: #0a0a0a;
  color: #fff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.footer-section h4 {
  color: #ff4b4b;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #ff4b4b;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #ff4b4b;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.footer-bottom ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom ul li a:hover {
  color: #ff4b4b;
}

.footer-logo img {
  padding-bottom: 15px;
  width: 180px; /* Adjust width as needed */
  height: auto; /* Maintains aspect ratio */
  max-width: 100%; /* Ensures responsiveness */
  display: block;
  margin: 0 auto; /* Centers the logo */
}

@media (max-width: 768px) {
  .footer-logo img {
    width: 140px; /* Smaller size for mobile */
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .footer-section .row {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom ul {
    flex-direction: column;
    gap: 10px;
  }
}
